@charset "UTF-8";
/* body {
  font-size: 16px;
  line-height: 1.7;
  background: #FFFFFF;
  font-family: "Hiragino Mincho Pro W3", "Hiragino Mincho Pro", "游明朝", "Yu Mincho", "MS P明朝", "Noto Serif JP", serif;
  color: #3C3C3C;
} */

html {
  font-size: 100%;
}
@media screen and (max-width: 1200px) {
  html {
    font-size: 90%;
  }
}
@media screen and (max-width: 900px) {
  html {
    font-size: 80%;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 4.102vw;
  }
}

a {
  cursor: pointer;
}

.header {
  width: 100%;
  z-index: 9999;
  background: #FFFFFF;
  top: 0;
}

.header_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-left: auto;
  margin-right: auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 16px;
  padding-bottom: 16px;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1240px) {
  .header_inner {
    padding-left: 1.87rem;
    padding-right: 1.87rem;
  }
}
@media screen and (max-width: 768px) {
  .header_inner {
    margin-left: auto;
    margin-right: auto;
    padding-top: 16px;
    padding-bottom: 16px;
    padding-left: 16px;
    padding-right: 16px;
  }
}

.header_logo img {
  width: 15.75rem;
  display: block;
}
@media screen and (max-width: 768px) {
  .header_logo img {
    width: 10.3rem;
  }
}

.header_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
}
@media screen and (max-width: 1200px) {
  .header_nav {
    gap: 15px;
  }
}
@media screen and (max-width: 1000px) {
  .header_nav {
    gap: 10px;
  }
}
@media screen and (max-width: 768px) {
  .header_nav {
    display: none;
  }
}

.header_nav-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .header_nav-sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1rem;
  }
}

.header_link {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: 0.875rem;
  line-height: 200%;
}
.header_link:hover, .header_link:focus {
  opacity: 0.7;
}

.header_link_contact {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: 0.875rem;
  line-height: 200%;
  border: 1px solid #C8AF5C;
  width: 12.5rem;
  height: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 80px;
}
.fv {
  position: relative;
  height: 45.5rem;
}
@media screen and (max-width: 1300px) {
  .fv {
    height: 41.5rem;
  }
}
@media screen and (max-width: 1070px) {
  .fv {
    height: 38.5rem;
  }
}
@media screen and (max-width: 1000px) {
  .fv {
    height: 34.5rem;
  }
}
@media screen and (max-width: 799px) {
  .fv {
    height: 40rem;
    width: 100%; /* 追加：親の幅を確実に固定 */
  overflow: hidden;
  }
}
.fv-video {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.fv-video video {
  -webkit-transition: opacity 1.5s ease;
  transition: opacity 1.5s ease; /* フェードアウトにかける時間 */
}
@media screen and (max-width: 799px) {
  .fv-video video {
    -o-object-fit: cover;
       object-fit: cover;
    height: 100%;
    width: 100%; /* 100vw から 100% に変更してはみ出しを防ぐ */
    max-height: 40rem;
    overflow: hidden;
  }
}

.fv-video.is-fading video {
  opacity: 0;
}

/* 動画が消えた後に白く見せるための背景用オーバーレイ */
.fv-video::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.3764705882); /* 白くフェードアウトさせるためのカラー */
  z-index: 0;
  opacity: 0;
  -webkit-transition: opacity 1.5s ease;
  transition: opacity 1.5s ease;
}

.fv-video.is-fading::after {
  opacity: 1;
  z-index: 1;
}

.fv-video .end-image {
  z-index: 0;
  opacity: 0;
  /* transitionを入れておくと画像もジワッと表示されます。不要なら削除してください */
  -webkit-transition: opacity 1s ease 1s;
  transition: opacity 1s ease 1s; /* 1.5秒（動画が白くなる時間）待ってから1秒かけて表示 */
}

/* 動画終了時：画像を一番手前に持ってきて表示する */
.fv-video.is-fading .end-image {
  z-index: 3;
  opacity: 1;
}

.end-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover; /* 枠に合わせて綺麗に収める */
}
@media screen and (max-width: 799px) {
  .end-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    
  }
}

.img-sp {
   display: none;
}
@media screen and (max-width: 799px) {
    .img-pc {
        display: none;
    }
    .img-sp {
        display: block !important; /* PCではスマホ用を絶対に隠す */
    }
}


.inner {
  padding-left: 6.9444444444%;
  padding-right: 6.9444444444%;
}
@media screen and (max-width: 768px) {
  .inner {
    padding-left: 4.2666666667%;
    padding-right: 4.2666666667%;
  }
}

.fv-content {
  position: absolute;
  bottom: 14%;
  left: 6.5%;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .fv-content {
    left: 3%;
  }
}
.fv-content p {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  color: #FFFFFF;
  font-size: 4rem;
  letter-spacing: 3%;
}
@media screen and (max-width: 768px) {
  .fv-content p {
    font-size: 2.25rem;
  }
}

.fv-bottom {
  position: absolute;
  z-index: 10;
  border-bottom: 1px solid #B68E63;
  bottom: 13%;
  right: 7%;
}
@media screen and (max-width: 768px) {
  .fv-bottom {
    bottom: 13.5%;
    right: 5%;
  }
}
.fv-bottom p {
  color: #FFFFFF;
  font-size: 2.25rem;
  text-shadow: 0 0 8px rgba(182, 142, 99, 0.4);
}
@media screen and (max-width: 768px) {
  .fv-bottom p {
    font-size: 1.5rem;
  }
}

