@charset "UTF-8";
/*  common  */
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.serif {
  font-family: "Noto Serif JP", serif;
}

.sans-serif {
  font-family: "Noto Sans JP", sans-serif;
}

.contents_width {
  padding: 0 3%;
}

.contents_inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.gold {
  color: #968159;
}

.btn_basic {
  position: relative;
  display: block;
  width: 380px;
  height: 90px;
  line-height: 90px;
  background-color: #968159;
  border: 1px solid #968159;
  color: #fff;
  font-weight: 600;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .btn_basic {
    width: 90%;
    height: 60px;
    line-height: 60px;
  }
}
.btn_basic::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  display: block;
  width: 8px;
  height: 8px;
  border: 0;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  margin-top: -4px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.btn_basic.costume_link::before {
  width: 14px;
  height: 14px;
  border-top: none;
  border-right: none;
  margin-top: -7px;
  -webkit-transform: inherit;
          transform: inherit;
  background: url(../img/20th/icon-link.svg) no-repeat;
  background-size: contain;
  background-position: 50%;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.btn_basic::after {
  content: "";
  position: absolute;
  bottom: -8px;
  right: -8px;
  display: block;
  width: 100%;
  height: 100%;
  border-right: 1px solid #968159;
  border-bottom: 1px solid #968159;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.btn_basic:hover {
  opacity: 1;
  background-color: #fff;
  color: #968159;
}
.btn_basic:hover::before {
  border-top: solid 2px #968159;
  border-right: solid 2px #968159;
}
.btn_basic:hover::after {
  -webkit-transform: translate(-8px, -8px);
          transform: translate(-8px, -8px);
  border-right: 1px solid transparent;
  border-bottom: 1px solid transparent;
}
.btn_basic:hover.costume_link::before {
  border-top: none;
  border-right: none;
  background: url(../img/20th/icon-link-gold.svg) no-repeat;
}

.fadeInTrigger,
.fadeUpTrigger {
  opacity: 0;
}

.fadeIn {
  -webkit-animation-name: fadeInAnime;
          animation-name: fadeInAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/* アニメーションスタートの遅延時間を決めるCSS*/
.delay_05 {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

.delay_1 {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.delay_15 {
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}

.delay_2 {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

.delay_25 {
  -webkit-animation-delay: 2.5s;
          animation-delay: 2.5s;
}

/* アニメーション自体が変化する時間を決めるCSS*/
.time_05 {
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
}

.time_1 {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
}

.time_15 {
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
}

.time_2 {
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
}

.time_25 {
  -webkit-animation-duration: 2.5s;
          animation-duration: 2.5s;
}

.main_20th {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 2.2;
  color: #333;
  overflow: hidden;
}
@media screen and (max-width: 1180px) {
  .main_20th {
    font-size: 14px;
    line-height: 1.8;
  }
}
@media screen and (max-width: 768px) {
  .main_20th {
    font-size: 13px;
  }
}

.mainv {
  position: relative;
  width: 100%;
  height: calc(100vh - 120px);
  background: url(/img/20th/mainv.jpg) no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
@media screen and (max-width: 1180px) {
  .mainv {
    background: url(/img/20th/mainv-sp.jpg) no-repeat;
    height: calc(100vh - 97px);
    background-position: 50% 0;
    background-size: cover;
  }
}

.mainv_mess {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  color: #fff;
}
@media screen and (max-width: 1180px) {
  .mainv_mess {
    width: 90%;
  }
}
@media screen and (max-width: 480px) {
  .mainv_mess {
    top: 42%;
  }
}

.mainv_mess__ttl {
  font-family: "Noto Serif JP", serif;
  font-size: 55px;
  letter-spacing: 0.18em;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1180px) {
  .mainv_mess__ttl {
    font-size: 40px;
  }
}

.mainv_mess__txt {
  font-size: 22px;
  letter-spacing: 0.24em;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1180px) {
  .mainv_mess__txt {
    font-size: 16px;
  }
}

.mainv_mess__deco {
  position: absolute;
  right: -80px;
  top: 55px;
  width: 325px;
  z-index: 1;
}
@media screen and (max-width: 1180px) {
  .mainv_mess__deco {
    right: 0;
    top: 45px;
    width: 250px;
  }
}

.slide {
  padding-top: 20px;
  padding-bottom: 130px;
}
@media screen and (max-width: 768px) {
  .slide {
    padding-top: 40px;
    padding-bottom: 80px;
  }
}

.slide_list__item {
  margin-right: 20px;
}
.slide_list__item img {
  height: 400px;
}
@media screen and (max-width: 768px) {
  .slide_list__item img {
    height: 200px;
  }
}
.slide_list__item:nth-child(odd) img {
  padding-bottom: 94px;
}
@media screen and (max-width: 768px) {
  .slide_list__item:nth-child(odd) img {
    padding-bottom: 47px;
  }
}
.slide_list__item:nth-child(even) img {
  padding-top: 64px;
}
@media screen and (max-width: 768px) {
  .slide_list__item:nth-child(even) img {
    padding-top: 32px;
  }
}

.contents_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 64px auto 74px;
}
@media screen and (max-width: 768px) {
  .contents_nav {
    display: block;
    margin: 0 auto;
  }
}

.contents_nav__list {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  letter-spacing: 0.15em;
  border-right: 1px solid #dcdcdc;
  text-align: center;
}
.contents_nav__list:last-child {
  border-right: none;
}
@media screen and (max-width: 768px) {
  .contents_nav__list {
    font-size: 14px;
    padding: 10px 0;
    border-right: none;
    border-bottom: 1px solid #dcdcdc;
  }
  .contents_nav__list:last-child {
    border-bottom: none;
  }
}
.contents_nav__list::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  margin: 8px auto 0;
  border: 0;
  border-top: solid 1px #96815a;
  border-right: solid 1px #96815a;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}
@media screen and (max-width: 768px) {
  .contents_nav__list::after {
    display: inline-block;
    margin-left: 20px;
  }
}

.sec_ttl {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  text-align: center;
  color: #968159;
}

.sec_ttl__en {
  display: block;
  margin: 0 auto;
}

#location .sec_ttl__en {
  width: 430px;
}
@media screen and (max-width: 1180px) {
  #location .sec_ttl__en {
    width: 286.6666666667px;
  }
}
@media screen and (max-width: 768px) {
  #location .sec_ttl__en {
    width: 215px;
  }
}

#costume .sec_ttl__en {
  width: 418px;
}
@media screen and (max-width: 1180px) {
  #costume .sec_ttl__en {
    width: 278.6666666667px;
  }
}
@media screen and (max-width: 768px) {
  #costume .sec_ttl__en {
    width: 209px;
  }
}

