@charset "UTF-8";

/*共通部分*/
html {
  font-size: 62.5%;
}
body {
 font-family:"Yu Mincho","Hiragino Mincho ProN",serif;
  color: #432;
}
a {
  text-decoration: none;
}
img {
  max-width: 100%;
}
body.fade-in {
  animation: fadeIn 0.4s ease;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*HEADER*/
.header {
  width: 100%;
  height: auto;
  z-index: 2;
  position: relative;
  background-color: #fff;
}
.header_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
.header_logo {
  display: block;
  width: 20vw;
  min-width: 300px;
  margin-left: 50px;
}
.pc_nav_wrap {
  width: 100%;
}
.pc_nav {
  display: flex;
  flex-direction: column;
  align-items: end;
}
.tel__box {
  width: 500px;
  height: 75px;
  color: #64395f;
  background-color: #e6e6e6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family:"Yu Gothic Medium","游ゴシック Medium","Yu Gothic","游ゴシック",YuGothic,sans-serif;
}
.tel__info_text {
  font-size: 18px;
  padding-right: 35px;
  position: relative;
}
.tel__info_text::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 15px;
  background-color: #64395f;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
}
.tel__number {
  padding-left: 28px;
  position: relative;
  font-size: 28px;
  font-weight: bold;
}
.tel__number::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(../images/tel_icon_purple.png);
}
.nav_flex {
  display: flex;
  align-items: center;
  font-size: 17px;
  font-weight: bold;
  margin-right: 20px;
  height: 60px;
}
.nav_flex_li {
  margin-left: 3vw;
}
.sp_nav_wrap {
  display: none;
}
/*HEADER END*/
/*固定HEADER*/
#fixed_header {
  width: 100%;
  height: 80px;
  position: fixed;
  top: -120px;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 9999;
  transition: .3s ease;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,.08);
}
#fixed_header.is-show {
  top: 0;
  opacity: 1;
  visibility: visible;
}
.fixed_header_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
#fixed_header .header_logo {
  width: 15vw;
  min-width: 180px;
  margin-left: 2vw;
}
.fixed_header_inner .tel__box {
  flex-direction: column;
  width: 290px;
  height: 80px;
}
.fixed_header_inner .tel__info_text {
  padding-right: 0;
  font-size: 14px;
  margin-bottom: 2px;
}
.fixed_header_inner .tel__info_text::before {
  content: none;
}
/*固定HEADER END*/

/*FOOTER*/
.footer {
  width: 100%;
  background-color: #64395f;
  color: #fff;
}
.footer_inner {
  width: 100%;
  display: flex;
  padding: 7vw 70px 7vw 100px;
  justify-content: space-between;
}
.footer_logo {
  width: 300px;
  margin-bottom: 20px;
}
address {
  font-size: 16px;
  line-height: 1.5;
  text-align: left;
}
.footer_inner_r {
  margin-right: 50px;
}
.footer_nav {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: end;
}
.footer_navlist {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  align-items: center;
}
.footer_navitem {
  font-size: 17px;
  height: 60px;
  margin-right: 30px;
  margin-bottom: 20px;
}
.footer_navitem a {
  display: block;
  padding: 21px 0;
}
.order_btn {
  width: 250px;
  margin: 0 30px 30px 30px;
}
.order_btn_a {
  position: relative;
  display: block;
  padding: 15px 50px 15px 30px;
  border: 1px solid #fff;
  font-size: 17px;
}
.order_btn_a::after {
  content: '';
  width: 8px;
  height: 8px;
  border: 0;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 30px;
  bottom: 0;
  margin: auto;
}
.copylight {
  text-align: right;;
  margin-right: 30px;
}
.sp_copylight {
  display: none;
}
.fixed-download-btn {
  position: fixed;
  right: 20px;
  bottom: 50px;
  z-index: 9999;
  display: flex;
  align-items: center;
  padding: 25px 22px;
  background: #d1a02b;
  color: #fff;
  border-radius: 4px;
  box-shadow: 0 4px 10px rgba(0,0,0,.2);
  font-size: 16px;
  writing-mode: vertical-lr;
}
.fixed-download-btn::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  background-image: url(../images/osonaemono_icon.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin: 0px 0 5px 3px;
}