.news-pick {
  background: #F5F2E8;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
@media screen and (max-width: 768px) {
  .news-pick {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}

.news-box {
  font-family: "Sawarabi Gothic", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1rem;
}
@media screen and (max-width: 768px) {
  .news-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}

.news-date {
  font-family: "Sawarabi Gothic", sans-serif;
  font-size: 1rem;
}

.news-title {
  font-family: "Sawarabi Gothic", sans-serif;
  font-size: 1rem;

  white-space: nowrap;   /* 文字列を改行させない */
    overflow: hidden;      /* はみ出た部分を非表示にする */
    text-overflow: ellipsis; /* はみ出た末尾を「…」にする */
}

.policy-new {
  padding-top: 160px;
  padding-bottom: 405px;
}
@media screen and (max-width: 768px) {
  .policy-new {
    padding-top: 22px;
    padding-bottom: 20px;
  }
}

@media screen and (max-width: 768px) {
  .policy-inner {
    padding-left: 0;
    padding-right: 0;
  }
}

.policy-box {
  position: relative;
  z-index: 5;
}

.policy-left {
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .policy-left {
    padding-left: 3.3333333333%;
    padding-right: 3.3333333333%;
  }
}
.policy-left img {
  display: block;
  width: 36.18rem;
}
@media screen and (max-width: 768px) {
  .policy-left img {
    height: 23rem;
    -o-object-fit: contain;
       object-fit: contain;
    width: 100%;
  }
}

.policy-right {
  margin-left: auto;
  margin-top: -13%;
  background: url(/img/top-re/policy-img2.jpg) no-repeat center center/cover;
  width: 50.25rem;
  padding: 16px 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  right: 0;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .policy-right {
    width: 100%;
    background: url(/img/top-re/policy-img2-sp.jpg) no-repeat center center/cover;
    padding: 16px 0;
    position: relative;
    padding-left: 3.3333333333%;
    padding-right: 3.3333333333%;
    margin-top: -10%;
  }
}

.policy-right-box {
  background: rgba(255, 255, 255, 0.7);
  padding: 12px 34px;
}
@media screen and (max-width: 768px) {
  .policy-right-box {
    padding: 16px 0;
  }
}

.policy-right-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.policy-title {
  font-size: 2.25rem;
}
@media screen and (max-width: 768px) {
  .policy-title {
    font-size: 1.56rem;
  }
}

.policy-subtitle {
  font-size: 1.25rem;
  font-family: "Sawarabi Gothic", sans-serif;
  color: #C8AF5C;
  letter-spacing: 10%;
}
@media screen and (max-width: 768px) {
  .policy-subtitle {
    font-size: 0.75rem;
  }
}

.policy-right-center {
  margin-top: 2.4rem;
}
.policy-right-center p {
  font-size: 1rem;
  line-height: 200%;
}
@media screen and (max-width: 768px) {
  .policy-right-center p {
    font-size: 0.91rem;
    padding: 10px 15px;
  }
}

.button {
  margin-top: 2.1rem;
  font-size: 1rem;
  border: 1px solid #C8AF5C;
  border-radius: 80px;
  width: 15.1rem;
  height: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
@media screen and (max-width: 768px) {
  .button {
    margin-top: 1.5rem;
  }
}
.button::after {
  position: absolute;
  background: url(/img/top-re/button-hover.svg) no-repeat center center/cover;
  content: "";
  right: -10%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 3.9rem;
  height: 0.37rem;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 768px) {
  .button::after {
    right: -4%;
  }
}
.button:hover::after, .button:focus::after {
  opacity: 1;
}

.pc-hidden {
  display: none;
}
@media screen and (max-width: 768px) {
  .pc-hidden {
    display: block;
  }
}

.pin-spacer {
  inset: 0 !important;
}

.gallery {
  background: -webkit-gradient(linear, left top, right top, from(#F5EEDC), color-stop(98%, #F4E1D6));
  background: linear-gradient(to right, #F5EEDC 0%, #F4E1D6 98%);
  overflow: hidden;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.gallery-item {
  position: absolute;
}

.gallery-bg {
  z-index: 2;
  position: relative;
  width: 100vw;
 
  height: 100vh;
   height: 100lvh;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
  background-image: url(/img/top-re/gallery-bg.jpg);
  top: 15%;
  -webkit-transition: top 0.5s ease;
  transition: top 0.5s ease;
}
@media screen and (max-width: 768px) {
  .gallery-bg {
    background-image: url(/img/top-re/engagement-rings-sp.png);
    top:0;
  }
}

.gallery-bg.top {
  top: 0;
}

.gallery-content {
  position: absolute;
  top: 0;
  left: 0;
  height: 100vh;
  height: 100lvh;
  width: 100vw;
}

.gallery-inner {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 100%;
  margin: 0 auto;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0.2em;
}

.gallery-item#gsap-gallery-1 {
  bottom: -9.5vh;
  left: 11vw;
}
@media screen and (max-width: 768px) {
  .gallery-item#gsap-gallery-1 {
    left: 3vw;
    bottom: 15.5vh;
  }
}

.gallery-item#gsap-gallery-1, .gallery-item#gsap-gallery-4 {
  width: 17.5vw;
  height: 69vh;
}
@media screen and (max-width: 768px) {
  .gallery-item#gsap-gallery-1, .gallery-item#gsap-gallery-4 {
    width: 24.5vw;
    height: 50vh;
    min-width: 90px;
   
  }
}

.gallery-item picture {
  width: 100%;
  height: 100%;
  position: relative;
}

.gallery-item picture > * {
  width: inherit;
  height: inherit;
  -o-object-fit: cover;
  object-fit: cover;
}

.gallery-item#gsap-gallery-2 {
  top: 16.5vh;
  left: 11vw;
}
@media screen and (max-width: 768px) {
  .gallery-item#gsap-gallery-2 {
    left: 3vw;
  }
}

.gallery-item#gsap-gallery-2, .gallery-item#gsap-gallery-3 {
  width: 56.5vw;
  height: 21vh;
}
@media screen and (max-width: 768px) {
  .gallery-item#gsap-gallery-2, .gallery-item#gsap-gallery-3 {
    width: 66vw;
    height: 16vh;
  }
}

.gallery-item#gsap-gallery-3 {
  bottom: -9.5vh;
  right: 11vw;
}
@media screen and (max-width: 768px) {
  .gallery-item#gsap-gallery-3 {
    right: 3vw;
    bottom: 15.5vh;
  }
}

.gallery-item#gsap-gallery-4 {
  right: 11vw;
  top: 16.5vh;
}
@media screen and (max-width: 768px) {
  .gallery-item#gsap-gallery-4 {
    right: 3vw;
  }
}

.gallery #gsap-gallery-service {
  position: absolute;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100vh;
  height: 100lvh;
  padding-top: 5rem;
}

.service-item_title {
  padding: 0 6.7rem;
}
@media screen and (max-width: 768px) {
  .service-item_title {
    padding: 0 1rem;
  }
}
.service-item_title p {
  font-size: 2.25rem;
  letter-spacing: 3%;
}
@media screen and (max-width: 768px) {
  .service-item_title p {
    font-size: 1.5rem;
    letter-spacing: 5%;
  }
}
.service-item_title h2 {
  font-family: "Sawarabi Gothic", sans-serif;
  font-size: 1.25rem;
  color: #C8AF5C;
}
@media screen and (max-width: 768px) {
  .service-item_title h2 {
    font-size: 0.75rem;
    letter-spacing: 7.5%;
    margin-top: 5px;
  }
}