#quality .sec_ttl__en {
  width: 312px;
}
@media screen and (max-width: 1180px) {
  #quality .sec_ttl__en {
    width: 208px;
  }
}
@media screen and (max-width: 768px) {
  #quality .sec_ttl__en {
    width: 156px;
  }
}

#plan .sec_ttl__en {
  width: 485px;
}
@media screen and (max-width: 1180px) {
  #plan .sec_ttl__en {
    width: 323.3333333333px;
  }
}
@media screen and (max-width: 768px) {
  #plan .sec_ttl__en {
    width: 242.5px;
  }
}

#history .sec_ttl__en {
  width: 288px;
}
@media screen and (max-width: 1180px) {
  #history .sec_ttl__en {
    width: 192px;
  }
}
@media screen and (max-width: 768px) {
  #history .sec_ttl__en {
    width: 144px;
  }
}

#faq .sec_ttl__en {
  width: 137px;
}
@media screen and (max-width: 1180px) {
  #faq .sec_ttl__en {
    width: 91.3333333333px;
  }
}
@media screen and (max-width: 768px) {
  #faq .sec_ttl__en {
    width: 68.5px;
  }
}

.sec_ttl__jp {
  display: block;
  font-size: 24px;
  letter-spacing: 0.3em;
}
@media screen and (max-width: 1180px) {
  .sec_ttl__jp {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .sec_ttl__jp {
    font-size: 15px;
  }
}

.sec_mess {
  margin: 30px auto 50px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .sec_mess {
    margin: 20px auto 40px;
    text-align: left;
  }
}

#location{
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  #location{
    margin-top: 50px;
  }
}

#costume .sec_mess {
  text-align: center;
}

.gallery {
  position: relative;
  padding: 150px 2.4% 0;
  background-color: #f4f2ee;
  overflow: hidden;
}
@media screen and (max-width: 1180px) {
  .gallery {
    padding: 100px 2.4% 0;
  }
}
@media screen and (max-width: 768px) {
  .gallery {
    padding: 30px 2.4% 0;
  }
}