@media (max-width: 767px){
  .fixed-download-btn{
    right: 12px;
    bottom: 12px;
    font-size: 13px;
    padding: 12px 16px;
  }
}
/*HEADER FOOTER Responsive*/
@media (max-width: 1400px) {
  .nav_flex {
    font-size: 15px;
  }
  .footer_navitem {
    font-size: 14px;
  }
  .order_btn {
    font-size: 14px;
    width: 200px;
  }
  .fixed_header_inner .tel__box {
    width: 240px;
  }
  .fixed_header_inner .tel__info_text {
    font-size: 14px;
  }
  .fixed_header_inner .tel__number {
    font-size: 24px;
  }
}
@media (max-width: 1200px) {
  #fixed_header .tel_box {
    width: 220px;
  }
  .fixed_header_tel_info {
    width: 100%;
  }
  #fixed_header .tel_number {
    letter-spacing: -0.05em;
  }
  #fixed_header .tel_line_text {
    font-size: 13px;
  }
  #fixed_header .tel_number_text {
    font-size: 13px;
  }
  #fixed_header .nav_flex {
    font-size: 13px;
  }
}
@media (max-width: 1024px) {
  #fixed_header {
    display: none;
  }
  .fixed-download-btn {
    display: none;
  }
  main {
    padding-top: 80px;
  }
  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 10;
  }
  .header_logo {
    width: 25vw;
    min-width: 230px;
    margin-left: 30px;
  }
  .pc_nav_wrap {
    display: none;
  }
  .sp_nav_wrap {
    display: block;
    position: relative;
  }
  #menu-toggle{
    display:none;
  }
  .menu-icon {
    width: 50px;
    position: fixed;
    top: 15px;
    right: 20px;
    z-index: 999;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .menu-icon span:not(.menu-text) {
    display: block;
    width: 100%;
    height: 4px;
    margin: 4px 0;
    background: #64395f;
    border-radius: 2px;
    transition: .4s;
  }
  .menu-text {
    font-size: 12px;
    letter-spacing: .2em;
    color: #64395f;
    margin-top: 6px;
  }

  /* ハンバーガーがXに変形 */
  #menu-toggle:checked + .menu-icon span:nth-child(1) {
    transform: translateY(12px) rotate(45deg);
  }
  #menu-toggle:checked + .menu-icon span:nth-child(2) {
    opacity: 0;
  }
  #menu-toggle:checked + .menu-icon span:nth-child(3) {
    transform: translateY(-12px) rotate(-45deg);
  }
  /* オーバーレイ背景 */
  .overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    pointer-events: none;
    transition: 0.4s;
    z-index: 11;
    top: 0;
  }

  #menu-toggle:checked ~ .overlay {
    opacity: 1;
    pointer-events: auto;
  }

  /* メニュー本体（左から出す） */
  .sp_nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 400px;
    height: 100dvh;
    background: #fff;
    transition: right .4s ease;
    z-index: 20;
    box-shadow: -5px 0 15px rgba(0,0,0,.1);
    padding: 120px 0;
    overflow-y: auto;
  }
  .sp_nav_logo,
  .sp_nav_list,
  .menu_order_btn,
  .tel__box,
  .isogi_box {
    width: 320px;
    margin-inline: auto;
  }
  body {
    overflow-x: hidden;
  }
  body.menu-open {
    overflow: hidden;
  }
  #menu-toggle:checked ~ .sp_nav {
    right: 0;
  }
  .sp_nav_logo {
    width: 250px;
    display: block;
    margin-bottom: 30px;
  }
  .sp_nav_list {
    list-style: none;
    padding: 0 0 50px;
  }
  .sp_nav li {
    border-bottom: 1px solid #b6b6b6;
    width: 100%;
    position: relative;
  }
  .sp_nav_item {
    font-size: 1.6rem;
    transition: color 0.3s;
    display: block;
    padding: 25px 0;
  }
  .menu_order_btn {
    width: 320px;
    margin-bottom: 30px;
  }
  .menu_order_btn_a {
    position: relative;
    font-size: 14px;
    border: 1px solid #64395f;
    display: block;
    padding: 15px 50px 15px 30px;
    color: #64395f;
  }
  .menu_order_btn_a::after {
    content: '';
    width: 8px;
    height: 8px;
    border: 0;
    border-top: solid 2px #64395f;
    border-right: solid 2px #64395f;
    transform: rotate(45deg);
    position: absolute;
    top: 0;
    right: 30px;
    bottom: 0;
    margin: auto;
  }
  .header__text {
    font-size: 14px;
    text-align: center;
    line-height: 1.5;
  }
  .header_add {
    font-size: 14px;
    width: 180px;
    margin: 16px auto;
    line-height: 1.5;
  }
  .header_tel {
    font-size: 20px;
    text-align: center;
    line-height: 1.5;
    margin-top: 10px;
  }
  .header_tel_wrap {
    background-image: url(../images/wave.png);
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    background-color: #f3f3f3;
    padding: 30px 0;
    background-size: cover;
  }
  .tel__box {
    width: 320px;
    margin-bottom: 20px;
    flex-direction: column;
    height: 100px;
  }
  .tel__info_text {
    padding-right: 0;
    padding-bottom: 15px;
  }
  .tel__info_text::before {
    width: 80%;
    height: 1px;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    top: initial;
    right: initial;
  }
  .footer_inner {
    padding: 6vw;
    padding-right: calc(8vw - 30px);

  }
  .footer_logo {
    width: 240px;
  }
  address {
    font-size: 13px;
  }
  .footer_navitem {
    height: auto;
    margin-bottom: 5px;
    font-size: 13px;
  }
  .footer_navitem a {
    padding: 10px 0;
  }
  .order_btn_a {
    font-size: 13px;
  }
  .osonaemono_btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 15px;
    color: #fff;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0,0,0,.2);
    font-size: 13px;
    margin-right: 100px;
    background: #d1a02b;
  }
  .osonae {
    width: 26px;
    margin-bottom: 5px;
  }
  /* .sp_fixed-download-btn::before {
    content: "";
    display: inline-block;
    width: 30px;
    height: 30px;
    background-image: url(../images/osonaemono_icon.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  } */
}
@media (max-width: 767px) {
  main {
    padding-top: 60px;
  }
  .header {
    height: 60px;
  }
  .header_logo {
    width: 170px;
    min-width: initial;
    margin-left: 20px;
  }
  .sp_nav_logo,
  .sp_nav_list,
  .menu_order_btn,
  .tel__box,
  .isogi_box {
    width: 100%;
    margin-inline: auto;
    max-width: 320px;
  }
  .menu-icon {
    width: 35px;
    top: 10px;
  }
  .menu-icon span:not(.menu-text) {
    height: 2px;
    margin: 3.5px 0;
  }
  .menu-text {
    font-size: 11px;
    letter-spacing: 0em;
    margin-top: 3px;
  }
  #menu-toggle:checked + .menu-icon span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .sp_nav {
    right: -100%;
    width: 100%;
    box-shadow: none;
    padding: 50px 25px 70px;
  }
  .sp_nav_logo {
    width: 220px;
  }
  .sp_nav_item {
    font-size: 14px;
  }
  .sp_nav_list {
    padding: 10px 0 40px;
  }
  .osonae {
    width: 20px;
  }
  .footer_inner {
    flex-direction: column-reverse;
    padding: 35px;
    width: 100%;
  }
  .footer_nav {
    align-items: flex-start;
  }
  .footer_navlist {
    width: 100%;
  }
  .order_btn {
    margin: 10px 0 30px;
    width: 100%;
    max-width: 320px;
  }
  .footer_navitem {
    width: 100%;
    border-bottom: 1px solid #ffffff45;
    margin-right: 0;
  }
  .border_none {
    border-bottom: none;
  }
  .copylight {
    display: none;
  }
  .sp_copylight {
    display: block;
    text-align: center;
    padding-bottom: 100px;
  }
  .osonaemono_btn {
    padding: 5px;
    font-size: 12px;
    margin-right: 75px;
  }
}
/*HEADER FOOTER Responsive END*/

/*MAIN*/

.hero {
  width: 100%;
  height: auto;
  position: relative;
}
.hero img{
  width:100%;
  display:block;
  height: auto;
}
.main_copy {
  font-size: 30px;
  color:#fff;
  writing-mode: vertical-rl;
  padding: 50px 30px;
  line-height: 2.2;
  letter-spacing: 0.1em;
  background-color: #00000099;
  position:absolute;
  top: 14%;
  left: 13%;
}
.greeting {
  background-color: #edeee9;
}
.greeting_text {
  font-size: 17px;
  width: 767px;
  margin: 0 auto;
  padding: 60px 0;
  line-height: 2;
}
.greeting_tel {
  width: 100%;
  margin: 0 auto;
  background:url("../images/wave.png") center/cover no-repeat, #e3deca;
  padding: 50px 0;
  text-align: center;
  line-height: 1.8;
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.greeting_tel_text {
  font-size: 18px;
}
.greeting_tel_number {
  padding-left: 28px;
  position: relative;
  font-size: 28px;
  font-weight: bold;
  display: inline-block;
}
.greeting_tel_number::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(../images/tel_icon_purple.png);
}
.consul_btn_a,.flow_btn_a {
  width: 320px;
  height: 80px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  margin: 20px;
  background-color: #64395f;
  color: #fff;
  padding-right: 30px;
}
.consul_btn_a::after,.flow_btn_a::after {
  content: '';
  width: 8px;
  height: 8px;
  border: 0;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 30px;
  bottom: 0;
  margin: auto;
}
.greeting_btn {
  display: flex;
  justify-content: center;
}
.top .greeting_tel {
  height: auto;
}
.contents_container {
  padding: 60px 0;
}
.ttl_en {
  display: block;
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.05em;
  line-height: 2;
  }