.service-item_content {
  background: rgba(255, 255, 255, 0.5019607843);
  padding: 20px 6.7rem;
}
@media screen and (max-width: 768px) {
  .service-item_content {
    padding: 15px 1.09rem;
    height: 31vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.service-item_content p {
  text-align: right;
  letter-spacing: 2%;
  font-size: 1rem;
}
@media screen and (max-width: 768px) {
  .service-item_content p {
    font-size: 0.875rem;
    letter-spacing: 0;
    text-align: left;
    line-height: 200%;
  }
}

.gallery-button {
  margin-top: 24px;
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .gallery-button {
    width: 15.75rem;
    height: 3rem;
    margin-top: 15px;
  }
}

.service {
  background: url(/img/top-re/service-wedding.jpg) no-repeat center center/cover;
  height: 100vh;
  padding-top: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 768px) {
  .service {
    background: url(/img/top-re/wedding-rings-sp.png) no-repeat center center/cover;
  }
}

.reservation {
  background-color: #ffffff;
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(245, 238, 220, 0.3)), color-stop(98%, rgba(244, 225, 214, 0.3)));
  background-image: linear-gradient(to right, rgba(245, 238, 220, 0.3) 0%, rgba(244, 225, 214, 0.3) 98%);
  padding-top: 160px;
  padding-bottom: 162px;
}
@media screen and (max-width: 768px) {
  .reservation {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.reserve-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}
@media screen and (max-width: 768px) {
  .reserve-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.reserve-item_title {
  padding: 0 10px;
}
.reserve-item_title p {
  letter-spacing: -1%;
}
@media screen and (max-width: 768px) {
  .reserve-item_title p {
    letter-spacing: 1%;
  }
}
.reserve-item_title h2 {
  letter-spacing: 10%;
}

@media screen and (max-width: 768px) {
  .sp-hidden {
    display: none;
  }
}

.reserve-text {
  margin-top: 32px;
}
.reserve-text p {
  font-size: 1rem;
  line-height: 200%;
  padding: 10px;
}
@media screen and (max-width: 768px) {
  .reserve-text p {
    padding: 10px 0;
  }
}

@media screen and (max-width: 768px) {
  .reserve-box-right {
    width: 100%;
  }
}

.reserve-buttun {
  width: 23.75rem;
  background: #FFFFFF;
  margin-right: 0;
  margin-top: 1.3rem;
}
@media screen and (max-width: 768px) {
  .reserve-buttun {
    width: 100%;
    margin-top: 50px;
    height: 3.25rem;
  }
}
@media screen and (max-width: 768px) {
  .reserve-buttun:nth-child(2) {
    margin-top: 17px;
  }
}
@media screen and (max-width: 768px) {
  .reserve-buttun::after {
    right: -15px;
  }
}

.gallery_slider {
  position: relative;
  margin-top: 80px;
}
.gallery_swiper {
  margin: 0 auto;
}
.swiper-wrapper {
  overflow: visible;
  padding-left: 6.25rem;
}

.swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.product-img img {
  max-width: 250px;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .product-img img {
    max-width: 200px;
  }
}
@media screen and (max-width: 599px) {
  .product-img img {
    max-width: 150px;
  }
}

#js-gallery-swiper .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
          transition-timing-function: linear !important;
}

.reserve-link {
  margin-top: 43px;
}
.reserve-link p {
  text-align: right;
  font-size: 1rem;
  padding: 10px;
}
@media screen and (max-width: 768px) {
  .reserve-link p {
    font-size: 0.875rem;
    letter-spacing: 4%;
  }
}

.banner img {
  margin-top: 80px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.reserve-buttun2 {
  margin-right: 0;
  background: #FFFFFF;
  margin-top: 0.6rem;
}

.shop-new {
  background: #F5F2E8;
}

.shop-top {
  padding-top: 80px;
  padding-bottom: 82px;
}

.shop-top-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1rem;
}
@media screen and (max-width: 768px) {
  .shop-top-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 1.8rem;
  }
}

@media screen and (max-width: 768px) {
  .shop-text {
    padding: 10px;
    font-size: 0.875rem;
    line-height: 200%;
  }
}