.gallery_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: calc(1600px + 11.4%);
  margin-bottom: 200px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1180px) {
  .gallery_box {
    margin-bottom: 120px;
  }
}
@media screen and (max-width: 768px) {
  .gallery_box {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.gallery_box:last-child {
  margin-bottom: 0;
}
.gallery_box .gallery_box__main {
  width: 55%;
  height: 490px;
  margin: 10px auto;
  position: relative;
}
@media screen and (max-width: 1180px) {
  .gallery_box .gallery_box__main {
    width: 50%;
    height: 300px;
  }
}
@media screen and (max-width: 768px) {
  .gallery_box .gallery_box__main {
    width: 100%;
    height: 260px;
  }
}
.gallery_box .gallery_box__main::after {
  content: "";
  position: absolute;
  bottom: -30px;
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(../img/20th/bg-dot.png);
  background-repeat: repeat;
  background-size: 8px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .gallery_box .gallery_box__main::after {
    bottom: -15px;
  }
}
.gallery_box .gallery_box__mainImg {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  position: relative;
  z-index: 2;
}
.gallery_box .gallery_box__desc {
  position: relative;
  width: 45%;
  background-color: #fff;
  padding: 30px 5% 10px 5%;
}
@media screen and (max-width: 1180px) {
  .gallery_box .gallery_box__desc {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  .gallery_box .gallery_box__desc {
    width: 100%;
    width: calc(100% - 20px);
    margin: 30px auto;
    padding: 10px 3% 0;
  }
}
.gallery_box .gallery_box__desc::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  width: 103%;
  height: 100%;
  background-color: #fff;
  border: 50px solid #fff;
  -o-border-image: url(../img/20th/border-img.png);
     border-image: url(../img/20th/border-img.png);
  border-image-slice: 100;
  border-image-outset: 10px;
  border-image-repeat: round;
  z-index: 0;
}
@media screen and (max-width: 1180px) {
  .gallery_box .gallery_box__desc::after {
    border: 30px solid #fff;
    -o-border-image: url(../img/20th/border-img.png);
       border-image: url(../img/20th/border-img.png);
    border-image-slice: 100;
    border-image-outset: 10px;
    border-image-repeat: round;
  }
}
@media screen and (max-width: 768px) {
  .gallery_box .gallery_box__desc::after {
    width: 100%;
    width: calc(100% - 60px);
  }
}
.gallery_box .desc_inner {
  position: relative;
  z-index: 1;
}
.gallery_box .desc_num {
  display: block;
  position: absolute;
  top: -120px;
  right: 0;
  width: auto;
  height: 120px;
}
.gallery_box .desc_num img {
  height: 100%;
}
@media screen and (max-width: 1180px) {
  .gallery_box .desc_num {
    top: -80px;
    height: 80px;
  }
}
@media screen and (max-width: 768px) {
  .gallery_box .desc_num {
    top: -34px;
    height: 60px;
  }
}
.gallery_box .desc_ttl {
  font-family: "Noto Serif JP", serif;
  font-size: 38px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: #968159;
}
@media screen and (max-width: 1180px) {
  .gallery_box .desc_ttl {
    font-size: 28px;
  }
}
@media screen and (max-width: 768px) {
  .gallery_box .desc_ttl {
    font-size: 22px;
  }
}
.gallery_box:nth-child(odd) {
  padding-right: 11.4%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 1180px) {
  .gallery_box:nth-child(odd) {
    padding-right: 0;
  }
}
@media screen and (max-width: 768px) {
  .gallery_box:nth-child(odd) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.gallery_box:nth-child(odd) .gallery_box__main::after {
  left: -30px;
  -webkit-clip-path: polygon(0 0, 93% 0, 100% 12%, 100% 100%, 7% 100%, 0 88%);
          clip-path: polygon(0 0, 93% 0, 100% 12%, 100% 100%, 7% 100%, 0 88%);
}
@media screen and (max-width: 768px) {
  .gallery_box:nth-child(odd) .gallery_box__main::after {
    left: -15px;
  }
}
.gallery_box:nth-child(odd) .gallery_box__mainImg {
  -webkit-clip-path: polygon(0 0, 93% 0, 100% 12%, 100% 100%, 7% 100%, 0 88%);
          clip-path: polygon(0 0, 93% 0, 100% 12%, 100% 100%, 7% 100%, 0 88%);
}
.gallery_box:nth-child(odd) .gallery_box__desc::after {
  right: 0;
}
.gallery_box:nth-child(odd) .desc_num {
  right: 0;
}
.gallery_box:nth-child(even) {
  padding-left: 11.4%;
}
@media screen and (max-width: 1180px) {
  .gallery_box:nth-child(even) {
    padding-left: 0;
  }
}
.gallery_box:nth-child(even) .gallery_box__main::after {
  right: -30px;
  -webkit-clip-path: polygon(7% 0, 100% 0, 100% 88%, 93% 100%, 0 100%, 0 12%);
          clip-path: polygon(7% 0, 100% 0, 100% 88%, 93% 100%, 0 100%, 0 12%);
}
@media screen and (max-width: 768px) {
  .gallery_box:nth-child(even) .gallery_box__main::after {
    right: -15px;
  }
}
.gallery_box:nth-child(even) .gallery_box__mainImg {
  -webkit-clip-path: polygon(7% 0, 100% 0, 100% 88%, 93% 100%, 0 100%, 0 12%);
          clip-path: polygon(7% 0, 100% 0, 100% 88%, 93% 100%, 0 100%, 0 12%);
}
.gallery_box:nth-child(even) .gallery_box__desc::after {
  left: 0;
}
.gallery_box:nth-child(even) .desc_num {
  left: -40px;
}
@media screen and (max-width: 1180px) {
  .gallery_box:nth-child(even) .desc_num {
    left: -20px;
  }
}
@media screen and (max-width: 768px) {
  .gallery_box:nth-child(even) .desc_num {
    left: inherit;
    right: 0;
  }
}

.carousel {
  position: relative;
  margin: 40px auto 0;
}
@media screen and (max-width: 768px) {
  .carousel {
    width: 90%;
  }
}

.carousel_arrow {
  position: absolute;
  top: 50%;
  display: block;
  width: 20px;
  height: 20px;
  margin-top: -13px;
  border: 0;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .carousel_arrow {
    width: 14px;
    height: 14px;
    margin-top: -10px;
  }
}
.carousel_arrow.prev {
  left: -24px;
  border-top: solid 1px #96815a;
  border-right: solid 1px #96815a;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}
@media screen and (max-width: 768px) {
  .carousel_arrow.prev {
    left: -20px;
  }
}
.carousel_arrow.next {
  right: -24px;
  border-top: solid 1px #96815a;
  border-right: solid 1px #96815a;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (max-width: 768px) {
  .carousel_arrow.next {
    right: -20px;
  }
}

.carousel_boxInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.carousel_box__item {
  display: block;
  width: 24%;
  margin-right: 1.333%;
  margin-bottom: 1.333%;
}
.carousel_box__item:nth-child(4n) {
  margin-right: 0;
}
.carousel_box__item img {
  width: 100%;
}

.desc_btn {
  position: relative;
  display: block;
  width: 300px;
  height: 60px;
  line-height: 58px;
  padding: 0 60px;
  margin: 30px auto 0;
  border: 1px solid #968159;
  background-color: #968159;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.desc_btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  display: block;
  width: 8px;
  height: 8px;
  border: 0;
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
  margin-top: -4px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.desc_btn:hover {
  background-color: #fff;
  color: #968159;
  opacity: 1;
}
.desc_btn:hover::after {
  border-top: solid 1px #968159;
  border-right: solid 1px #968159;
}

.gallery_deco {
  position: absolute;
  top: 16.5%;
  right: 5%;
  width: 82px;
}
@media screen and (max-width: 768px) {
  .gallery_deco {
    display: none;
  }
}

.costume_inner {
  position: relative;
  width: 100vw;
  height: 93.2vw;
}
@media screen and (max-width: 768px) {
  .costume_inner {
    height: 220vw;
  }
}
.costume_inner::after {
  content: "";
  position: absolute;
  top: 14.6vw;
  left: 0;
  right: 0;
  margin: auto;
  display: block;
  width: 62.5vw;
  height: 70.7vw;
  background-color: #f4f2ee;
  z-index: 0;
}
@media screen and (max-width: 1500px) {
  .costume_inner::after {
    height: 75vw;
  }
}
@media screen and (max-width: 768px) {
  .costume_inner::after {
    top: 30vw;
    width: 80vw;
    height: 185vw;
  }
}
.costume_inner .ttl_wrap {
  position: absolute;
  top: 31.2vw;
  width: 100%;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .costume_inner .ttl_wrap {
    top: 70vw;
  }
}

.costume_img {
  position: absolute;
  z-index: 1;
}
.costume_img.img01 {
  width: 23.9vw;
  top: 9.1vw;
  left: 41.3vw;
}
@media screen and (max-width: 768px) {
  .costume_img.img01 {
    width: 45vw;
    top: 18vw;
    left: 5vw;
  }
}
.costume_img.img02 {
  width: 29.5vw;
  top: 22.9vw;
  left: -2.4vw;
}
@media screen and (max-width: 768px) {
  .costume_img.img02 {
    width: 45vw;
    top: 115vw;
    left: 5vw;
  }
}
.costume_img.img03 {
  width: 24.3vw;
  top: 11.7vw;
  right: 3.4vw;
}
@media screen and (max-width: 768px) {
  .costume_img.img03 {
    width: 40vw;
    top: 13vw;
    right: 5vw;
  }
}
.costume_img.img04 {
  width: 19.4vw;
  top: 52.9vw;
  left: 11.1vw;
}
@media screen and (max-width: 768px) {
  .costume_img.img04 {
    width: 40vw;
    top: 122vw;
    left: inherit;
    right: 5vw;
  }
}
.costume_img.img05 {
  width: 35.6vw;
  top: 49.6vw;
  left: 35.2vw;
}
@media screen and (max-width: 1500px) {
  .costume_img.img05 {
    top: 52vw;
  }
}
@media screen and (max-width: 1180px) {
  .costume_img.img05 {
    top: 54vw;
    width: 30vw;
  }
}
@media screen and (max-width: 768px) {
  .costume_img.img05 {
    width: 40vw;
    top: 157vw;
    left: 23vw;
  }
}

.costume_link {
  position: absolute;
  bottom: 12.3vw;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 2;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1500px) {
  .costume_link {
    bottom: 8vw;
  }
}
@media screen and (max-width: 768px) {
  .costume_link {
    width: 70vw;
    bottom: 14.5vw;
  }
}

.costume_deco01 {
  position: absolute;
  bottom: 11.9vw;
  left: 11.8vw;
  width: 10.2vw;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .costume_deco01 {
    display: none;
  }
}

.costume_deco02 {
  position: absolute;
  bottom: 6.4vw;
  right: 16.3vw;
  width: 6.3vw;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .costume_deco02 {
    display: none;
  }
}

.costume_deco03 {
  position: absolute;
  top: 12.9vw;
  left: 16.5vw;
  width: 6.4vw;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .costume_deco03 {
    display: none;
  }
}

.costume_bg {
  margin-right: 4.3vw;
}
@media screen and (max-width: 768px) {
  .costume_bg {
    margin-right: 0;
  }
}

#quality {
  position: relative;
  padding-bottom: 100px;
}
@media screen and (max-width: 1180px) {
  #quality {
    padding-bottom: 80px;
  }
}
#quality::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  display: block;
  width: 68.75vw;
  height: 65.7%;
  background-color: #f4f2ee;
  z-index: 0;
}

.quality_inner {
  position: relative;
  z-index: 1;
}

.quality_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .quality_list {
    display: block;
    margin-top: -50px;
  }
}

.list_box {
  position: relative;
  width: 46.666%;
  margin-top: 126px;
}
@media screen and (max-width: 1180px) {
  .list_box {
    margin-top: 110px;
  }
}
@media screen and (max-width: 768px) {
  .list_box {
    width: 100%;
    margin-top: 100px;
  }
}
.list_box:nth-child(odd) {
  margin-top: 70px;
}
@media screen and (max-width: 1180px) {
  .list_box:nth-child(odd) {
    margin-top: 50px;
  }
}
@media screen and (max-width: 768px) {
  .list_box:nth-child(odd) {
    margin-top: 100px;
  }
}

.list_box__num {
  position: absolute;
  top: -32px;
  left: -26px;
  z-index: 2;
  height: 80px;
}
@media screen and (max-width: 768px) {
  .list_box__num {
    left: 0;
    height: 60px;
  }
}
.list_box__num img {
  height: 100%;
}

.list_box__img {
  width: 100%;
  height: 330px;
  -webkit-clip-path: polygon(14% 0, 100% 0, 100% 0, 100% 100%, 0 100%, 0 20%);
          clip-path: polygon(14% 0, 100% 0, 100% 0, 100% 100%, 0 100%, 0 20%);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  position: relative;
  z-index: -2;
}
.list_box__img.num_01 {
  background-image: url(../img/20th/quality-img01.jpg);
}
.list_box__img.num_02 {
  background-image: url(../img/20th/quality-img02.jpg);
}
.list_box__img.num_03 {
  background-image: url(../img/20th/quality-img03.jpg);
}
.list_box__img.num_04 {
  background-image: url(../img/20th/quality-img04.jpg);
}
@media screen and (max-width: 1180px) {
  .list_box__img {
    height: 260px;
  }
}

.list_box__head {
  position: absolute;
  top: -20px;
  right: 30px;
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
@media screen and (max-width: 1180px) {
  .list_box__head {
    right: 20px;
    font-size: 16px;
  }
}

.text_bg {
  margin-left: 35px;
}
@media screen and (max-width: 1180px) {
  .text_bg {
    margin-left: 30px;
  }
}

.text_bg__white {
  position: relative;
  display: inline-block;
}
.text_bg__white::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: block;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  background-color: #fff;
  z-index: -1;
}
@media screen and (max-width: 1180px) {
  .text_bg__white::before {
    width: calc(100% + 16px);
  }
}

.list_box__cap {
  margin-top: 20px;
}

.list_box__link {
  position: relative;
  display: block;
  font-family: "Noto Serif JP", serif;
  font-size: 17px;
  color: #968159;
  text-align: right;
  padding-right: 20px;
}
@media screen and (max-width: 1180px) {
  .list_box__link {
    font-size: 15px;
    margin-top: 10px;
  }
}
.list_box__link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  display: block;
  width: 8px;
  height: 8px;
  border: 0;
  border-top: solid 2px #968159;
  border-right: solid 2px #968159;
  margin-top: -4px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.list_box__link:hover {
  opacity: 1;
  text-decoration: underline;
}

#plan {
  position: relative;
  padding-top: 110px;
  padding-bottom: 120px;
}
@media screen and (max-width: 768px) {
  #plan {
    padding-top: 70px;
    padding-bottom: 80px;
  }
}
#plan::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 86%;
  background-color: #f4f2ee;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  #plan::before {
    height: 83%;
  }
}