.contents {
  display: flex;
  flex-flow: wrap;
  justify-content: space-around;
  background-color: #fff;
  width: 80%;
  margin: 0 auto;
  min-width: 1025px;
  padding-top: 60px;
}
.contents_box {
  width: 37vw;
  max-width: 700px;
  min-width: 475px;
  margin-bottom: 70px;
  position: relative;
  height: 490px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.contents_imgbox {
  width: 100%;
}
.contents_img {
  height: 350px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.img1 {
  background-image: url(../images/tomonokai_.jpg);
}
.img2 {
  background-image: url(../images/houyou_img.jpg);
}
.img3 {
  background-image: url(../images/osonaemono_img.jpg);
}
.img4 {
  background-image: url(../images/hotelsunrise.jpg);
}
.img5 {
  background-image: url(../images/yukannogi.jpg);
}
.contents_ttl {
  font-size: 25px;
  font-weight: bold;
  line-height: 2.5;
  writing-mode: vertical-rl;
  position: absolute;
  height: auto;
  background-color: #efede9db;
  padding: 30px 13px;
  top: -10px;
  left: 5%;
}
.furigana {
  font-size: 12px;
  position: absolute;
  right: 5px;
  margin-top: 6px;
}
.contents_detail {
  font-size: 16px;
  line-height: 2;
  margin-top: 15px;
}
.contents_btn {
  display: block;
  font-size: 18px;
  position: relative;
  padding: 23px 50px 23px 30px;
  width: 300px;
  margin: 0 0 0 auto;
  background-color: #64395f;
  color: #fff;
}
.contents_btn::after {
  content: '';
  width: 8px;
  height: 8px;
  border: 0;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 30px;
  bottom: 0;
  margin: auto;
}
.plan {
  padding: 100px 0 80px;
  background-color: #edeee9;
}
.ttl {
  font-size: 30px;
  text-align: center;
  margin-bottom: 30px;
}
.ttl_text {
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
  display: block;
  margin-bottom: 50px;
}
.sougi_plan_box_wrap {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
}
.sougi_plan_box {
  width: 660px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #fff;
  padding: 60px;
  position: relative;
  margin: 0 10px 50px;
}
.sougi_inner_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.badge {
  position: absolute;
  background-color:#dfcfa9;
  top: -10px;
  left: 45px;
  padding: 13px 32px;
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 26px;
  letter-spacing: -0.05em;
}
.sougi_s_text {
  font-size: 18px;
  display: block;
  line-height: 2;
}
.sougi_title {
  font-size: 30px;
  line-height: 2;
}
.sougi_plan_box img {
  width: 580px;
  height: auto;
  margin-bottom: 20px;
}
.sougi_description {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 30px;
}
.price_continer {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sougi_price {
  font-size: 33px;
}
.price_continer a {
  display: block;
  font-size: 18px;
  position: relative;
  padding: 23px 50px 23px 30px;
  width: 300px;
  background-color: #64395F;
  color: #fff;
}
.price_continer a::after {
  content: '';
  width: 8px;
  height: 8px;
  border: 0;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 33px;
  bottom: 0;
  margin: auto;
}
.access {
  padding: 100px 0;
}
.access_ttl {
  margin-bottom: 50px;
}
.access_wrap {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
}
.access_box_wrap {
  display: flex;
  flex-direction: column;
}
.access_box {
  margin-bottom: 40px;
}
.access_box p {
  font-size: 20px;
  font-weight: bold;
  position: relative;
  padding-bottom: 14px;
}
.access_box p::before,
.access_box p::after {
  content: "";
  position: absolute;
  bottom: 0;
  height: 3px;
}
.access_box p::before {
  left: 0;
  width: 15%;
  background: #64395f;
}
.access_box p::after {
  left: 15%;
  width: 85%;
  background: #dfcfa9;
}
.access_box span {
  display: block;
  font-size: 18px;
  line-height: 3;
}
.jikoku_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}
.jikoku_btn {
  display: block;
  font-size: 18px;
  position: relative;
  padding: 23px 50px 23px 30px;
  width: 260px;
  background-color: #64395F;
  color: #fff;
}
.jikoku_btn::after {
  content: '';
  width: 8px;
  height: 8px;
  border: 0;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 33px;
  bottom: 0;
  margin: auto;
}
.access iframe {
  width: 50%;
  height: 400px;
}
/*MAIN END*/
/*MAIN Responsive*/
@media (max-width: 1400px) {
  .main_copy {
    font-size: 22px;
  }
  .badge {
    font-size: 20px;
    left: 5%;
    padding: 13px 24px;
  }
  .sougi_plan_box {
    width: 40vw;
    min-width: 475px;
  }
  .sougi_s_text {
    font-size: 15px;
  }
  .sougi_title {
      font-size: 26px;
  }
  .sougi_description {
    font-size: 16px;
  }
  .price_continer {
    flex-direction: column;
  }
  .price_continer a {
    margin-top: 20px;
    width: 320px;
  }
}
@media (max-width: 1024px) {
  .main_copy {
    font-size: 20px;
    padding: 20px 30px;
    top: 9%;
    left: 8%;
  }
  .greeting_text {
    font-size: 15px;
    width: 70%;
    min-width: 616px;
    padding-top: 70px;
  }
  .greeting_tel {
    height: 180px;
  }
  .greeting_tel_text {
    font-size: 16px;
  }
  .consul_btn_a, .flow_btn_a {
    width: 260px;
    height: 70px;
    font-size: 15px;
  }
  .contents_container {
    padding-bottom: 0;
  }
  .contents {
    min-width: initial;
    width: 100%;
    justify-content: space-evenly;
    padding-top: 20px;
  }
  .contents_box {
    width: 43%;
    min-width: initial;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 40vw;
    min-height: 345px;
  }
  .contents_img {
    height: 28vw;
    min-height: 220px;
  }
  .contents_ttl {
    font-size: 20px;
    padding: 20px 13px;
    left: 5%;
  }
  .contents_detail {
    font-size: 14px;
    line-height: 1.5;
  }
  .contents_btn {
    font-size: 15px;
    max-width: 260px;
    padding: 20px 50px 20px 30px;
  }
  .plan {
    padding: 40px 0 0;
  }
  .ttl {
    font-size: 23px;
  }
  .ttl_text {
    font-size: 14px;
  }
  .sougi_plan_box {
    width: 45%;
    min-width: initial;
    padding: 30px;
    margin-bottom: 70px;
    justify-content: space-between;
  }
  .badge {
    padding: 20px;
  }
  .sougi_plan_box img {
    width: 100%;
  }
  .sougi_s_text {
    font-size: 14px;
  }
  .sougi_title {
    font-size: 25px;
  }
  .sougi_description {
    font-size: 16px;
  }
  .sougi_price {
    font-size: 25px;
  }
  .price_continer a {
    font-size: 16px;
    width: 260px;
    padding: 20px 50px 20px 30px;
  }
  .access {
    padding: 50px 0;
  }
  .access_box p {
    font-size: 18px;
  }
  .access_box span {
    font-size: 16px;
  }
  .access iframe {
    width: 600px;
  }
  .access_box {
    margin-bottom: 40px;
    width: 600px;
  }
}
@media (max-width: 767px) {
  .main_copy {
    font-size: 14px;
    padding: 25px 14px;
    line-height: 1.7;
    top: 6%;
    left: 4%;
  }
  .greeting {
    padding-bottom: 0;
  }
  .greeting_text {
    width: 80%;
    min-width: initial;
    padding: 40px 0;
    font-size: 14px;
  }
  .greeting_tel_text {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .greeting_btn {
    flex-wrap: wrap;
    align-items: center;
  }
  .consul_btn_a, .flow_btn_a {
    width: 85%;
    max-width: 320px;
    font-size: 14px;
    margin: 20px 10px 0 10px;
    height: 60px;
  }
  .contents_container {
    padding: 35px 0;
  }
  .contents {
    padding-bottom: 14px;
    padding-top: 0;
    flex-wrap: wrap;
  }
  .contents_ttl {
    font-size: 16px;
    padding: 13px;
    left: 20px;
  }
  .furigana {
    font-size: 10px;
    right: 3px;
    margin-top: 0px;
  }
  .contents_box {
    margin: 0 10px 50px 10px;
    min-height: initial;
    height: auto;
    width: 85%;
    max-width: 330px;
  }
  .contents_img {
    height: 175px;
    min-height: initial;
  }
  .contents_detail {
    line-height: 1.5;
    margin-bottom: 15px;
  }
  .contents_btn {
    font-size: 14px;
    width: 100%;
    padding: 15px 50px 15px 30px;
    max-width: initial;
  }
  .ttl {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .ttl_en {
    font-size: 12px;
  }
  .ttl_text {
    font-size: 13px;
    text-align: initial;
    width: 79%;
    margin: 0 auto 30px;
  }
  .plan {
    padding: 40px 0 10px;
  }
  .badge {
    padding: 10px 16px;
    font-size: 15px;
  }
  .sougi_plan_box {
    margin-bottom: 50px;
    width: 90%;
    max-width: 330px;
  }
  .sougi_plan_box img {
    margin-bottom: 15px;
  }  
  .price_continer {
    flex-direction: column;
  }
  .price_continer a {
    margin: 15px 0 0 0;
  }
  .sougi_s_text {
    font-size: 13px;
    line-height: 1.3;
  }
  .sougi_title {
    font-size: 20px;
  }
  .sougi_description {
    font-size: 14px;
    margin-bottom: 15px;
  }
  .price_continer a {
    padding: 15px 50px 15px 30px;
    font-size: 14px;
  }
  .access {
    padding: 40px 0 0;
  }
  .access_ttl {
    margin-bottom: 30px;
  }
  .access_box {
    width: 85%;
    margin-bottom: 20px;
  }
  .jikoku_wrap {
    flex-direction: column;
    margin-top: 5px;
  }
  .access_box_wrap {
    align-items: center;
  }
  .access_box p {
    font-size: 15px;
  }
  .access_box span {
    font-size: 14px;
    margin-top: 10px;
     line-height: 1.5;
  }
  .jikoku_btn {
    font-size: 14px;
    margin-top: 12px;
    padding: 15px 50px 15px 30px;
    width: 100%;
    max-width: 320px;
  }
  .access iframe {
    height: 270px;
  }
}
 /*事前相談（無料）について*/ 
.page_title_inner {
position: relative;
}
.page_title {
  font-size: 28px;
  writing-mode: vertical-rl;
  padding: 50px 200px;
  background-color: #edeee9f4;
  position: absolute;
  top: 50px;
  left: 5%;
  height: 430px;
  text-align: center;
}
.title_img {
  width: 80%;
  margin: 0 0 0 auto;
  display: block;
} 
.title_img {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 600px;
}
.consul_title_img {
  background-image: url(../images/consultation_img.jpg);
}
.consul_text {
  text-align: center;
  font-size: 30px;
  margin: 0 auto 30px;
}
.inner {
  padding: 70px 0 0;
}
.consultation_inner {
  padding-bottom: 0;
}
.message {
  font-size: 18px;
  width: 907px;
  display: block;
  margin: 0 auto 60px;
  line-height: 2;
  white-space: pre-line;
}
.merit_container {
  background-color: #edeee9;
  padding: 100px 0;
}
.merit_box {
  width: 907px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.merit_list_item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 18px;
  line-height: 2;
}
.square {
  width: 18px;
  height: 18px;
  background-color: #64395F;
  flex-shrink: 0;
  margin-top: 0.5em;
}
.merit_text {
  font-size: 20px;
  color: #fff;
  background-color: #64395F;
  line-height: 2;;
  width: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.merit__text {
  font-size: 18px;
  line-height: 2;
  width: 735px;
  margin: 70px auto 0;
}
.sp_br {
  display: none;
}
@media (max-width: 1024px) {
  .title_img {
    height: 300px;
  }
  .page_title {
    font-size: 19px;
    padding: 0px 85px;
    top: 28px;
    height: 244px;
  }
  .consul_text {
    font-size: 26px;
    margin-top: 0;
  }
  .message {
    width: 85%;
    max-width: 710px;
    font-size: 16px;
  }
  .inner {
    padding: 60px 0 0;
  }
  .merit_container {
    padding: 80px 0;
  }
  .merit_list {
    width: 480px;
  }
  .merit_list_item {
    font-size: 16px;
    line-height: 1.8;
  }
  .square {
    width: 15px;
    height: 15px;
    margin-top: 0.4em;
  }
  .merit_box {
    width: 88%;
    max-width: 710px;
  }
  .merit_text {
    font-size: 18px;
    height: 165px;
    width: 165px;
  }
  .merit__text {
    font-size: 16px;
    max-width: initial;
    width: 655px;
    margin: 40px auto 0;
  }
}
@media (max-width: 767px) {
   .inner {
      padding: 30px 0 0;
  }
  .title_img {
    height: 165px;
    width: 100%;
  }
  .page_title {
    padding: 16px 25px 23px;
    top: 10px;
    height: 149px;
    line-height: 1.8;
    text-align: center;
    font-size: 16px;
    top: 7px;
    left: 5%;
  }
  .message {
    width: 86%;
    max-width: initial;
    margin-bottom: 40px;
    line-height: 1.6;
  }
  .consul_text {
    width: 80%;
    font-size: 20px;
    line-height: 1.6;
    margin-top: 35px;
    margin-bottom: 25px;
  }
  .merit_box {
    width: 100%;
    flex-direction: column;
    align-items: center;
  }
  .merit_text {
    margin-bottom: 20px;
  }
  .merit_list_item {
    font-size: 14px;
  }
  .merit_container {
    padding-top: 35px;
  }
  .merit_list {
        width: 90%;
  }
  .merit__text {
    font-size: 14px;
    width: 90%;
  }
}
/*葬儀の流れ*/
.flow_title_img {
  background-image: url(../images/flow_img.jpg);
}
.flow_illust_container {
  padding-top: 80px;
}
.flow_wrap {
  background-color: #edeee9;
  padding: 50px 0;
}
.flow__text {
  font-size: 20px;
  text-align: center;
  margin-bottom: 50px;
}
.flow_box {
  display: flex;
  width: 65%;
  min-width: 930px;
  max-width: 1020px;
  margin: 0 auto;
  align-items: center;
  padding: 25px 50px 20px 75px;
  background-color: #fff;
  position: relative;
  margin-bottom: 50px;
}
.illust_number {
  font-size: 28px;
  color: #fff;
  background-color: #64395f;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -35px;
}
.illust_box {
  width: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 70px;
}
.illust {
  width: 100%;
  height: auto;
}
.illust_box span {
  font-size: 22px;
}
.illust_text_box {
  width: calc(100% - 250px);
}
.illust_text_box p {
  font-size: 18px;
  line-height: 1.8;
}
.illust_text_box span {
  font-size: 16px;
  display: block;
  line-height: 2;
}
.end_text {
  font-size: 1.6rem;
  text-align: center;
}
@media (max-width: 1024px) {
  .illust_box {
    width: 160px;
    margin-right: 50px;
  }
  .illust_box span {
  font-size: 20px;
  }
  .illust_number {
    font-size: 22px;
    width: 50px;
    height: 50px;
    left: -25px;
  }
  .illust_text_box {
    width: calc(100% - 210px);
  }
  .illust_text_box p {
    font-size: 16px;
  }
  .illust_text_box span {
    font-size: 14px;
  }
  .flow_box {
    width: 80%;
    min-width: initial;
    padding-right: 40px;
  }
  .flow__text {
    font-size: 19px;
  }
}
@media (max-width: 767px) {
  .sp_br {
    display: block;
  }
  .flow_illust_container {
    padding-top: 0;
  }
  .flow__text {
    font-size: 16px;
    line-height: 1.6;
    width: 82%;
    margin: 0 auto 50px;
  }
  .flow_box {
    width: 90%;
    min-width: initial;
    padding-right: 40px;
    flex-direction: column;
    padding: 20px;
  }
  .illust {
    width: 90%;
  }
  .illust_box {
    width: 150px;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .illust_box span {
    white-space: nowrap;
  }
  .illust_text_box {
    width: 100%;
  }
  .illust_number {
    font-size: 22px;
    width: 50px;
    height: 50px;
    left: 8px;
    top: -10px;
    transform: initial;
  }
  .illust_text_box p {
    font-size: 14px;
    line-height: 1.6;
  }
  .illust_text_box span {
    font-size: 13px;
    line-height: 1.5;
  }
  .end_text {
    font-size: 13px;
    width: 80%;
    margin: 0 auto;
    line-height: 1.5;
  }
  .margin_t {
    margin-top: 20px;
  }
  .flow_wrap {
    padding: 30px 0;
  }
}
/*祭壇コース*/
.plan_title_img {
  background-image: url(../images/plan_img.jpg);
}
.plan_inner {
  padding-top: 50px;
}
.plan___text {
  font-size: 16px;
  text-align: center;
  margin-bottom: 15px;
}
.tab_btn {
  font-size: 25px;
  display: inline-block;
  padding: 20px 100px 20px 60px;
  margin-bottom: -1px;
  cursor: pointer;
  position: relative;
}
.tab_btn::after {
  content: '';
  width: 8px;
  height: 8px;
  border: 0;
  border-top: solid 2px #432;
  border-right: solid 2px #432;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 50px;
  bottom: 0;
  margin: auto;
}
.tab_sougi {
  background-color: #f5f1e1;
}
.tab_shindo {
  background-color: #e8e4dc;
}
.tab_menu {
  display: flex;
  justify-content: center;
}
.tab_content {
  display: none;
}
.tab_content.active {
  display: block;
  animation: fadeIn .4s ease;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
#sougi {
  background-color: #f5f1e1;
  padding: 70px 0;
}
#shindo {
  background-color: #e8e4dc;
  padding: 70px 0;
}
.sougi__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 1200px;
  margin: 0 auto 70px;
  padding: 50px 0;
  background-color: #fff;
}
.sougi__box_title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
}
.sougi__title {
  font-size: 45px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  color: #64395F;
}
.course_label{
  display:inline-block;
  padding:6px 90px;
  color:#fff;
  letter-spacing:.2em;
  margin-bottom: 5px;
  background-color: #64395f;
}
.sub_title {
  font-size: 20px;
  display: block;
  margin-bottom: 10px;
}
.yen {
  font-size: 32px;
  font-weight: bold;
  padding-top: 4px;
  margin-left: 3px;
}
.sougi__price {
  font-size: 40px;
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}
.yen_b {
  font-size: 30px;
  font-weight: bold;
  padding-top: 4px;
  margin-left: 3px;
}
.tax {
  font-size: 25px;
  margin-left: 6px;
  padding-top: 6px;
}
.saidan__price {
  font-size: 35px;
  display: block;
  display: flex;
  align-items: center;
}
.yen_s {
  font-size: 30px;
  font-weight: bold;
  padding-top: 3px;
  margin-left: 3px;
}
.sougi_img_box {
  margin-bottom: 50px;
  display: flex;
}
.sougi_img_box img {
  width: 550px;
  margin: 10px;
}
.hitugi_wrap {
  width: 800px;
  margin-bottom: 30px;
}
.hitugi_box {
  display: flex;
  justify-content: space-around;
  margin-top: 25px;
}
.hitugi_ttl,.detail_ttl {
  font-size: 20px;
  font-weight: bold;
  color: #64395F;
  line-height: 2;
}
.line {
  width: 100%;
  height: 1px;
  background: repeating-linear-gradient(
    to right,
    #b1b1b1 0,
    #b1b1b1 3px,
    transparent 3px,
    transparent 8px
  );
}
.hitugi_item {
  font-size: 18px;
  letter-spacing: 0.2em;
  text-align: center;
}
.shishu,.chokoku {
  width: 330px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.plan_detail_wrap {
  width: 800px;
}
.plan_included {
  margin-bottom: 35px;
}
.plan_list {
  width: 760px;
  margin: 0 0 0 auto;
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px 60px;
  margin-top: 25px;
}
.plan_list li {
  position: relative;
  padding-left: 1em;
  font-size: 16px;
}
.plan_list li::before {
  content: "•";
  position: absolute;
  left: 0;
}
.saidanryo {
  font-size: 25px;
  margin-right: 10px;
}
.miyabi,.nagomi {
  position: relative;
}
.miyabi .style_tag{
  background:#ad6aa5;
}

.nagomi .style_tag{
  background:#e7b961;
}
.miyabi .style_tag, .nagomi .style_tag {
  position: absolute;
  top: 0px;
  left: 25px;
}
.style_tag {
  font-size: 20px;
  color: #fff;
  display: inline-block;
  background-color: #64395F;
  padding: 15px 20px;
}
#shindo .sougi__box {
  width: 1000px;
}
.saidanrei_container {
  margin-top: 100px;
}
.saidanrei_container h2 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: bold;
  color: #ad6aa5;
}
.saidanrei_container .message {
  text-align: center;
}
.saidanrei_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  list-style: none;
  padding: 0;
  width: 90%;
  margin: 0 auto 70px;
}
.saidanrei_list img {
  width: 100%;
  display: block;
}
@media (max-width: 1400px) {
  .sougi__box {
    width: 1000px;
  }
  .sougi_img_box img {
      width: 450px;
  }
}
@media (max-width: 1024px) {
  .sougi__title {
    font-size: 38px;
    margin-bottom: 5px;
  }
  .sougi__box_title {
    margin-bottom: 20px;
  }
  .course_label {
    padding: 6px 75px;
  }
  .yen {
    font-size: 28px;
  }
  .yen_b {
    font-size: 27px;
  }
  .tax {
    font-size: 20px;
    padding-top: 5px;
  }
  .yen_s {
  font-size: 25px;
  }
  .sub_title {
    font-size: 15px;
    margin-bottom: 5px;
  }
  .plan___text {
    font-size: 14px;
  }
  .tab_btn {
    font-size: 18px;
  }
  .sougi__box {
    width: 90%;
    max-width: 800px;
    padding: 30px 0;
  }
  .sougi__price {
    font-size: 35px;
  }
  .saidanryo {
    font-size: 17px;
  }
  .saidan__price {
    font-size: 30px;
  }
  .style_tag {
    font-size: 14px;
    padding: 10px 20px;
  }
  .miyabi .style_tag, .nagomi .style_tag {
    top: -10px;
    left: 10px;
  }
  .hitugi_wrap {
    width: 80%;
  }
  .shishu, .chokoku {
    width: 250px;
  }
  .plan_img_wrap {
    width: 47%;
  }
  .sougi_img_box {
    width: 90%;
    justify-content: space-between;
    margin-bottom: 40px;
  }
  .sougi_img_box img {
    width: 100%;
    margin: 0;
  }
  .hitugi_item {
      font-size: 14px;
  }
  .plan_detail_wrap {
      width: 80%;
  }
  .plan_included {
    margin-bottom: 30px;
  }
  .plan_list {
    width: 100%;
  }
  .plan_list li {
    font-size: 14px;
  }
  #shindo .sougi_img_box {
    justify-content: center;
  }
  #shindo .sougi__box {
    width: 90%;
    margin: 0 auto 70px;
  }
  .saidanrei_container {
    margin-top: 40px;
  }
  .saidanrei_container h2 {
    font-size: 25px;
  }
  .saidanrei_container .message {
    width: 87%;
    margin-bottom: 30px;
  }
  .saidanrei_list {
    margin-bottom: 40px;
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .tab_btn {
    font-size: 16px;
    padding: 20px 75px 20px 40px;
  }
  .tab_btn::after {
    right: 30px;
  }
  .plan_inner {
    padding-top: 25px;
  }
  .sougi__box {
    width: 92%;
    padding: 25px 0;
  }
  .course_label {
    padding: 6px 75px;
  }
  .yen {
    font-size: 20px;
  }
  .sougi__title {
    font-size: 28px;
  }
  .sub_title {
    font-size: 13px;
  }
  .sougi__price {
    font-size: 25px;
  }
   .yen_b {
    font-size: 20px;
  }
  .tax {
    font-size: 16px;
  }
  .yen_s {
    font-size: 18px;
  }
  .saidan__price {
    font-size: 25px;
  }
  .saidanryo {
    font-size: 14px;
  }
  .sougi_img_box {
    flex-direction: column;
    align-items: center;
  }
  .plan_img_wrap {
    width: 100%;
    max-width: 350px;
  }
  .miyabi {
    margin-bottom: 30px;
  }
  .hitugi_wrap {
    width: 90%;
  }
  .hitugi_ttl, .detail_ttl {
    font-size: 17px;
  }
  .hitugi_box {
    flex-wrap: wrap;
    align-items: center;
    margin-top: 15px;
  }
   .shishu, .chokoku {
    width: 230px;
  }
  .plan_detail_wrap {
    width: 90%;
  }
  .plan_list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 2rem;
    margin-top: 12px;
  }
  #sougi {
    padding-bottom: 10px;
  }
  .saidanrei_list {
    grid-template-columns: 1fr;
  }
  .saidanrei_container h2 {
    font-size: 22px;
  }
}
/*施設概要*/
.facilities_title_img {
  background-image: url(../images/facility_img1.jpg);
}
.sikijou_wrap {
  width: 1180px;
  margin: 0 auto;
  margin-bottom: 70px;
}
.facilities_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 1180px;
  margin: 0 auto;
  margin-bottom: 70px;
}
.facilitybox {
  width: 500px;
  margin-bottom: 70px;
  display: flex;
  flex-direction: column;
}
.facilitybox img {
  width: 100%;
  height: auto;
  display: block;
}
.facility_text {
  font-size: 18px;
  line-height: 1.5;
  margin: 15px 0;
  flex-grow: 1;
}
.img_wrap {
  display: flex;
  justify-content: space-between;
}
.facilitytag {
  width: 200px;
  text-align: center;
  color: #fff;
  font-size: 18px;
  padding: 20px 20px;
  display: block;
  background-color: #64395F;
}
.mitorizu {
  width: 100%;
  height: auto;
}
.mitorizu_wrap {
  width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.mitorizubox,.gaikanbox {
  display: flex;
  flex-direction: column;
}
.mitorizubox {
  width: 600px;
}
.gaikanbox {
  width: 600px;
}
.gaikan {
  margin-top: 40px;
}
@media (max-width: 1400px) {
  .sikijou_wrap {
    width: 100%;
    max-width: 1000px;
  }
  .facilities_wrap {
    width: 100%;
    max-width: 1000px;
  }
  .mitorizu_wrap {
    width: 85%;
    flex-wrap: wrap;
    justify-content: center;
  }
  .facilitybox {
  width: 460px;
  }
  .img_wrap img {
    width: 460px;
    height: auto;
  }
  .mitorizubox {
    margin-bottom: 50px;
  }
}
@media (max-width: 1024px) {
  .sikijou_wrap {
    max-width: 850px;
    width: 93%;
  }
  .facilities_wrap {
    max-width: 850px;
    width: 93%;
  }
  .img_wrap img {
    width: 350px;
  }
  .facilitybox {
    width: 350px;
  }
  .facilitytag {
    font-size: 16px;
    padding: 15px;
  }
  .mitorizubox,.gaikanbox {
    width: 500px;
  }
  .gaikan {
    margin-top: 20px;
  }
  .facility_text {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .facilities_container .inner {
    padding: 30px 0 30px;
  }
  .img_wrap {
    flex-direction: column;
  }
  .img_wrap img {
    width: 100%;
    margin-bottom: 25px;
  }
  .facilitytag {
    font-size: 14px;
    width: 100%;
  }
  .message {
    line-height: 1.7;
    font-size: 14px;
  }
  .facility_text {
    font-size: 14px;
    margin: 5px 0 10px;
  }
  .sikijou_wrap {
    width: 90%;
    max-width: 500px;
    margin-bottom: 10px;
  }
  .facilities_wrap {
    width: 90%;
    max-width: 500px;
    bottom: 10px;
  }
  .facilitybox {
    width: 100%;
    margin-bottom: 40px;
  }
  .mitorizu_wrap {
    width: 90%;
  }
}
/*みやび友の会*/
.membership_title_img {
  background-image: url(../images/membership_img.jpg);
}
.tomonokai {
  font-size: 37px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 15px;
}
.membership_price {
  font-size: 35px;
  text-align: center;
  margin-bottom: 60px;
}
.membership_inner .merit_box {
  width: 545px;
}
.membership_text {
  font-size: 18px;
  line-height: 2;
  width: 800px;
  margin: 40px auto 60px;
}
/*法要のご案内*/
.hoyo_title_img {
  background-image: url(../images/hoyo_img.jpg);
}
.memorial_detail {
  width: 290px;
  margin: 0 auto;
  line-height: 2;
  font-size: 20px;
  margin-bottom: 70px;
}
.benefits_text {
  margin: 18px 0;
  font-size: 18px;
  display: block;
}
.memorial_inner .membership_price {
  margin-bottom: 20px;
}
.memorial_inner .merit_box {
  width: 560px;
  margin-bottom: 70px;
  align-items: center;
}
.memorial_inner .merit_box .merit_list li .merit_list_item {
  font-size: 20px;
}
@media (max-width: 1024px) {
  .membership_inner .merit_list {
    width: 280px;
  }
  .membership_inner .merit_box {
    max-width: 500px;
  }
  .membership_inner .merit_text,
  .memorial_inner .merit_text {
    width: 150px;
    height: 150px;
  }
  .membership_text {
    width: 80%;
  }
  .tomonokai {
    font-size: 32px;
  }
  .membership_price {
    font-size: 30px;
  }
  .memorial_detail {
    width: 285px;
  }
  .memorial_inner .merit_box .merit_list {
    width: 330px;
  }
  .memorial_inner .merit_box {
   width: 545px;
  }
}
@media (max-width: 767px) {
  .tomonokai {
    font-size: 25px;
  }
  .membership_price {
    font-size: 23px;
    margin-bottom: 30px;
  }
  .membership_inner .merit_box {
    width: 90%;
  }
  .membership_inner .merit_list {
    width: 260px;
  }
  .membership_text {
    width: 86%;
  }
  .membership_text {
    font-size: 14px;
    line-height: 1.7;
  }
  .membership_inner .merit_box .merit_text,
  .memorial_inner .merit_box .merit_text {
    font-size: 17px;
    width: 130px;
    height: 130px;
  }
  .memorial_detail {
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 45px;
    width: 230px;
  }
  .memorial_inner .merit_box .merit_text {
    margin-bottom: 7px;
  }
  .memorial_inner .merit_box {
    width: 90%;
    margin-bottom: 30px;
  }
  .memorial_inner .merit_box .merit_list {
    width: 258px;
    text-align: center;
  }
  .benefits_text {
    font-size: 14px;
  }
  .memorial_inner .merit_box .merit_list li .merit_list_item {
    font-size: 16px;
  }
}
/*各種お供えもの*/
.offerings_title_img {
  background-image: url(../images/offerings_img.jpg);
}
.offerings_wrap {
  display: flex;
  justify-content: center;
}
.background_color {
  background-color: #f3f3f3;
  width: 90%;
  margin: 0 auto;
  min-width: 1350px;
  margin-bottom: 70px;
}
.seika,.morikago,.hanawa,.baburuto,.rengeto {
  position: relative;
}
.seika {
  padding: 160px 0 80px;
}
.offerings_box {
  width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.offerings_box img {
  height: auto;
}
.seika .offerings_box img {
  width: 90%;
}
.morikago .offerings_box img {
  width: 80%;
  margin-bottom: 20px;
}
.hanawa img {
  width: 100%;
  flex: 1;
  object-fit: contain;
}
.rengeto .offerings_box img {
  width: 80%;
}
.baburuto img {
  width: 92%;
  flex: 1;
  object-fit: contain;
}
.offerings_name {
  font-size: 20px;
  margin-bottom: 10px;
  white-space: nowrap;
}
.offerings_price {
  font-size: 20px;
  display: flex;
  align-items: center;
}
.offerings_price span {
  font-size: 18px;
}
.offerings_item {
  color: #fff;
  background-color: #64395f;
  width: 100px;
  height: 100px;
  font-size: 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
}
.offerings_item1,
.offerings_item2 {
  top: 65px;
  left: 0;
}
.seika2,.seika3,.seika4 {
  margin-left: 30px;
}
.wrap_flex {
  display: flex;
  flex-wrap: wrap;
}
._seika {
  width: 80%;
  margin: 0 auto;
  min-width: 1300px;
   justify-content: center;
}
._notseika {
  width: 1145px;
  margin: 0 auto;
  justify-content: space-between;
}
.morikago,.hanawa {
  padding: 160px 2vw 100px;
}
.baburuto,.rengeto {
  padding: 160px 1vw 100px;
}
.offerings_span {
  font-size: 14px;
  padding-bottom: 50px;
  text-align: center;
  display: block;
}
.fax_num {
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  margin: 20px 0 30px;
}
.download_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 18px 40px;
  background: #64395F;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: .3s;
  font-size: 16px;
  width: 324px;
  height: 74px;
}
.download_btn:hover {
  opacity: .85;
}
.pdf_icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  font-size: 15px;
  font-weight: bold;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
}
.order {
  font-size: 28px;
  text-align: center;
  font-weight: bold;
  margin-bottom: 20px;
}
.order_text {
  width: 880px;
  margin: 0 auto;
  font-size: 18px;
  display: block;
  line-height: 1.8;
}
.order_btn_wrap {
  width: 730px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  margin: 0 auto 70px;
}
@media (max-width: 1400px) {
  .background_color {
    width: 100%;
    min-width: initial;
  }
  .offerings_box {
    width: 220px;
  }
  .wrap_flex {
    width: 100%;
    min-width: initial;
  }
  ._notseika {
    width: 900px;
  }
  .background_color {
    margin-bottom: 0;
  }
}
@media (max-width: 1023px) {
  .wrap_flex {
    width: 90%;
    max-width: 745px;
    margin: 0 auto;
  }
  .seika {
    width: 100%;
    justify-content: space-evenly;
    padding: 100px 0 0px;
  }
  ._seika_ {
    padding-top: 40px;
  }
  .offerings_item {
    width: 80px;
    height: 80px;
    font-size: 16px;
  }
  .offerings_item1 {
    top: 30px;
    left: 30px;
  }
  .offerings_name {
    font-size: 16px;
  }
  .offerings_price {
    font-size: 18px;
  }
  .seika2, .seika3, .seika4 {
    margin-left: 0;
  }
  .order {
    font-size: 23px;
  }
  .order_text {
    width: 85%;
    font-size: 16px;
  }
  .morikago,.hanawa {
    padding-bottom: 10px;
  }
  .hanawa .offerings_box img {
    margin-bottom: 0;
  }
  .offerings_item2 {
    top: 80px;
  }
  .aburuto .rengeto {
    padding-bottom: 40px;
  }
  .offerings_span {
    padding-bottom: 25px;
  }
  .morikago .offerings_box img, .hanawa img,
.baburuto img, .rengeto .offerings_box img {
    width: 75%;
  }
  .fax_num {
    font-size: 25px;
    margin: 25px 0;
  }
  .order_btn_wrap {
    width: 90%;
    max-width: 730px;
  }
}
@media (max-width: 767px) {
  .offerings_container .page_title {
    padding: 0px 25px 0px;
  }
  .baburuto {
    padding-bottom: 10px;
  }
  .offerings_box {
    width: 50%;
  }
  .offerings_name {
    font-size: 14px;
    margin-bottom: 5px;
  }
  .offerings_price {
    font-size: 14px;
  }
  .offerings_item {
    width: 60px;
    height: 60px;
    font-size: 14px;
  }
  .offerings_item1,.offerings_item2 { 
    left: 15px;
    }
    .offerings_item2 {
    top: 50px;
  }
  .seika .offerings_box img {
    width: 70%;
  }
  .morikago,.hanawa,.rengeto,.baburuto {
    padding-top: 115px;
  }
  .morikago .offerings_box img, .hanawa img, .baburuto img, .rengeto .offerings_box img {
    width: 68%;
  }
  .offerings_span {
    font-size: 12px;
    width: 90%;
    margin: 0 auto;
    line-height: 1.5;
    text-align: initial;
  }
  .fax_num {
    font-size: 23px;
  }
  .order {
    font-size: 20px;
  } 
  .order_text {
    width: 90%;
    font-size: 14px;
  }
  .order_btn_wrap {
    flex-direction: column;
    width: 100%;
    align-items: center;
    margin: 30px auto;
  }
  .pdf_icon {
    font-size: 13px;
  }
  .download_btn {
    font-size: 14px;
    padding: 0 40px;
    width: 90%;
    max-width: 320px;
    height: 60px;
    margin-bottom: 25px;
  } 
}
/*ご宿泊について*/
.stay_title_img {
  background-image: url(../images/stay_img.jpg);
}
.stay_wrap {
  width: 90%;
  min-width: 1020px;
  margin: 0 auto 60px;
}
.stay__wrap {
  width: 40%;
  max-width: 550px;
}
.hotel_wrap {
  width: 40%;
  max-width: 600px;
}
.hotel_wrap img {
  width: 100%;
  margin-bottom: 20px;
}
.hotel_wrap iframe {
  width: 100%;
}
p.stay_hotel {
  font-size: 28px;
}
span.stay_span {
  line-height: 2;
  margin-top: 20px;
}
span._access_bus {
  line-height: 1.8;
} 
@media (max-width: 1024px) {
  .stay_wrap {
    min-width: initial;
    width: 100%;
  }
  .stay_wrap .access_box {
    width: 100%;
    margin: 0 auto 30px;
  }
  .stay__wrap {
    max-width: initial;
    width: 350px;
  }
  .hotel_wrap {
    max-width: 350px;
    width: 38%;
  }
  p.stay_hotel {
    font-size: 20px;
  }
  span.stay_span {
    line-height: 2;
    margin-top: 16px;
  }
  span._access_bus {
    line-height: 1.8;
    font-size: 15px;
  }
}
@media (max-width: 767px) {
  .page_title {
    padding: 0 25px 0;
  }
    p.stay_hotel {
    font-size: 16px;
  }
  span.stay_span {
    line-height: 1.6;
  }
  .stay__wrap, .hotel_wrap {
    width: 86%;
    max-width: 450px;
  }
  .hotel_wrap iframe {
    height: 190px;
  }
  span._access_bus {
    line-height: 1.6;
    font-size: 13px;
  }
}
/*湯灌の儀*/
.yukan_title_img {
  background-image: url(../images/flow_img.jpg);
}
.yukan_inner {
  padding: 70px 0 20px;
}
.yukan_ttl {
  font-size: 23px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
}
.yukan_flow_ttl {
  font-size: 30px;
  text-align: center;
  margin-bottom: 50px;
  color: #b66cad;
  font-weight: bold;
}
.yukan_box {
  width: 330px;
  height: auto;
  display: flex;
  flex-direction: column;
  position: relative;
  margin-right: 100px;
  margin-bottom: 50px;
  align-items: center;
}
.yukan__ttl {
  font-size: 28px;
  display: inline-flex;
  align-items: center;
  gap: 0.1em;
  width: 70%;
  margin: 0 auto;
  letter-spacing: 0.2em;
  color: #b66cad;
  font-weight: bold;
}
.yukan__ttl ._big {
  font-size: 1.5em;
  line-height: 1;
  margin-right: 10px;
}
.yukan_desc {
  width: 70%;
  margin: 5px auto 20px;
  font-size: 16px;
  line-height: 1.5;
}
.yukan1 {
  justify-content: center;
}
.yukan_box::after {
  content: "";
  position: absolute;
  right: -45px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 20px solid #b66cad;
}
.yukan_wrap {
  display: flex;
  flex-wrap: wrap;
  width: 80%;
  min-width: 1350px;
  margin: 0 auto;
  justify-content: center;
  padding-left: 50px;
}
.yukan9::after,.yukan8::after {
  content: initial;
}
.yukan7 .yukan__ttl,.yukan8 .yukan__ttl {
  letter-spacing: 0;
}
.yukan9 .yukan_desc {
  margin: 10px auto;
}
.yukan9 img {
  margin-bottom: 10px;
}
.yukan_container p.message {
  width: 850px;
}
.noukan_flow_list {
  display: flex;
  flex-wrap: wrap;
  width: 840px;
}
.noukan_item {
  font-size: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 230px;
  border: 1px solid #b66cad;
  padding: 20px 0;
  margin-right: 50px;
  margin-bottom: 50px;
  border-radius: 35px;
  position: relative;
}
.noukan__item {
  font-size: 16px;
}
.noukan_inner {
  width: 80%;
  margin: 50px auto 100px;
}
.noukan_flow_wrap {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-wrap: wrap;
}
.noukan_flow_wrap img {
  width: 400px;
  height: auto;
  margin-bottom: 25px;
}
.noukan_flow_wrap {
  margin-right: 45px;
  justify-content: center;
}
.noukan_item::after {
  content: "";
  position: absolute;
  right: -39px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #b66cad;
}
.last::after {
  content: initial;
}
.body_preservation {
  margin-bottom: 70px;
}
.body_preservation_list {
  width: 870px;
  margin: 0 auto;
}
.body_preservation_item {
  font-size: 22px;
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
}
.body_preservation__item {
  font-size: 16px;
  margin-left: 40px;
  line-height: 2.5;
}
.num {
  color: #fff;
  width: 30px;
  height: 30px;
  text-align: center;
  background-color: #64395F;
  display: inline-block;
  line-height: 1.4;
  margin-right: 10px;
}
@media (max-width: 1400px) {
  .yukan_box {
    width: 280px;
    margin-right: 50px;
  }
  .yukan_wrap {
    padding-left: 25px;
    min-width: initial;
    width: 100%;
  }
  .yukan__ttl {
    font-size: 25px;
  }
  .yukan__ttl ._big {
    font-size: 1.3em;
  }
  .yukan_box::after {
    right: -20px;
  }
  .noukan_flow_wrap {
    flex-direction: column;
  }
}
@media (max-width: 1024px) {
  .yukan_inner {
    padding-bottom: 0;
  }
  .yukan_flow_ttl {
    font-size: 25px;
    margin-bottom: 20px;
  }
  .yukan_ttl {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .yukan_container p.message {
    width: 80%;
    line-height: 1.6;
  }
  .yukan_wrap {
    padding-left: 0;
    max-width: 960px;
  }
  .yukan_box {
    width: 235px;
    margin-right: 7px;
  }
  .yukan_box img {
    width: 85%;
  }
  .yukan_desc {
    font-size: 14px;
  }
  .yukan_box::after {
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #b66cad;
    right: 6px;
    top: 53%;
    transform: initial;
  }
  .noukan_inner {
    width: 100%;
  }
  .noukan_flow_wrap img {
    width: 320px;
  }
  .noukan_flow_list {
    width: 100%;
    max-width: 800px;
    justify-content: center;
  }
  .noukan_item {
    width: 200px;
    font-size: 17px;
    margin-right: 40px;
  }
  .noukan__item {
    font-size: 14px;
  }
  .noukan_flow_wrap {
    margin-right: 0;
  }
  .noukan_item::after {
    right: -30px;
  }
  .body_preservation_list {
    width: 80%;
    max-width: 690px;
  }
  .body_preservation_item {
    font-size: 20px;
  }
  .body_preservation__item {
    font-size: 14px;
    line-height: 1.5;
  }
  .num {
    width: 28px;
    height: 28px;
  }
}
@media (max-width: 767px) {
  .yukan_inner {
    padding-top: 35px;
  }
  .yukan_flow_ttl {
    font-size: 20px;
  }
  .yukan_ttl {
    font-size: 17px;
  }
  .yukan_wrap {
    margin-bottom: 30px;
  }
  .yukan_box {
    width: 95%;
    align-items: center;
  }
  .yukan_box img {
    width: 45%;
  }
  .yukan_box::after {
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 10px solid #b66cad;
    right: 50%;
    transform: translateX(50%);
    top: initial;
    bottom: -20px;
  }
  .yukan__ttl {
    font-size: 20px;
    width: 80%;
  }
  .yukan_desc {
    width: 80%;
  }
  .yukan_box {
    margin-bottom: 30px;
  }
  .noukan_inner {
    margin-bottom: 35px;
  }
  .noukan_item {
    width: 80%;
  }
  .noukan_item::after{
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 10px solid #b66cad;
    right: 50%;
    transform: translateX(50%);
    top: initial;
    bottom: -30px;
  }
  .noukan_flow_wrap img {
    width: 260px;
   }
   .noukan_item {
    margin-right: 0;
    padding: 10px 0;
    margin-bottom: 30px;
   }
  .yukan_container p.message {
    width: 85%;
  }
  .noukan_inner {
    margin-top: 0;
  }
  .body_preservation_item {
    font-size: 18px;
  }
  .num {
    width: 26px;
    height: 26px;
  }
  .body_preservation {
    margin-bottom: 40px;
  }
}
/*プライバシーポリシー*/
.privacy_title_img {
  background-image: url(../images/privacy_img.jpg);
}
.privacy_inner {
  max-width: 890px;
  margin: 0 auto;
}
.privacy_ttl {
  font-size: 32px;
  text-align: center;
  margin-bottom: 40px;
}
.privacy_box {
  margin-bottom: 40px;
}
.privacy_box h3 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #64395F;
}
.privacy_box p,
.privacy_box li {
  font-size: 16px;
  line-height: 2;
}
.privacy_box ul {
  padding-left: 1.5em;
  list-style: disc;
}
@media (max-width: 1024px) {
  .privacy_inner {
    width: 80%;
  }
}
@media (max-width: 767px) {
  .privacy_inner {
    width: 100%;
  }
  .privacy_ttl {
    font-size: 20px;
    margin-bottom: 0;
  }
  .privacy_box h3 {
    font-size: 18px;
  }
  .privacy_box {
    width: 86%;
    margin: 0 auto 30px;
  }
  .privacy_box p, .privacy_box li {
    font-size: 14px;
    line-height: 1.8;
  }
}