.shop-bottom {
  background: url(/img/top-re/shop-background.jpg) no-repeat center center/cover;
  padding-top: 120px;
  padding-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .shop-bottom {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.shop-title {
  font-size: 1.5rem;
  text-shadow: 0 0 10px #FFFFFF;
  border-bottom: 1px solid #C8AF5C;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  line-height: 135%;
}
@media screen and (max-width: 768px) {
  .shop-title {
    font-size: 1rem;
    padding-bottom: 7px;
  }
}

.shop-bottom-content {
  margin-top: 24px;
}
@media screen and (max-width: 768px) {
  .shop-bottom-content {
    margin-top: 16px;
  }
}

.shop-lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 2.5rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 768px) {
  .shop-lists {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.7rem;
  }
}

.shop-list {
  font-size: 1rem;
  background: #FFFFFF;
  width: 15.6rem;
  height: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  cursor: pointer;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
@media screen and (max-width: 1050px) {
  .shop-list {
    width: 14.6rem;
  }
}
@media screen and (max-width: 900px) {
  .shop-list {
    width: 12.6rem;
  }
}
@media screen and (max-width: 768px) {
  .shop-list {
    margin-left: auto;
    margin-right: auto;
    height: 4rem;
  }
}
.shop-list span {
  position: absolute;
  background: #C8AF5C;
  width: 3rem;
  height: 2.25rem;
  top: 0;
  left: 0;
  font-size: 0.875rem;
  color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.shop-list:hover, .shop-list:focus {
  background: #F5F2E8;
}

.shop-lists_2 {
  margin-top: 47px;
}
@media screen and (max-width: 768px) {
  .shop-lists_2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 1.25rem;
    -webkit-column-gap: 0.5rem;
       -moz-column-gap: 0.5rem;
            column-gap: 0.5rem;
  }
}
.shop-lists_2 span {
  background: #F5F2E8;
  color: #3C3C3C;
}

.shop-lists_3 {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .shop-lists_3 {
    margin-top: 1.7rem;
  }
}

@media screen and (max-width: 768px) {
  .shop-list2 {
    width: 10.4rem;
    font-size: 0.875rem;
    padding-left: 20%;
    text-align: center;
  }
}

.story {
  padding-top: 160px;
  padding-bottom: 160px;
  background: url(/img/top-re/blog-back.jpg) no-repeat center center/cover;
}
@media screen and (max-width: 768px) {
  .story {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.story-content {
  margin-top: 82px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  gap: 5rem;
}
@media screen and (max-width: 1050px) {
  .story-content {
    gap: 4rem;
  }
}
@media screen and (max-width: 900px) {
  .story-content {
    gap: 3rem;
  }
}
@media screen and (max-width: 768px) {
  .story-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 76px;
    -webkit-column-gap: 2rem;
       -moz-column-gap: 2rem;
            column-gap: 2rem;
    row-gap: 1rem;
  }
}

.story-list {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.story-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}

.story-img img {
  max-width: 250px;
  aspect-ratio: 1/1;
  display: block;
  width: 100%;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .story-img img {
    max-width: 9.37rem;
  }
}

.story-text-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
}

.story-title {
  color: #B68E63;
  padding: 10px;
  border-bottom: 1px solid #B68E63;
}
@media screen and (max-width: 768px) {
  .story-title {
    padding: 10px 5px;
  }
}

.story-text {
  padding: 10px;
  font-size: 1rem;
  font-family: "Sawarabi Gothic", sans-serif;
}
@media screen and (max-width: 768px) {
  .story-text {
    font-size: 0.75rem;
    padding: 10px 5px;
  }
}

.story-button {
  margin-top: 61px;
  margin-right: auto;
  background: #FFFFFF;
  width: 19.3rem;
}
@media screen and (max-width: 768px) {
  .story-button {
    margin-top: 76px;
  }
}

.footer-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
@media screen and (max-width: 768px) {
  .footer-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.footer-company {
  padding-top: 31px;
  padding-bottom: 28px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-left: 6.25rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
@media screen and (max-width: 768px) {
  .footer-company {
    padding-left: 1.5rem;
    width: 100%;
  }
}
.footer-company::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
.footer-company .footer-top-box {
  z-index: 3;
}
.footer-company .image-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}
.footer-company .image-wrap .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.footer-company:hover::after, .footer-company:focus::after {
  opacity: 0;
}
.footer-company:hover .image-wrap .image, .footer-company:focus .image-wrap .image {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.footer-company:hover .footer-hover img, .footer-company:focus .footer-hover img {
  right: -93%;
}
.footer-company:hover .footer-top-box, .footer-company:focus .footer-top-box {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

.footer-top-box {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  z-index: 3;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.footer-top-box p {
  color: #C8AF5C;
  font-size: 0.625rem;
  text-align: center;
}

.footer-hover {
  position: relative;
  margin-top: 6px;
}
.footer-hover p {
  font-size: 1.5rem;
  color: #3C3C3C;
}
.footer-hover img {
  position: absolute;
  top: 65%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -76%;
  width: 3.8rem;
  height: 0.43rem;
  -webkit-transition: right 0.3s ease;
  transition: right 0.3s ease;
}

.footer-bottom {
  background: #F5F2E8;
  padding-top: 40px;
  padding-bottom: 40px;
  border-bottom: 3px solid #C8AF5C;
}
@media screen and (max-width: 768px) {
  .footer-bottom {
    padding-bottom: 40px;
    padding-top: 25px;
  }
}

.footer-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .footer-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
  }
}

.footer-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 17.5px;
  padding-bottom: 17.5px;
}
@media screen and (max-width: 768px) {
  .footer-left {
    gap: 1.5rem;
  }
}

.logo-footer img {
  width: 15rem;
}
@media screen and (max-width: 768px) {
  .logo-footer img {
    width: 8.5rem;
  }
}

.footer-left-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}

.footer-button {
  margin-top: 0;
  background: #FFFFFF;
  width: 23.75rem;
  height: 3.25rem;
}
@media screen and (max-width: 768px) {
  .footer-button {
    width: 22rem;
  }
}

.footer-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 4.4rem;
}
@media screen and (max-width: 768px) {
  .footer-right {
    gap: 3.4rem;
  }
}
.footer-right p {
  font-family: "Sawarabi Gothic", sans-serif;
  font-size: 0.75rem;
  padding: 10px 0;
}

.footer-right1 {
  padding: 10px;
}
@media screen and (max-width: 768px) {
  .footer-right1 {
    padding: 10px 0;
  }
}

.footer-sitemap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 5px;
  gap: 7.5px;
}
.footer-sitemap li {
  font-family: "Sawarabi Gothic", sans-serif;
  font-size: 0.75rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.footer-sitemap li:hover, .footer-sitemap li:focus {
  opacity: 0.7;
}

.p-fv picture img {
  width: 100%;
}

.p-company {
  padding-top: 80px;
  padding-bottom: 162px;
}
@media screen and (max-width: 768px) {
  .p-company {
    padding-top: 40px;
    padding-bottom: 0px;
  }
}

@media screen and (max-width: 768px) {
  .p-company-inner {
    padding-left: 3.3333333333%;
    padding-right: 3.3333333333%;
  }
}

.p-title {
  text-align: center;
}
.p-company-infomation {
  margin-top: 2.3rem;
}
.p-company-infomation h3 {
  text-align: center;
  padding: 10px;
  font-size: 1.5rem;
}

.pci-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 3rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 69.5rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 27px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #000000;
}
@media screen and (max-width: 768px) {
  .pci-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 34px;
  }
}
.pci-content table tbody tr {
  text-align: left;
  font-size: 1rem;
  border-bottom: 1px solid #C8AF5C;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1.5rem;
}
@media screen and (max-width: 1050px) {
  .pci-content table tbody tr {
    gap: 0;
  }
}
.pci-content table tbody tr th {
  padding: 10px;
  min-width: 5.25rem;
  line-height: 200%;
}
@media screen and (max-width: 1050px) {
  .pci-content table tbody tr th {
    min-width: 6.25rem;
  }
}
@media screen and (max-width: 768px) {
  .pci-content table tbody tr th {
    min-width: 7rem;
  }
}
.pci-content table tbody tr td {
  padding: 10px;
  line-height: 200%;
}

.pci-right img {
  width: 31.2rem;
  display: block;
}

.p-history {
  padding-top: 160px;
  padding-bottom: 130px;
  background: linear-gradient(177deg, #FFFEFB 6%, #F5F2E8 94%);
}
@media screen and (max-width: 768px) {
  .p-history {
    padding-top: 164px;
  }
}
.p-history h3 {
  text-align: center;
  padding: 10px;
  font-size: 1.5rem;
}

.p-history-content {
  margin-top: 34px;
  color: #000000;
}
.p-history-content table {
  margin-left: auto;
  margin-right: auto;
}
.p-history-content table tbody tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: left;
  font-size: 1rem;
  border-bottom: 1px solid #B68E63;
  padding-top: 2.5rem;
}
.p-history-content table tbody tr:nth-child(1) {
  padding-top: 0;
}
.p-history-content table tbody tr th {
  line-height: 200%;
  position: relative;
  padding-left: 40px;
}
.p-history-content table tbody tr th::before {
  position: absolute;
  content: "";
  background: url(/img/top-re/history-icon.svg) no-repeat center center/cover;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 10px;
  width: 20px;
  height: 20px;
}
.p-history-content table tbody tr td {
  padding: 10px;
  line-height: 200%;
}