.plan_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 64px auto 0;
}

.plan_item {
  display: block;
  width: 48.333%;
  margin-bottom: 36px;
  background-color: #968159;
}
@media screen and (max-width: 1180px) {
  .plan_item {
    margin-bottom: 26px;
  }
}
@media screen and (max-width: 768px) {
  .plan_item {
    width: 100%;
  }
}
.plan_item:hover {
  opacity: 1;
}

.plan_item__btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 176px;
  padding-left: 50px;
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
  letter-spacing: 0.2em;
  color: #fff;
}
@media screen and (max-width: 1180px) {
  .plan_item__btn {
    height: 120px;
    padding-left: 20px;
    font-size: 17px;
  }
}
.plan_item__btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: block;
  width: 97%;
  height: 90%;
  border: 1px solid #fff;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 1;
}
.plan_item__btn::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 38px;
  display: block;
  width: 16px;
  height: 16px;
  border: 0;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  margin-top: -14px;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 2;
}
@media screen and (max-width: 1180px) {
  .plan_item__btn::before {
    right: 30px;
    width: 10px;
    height: 10px;
    margin-top: -12px;
  }
}
.plan_item__btn:hover {
  color: #968159;
}
.plan_item__btn:hover::after {
  background-color: #fff;
}
.plan_item__btn:hover::before {
  border-top: solid 2px #968159;
  border-right: solid 2px #968159;
}
.plan_item__btn:hover .plan_item__icon {
  background-color: #968159;
}