.about-modal {
  background: transparent;
  height: 100vh;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  margin: 0;
  padding: 0;
  border: none;
  inset: 0;
  max-width: none;
  max-height: none;
}
.about-modal::-ms-backdrop {
  background: none;
}
.about-modal::backdrop {
  background: none;
}

.modal__overlay {
  height: 100vh;
  position: absolute;
  width: 100%;
}

.about-modal_body {
  position: fixed;
  inset: 0;
  margin: auto;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  overflow: visible;
  padding: 1.5rem 2.5rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.7);
  border: none;
  z-index: 60;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 2.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  outline: none;
}
@media screen and (max-width: 768px) {
  .about-modal_body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 1.5rem;
    max-width: 21.8rem;
  }
}

.modal_left {
  padding: 10px;
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  .modal_left {
    margin-right: auto;
  }
}

@media screen and (max-width: 768px) {
  .modal-right-table1 tbody tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media screen and (max-width: 768px) {
  .modal-right {
    margin-right: auto;
  }
}
.modal-right table tbody th {
  padding: 4px 1rem;
  color: #B68E63;
  font-size: 1.25rem;
  font-family: "Sawarabi Gothic", sans-serif;
  letter-spacing: 10%;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .modal-right table tbody th {
    width: 8.9rem;
  }
}
.modal-right table tbody td {
  font-size: 1rem;
  padding: 4px 1rem;
  line-height: 200%;
}
.modal-right table tbody td a {
  outline: none;
}

.modal-button {
  margin-top: 1rem;
  outline: none;
}

.p-contact {
  padding-top: 86.5px;
  padding-bottom: 86.5px;
  background: url(/img/top-re/p-contact-back.jpg) no-repeat center center/cover;
}
@media screen and (max-width: 768px) {
  .p-contact {
    padding-top: 80px;
    padding-bottom: 85px;
    background: url(/img/top-re/main-sp.jpg) no-repeat center center/cover;
  }
}

@media screen and (max-width: 1050px) {
  .p-contact-inner {
    padding-left: 3.4722222222%;
    padding-right: 3.4722222222%;
  }
}
@media screen and (max-width: 768px) {
  .p-contact-inner {
    padding-left: 3.3333333333%;
    padding-right: 3.3333333333%;
  }
}

.p-contact-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1rem;
}
@media screen and (max-width: 768px) {
  .p-contact-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 5.2rem;
  }
}

.p-contact-left {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 33.6vw;
}
@media screen and (max-width: 1050px) {
  .p-contact-left {
    max-width: 38vw;
  }
}
@media screen and (max-width: 768px) {
  .p-contact-left {
    max-width: none;
    width: 100%;
  }
}

.p-contact-title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.pcl-text {
  margin-top: 40px;
  padding: 10px 11px;
  line-height: 200%;
  font-size: 1rem;
  color: #000000;
}
@media screen and (max-width: 768px) {
  .pcl-text {
    font-size: 0.875rem;
    margin-top: 23px;
    padding: 10px 15px;
    letter-spacing: 5%;
  }
}

.pcl-coupon {
  margin-top: 75px;
}
@media screen and (max-width: 768px) {
  .pcl-coupon {
    margin-top: 38px;
  }
}

.pcl-coupon-ticket {
  border: 4px solid transparent;
  -o-border-image: linear-gradient(to right, #F5EEDC 0, #F4E1D6 98%) 1;
     border-image: -webkit-gradient(linear, left top, right top, color-stop(0, #F5EEDC), color-stop(98%, #F4E1D6)) 1;
     border-image: linear-gradient(to right, #F5EEDC 0, #F4E1D6 98%) 1;
  padding: 1rem 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  gap: 10px;
  background: #FFFFFF;
  white-space: nowrap;
}
@media screen and (max-width: 1050px) {
  .pcl-coupon-ticket {
    gap: 5px;
  }
}
@media screen and (max-width: 768px) {
  .pcl-coupon-ticket {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    padding: 7px 24px;
    margin-left: auto;
    margin-right: auto;
  }
}
.pcl-coupon-ticket p {
  color: #B68E63;
  font-size: 1.5rem;
}
@media screen and (max-width: 1050px) {
  .pcl-coupon-ticket p {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 768px) {
  .pcl-coupon-ticket p {
    font-size: 1.05rem;
  }
}

.pcl-big {
  font-size: 2.25rem;
}
@media screen and (max-width: 1050px) {
  .pcl-big {
    font-size: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .pcl-big {
    font-size: 1.55rem;
  }
}

.pcl-t-text {
  margin-top: 1.5rem;
  font-size: 1rem;
  color: #000000;
  line-height: 200%;
}
@media screen and (max-width: 768px) {
  .pcl-t-text {
    padding-left: 1.18rem;
    padding-right: 1.18rem;
    font-size: 0.875rem;
    letter-spacing: 5%;
  }
}

.pcl-t-text2 {
  margin-top: 8px;
  font-size: 0.875rem;
  color: #000000;
}
@media screen and (max-width: 768px) {
  .pcl-t-text2 {
    padding-left: 1.18rem;
    padding-right: 1.18rem;
    font-size: 0.75rem;
    margin-top: 12px;
    letter-spacing: 5%;
  }
}

.p-content-right {
  -webkit-box-flex: 1.3;
      -ms-flex: 1.3;
          flex: 1.3;
  max-width: 44vw;
}
@media screen and (max-width: 1050px) {
  .p-content-right {
    max-width: 51vw;
  }
}
@media screen and (max-width: 768px) {
  .p-content-right {
    max-width: none;
    width: 100%;
  }
}

.pcr-step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .pcr-step {
    gap: 0;
  }
}

.step-box {
  border: 1px solid #C8AF5C;
  padding: 0px 1.4rem;
  width: 8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 768px) {
  .step-box {
    width: 6.85rem;
  }
}
.step-box._check {
  background: #F5F2E8;
}

.step-box-cont {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  white-space: nowrap;
}
.step-box-cont p {
  line-height: 200%;
}
@media screen and (max-width: 1050px) {
  .step-box-cont p {
    line-height: 165%;
  }
}
@media screen and (max-width: 768px) {
  .step-box-cont p {
    font-size: 0.875rem;
    line-height: 200%;
    width: 4.5rem;
  }
}

@media screen and (max-width: 768px) {
  .step-arrow img {
    width: 0.937rem;
    height: 0.937rem;
  }
}

.contact_fields {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5rem;
  margin-left: auto;
  margin-right: auto;
  padding: 40px 1.5rem;
  background: #FFFFFF;
}
@media screen and (max-width: 900px) {
  .contact_fields {
    padding: 40px 1rem;
  }
}
@media screen and (max-width: 768px) {
  .contact_fields {
    margin-top: 42px;
    gap: 40px;
    width: 100%;
    padding: 0;
  }
}

.contact_field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
}
.contact_field._2 {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.contact_field._top {
  padding-top: 1.9rem;
  padding-bottom: 1.9rem;
  border: 1px solid #C8AF5C;
}
@media screen and (max-width: 768px) {
  .contact_field._top {
    padding-top: 12px;
    padding-bottom: 1.5rem;
  }
}
.contact_field._second {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
@media screen and (max-width: 768px) {
  .contact_field._second {
    padding-top: 1.05rem;
    padding-bottom: 1.05rem;
  }
}
@media screen and (max-width: 1050px) {
  .contact_field {
    gap: 1rem;
  }
}
@media screen and (max-width: 900px) {
  .contact_field {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 7px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
}
@media screen and (max-width: 768px) {
  .contact_field {
    gap: 0;
  }
}

.contact-field-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  .contact-field-box {
    gap: 1.05rem;
  }
}
.contact-field-box:nth-child(1), .contact-field-box:nth-child(2) {
  border-bottom: 1px solid #C8AF5C;
}

.contact_head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1rem;
  min-width: 13.25rem;
  padding: 10px;
}
@media screen and (max-width: 1050px) {
  .contact_head {
    min-width: 12rem;
    gap: 0.5rem;
  }
}
@media screen and (max-width: 900px) {
  .contact_head {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    gap: 10px;
  }
}
@media screen and (max-width: 768px) {
  .contact_head {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 1.93rem;
  }
}
@media screen and (max-width: 768px) {
  .contact_head._2 {
    padding: 8px 10px;
  }
}

.contact_head_name {
  font-size: 1rem;
  line-height: 200%;
}
@media screen and (max-width: 768px) {
  .contact_head_name {
    font-size: 1.05rem;
  }
}

.contact_head_tag {
  color: #F3B38F;
  font-size: 0.875rem;
}
@media screen and (max-width: 768px) {
  .contact_head_tag {
    padding: 10px;
    line-height: 200%;
  }
}
.contact_head_tag._2 {
  color: #B68E63;
}

.contact_name_text {
  height: 48px;
  border: 1px solid #3C3C3C;
  background: #FFF;
  padding: 8px 16px;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
  border-radius: 4px;
  font-size: 1rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .contact_name_text {
    height: 56px;
    border-radius: 4px;
  }
}
.contact_name_text::-webkit-input-placeholder {
  color: #D9D9D9;
}
.contact_name_text::-moz-placeholder {
  color: #D9D9D9;
}
.contact_name_text:-ms-input-placeholder {
  color: #D9D9D9;
}
.contact_name_text::-ms-input-placeholder {
  color: #D9D9D9;
}
.contact_name_text::placeholder {
  color: #D9D9D9;
}
.contact_name_text:hover, .contact_name_text:focus {
  border: 1px solid #C8AF5C;
  outline: none;
  border-radius: 4px;
}

.select-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  width: 60%;
}
@media screen and (max-width: 768px) {
  .select-content {
    width: 100%;
    margin-top: 17px;
    gap: 23px;
  }
}

.select-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1200px) {
  .select-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media screen and (max-width: 768px) {
  .select-box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.select-box2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}

.select-box3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 0.3rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .select-box3 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0.625rem;
  }
}
.select-box3 .form-select {
  max-width: 100%;
  width: -webkit-fill-available;
}
@media screen and (max-width: 768px) {
  .select-box3 .form-select {
    max-width: 45.5vw;
  }
}

.select-box3 p {
  width: 50% !important;
}

.contact-date-text {
  font-size: 0.625rem;
  padding: 0 10px;
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .contact-date-text {
    margin-top: 8px;
  }
}

.select-text {
  font-size: 1.5rem;
  font-weight: 500;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-right: 2%;
  padding-left: 2%;
}
@media screen and (max-width: 768px) {
  .select-text {
    font-size: 1.25rem;
    padding-right: 0;
    padding-left: 3%;
  }
}

.date-edit input[type=text] {
  padding: 16px 20px;
  font-size: 1.25rem;
  font-weight: 500;
  color: #3C3C3C;
  background: url(/img/top-re/chevron-right.png) no-repeat center right 26px/35px 35px;
  border-radius: 8px;
  border: 1px solid #3C3C3C;
  width: 15.6rem;
}
.date-edit input[type=text]::-webkit-input-placeholder {
  color: #3C3C3C;
}
.date-edit input[type=text]::-moz-placeholder {
  color: #3C3C3C;
}
.date-edit input[type=text]:-ms-input-placeholder {
  color: #3C3C3C;
}
.date-edit input[type=text]::-ms-input-placeholder {
  color: #3C3C3C;
}
.date-edit input[type=text]::placeholder {
  color: #3C3C3C;
}

.date-edit {
  position: relative;
  width: -webkit-fill-available;
}
@media screen and (max-width: 768px) {
  .date-edit {
    width: -webkit-fill-available;
  }
}

.wpcf7-form-control-wrap {
  width: -webkit-fill-available;
}

.date-edit input {
  color: transparent;
  opacity: 0;
  height: 48px;
  width: 100%;
  inset: 0;
}
@media screen and (max-width: 768px) {
  .date-edit input {
    height: 44px;
  }
}

input[type=date]::-webkit-calendar-picker-indicator {
  width: 100%;
  height: 68px;
  cursor: pointer;
}

.date-edit span {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 1rem;
  height: 48px;
  pointer-events: none;
  border-radius: 4px;
  border: 1px solid #3C3C3C;
  padding: 10px 20px;
  background: #FFFFFF;
  background: url(/img/top-re/contact-arrow.svg) no-repeat center right 26px/18px 24px;
  width: 100%;
  -webkit-transition: border 0.3s ease;
  transition: border 0.3s ease;
}
@media screen and (max-width: 900px) {
  .date-edit span {
    height: 43px;
  }
}
@media screen and (max-width: 768px) {
  .date-edit span {
    padding: 10px 20px;
    font-size: 0.875rem;
    border-radius: 4px;
    background: url(/img/top-re/contact-arrow.svg) no-repeat center right 21px/26px 26px;
    height: inherit;
    line-height: 200%;
  }
}
.date-edit span:hover, .date-edit span:focus {
  border: 1px solid #C8AF5C;
}

@media screen and (max-width: 900px) {
  .lg-hidden {
    display: none;
  }
}

.date-edit.filled .data-edit-text {
  color: #3C3C3C;
  border: 1px solid #3C3C3C !important;
}

.date-edit {
  position: relative;
  width: 100%;
  display: block;
  height: 3rem;
}
@media screen and (max-width: 768px) {
  .date-edit {
    height: 2.2rem;
  }
}
@media screen and (max-width: 550px) {
  .date-edit {
    height: 48px;
  }
}

.date-edit {
  position: relative;
}

.date-edit.filled span {
  background: none;
}

.date-edit.filled .data-edit-text {
  color: #3C3C3C;
}
@media screen and (max-width: 900px) {
  .date-edit.filled .data-edit-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 5px;
    white-space: nowrap;
  }
}

/* 表示用テキスト */
.data-edit-text {
  position: relative;
  z-index: 1;
  display: block;
  padding: 10px 20px;
  border-radius: 4px;
  background: #fff;
  border: none !important;
}

.date-edit input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0; /* クリック用だけ残す */
}