.plan_item__icon {
  position: relative;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  margin-right: 20px;
  z-index: 2;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
@media screen and (max-width: 1180px) {
  .plan_item__icon {
    width: 80px;
    height: 80px;
  }
}
.plan_item__icon img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 1180px) {
  .plan_item__icon img {
    height: 50%;
  }
}

.plan_item__text {
  position: relative;
  z-index: 2;
}

.plan_chart {
  position: relative;
  max-width: 1400px;
  margin: 120px auto 0;
  padding: 100px 100px 70px;
  background-color: #fff;
}
@media screen and (max-width: 1180px) {
  .plan_chart {
    margin: 60px auto 0;
    padding: 50px 3% 30px;
  }
}

.plan_chart__deco {
  position: absolute;
}
.plan_chart__deco.deco_01 {
  top: -60px;
  right: -44px;
  width: 97px;
}
@media screen and (max-width: 1500px) {
  .plan_chart__deco.deco_01 {
    right: 2%;
  }
}
@media screen and (max-width: 1180px) {
  .plan_chart__deco.deco_01 {
    display: none;
  }
}
.plan_chart__deco.deco_02 {
  top: 13%;
  left: -20px;
  width: 110px;
}
@media screen and (max-width: 1500px) {
  .plan_chart__deco.deco_02 {
    left: 1%;
  }
}
@media screen and (max-width: 1180px) {
  .plan_chart__deco.deco_02 {
    display: none;
  }
}

.plan_chart__ttl {
  display: block;
  font-family: "Noto Serif JP", serif;
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-align: center;
  color: #968159;
}
@media screen and (max-width: 1180px) {
  .plan_chart__ttl {
    font-size: 22px;
  }
}
@media screen and (max-width: 768px) {
  .plan_chart__ttl {
    font-size: 18px;
  }
}

.ttl_border {
  position: relative;
  display: inline-block;
}
.ttl_border::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  background-color: #968159;
}

.plan_chart__img {
  width: 82.4%;
  margin: 60px auto 0;
}
@media screen and (max-width: 1180px) {
  .plan_chart__img {
    width: 100%;
  }
}

.plan_tabWrap {
  border: 1px solid #968159;
}

.plan_tabBtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #968159;
}

.tab {
  width: 25%;
  font-size: 18px;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.2em;
  text-align: center;
  color: #fff;
  cursor: pointer;
}
@media screen and (max-width: 1180px) {
  .tab {
    font-size: 15px;
  }
}
@media screen and (max-width: 768px) {
  .tab {
    font-size: 12px;
  }
}
.tab span {
  display: block;
  margin: 40px auto;
  border-left: 1px solid #fff;
}
@media screen and (max-width: 768px) {
  .tab span {
    margin: 20px auto;
    line-height: 1.4;
  }
}
.tab.is-active {
  position: relative;
  color: #968159;
  background-color: #fff;
}
.tab.is-active::after {
  content: "";
  position: absolute;
  top: 0;
  right: -1px;
  display: block;
  width: 1px;
  height: 100%;
  background-color: #968159;
}
.tab:first-child span {
  border-left: none;
}
.tab br {
  display: none;
}
@media screen and (max-width: 768px) {
  .tab br {
    display: block;
  }
}

.panel {
  display: none;
  padding: 144px 100px 90px;
  margin-top: -120px;
}
@media screen and (max-width: 1180px) {
  .panel {
    padding: 137px 30px 60px;
    margin-top: -107px;
  }
}
@media screen and (max-width: 768px) {
  .panel {
    padding: 94px 20px 40px;
    margin-top: -74px;
  }
}
.panel.show {
  display: block;
}

.planBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid #dcdcdc;
  padding: 68px 0 60px;
}
.planBox.with_text_img{
  padding: 0;
  align-items: flex-end;
}
@media screen and (max-width: 1180px) {
  .planBox {
    padding: 30px 0;
  }
}
@media screen and (max-width: 768px) {
  .planBox {
    display: block;
    padding: 20px 0;
  }
}