.data-edit-text {
  display: block;
}

.form-select {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font: inherit;
  color: inherit;
  vertical-align: top;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 4px;
  border: 1px solid #3C3C3C;
  background: #fff;
  font-size: 1rem;
  padding: 10px 20px;
  background: url(/img/top-re/contact-arrow.svg) no-repeat center right 16px/18px 24px;
  cursor: pointer;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .form-select {
    border-radius: 4px;
    font-size: 0.875rem;
    padding: 10px 20px;
    background: url(/img/top-re/contact-arrow.svg) no-repeat center right 21px/26px 26px;
    line-height: 200%;
  }
}
.form-select:hover, .form-select:focus {
  border: 1px solid #C8AF5C;
  outline: none;
  border-radius: 4px;
  background: none;
}

.form_field_radios {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1.5rem;
  display: flex;
  flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .form_field_radios {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 16px;
    margin-left: 0;
    padding: 8px 0;
  }
}

.form_field_radios label {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 10px 20px;
  width: 7.3rem;
  display: inline-block;
}
@media screen and (max-width: 1050px) {
  .form_field_radios label {
    width: 6.3rem;
  }
}
@media screen and (max-width: 768px) {
  .form_field_radios label {
    width: 9.3rem;
  }
}
.form_field_radios label:hover .form_field_radios label span::before {
  border-color: #3C3C3C;
}