.planBox_img {
  position: relative;
  width: 44%;
  margin-top: 40px;
}
.planBox.with_text_img .planBox_img{
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  height: 100%;
}
.planBox.with_text_img .planBox_img .text{
  position: absolute;
  z-index: 0;
  top: 5%;
  left: 0;
}
.planBox.with_text_img .planBox_img .person{
  position: relative;
  z-index: 1;
  height: auto;
}
.planBox.with_text_img .planBox_img .person.plan01_02{
  right: 30px;
}
.planBox.with_text_img .planBox_img .person.plan02_01{
  right: 40px;
}
.planBox.with_text_img .planBox_img .person.plan02_04{
  right: 40px;
}
.planBox.with_text_img .planBox_img .person.plan03_03{
  right: 40px;
}
.planBox.with_text_img .planBox_img .person.plan03_04{
  right: 40px;
}
@media screen and (max-width: 768px) {
  .planBox_img {
    width: 100%;
    margin-bottom: 20px;
    margin-top: 50px;
  }
  .planBox.with_text_img .planBox_img .text{
    top: 50%;
    transform: translateY(-50%);
  }
}
.planBox_img img {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 375px) {
  .planBox.with_text_img .planBox_img .text.plan_01{
    width: 33.462vw;
  }
  .planBox.with_text_img .planBox_img .text.plan_02{
    width: 35vw;
  }
  .planBox.with_text_img .planBox_img .text.plan_03{
    width: 35.192vw;
  }
  .planBox.with_text_img .planBox_img .text.plan_04{
    width: 35.192vw;
  }
  .planBox.with_text_img .planBox_img .person.plan01_01{
    width: 40.800vw;
  }
  .planBox.with_text_img .planBox_img .person.plan01_02{
    width: 35.067vw;
    right: 15px;
  }
  .planBox.with_text_img .planBox_img .person.plan01_03{
    width: 42.533vw;
  }
  .planBox.with_text_img .planBox_img .person.plan01_04{
    width: 42.533vw;
  }
  .planBox.with_text_img .planBox_img .person.plan02_01{
    width: 32vw;
    right: 20px;
  }
  .planBox.with_text_img .planBox_img .person.plan02_02{
    width: 43.067vw;
  }
  .planBox.with_text_img .planBox_img .person.plan02_03{
    width: 41.600vw;
  }
  .planBox.with_text_img .planBox_img .person.plan02_04{
    width: 28.267vw;
    right: 20px;
  }
  .planBox.with_text_img .planBox_img .person.plan03_01{
    width: 42.533vw;
  }
  .planBox.with_text_img .planBox_img .person.plan03_02{
    width: 42.667vw;
  }
  .planBox.with_text_img .planBox_img .person.plan03_03{
    width: 29.733vw;
    right: 20px;
  }
  .planBox.with_text_img .planBox_img .person.plan03_04{
    width: 31.600vw;
    right: 20px;
  }
}

.planBox_img__icon {
  position: absolute;
  top: -80px;
  left: -40px;
  display: block;
  width: 116px;
  height: 116px;
  border-radius: 50%;
  background-color: #d3ae3c;
  color: #fff;
  letter-spacing: 0.2em;
  text-align: center;
  line-height: 1.4;
  padding-top: 38px;
  z-index: +2;
}
@media screen and (max-width: 1180px) {
  .planBox_img__icon {
    top: -60px;
    left: -20px;
    width: 80px;
    height: 80px;
    font-size: 12px;
    padding-top: 25px;
  }
}
@media screen and (max-width: 768px) {
  .planBox_img__icon {
    top: -60px;
    left: -10px;
    width: 80px;
    height: 80px;
    padding-top: 20px;
    letter-spacing: 0.05em;
  }
}
.planBox_img__icon.row_3 {
  padding-top: 24px;
}
@media screen and (max-width: 1180px) {
  .planBox_img__icon.row_3 {
    padding-top: 14px;
  }
}
@media screen and (max-width: 768px) {
  .planBox_img__icon.row_3 {
    padding-top: 10px;
  }
}

.planBox_desc {
  width: 52%;
}
.planBox.with_text_img .planBox_desc{
  padding: 60px 0 50px;
}
@media screen and (max-width: 1180px) {
  .planBox.with_text_img .planBox_desc{
    padding: 30px 0;
  }
}
@media screen and (max-width: 768px) {
  .planBox_desc {
    width: 100%;
  }
  .planBox.with_text_img .planBox_desc{
    padding: 20px 0;
  }
}

.planBox_desc__ttl {
  font-family: "Noto Serif JP", serif;
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 1180px) {
  .planBox_desc__ttl {
    font-size: 26px;
  }
}
@media screen and (max-width: 768px) {
  .planBox_desc__ttl {
    font-size: 22px;
  }
}

.planBox_add_text{
  margin-bottom: 15px;
}
@media screen and (max-width: 375px) {
  .planBox_add_text{
    margin-bottom: 10px;
  }
}

.setList_ttl {
  font-size: 18px;
  letter-spacing: 0.2em;
  color: #968159;
  font-weight: 600;
}
@media screen and (max-width: 1180px) {
  .setList_ttl {
    font-size: 16px;
  }
}
@media screen and (max-width: 1180px) {
  .setList_ttl {
    font-size: 14px;
  }
}

.setList_ttl__sub {
  font-weight: 400;
  font-size: 14px;
  padding: 6px 10px;
  background-color: #f4f2ee;
  letter-spacing: 0.15em;
  margin-left: 14px;
}
@media screen and (max-width: 1180px) {
  .setList_ttl__sub {
    font-size: 12px;
    padding: 3px 10px;
  }
}

.setList_item {
  line-height: 2.1;
}
@media screen and (max-width: 1180px) {
  .setList_item {
    line-height: 2;
  }
}
.setList_item::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #968159;
  margin-right: 8px;
  vertical-align: middle;
}

.setList_atten {
  font-size: 14px;
  color: #87744f;
  letter-spacing: 0.2em;
  margin-top: 8px;
}
@media screen and (max-width: 768px) {
  .setList_atten {
    font-size: 12px;
  }
}

.setList_price {
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  text-align: right;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1180px) {
  .setList_price {
    font-size: 14px;
  }
}
.setList_price .font_big {
  font-size: 28px;
}
@media screen and (max-width: 1180px) {
  .setList_price .font_big {
    font-size: 24px;
  }
}
.setList_price .font_big::before {
  content: "¥";
  display: inline-block;
  font-size: 22px;
}
@media screen and (max-width: 1180px) {
  .setList_price .font_big::before {
    font-size: 18px;
  }
}

.planOption {
  padding-top: 50px;
}
@media screen and (max-width: 768px) {
  .planOption {
    padding-top: 30px;
  }
}

.planOption_ttl {
  font-size: 20px;
  color: #968159;
  letter-spacing: 0.2em;
  margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .planOption_ttl {
    font-size: 18px;
  }
}

.planOption_text01{
  font-size: 18px;
  font-weight: bold;
  color: #87744f;
  letter-spacing: 0.2em;
}
.planOption_text02{
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .planOption_text01{
    font-size: 16px;
  }
  .planOption_text02{
    margin-bottom: 10px;
  }
}

.planOption_ttl__icon {
  width: 21px;
  vertical-align: text-bottom;
  margin-right: 6px;
}
@media screen and (max-width: 768px) {
  .planOption_ttl__icon {
    width: 18px;
  }
}

.planOption_atten {
  font-size: 14px;
  color: #87744f;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1180px) {
  .planOption_atten {
    font-size: 12px;
  }
}

.planOption_txt {
  margin-top: 20px;
  letter-spacing: 0.1em;
  line-height: 1.8;
}

.plan_link {
  margin: 50px auto 0;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 768px) {
  .plan_link {
    margin: 30px auto 0;
  }
}

.planOption_twoColumn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 30px;
  background-color: #f4f2ee;
  margin-bottom: 10px;
}
@media screen and (max-width: 1180px) {
  .planOption_twoColumn {
    display: block;
  }
}

.planOptionBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 49%;
}
@media screen and (max-width: 1180px) {
  .planOptionBox {
    width: 100%;
    margin-bottom: 20px;
  }
  .planOptionBox:last-child {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  .planOptionBox {
    display: block;
  }
}

.planOptionBox_img {
  width: 35%;
  margin-right: 3%;
}
@media screen and (max-width: 768px) {
  .planOptionBox_img {
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
  }
}

.planOptionBox_desc {
  width: 62%;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .planOptionBox_desc {
    width: 100%;
  }
}

.planOptionBox_desc__ttl {
  font-size: 22px;
  font-family: "Noto Serif JP", serif;
  color: #968159;
}
@media screen and (max-width: 1500px) {
  .planOptionBox_desc__ttl {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .planOptionBox_desc__ttl {
    font-size: 16px;
  }
}

.planOptionBox_desc__txt {
  font-size: 20px;
  font-family: "Noto Serif JP", serif;
  line-height: 1.8;
}
@media screen and (max-width: 1500px) {
  .planOptionBox_desc__txt {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .planOptionBox_desc__txt {
    font-size: 14px;
  }
}

.planOptionBox_desc__atten {
  font-size: 14px;
  color: #968159;
}
@media screen and (max-width: 768px) {
  .planOptionBox_desc__atten {
    font-size: 12px;
  }
}

.banner {
  padding-top: 130px;
  padding-bottom: 140px;
}
@media screen and (max-width: 768px) {
  .banner {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.bnr_friend{
  text-align: center;
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .bnr_friend{
    margin-top: 20px;
  }
}

.bnr_hakama {
  display: block;
  margin: 0 auto;
  max-width: 1100px;
}

#history {
  position: relative;
  z-index: 1;
}
#history::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 54.1%;
  height: 740px;
  background: url(../img/20th/history-img.jpg) no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
@media screen and (max-width: 1180px) {
  #history::after {
    width: 40%;
    height: 450px;
  }
}
@media screen and (max-width: 768px) {
  #history::after {
    position: static;
    width: 100%;
    height: 260px;
  }
}

.history_inner {
  position: relative;
  padding: 58px 0 74px;
  width: 430px;
  margin-right: 0;
  margin-left: auto;
}
@media screen and (max-width: 1180px) {
  .history_inner {
    padding: 30px 0;
    width: 58%;
  }
}
@media screen and (max-width: 768px) {
  .history_inner {
    width: 100%;
    padding: 0 0 30px;
  }
}

.history_mess {
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  letter-spacing: 0.24em;
  line-height: 2;
  margin-top: 30px;
  margin-bottom: 10px;
}
@media screen and (max-width: 1180px) {
  .history_mess {
    font-size: 16px;
  }
}

.history_deco {
  position: absolute;
  bottom: 0;
  right: -200px;
  width: 142px;
}
@media screen and (max-width: 1180px) {
  .history_deco {
    display: none;
  }
}

#faq {
  position: relative;
}
#faq::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 92%;
  height: 100%;
  background-color: #f4f2ee;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  #faq::before {
    width: 100%;
  }
}

.faq_inner {
  padding-top: 160px;
  padding-bottom: 160px;
}
@media screen and (max-width: 1180px) {
  .faq_inner {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.faq_listWrap {
  max-width: 1000px;
  margin: 60px auto;
}
@media screen and (max-width: 768px) {
  .faq_listWrap {
    margin: 30px auto;
  }
}

.faq_list {
  padding: 0 30px;
  margin-bottom: 24px;
  background-color: #fff;
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .faq_list {
    padding: 0 10px;
    margin-bottom: 20px;
  }
}
.faq_list.is-hidden {
  opacity: 0;
  height: 0;
  margin: 0;
}

.faq_q,
.faq_a {
  position: relative;
  padding: 25px 0 25px 70px;
}
@media screen and (max-width: 768px) {
  .faq_q,
.faq_a {
    padding: 15px 25px 15px 45px;
  }
}

.faq_icon {
  position: absolute;
  top: 22px;
  left: 0;
  display: block;
  width: 46px;
  height: 46px;
  border-radius: 50%;
}
@media screen and (max-width: 1180px) {
  .faq_icon {
    top: 16px;
  }
}
@media screen and (max-width: 768px) {
  .faq_icon {
    top: 9px;
    width: 36px;
    height: 36px;
  }
}

.faq_q {
  position: relative;
  font-size: 18px;
  cursor: pointer;
}
@media screen and (max-width: 1180px) {
  .faq_q {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .faq_q {
    font-size: 14px;
  }
}
.faq_q .faq_icon {
  background-color: #968159;
}
.faq_q .faq_icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: block;
  width: 14px;
  height: 16px;
  background: url(../img/20th/faq-icon-q.svg) no-repeat;
  background-position: 50%;
  background-size: contain;
}
.faq_q::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  width: 24px;
  height: 2px;
  background-color: #968159;
}
.faq_q::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 11px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  width: 2px;
  height: 24px;
  background-color: #968159;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.faq_q.active::before {
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}