.form_field_radios input {
  width: 24px;
  height: 24px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.form_field_radios input:checked + span::after {
  opacity: 1;
}

/* 1. デフォルトのラジオボタンを消す */
.form_field_radios label span {
  font-size: 0.875rem;
  position: relative;
  padding-left: 34px;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .form_field_radios label span {
    font-size: 0.875rem;
  }
}
.form_field_radios label span::before, .form_field_radios label span::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.form_field_radios label span::before {
  width: 24px;
  height: 24px;
  border-radius: 24px;
  border: 1px solid #3C3C3C;
  left: 0;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
@media screen and (max-width: 768px) {
  .form_field_radios label span::before {
    width: 21px;
    height: 21px;
  }
}
.form_field_radios label span::after {
  width: 1rem;
  height: 1rem;
  border-radius: 10px;
  background: url(/img/top-re/contact-radio-check.svg) no-repeat center center/cover;
  left: 5%;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .form_field_radios label span::after {
    width: 13px;
    height: 13px;
  }
}

.checkbox-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.checkbox-content label {
  padding: 10px;
  width: 9.3rem;
  display: inline-block;
}
@media screen and (max-width: 900px) {
  .checkbox-content label {
    width: 10.3rem;
  }
}
@media screen and (max-width: 768px) {
  .checkbox-content label {
    padding: 8px 10px;
    width: 9.7rem;
  }
}
.checkbox-content label:hover span::before {
  border-color: #C8AF5C;
}

.checkbox-content label input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.checkbox-content label input:checked + span::after {
  opacity: 1;
}
.checkbox-content label input:focus span::before {
  border-color: #C8AF5C;
}

.checkbox-content label span {
  position: relative;
  padding-left: 30px;
  font-size: 1rem;
}
@media screen and (max-width: 1050px) {
  .checkbox-content label span {
    padding-left: 25px;
  }
}
@media screen and (max-width: 768px) {
  .checkbox-content label span {
    font-size: 0.875rem;
    line-height: 200%;
  }
}
.checkbox-content label span::before, .checkbox-content label span::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.checkbox-content label span::before {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 1px solid #3C3C3C;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
.checkbox-content label span::after {
  width: 1rem;
  height: 1rem;
  left: 0;
  margin-top: -1.2px;
  background: url(/img/top-re/contact-radio-check.svg) no-repeat center center/contain;
  opacity: 0;
}

.contact_text {
  width: 100%;
}

.contact_textarea {
  width: -webkit-fill-available;
  height: 96px;
  border: 1px solid #3C3C3C;
  background: #FFF;
  color: #3C3C3C;
  padding: 1rem;
  border-radius: 4px;
  line-height: 200%;
}
@media screen and (max-width: 1200px) {
  .contact_textarea {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .contact_textarea {
    height: 6rem;
    border-radius: 4px;
    font-size: 1.04rem;
  }
}
.contact_textarea::-webkit-input-placeholder {
  color: #D9D9D9;
}
.contact_textarea::-moz-placeholder {
  color: #D9D9D9;
}
.contact_textarea:-ms-input-placeholder {
  color: #D9D9D9;
}
.contact_textarea::-ms-input-placeholder {
  color: #D9D9D9;
}
.contact_textarea::placeholder {
  color: #D9D9D9;
}
.contact_textarea:hover, .contact_textarea:focus {
  border: 1px solid #C8AF5C;
  outline: none;
}

.contact_button {
  text-align: center;
  margin-top: 0px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .contact_button {
    margin-top: 0px;
  }
}

.contact_button_input {
  text-align: center;
  display: inline-block;
  border-radius: 100px;
  border: 1px solid #C8AF5C;
  padding: 10px 16px;
  width: 14rem;
  background: #FFFFFF;
  font-size: 1rem;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .contact_button_input {
    font-size: 1.05rem;
    padding: 10px 52px;
    width: 14.8rem;
  }
}
.contact_button_input:hover, .contact_button_input:focus {
  background: #C8AF5C;
  border: 1px solid #C8AF5C;
  color: #FFFFFF;
}

.contact_field p {
  width: -webkit-fill-available;
}

.contact_field .contact_head p {
  width: auto;
}

.p-contact2-check {
  margin-top: 37px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border: 1px solid #C8AF5C;
  width: 100%;
  text-align: center;
  gap: 1.5rem;
}
@media screen and (max-width: 768px) {
  .p-contact2-check {
    gap: 0;
  }
}

.pc2-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.pc2-content p {
  padding: 10px;
  line-height: 200%;
  font-size: 1.05rem;
}
.pc2-content p:nth-child(2) {
  font-size: 0.875rem;
  white-space: nowrap;
}

.pc2-last-text p {
  padding: 0;
}
.pc2-last-text p:nth-child(2) {
  padding: 8px 0;
}

.pc2-content-date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.pc2-content-date p {
  width: 6.25rem;
  font-size: 0.875rem;
}

.p-contact-2 {
  padding-top: 160px;
  padding-bottom: 160px;
}
@media screen and (max-width: 768px) {
  .p-contact-2 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.pc2-contact_fields {
  margin-top: 80px;
  gap: 2.65rem;
}
@media screen and (max-width: 768px) {
  .pc2-contact_fields {
    margin-top: 40px;
    gap: 1.5rem;
  }
}

.pc2-contact_field-padding {
  padding: 10px 0;
}
@media screen and (max-width: 768px) {
  .pc2-contact_field-padding {
    padding: 0;
  }
}

.pc2-contact_button {
  margin-top: 12px;
}
.pc2-contact_button input {
  border: 1px solid #C8AF5C;
}
.pc2-contact_button input:hover, .pc2-contact_button input:focus {
  background: #C8AF5C;
  border: 1px solid #C8AF5C;
}

@media screen and (max-width: 768px) {
  .pc2-contact_head {
    padding: 0 10px;
  }
}

@media screen and (max-width: 768px) {
  .pc2-contact_field {
    padding-left: 8px;
    padding-right: 8px;
  }
}

@media screen and (max-width: 768px) {
  .pc2-contact_name_text {
    height: 3rem;
  }
}

@media screen and (max-width: 768px) {
  .pc2-contact_head_name {
    padding: 10px;
  }
}

.form-group {
  width: 100%;
}

.wpcf7-list-item {
  margin: 0 !important;
}

.wpcf7-spinner {
  display: none !important;
}

.p-contact3-box {
  text-align: left;
  max-width: 56.25rem;
  margin-left: auto;
  margin-right: auto;
}

.p-contact3-main {
  font-size: 2.25rem;
  letter-spacing: -1%;
  padding: 30px 0;
}
@media screen and (max-width: 768px) {
  .p-contact3-main {
    font-size: 1.5rem;
    padding: 0 0 20px 0;
  }
}

.p-contact3-text p {
  font-size: 1rem;
  padding-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .p-contact3-text p {
    font-size: 0.875rem;
    padding-bottom: 10px;
  }
}
.p-contact3-text p:nth-child(2) {
  padding-bottom: 70px;
  font-size: 0.875rem;
}
@media screen and (max-width: 768px) {
  .p-contact3-text p:nth-child(2) {
    font-size: 0.75rem;
    padding-bottom: 45px;
  }
}

.pc3-contact_button {
  margin-left: 0;
  gap: 1rem;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.pc3-contact_button::after {
  display: none;
}
.pc3-contact_button:hover, .pc3-contact_button:focus {
  opacity: 0.7;
}

.dli-chevron-left {
  display: inline-block;
  vertical-align: middle;
  color: #C8AF5C;
  line-height: 1;
  width: 0.5rem;
  height: 0.5rem;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transform: translateX(25%) rotate(-135deg);
          transform: translateX(25%) rotate(-135deg);
}

.p-contact2-check:nth-child(2) .pc2-content p:nth-child(2) {
  white-space: normal;
  padding: 0 2rem;
}

.multistep-hidden {
  position: absolute;
  top: 0;
  left: -50vw;
}

.ticker {
  overflow: hidden; /* はみ出した要素を隠す */
  height: 30px; /* 1行分の高さ */
}
@media screen and (max-width: 768px) {
  .ticker {
    height: 3.25rem;
  }
}

.news-new {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.news-new li {
  height: 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .news-new li {
    height: 3.25rem;
  }
}



.tel-modal-text {
  font-size: 1.2rem;
}
@media screen and (max-width: 768px) {
  .tel-modal-text {
    font-size: 0.875rem;
    text-align: center;
  }
}

.about-modal_body-2 {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
  border: 1px solid #C8AF5C;
  padding: 1rem;
  border-radius: 8px;
  background: #F5F2E8;
}

.shop-list-tel {
  width: 15.6rem;
  height: 2.5rem;
  
}

.shop-list-tel:hover, .shop-list-tel:focus {
  opacity: 0.7;
  background: #FFFFFF;
}

.shop-lists_tel a[href^="tel"]{
   -webkit-tap-highlight-color: transparent;
  outline: none;
}



.shop-list-tel span {
  width: 2rem;
  height: 1.25rem;
  font-size: 0.6rem;
  background: #C8AF5C;
    color: #FFFFFF;
}
@media screen and (max-width: 768px) {
  .shop-list-tel {
    width: 8.6rem;
    font-size: 0.8rem;
    line-height: 120%;
  }
}

.shop-lists_tel {
  margin-top: 0px;
  gap: 0.7rem;
}

.footer-button-sponly {
  display: none;
}
@media screen and (max-width: 768px) {
  .footer-button-sponly {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}


.about-modal_close-icon {
  top: -6%;
  position: absolute;
  right: -2%;
  width: 5rem;
  height: 5rem;
  background: none;
      color: #B68E63;
}
@media screen and (max-width: 768px) {
  .about-modal_close-icon {
    width: 3rem;
    height: 3rem;
    top: 0;
    right: 0;
  }
}

.about-modal_close-icon img {
  width: 1.5rem;
}
@media screen and (max-width: 768px) {
  .about-modal_close-icon img {
    width: 1.37rem;
  }
}