.faq_a {
  display: none;
  border-top: 1px solid #dcdcdc;
}
.faq_a .faq_icon {
  border: 1px solid #968159;
}
.faq_a .faq_icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: block;
  width: 14px;
  height: 16px;
  background: url(../img/20th/faq-icon-a.svg) no-repeat;
  background-position: 50%;
  background-size: contain;
}

.faq_btn {
  margin: 0 auto;
}
.faq_btn.is-btn-hidden {
  display: none;
}
.faq_btn::before {
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

.omiyaTitle {
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .omiyaTitle {
    margin-bottom: 20px;
  }
}

.omiyaTitle span {
  display: block;
  font-size: 20px;
  font-weight: normal;
  letter-spacing: 0.3em;
}
@media screen and (max-width: 768px) {
  .omiyaTitle span {
    font-size: 16px;
  }
}

.img_mod {
  position: relative;
  bottom: -15px;
  left: 115px;
  margin-top: -35px;
}
@media screen and (max-width: 768px) {
  .img_mod {
    bottom: -10px;
    left: 60px;
  }
}

@media screen and (max-width: 768px) {
  #blogBox .omiyaTitle img {
    width: 186px;
  }
}

/* 2024.04.17 追加 */

.blog_btn {
  margin: 0 auto;
  text-align: center;
  width: 380px;
  height: 80px;
  line-height: 78px;
  box-sizing: border-box;
}
.blog_btn{
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .blog_btn {
    width: 300px;
    height: 60px;
    line-height: 58px;
  }
  .blog_btn{
    margin-top: 30px;
  }
}
.blog_btn::before{
  right: 30px;
}
.blog_btn:hover{
  cursor: pointer;
}
.blog_btn.is-btn-hidden {
  display: none;
}
.blog_btn::before {
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

.blog_item.is-hidden{
  opacity: 0;
  height: 0;
  visibility: hidden;
}

/* banner */
.floating-bannerBox{
  position: fixed;
  z-index: 5;
  bottom: 2vw;
  right: 2vw;
}
.floating-banner{
  position: relative;
  z-index: 1;
  max-width: 475px;
}
.floating-banner a{
  display: block;
  position: relative;
  z-index: 1;
}
.floating-banner::after{
  content: "";
  display: block;
  width: 100%;
  height: calc(100% - 10px);
  position: absolute;
  top: 10px;
  left: 0;
  z-index: 0;
  box-shadow: 0px 0px 30px 0px rgba(0,0,0,0.1);
}
.floating-banner-close{
  position: absolute;
  z-index: 2;
  top: -24px;
  right: -28px;
  width: 71px;
}

.floating-bannerBox.hide{
  display: none;
}

@media screen and (max-width: 1024px) {
  .floating-bannerBox{
    position: fixed;
    right: 0;
    bottom: 2vw;
    padding: 0 4vw;
    transition: all 0.4s;
  }
  .floating-banner-close{
    top: -5vw;
    right: -3vw;
    width: 16vw;
  }
}

@media screen and (max-width: 430px) {
  .floating-bannerBox{
    right: auto;
    left: auto;
  }
}

.abs_btn_line{
  display: none;
}

/* header-info */
@media screen and (max-width: 1024px) {
  #pageHeader {
    position: fixed;
    width: 100%;
    background: #fff;
    top: 0;
    left: 0;
  }
}

.header-info{
  display: none;
  transition: all 0.3s;
  white-space: nowrap;
}
@media screen and (max-width: 1024px) {
  body.is-scrolled .header-info,
  .header-info{
    width: 100%;
    padding-top: 0;
    height: calc(24vw - 13vw);
    background-color: #fff;
    position: fixed;
    top: 97px;
    left: 0;
    z-index: 10;
    box-shadow: 0px 5px 10px -5px rgba(0,0,0,0.1);
    display: flex;
    justify-content: center;
  }
  .header-infoInner{
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    justify-content: center;
  }
  .header-info-tel {
    width: calc(100% / 3);
    height: 100%;
  }
  .header-info-list{
    display: flex;
    width: calc(100% - (100% / 3));
    height: 100%;
  }
  .header-info-listItem{
    width: 50%;
    position: relative;
  }
  .header-info-listItem::before{
    content: "";
    display: block;
    width: 2px;
    height: 50%;
    border-left: 2px dotted #9F9F9F;
    position: absolute;
    top: 25%;
    left: 0;
  }
  .header-info-tel .phoneNumber,
  .header-info-link{
    display: block;
    width: 100%;
    height: 100%;
  }
  .header-info-tel .phoneNumber .sp,
  .header-info-link .sp{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: calc(3.47vw * 0.8);
  }
  .header-info-tel .phoneNumber .sp svg{
    width: 1.87vw;
    height: auto;
    margin-right: 0.8vw;
  }
  .header-info-link.line svg,
  .header-info-link.web svg{
    margin-right: 0.8vw;
    width: 4vw;
    height: auto;
  }
  .header-info-link.line svg path,
  .header-info-link.web svg path{
    fill: black;
  }
}

@media screen and (max-width: 639px) {
  body.is-scrolled .header-info,
  .header-info{
    height: calc(30vw - 16.33vw);
    top: 50px
  }
  .header-info-tel .phoneNumber .sp,
  .header-info-link .sp{
    font-size: 3.47vw;
  }
}
