/* ----------------------------------------------
 * #mv
 */
 #mv {
  margin-top: 76px;
}

@media screen and (max-width: 768px) {
  #mv {
    margin-top: 60px;
  }
}



#mv .head .ttl {
  position: absolute;
  margin: 0 auto;
  left: 0;
  top: 0;
  max-width: 720px;
  padding: 0;
  height: 200px;
}
#mv .head .ttl img {
  height: 100%;
}

@media screen and (max-width: 1080px) {
  #mv .head .ttl {
    width: 100%;
    height: 110px;
    background-image: url("../img/new/top_logo_01-1.svg?ver=8");
    background-size: contain;
    background-repeat: no-repeat;
    display: block;
  }

  #mv .head .ttl img {
    display: none;
  }
}

#mv .about {
  background-image: url("../img/about_bg.png");
  background-repeat: repeat;
  background-size: 32px 56px;
}

#mv .about .inner {
  position: relative;
  height: 330px;
}

@media screen and (max-width: 1080px) {
  #mv .about .inner {
    height: auto;
    padding: 140px 20px;
  }
}

@media screen and (max-width: 768px) {
  #mv .about .inner {
    padding: 0 20px 20px;
  }
}

#mv .about .photo {
  position: absolute;
  left: 0;
  bottom: 3%;
  top: auto;
  margin-left: -2%;
  margin-top: -8.5%;
  /* max-width: 280px; */
}

@media screen and (max-width: 1080px) {
  #mv .about .photo {
    width: 30%;
    left: 20px;
  }
}

@media screen and (max-width: 768px) {
  #mv .about .photo {
    position: relative;
    bottom: initial;
    margin: 0 auto;
    padding-top: 15px;
    width: 60%;
    left: 0;
  }
}

#mv .about .price {
  position: absolute;
  right: 0;
  bottom: 11%;
  margin-right: 1.4%;
  max-width: 630px;
}

@media screen and (max-width: 1080px) {
  #mv .about .price {
    width: 55%;
  }
}

@media screen and (max-width: 768px) {
  #mv .about .price {
    position: relative;
    bottom: initial;
    margin: 0 auto;
    width: 100%;
  }
}

/* ----------------------------------------------
 * #news
 */
#news {
  padding: 50px 0 100px;
}

@media screen and (max-width: 768px) {
  #news {
    padding: 50px 0;
  }
}

@media screen and (max-width: 480px) {
  #news {
    padding: 30px 0;
  }
}

#news .ttl {
  color: #c3b266;
}

#news .sub-ttl {
  color: #000;
}

#news .news-list {
  border-bottom: 1px solid #c8c8c8;
}

#news .news-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.8rem;
  border-top: 1px solid #c8c8c8;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 768px) {
  #news .news-list li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 15px 0;
    font-size: 1.35rem;
  }
}

#news .news-list li .item-date {
  font-weight: bold;
  width: 200px;
}

@media screen and (max-width: 768px) {
  #news .news-list li .item-date {
    width: 100%;
  }
}

#news .news-list li .item-txt {
  width: calc(100% - 150px);
}

@media screen and (max-width: 768px) {
  #news .news-list li .item-txt {
    width: 100%;
  }
}

#news .news-list li .item-txt a {
  color: #000;
  display: block;
  position: relative;
  padding: 30px 0;
}

@media screen and (max-width: 768px) {
  #news .news-list li .item-txt a {
    padding: 0;
  }
}

#news .news-list li .item-txt a::after {
  content: '';
  width: 60px;
  height: 8px;
  background-image: url(..../img/icon-arrow.svg);
  background-size: 60px 8px;
  background-repeat: no-repeat;
  background-position: 100% 0;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -4px;
  -webkit-transition: .3s;
  transition: .3s;
}

@media screen and (max-width: 768px) {
  #news .news-list li .item-txt a::after {
    content: none;
  }
}

#news .news-list li .item-txt a:hover::after {
  width: 50px;
  background-size: 50px 8px;
}

#news .more {
  margin-top: 40px;
  font-size: 1.8rem;
  font-family: 'Noto Serif JP', serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 480px) {
  #news .more {
    margin-top: 20px;
    font-size: 1.35rem;
  }
}

#news .more a {
  color: #000;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 40px;
}

#news .more a::before {
  content: '';
  width: 40px;
  height: 40px;
  background-size: 40px 40px;
  background-image: url(..../img/icon-news.svg);
  background-repeat: no-repeat;
  display: inline-block;
  margin-right: 10px;
}

@media screen and (max-width: 480px) {
  #news .more a::before {
    width: 20px;
    height: 20px;
    background-size: 20px 20px;
  }
}

#news .more a:hover {
  opacity: .7;
}

/* ----------------------------------------------
 * #feature
 */
#feature {
  clear: both;
  margin-top: -2px;
}

#feature .item {
  overflow: hidden;
  position: relative;
  background: linear-gradient(90deg, rgba(255,246,233,1) 0%, rgba(255,250,236,1) 63%, rgba(255,254,238,1) 100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 768px) {
  #feature .item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

#feature .item .text {
  width: 50%;
  height: auto !important;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 768px) {
  #feature .item .text {
    padding: 0 20px;
    width: 100%;
  }
}

@media screen and (max-width: 480px) {
  #feature .item .text {
    padding: 0 10px;
  }
}

#feature .item .textb {
  float: right;
  width: 480px;
  text-align: left;
  margin-top: 12%;
  margin-right: 42px;
}

@media screen and (max-width: 1080px) {
  #feature .item .textb {
    margin-right: 80px;
  }
}

@media screen and (max-width: 768px) {
  #feature .item .textb {
    float: none;
    width: 100%;
    margin-top: 0;
    margin-right: 0;
  }
}

@media screen and (max-width: 480px) {
  #feature .item .textb {
    padding: 0;
  }
}

#feature .item .desc {
  font-size: 1.7rem;
  line-height: 1.8;
  margin-left: 16.1%;
  margin-top: -2.6%;
}

@media screen and (max-width: 768px) {
  #feature .item .desc {
    margin-left: 80px;
  }
}

@media screen and (max-width: 480px) {
  #feature .item .desc {
    margin-left: 55px;
    font-size: 1.2rem;
  }
}

#feature .item .photo {
  width: 50%;
  background: url("../img/new/feature_photo_01.webp?ver=8") center center no-repeat;
  background-size: cover;
  /* min-height: 500px; */
  max-height: 500px;
  overflow: hidden;
}

#feature .item .photo img {
  display: none;
}

@media screen and (max-width: 768px) {
  #feature .item .photo {
    display: none;
  }
}

#feature .item .point {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 130px;
  height: 130px;
  background-image: url("../img/sprite01.png?ver=8");
  background-size: 130px;
  background-repeat: no-repeat;
  margin-top: -63px;
  margin-left: -63px;
  white-space: nowrap;
  overflow: hidden;
  text-indent: 100%;
}

#feature .item.item_01 h2 {
  max-width: 420px;
}
@media screen and (max-width: 1200px) {
  #feature .item.item_01 h2 {
    width: 77.5%;
    margin: auto 0px auto auto;
  }
}
@media screen and (max-width: 768px) {
  #feature .item.item_01 h2 {
    margin-left: 10px;
    max-width: 100%;
    width: auto;
  }
}

@media screen and (max-width: 480px) {
  #feature .item.item_01 h2 {
    max-width: 100%;
  }
}

#feature .item.item_02, #feature .item.item_04 {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

@media screen and (max-width: 768px) {
  #feature .item.item_02, #feature .item.item_04 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

#feature .item.item_02 .textb,
#feature .item.item_04 .textb {
  margin-left: 90px;
  margin-right: 0;
  float: left;
  padding-right: 40px;
  padding-left: 0;
}

@media screen and (max-width: 1080px) {
  #feature .item.item_02 .textb,
  #feature .item.item_04 .textb {
    width: 100%;
    margin: 0;
    padding: 20px;
  }
}

@media screen and (max-width: 768px) {
  #feature .item.item_02 .textb,
  #feature .item.item_04 .textb {
    margin-left: 0;
    float: none;
  }
}

@media screen and (max-width: 480px) {
  #feature .item.item_02 .textb,
  #feature .item.item_04 .textb {
    padding: 0;
  }
}

#feature .item.item_02 h2 {
  width: 533px;
}
@media screen and (max-width: 1200px) {
  #feature .item.item_02 h2 {
    max-width:85%;
    margin: auto 20px auto auto;
  }
}
@media screen and (max-width: 768px) {
  #feature .item.item_02 h2 {
    margin-left: 10px;
    max-width: 100%;
    width: auto;
  }
}
@media screen and (max-width: 480px) {
  #feature .item.item_02 h2 {
    max-width: 100%;
  }
}

#feature .item.item_02 .textb {
  margin-top: 8.1%;
}
@media screen and (max-width: 1200px) {
  #feature .item.item_02 .textb {
    margin: auto;
    float: none;
    padding-right: 0;
    padding-left: 0;
    padding: 20px 0;
  }
}
@media screen and (max-width: 768px) {
  #feature .item.item_02 .textb {
    margin-top: 0;
  }
}

#feature .item.item_02 .desc {
  margin-left: 19.8%;
  margin-top: 2.4%;
  font-family: Times New Roman, 'Noto Serif JP', serif;
}

@media screen and (max-width: 768px) {
  #feature .item.item_02 .desc {
    margin-left: 85px;
  }
}

@media screen and (max-width: 480px) {
  #feature .item.item_02 .desc {
    margin-left: 60px;
  }
}

#feature .item.item_02 .photo {
  background-image: url("../img/new/feature_photo_02.webp?ver=8");
}

#feature .item.item_02 .point {
  width: 130px;
  height: 130px;
  background-image: url("../img/sprite02.png?ver=8");
  background-size: 130px;
  background-repeat: no-repeat;
}

#feature .item.item_03 h2 {
  max-width: 390px;
}
@media screen and (max-width: 1200px) {
  #feature .item.item_03 h2 {
    margin-left: auto;
    margin-right: 0px;
    max-width: 80%;
    width: auto;
  }
}
@media screen and (max-width: 768px) {
  #feature .item.item_03 h2 {
    margin-left: 8px;
  }
}

@media screen and (max-width: 768px) {
  #feature .item.item_03 h2 {
    max-width: 100%;
  }
}

#feature .item.item_03 .desc {
  margin-left: 19.5%;
  margin-top: -3.2%;
  position: relative;
  z-index: 2;
  font-family: Times New Roman, 'Noto Serif JP', serif;
}

@media screen and (max-width: 768px) {
  #feature .item.item_03 .desc {
    margin-left: 95px;
  }
}

@media screen and (max-width: 480px) {
  #feature .item.item_03 .desc {
    margin-left: 60px;
  }
}

#feature .item.item_03 .desc .img {
  text-align: right;
  padding-right: 90px;
  z-index: -1;
}

@media screen and (max-width: 768px) {
  #feature .item.item_03 .desc .img {
    padding-right: 0;
    position: absolute;
    top: -70px;
    right: 0;
  }
}

@media screen and (max-width: 480px) {
  #feature .item.item_03 .desc .img {
    width: 30%;
    top: -40px;
  }
}

#feature .item.item_03 .photo {
  background-image: url("../img/new/feature_photo_03.webp?ver=8");
}

#feature .item.item_03 .point {
  width: 130px;
  height: 130px;
  background-image: url("../img/sprite03.png");
  background-size: 130px;
  background-repeat: no-repeat;
}

#feature .item.item_04 h2 {
  width: 520px;
}
@media screen and (max-width: 1200px) {
  #feature .item.item_04 h2 {
    margin: auto 0px auto auto;
    max-width: 85%;
    width: auto;
  }
}
@media screen and (max-width: 768px) {
  #feature .item.item_04 h2 {
    margin-left: 10px;
    max-width: 100%;
    width: auto;
  }
}

#feature .item.item_04 .textb {
  margin-top: 7.8%;
  padding-bottom: 7.8%;
}
@media screen and (max-width: 768px) {
  #feature .item.item_04 .textb {
      margin-top: 0%;
    }
}
#feature .item.item_04 .desc {
  margin-left: 19.8%;
  margin-top: 4.3%;
  font-family: Times New Roman, 'Noto Serif JP', serif;
}

@media screen and (max-width: 768px) {
  #feature .item.item_04 .desc {
    margin-left: 90px;
  }
}

@media screen and (max-width: 768px) {
  #feature .item.item_04 .desc {
    margin-left: 60px;
  }
}

#feature .item.item_04 .desc img {
  margin: 4% 0;
}

#feature .item.item_04 .photo {
  background-image: url("../img/new/feature_photo_04.webp?ver=8");
}

#feature .item.item_04 .point {
  width: 130px;
  height: 130px;
  background-image: url("../img/sprite04.png?ver=8");
  background-size: 130px;
  background-repeat: no-repeat;
}



#feature .item.item_05 h2 {
  margin-left: -100px;
  max-width: 520px;
}

@media screen and (max-width: 768px) {
  #feature .item.item_05 h2 {
    margin-left: 8px;
    margin-right: 8px;
  }
}

@media screen and (max-width: 768px) {
  #feature .item.item_05 h2 {
    max-width: 100%;;
  }
}

#feature .item.item_05 .desc {
  position: relative;
  z-index: 2;
  font-family: Times New Roman, 'Noto Serif JP', serif;
}

@media screen and (max-width: 768px) {
  #feature .item.item_05 .desc {
    margin-left: 95px;
  }
}

@media screen and (max-width: 480px) {
  #feature .item.item_05 .desc {
    margin-left: 60px;
  }
}

#feature .item.item_05 .desc .img {
  text-align: right;
  padding-right: 90px;
  z-index: -1;
}

@media screen and (max-width: 768px) {
  #feature .item.item_05 .desc .img {
    padding-right: 0;
    position: absolute;
    top: -70px;
    right: 0;
  }
}

@media screen and (max-width: 480px) {
  #feature .item.item_05 .desc .img {
    width: 30%;
    top: -40px;
  }
}

#feature .item.item_05 .photo {
  background-image: url("../img/feature_photo_05.jpeg?ver=8");
}

#feature .item.item_05 .point {
  width: 130px;
  height: 130px;
  background-image: url("../img/sprite05.png?ver=8");
  background-size: 130px;
  background-repeat: no-repeat;
}



#feature .sp-photo {
  display: none;
}

@media screen and (max-width: 768px) {
  #feature .sp-photo {
    display: block;
    margin: 30px 0 0;
    font-size: 0;
  }
  #feature .sp-photo img {
    width: 100%;
  }
}

#feature .pc-photo {
  display: block;
}

@media screen and (max-width: 768px) {
  #feature .pc-photo {
    display: none;
  }
}


#feature br.sps {
  display: none;
}

/* ----------------------------------------------
 * #movie
 */
#movie {
  padding-bottom: 100px;
}

@media screen and (max-width: 768px) {
  #movie {
    padding-bottom: 50px;
    position: relative;
    margin-top: -60px;
  }
}

@media screen and (max-width: 480px) {
  #movie {
    padding-bottom: 30px;
  }
}

#movie .ttl {
  background-image: url(../img/movie_bg.png);
  background-size: auto 220px;
  background-position: center 0;
  background-repeat: no-repeat;
  height: 220px;
  padding-top: 40px;
  margin-bottom: 30px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  #movie .ttl {
    padding: 40px 20px;
  }
}

@media screen and (max-width: 480px) {
  #movie .ttl {
    background-size: auto 100px;
    height: 100px;
    padding: 15px 10px;
  }
}

#movie .ttl img {
  max-width: 654px;
}

@media screen and (max-width: 768px) {
  #movie .ttl img {
    max-width: 100%;
  }
}

#movie .ctt {
  padding: 0 20px;
  position: relative;
}

#movie .ctt .frame {
  position: absolute;
  right: 50%;
  margin-right: 200px;
  bottom: 50%;
  margin-bottom: -85px;
  top: auto;
  border: 1px solid #bda380;
  width: 300px;
  overflow: hidden;
}

@media screen and (max-width: 1080px) {
  #movie .ctt .frame {
    display: none;
  }
}

#movie .ctt .frame:before {
  content: '';
  display: block;
  padding-bottom: 100%;
}

#movie .ctt .frame img {
  position: absolute;
  top: 6px;
  left: 8px;
  width: 33px;
}

#movie .ctt .youtube {
  position: relative;
  text-align: center;
}

#movie .ctt iframe {
  margin: 0 auto;
  display: block;
  position: relative;
}

/* ----------------------------------------------
 * #payment
 */
#payment {
  background: url("../img/payment_bg_01.png?ver=8") center 0 no-repeat;
  background-size: 100%;
  background-size: cover;
  padding: 100px 0;
}

@media screen and (max-width: 768px) {
  #payment {
    padding: 50px 0;
    background-position: center 0;
    background-size: 200% auto;
  }
}

@media screen and (max-width: 480px) {
  #payment {
    padding: 30px 0;
  }
}

#payment .box {
  margin-top: 40px;
  border: 1px solid #c3b266;
  background-color: #fff;
}

#payment .hl {
  background: -ms-linear-gradient(0deg, #f3f1e5 0%, #f1efe1 17.05%, #ede9d4 34.95%, #e5debf 53.26%, #dad0a2 71.85%, #cbbd7c 90.47%, #c3b266 100%);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#F3F1E5', endColorstr='#C3B266' ,GradientType=0)";
  background: -webkit-gradient(linear, left top, right top, from(#f3f1e5), color-stop(17.05%, #f1efe1), color-stop(34.95%, #ede9d4), color-stop(53.26%, #e5debf), color-stop(71.85%, #dad0a2), color-stop(90.47%, #cbbd7c), to(#c3b266));
  background: linear-gradient(90deg, #f3f1e5 0%, #f1efe1 17.05%, #ede9d4 34.95%, #e5debf 53.26%, #dad0a2 71.85%, #cbbd7c 90.47%, #c3b266 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#F3F1E5', endColorstr='#C3B266', GradientType=1);
  height: 80px;
  position: relative;
  padding: 0 0 0 150px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 10;
}

@media screen and (max-width: 480px) {
  #payment .hl {
    height: auto;
    padding: 10px 0 10px 70px;
  }
}

#payment .hl::before {
  content: '';
  width: 94px;
  height: 105px;
  position: absolute;
  top: 0;
  left: 30px;
  background-size: 94px 105px;
  background-repeat: no-repeat;
}

@media screen and (max-width: 480px) {
  #payment .hl::before {
    width: 50px;
    height: 56px;
    background-size: 50px 56px;
    left: 10px;
  }
}

#payment .ctt {
  background: url("../img/payment_bg_03_pc.jpeg?ver=8") right 0 no-repeat;
  position: relative;
  padding: 50px 30px;
  background-size: contain;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 768px) {
  #payment .ctt {
    background: url("../img/payment_bg_03_sp.jpg?ver=8") center 100% no-repeat;
    background-size: 100% auto;
    padding: 40px 20px 60%;
    height: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-line-pack: start;
        align-content: flex-start;
  }
}

@media screen and (max-width: 480px) {
  #payment .ctt {
    padding: 20px 10px 60%;
  }
}

#payment .fl {
  font-size: 1.8rem;
  line-height: 1.75;
  width: 50%;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

@media screen and (max-width: 768px) {
  #payment .fl {
    max-width: 520px;
    width: 100%;
    margin: 0 auto;
  }
}

@media screen and (max-width: 480px) {
  #payment .fl {
    font-size: 1.2rem;
  }
}

#payment .fl ul {
  list-style-type: none;
}

#payment .box.box_01 {
  margin-top: 0;
}

#payment .box.box_01 .hl::before {
  background-image: url("../img/payment_point01.png");
}

#payment .box.box_01 .hl img {
  width: 192px;
}

@media screen and (max-width: 480px) {
  #payment .box.box_01 .hl img {
    width: 40%;
  }
}

#payment .box.box_01 .fl {
  width: 40%;
}

@media screen and (max-width: 768px) {
  #payment .box.box_01 .fl {
    width: 100%;
  }
}

#payment .box.box_01 .fr {
  width: 60%;
  text-align: right;
  position: relative;
}

#payment .box.box_01 .fr img {
  max-width: 80%;
}

@media screen and (max-width: 768px) {
  #payment .box.box_01 .fr {
    width: 100%;
  }
  #payment .box.box_01 .fr img {
    display: none;
  }
}

#payment .box.box_01 .fr:before {
  content: '';
  position: absolute;
  top: 50%;
  margin-top: -60.5px;
  left: 0;
  width: 60px;
  height: 120px;
  background-image: url("../img/payment_img_01_sprite.png?ver=8");
  background-position: center center;
  background-size: 60px 120px;
  background-repeat: no-repeat;
}

@media screen and (max-width: 768px) {
  #payment .box.box_01 .fr:before {
    content: none;
  }
}

#payment .box.box_02 .hl::before {
  background-image: url("../img/payment_point02.png");
}

#payment .box.box_02 .hl img {
  width: 261px;
}

@media screen and (max-width: 480px) {
  #payment .box.box_02 .hl img {
    width: 60%;
  }
}

#payment .box.box_02 .ctt {
  background-image: url("../img/new/payment_bg_04_pc.webp?ver=8");
  padding-top: 60px;
}

@media screen and (max-width: 480px) {
  #payment .box.box_02 .ctt {
    padding-top: 20px;
  }
}

@media screen and (max-width: 768px) {
  #payment .box.box_02 .fl {
    max-width: 520px;
    margin: 0 auto;
  }
}

#payment .box.box_02 .little {
  font-size: 1.4rem;
  display: block;
}

@media screen and (max-width: 480px) {
  #payment .box.box_02 .little {
    font-size: .9rem;
  }
}

#payment .box.box_02 .payment_02_img {
  max-width: 389px;
  width: 100%;
  margin-top: 20px;
}

@media screen and (max-width: 768px) {
  #payment .box.box_02 .payment_02_img {
    width: 100%;
    max-width: initial;
  }
}

#payment .box.box_03 .hl::before {
  background-image: url("../img/payment_point03.png");
}

#payment .box.box_03 .hl img {
  width: 228px;
}

@media screen and (max-width: 480px) {
  #payment .box.box_03 .hl img {
    width: 55%;
  }
}

#payment .box.box_03 .ctt {
  background-image: url("../img/new/payment_bg_05_pc.webp?ver=8");
  padding-top: 50px;
}

@media screen and (max-width: 720px) {
  #payment .box.box_03 .ctt {
    padding-top: 20px;
  }
}

#payment .box.box_03 .note {
  font-size: 1.4rem;
  margin-top: 7px;
}

@media screen and (max-width: 480px) {
  #payment .box.box_03 .note {
    font-size: .9rem;
  }
}

#payment .box.box_03 .payment_03_img {
  max-width: 436px;
  width: 100%;
}

@media screen and (max-width: 768px) {
  #payment .box.box_03 .payment_03_img {
    max-width: 520px;
    margin: 0 auto;
  }
}

/* ----------------------------------------------
 * #move
 */
#move {
  background: url("../img/move_bg_01.png") center 0 no-repeat #e8e8e0;
  background-size: 100%;
  padding: 100px 0;
}

@media screen and (max-width: 768px) {
  #move {
    padding: 50px 0;
  }
}

@media screen and (max-width: 480px) {
  #move {
    padding: 30px 0;
  }
}

#move .ttl span {
  display: inline-block;
}

#move .inner {
  width: 1000px;
  max-width: 100%;
}

@media screen and (max-width: 480px) {
  #move .inner {
    padding: 0 40px;
  }
}

#move .ctt {
  overflow: hidden;
  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;
}

@media screen and (max-width: 768px) {
  #move .ctt {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 500px;
    margin: 0 auto;
  }
}

#move .item {
  width: 33%;
  position: relative;
  text-align: center;
  background-color: #fff;
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
}

@media screen and (max-width: 768px) {
  #move .item {
    width: 100%;
    margin-top: 30px;
  }
}

#move .item .photo .img img {
  width: 100%;
  display: block;
}

#move .item .text {
  padding: 20px 5px;
  background: #fff;
  font-size: 1.7rem;
}

@media screen and (max-width: 480px) {
  #move .item .text {
    font-size: 1.2rem;
  }
}

#move .item .hl {
  margin: 0 auto 20px;
}

@media screen and (max-width: 480px) {
  #move .item .hl {
    margin-bottom: 10px;
  }
}

#move .item .hl img {
  display: block;
  margin: 0 auto;
  max-width: 90%;
}

#move .item.item_01 {
  margin-left: 0 !important;
}

@media screen and (max-width: 768px) {
  #move .item.item_01 {
    margin-top: 0;
  }
}

@media screen and (max-width: 480px) {
  #move .item.item_01 .hl img {
    width: 45%;
  }
}

/* ----------------------------------------------
 * #kids
 */
#kids {
  padding: 100px 0;
}

@media screen and (max-width: 768px) {
  #kids {
    padding: 50px 0;
  }
}

@media screen and (max-width: 480px) {
  #kids {
    padding: 30px 0;
  }
}

#kids .ctt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 768px) {
  #kids .ctt {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

#kids .photo {
  width: 50%;
}

@media screen and (max-width: 768px) {
  #kids .photo {
    width: 80%;
    max-width: 500px;
    margin: 0 auto;
  }
}

#kids .text {
  width: 46%;
}

@media screen and (max-width: 768px) {
  #kids .text {
    width: 100%;
  }
}

#kids .text .hl {
  margin: 0;
  font-size: 2.7rem;
  line-height: 1.6;
  font-weight: bold;
}

@media screen and (max-width: 480px) {
  #kids .text .hl {
    font-size: 1.6rem;
  }
}

#kids .text .point {
  margin: 5.87% 0 4.78%;
}

@media screen and (max-width: 768px) {
  #kids .text .point {
    margin: 20px auto 0;
    width: 60%;
  }
}

#kids .text .note {
  font-size: 1.8rem;
}

@media screen and (max-width: 768px) {
  #kids .text .note {
    font-size: 1.2rem;
  }
}

#kids .text .img {
  margin: 10% auto 0;
  max-width: 460px;
  width: 100%;
}

@media screen and (max-width: 768px) {
  #kids .text .img {
    max-width: 500px;
    width: 80%;
  }
}

/* ----------------------------------------------
 * #ba
 */
#ba {
  background: url("../img/ba_bg_01-scaled.jpg") center 160px no-repeat;
  background-size: cover;
  background-repeat: no-repeat;
  padding-bottom: 100px;
}

@media screen and (max-width: 768px) {
  #ba {
    padding-bottom: 50px;
  }
}

@media screen and (max-width: 480px) {
  #ba {
    padding-bottom: 30px;
  }
}

#ba .ttl {
  background-image: url(../img/movie_bg.png);
  background-size: auto 220px;
  background-position: center 0;
  background-repeat: no-repeat;
  height: 220px;
  padding-top: 40px;
  margin-bottom: 60px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  #ba .ttl {
    padding: 40px 20px;
  }
}

@media screen and (max-width: 480px) {
  #ba .ttl {
    background-size: auto 100px;
    height: 100px;
    padding: 15px 10px;
    margin-bottom: 30px;
  }
}

#ba .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 75px;
}

@media screen and (max-width: 768px) {
  #ba .item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 60px;
  }
}

@media screen and (max-width: 480px) {
  #ba .item {
    margin-top: 30px;
  }
}

#ba .item:first-child {
  margin-top: 0;
}

#ba .hl {
  width: 19%;
}

@media screen and (max-width: 768px) {
  #ba .hl {
    width: 190px;
  }
}

@media screen and (max-width: 480px) {
  #ba .hl {
    width: 95px;
  }
}

#ba .before {
  width: 48.5%;
}

@media screen and (max-width: 768px) {
  #ba .before {
    width: 80%;
    margin-top: 30px;
  }
}

@media screen and (max-width: 480px) {
  #ba .before {
    margin-top: 10px;
  }
}

#ba .after {
  width: 29%;
}

@media screen and (max-width: 768px) {
  #ba .after {
    width: 50%;
  }
}

/* ----------------------------------------------
 * #support
 */
#support {
  padding: 100px 0;
  background: url("../img/support_bg_01.png") center 0 no-repeat;
  background-size: 100% auto;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  #support {
    padding: 50px 0;
    background-size: 200% auto;
  }
}

@media screen and (max-width: 480px) {
  #support {
    padding: 30px 0;
  }
}

#support .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 768px) {
  #support .item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin-top: 50px;
  }
}

@media screen and (max-width: 480px) {
  #support .item {
    margin-top: 30px;
  }
}

#support .item .text {
  width: 48%;
  margin-right: 4%;
}

@media screen and (max-width: 768px) {
  #support .item .text {
    width: 100%;
    margin-right: 0;
  }
}

#support .item .text p:not(first-child) {
  margin-top: 1.7rem;
}

#support .item .hl {
  font-weight: bold;
  color: #635200;
  margin: 12px 0 20px;
  font-size: 2.8rem;
  line-height: 1.7;
}

@media screen and (max-width: 768px) {
  #support .item .hl {
    text-align: center;
  }
}

@media screen and (max-width: 480px) {
  #support .item .hl {
    font-size: 1.8rem;
    margin: 0 0 30px;
  }
  #support .item .hl span {
    display: inline-block;
  }
}

#support .item .point {
  margin-top: 22px;
}

@media screen and (max-width: 768px) {
  #support .item .point {
    text-align: center;
  }
}

@media screen and (max-width: 480px) {
  #support .item .point {
    width: 70px;
    margin: 0 auto;
  }
}

#support .item .desc {
  font-size: 1.7rem;
  line-height: 1.7;
}

@media screen and (max-width: 480px) {
  #support .item .desc {
    font-size: 1.35rem;
  }
}

#support .item .photo {
  width: 48%;
}

@media screen and (max-width: 768px) {
  #support .item .photo {
    display: none;
  }
}

#support .item .photo img {
  width: 100%;
}

#support .item.item_01 {
  margin-top: 70px;
}

@media screen and (max-width: 768px) {
  #support .item.item_01 {
    margin-top: 0;
  }
}

#support .item.item_02 {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

@media screen and (max-width: 768px) {
  #support .item.item_02 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

#support .item.item_02 .text {
  margin-right: 0;
  margin-left: 4%;
}

@media screen and (max-width: 768px) {
  #support .item.item_02 .text {
    margin-left: 0;
  }
}

#support .sp-photo {
  display: none;
}

@media screen and (max-width: 768px) {
  #support .sp-photo {
    display: block;
    width: 70%;
    margin: 0 auto;
  }
}

#support br.sp {
  display: none;
}

/* ----------------------------------------------
 * #demo
 */
#demo {
  background: url("../img/demo_bg_01.jpg?ver=8") center 0 no-repeat;
  background-size: cover;
  padding: 100px 0;
}

@media screen and (max-width: 768px) {
  #demo {
    padding: 50px 0;
  }
}

@media screen and (max-width: 480px) {
  #demo {
    padding: 30px 0;
  }
}

#demo .inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 70px;
  gap: 60px 90px;
}

#demo .demo-sp {
  display: none;
}

#demo .demo-pc {
  display: block;
}

@media screen and (max-width: 768px) {
  #demo .inner {
    margin-top: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
  #demo .demo-pc {
    display: none;
  }
  #demo .photo.demo-sp {
    margin-top: 30px;
    display: block;
  }
}

#demo .ttl img {
  display: block;
  margin: 0 auto;
}

#demo .text {
  font-size: 1.8rem;
  line-height: 1.73;
  width: 50%;
}

@media screen and (max-width: 768px) {
  #demo .text {
    width: 100%;
  }
}

@media screen and (max-width: 480px) {
  #demo .text {
    font-size: 1.35rem;
  }
}

.demo_btn {
  margin: 60px 0 0;
  text-align: center;
}

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

@media screen and (max-width: 480px) {
  .demo_btn {
    margin: 20px auto;
  }
}

.demo_btn a {
  font-family: initial;
  display: inline-block;
  color: #fff;
  text-align: center;
  height: 70px;
  line-height: 70px;
  width: 360px;
  max-width: 80%;
  font-size: 2rem;
  font-weight: normal;
  background: -ms-linear-gradient(90deg, #372813 0%, #6e5e40 100%);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#372813', endColorstr='#6E5E40' ,GradientType=0)";
  background: -webkit-gradient(linear, left bottom, left top, from(#372813), to(#6e5e40));
  background: linear-gradient(0deg, #372813 0%, #6e5e40 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#6E5E40', endColorstr='#372813', GradientType=0);
  text-decoration: none;
  border: none;
  padding: 0 !important;
}

@media screen and (max-width: 768px) {
  .demo_btn a {
    margin: 0 auto;
  }
}

@media screen and (max-width: 480px) {
  .demo_btn a {
    font-size: 1.35rem;
    height: 50px;
    line-height: 50px;
    width: 100%;
  }
}

#demo .photo {
  width: 48%;
}

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

@media screen and (max-width: 480px) {
  #demo .photo {
    margin-top: 0;
  }
}

#demo br.sp {
  display: none;
}

/* ----------------------------------------------
 * #feature-bottom
 */
#feature-bottom {
  background: url("../img/feature_bottom_bg-scaled.jpg") center 0 no-repeat;
  background-size: 100% auto;
  padding: 100px 0;
}

@media screen and (max-width: 768px) {
  #feature-bottom {
    padding: 50px 0;
    background-size: 200% auto;
  }
}

@media screen and (max-width: 480px) {
  #feature-bottom {
    padding: 30px 0;
  }
}

#feature-bottom .inner {
  max-width: 1200px;
}

@media screen and (max-width: 1200px) {
  #feature-bottom .inner {
    padding: 0 20px;
  }
}

#feature-bottom .feature-bottom-text {
  text-align: left;
  font-size: 1.8rem;
}

@media screen and (max-width: 480px) {
  #feature-bottom .feature-bottom-text {
    text-align: left;
    font-size: 1.35rem;
  }
}

#feature-bottom .feature-bottom-item {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 1080px) {
  #feature-bottom .feature-bottom-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media screen and (max-width: 480px) {
  #feature-bottom .feature-bottom-item {
    margin-top: 30px;
  }
}

#feature-bottom .feature-bottom-item .item {
  width: 48%;
  border-bottom: 1px solid #c8c8c8;
  padding: 30px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 4%;
}

@media screen and (max-width: 1080px) {
  #feature-bottom .feature-bottom-item .item {
    width: 100%;
    margin-right: 0;
  }
}

@media screen and (max-width: 768px) {
  #feature-bottom .feature-bottom-item .item {
    -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: start;
  }
}

@media screen and (max-width: 480px) {
  #feature-bottom .feature-bottom-item .item {
    padding: 10px 0;
  }
}

#feature-bottom .feature-bottom-item .item:first-of-type, #feature-bottom .feature-bottom-item .item:nth-of-type(2) {
  border-top: 1px solid #c8c8c8;
}

#feature-bottom .feature-bottom-item .item:nth-of-type(2n) {
  margin-right: 0;
}

@media screen and (max-width: 1080px) {
  #feature-bottom .feature-bottom-item .item:nth-of-type(2n) {
    border-top: none;
  }
}

#feature-bottom .feature-bottom-item .item .feature_number {
  min-width: 120px;
  font-family: Times New Roman, 'Noto Serif JP', serif;
  font-style: italic;
  font-size: 1.6rem;
  color: #666666;
  padding-left: 10px;
}

@media screen and (max-width: 768px) {
  #feature-bottom .feature-bottom-item .item .feature_number {
    padding-left: 0;
  }
}

@media screen and (max-width: 480px) {
  #feature-bottom .feature-bottom-item .item .feature_number {
    font-size: 1.2rem;
  }
}

#feature-bottom .feature-bottom-item .item .feature_text {
  font-family: 'Noto Serif JP', serif;
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 1.2px;
}

@media screen and (max-width: 480px) {
  #feature-bottom .feature-bottom-item .item .feature_text {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 480px) {
  #feature-bottom .feature-bottom-item .item .feature_text {
    font-size: 1.6rem;
  }
}

#feature-bottom .feature-bottom-textBottom {
  margin-top: 60px;
  font-size: 1.8rem;
}

@media screen and (max-width: 480px) {
  #feature-bottom .feature-bottom-textBottom {
    margin-top: 30px;
    font-size: 1.35rem;
  }
}

#feature-bottom .feature-bottom-textBottom p + * {
  margin-top: 30px;
}

/* 修正 */
#exhibition .textb{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 50px auto 100px;
}
#exhibition .textb .ttl{
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-style: normal;
  font-weight: 800;
  font-size: 30px;
  line-height: 45px;
  text-align: center;
  color: #967800;
  margin-bottom: 50px;
}

#exhibition .textb .text{
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.35;
  text-align: center;
  color: #000000;
}
@media screen and (max-width: 480px) {
  #exhibition .textb {
    margin: 20px auto 30px;
  }
  #exhibition .textb .ttl {
    font-size: 1.5rem;
    line-height: 1.4;
    letter-spacing: 0.001em;
    margin-bottom: 15px;
  }
    #exhibition .textb .text {
    font-size: 1.3rem;
    line-height: 1.4;
    letter-spacing: 0.001em;
  }
}
#exhibition img {
  width: 100%;
}

#exhibition .sp {
  display: none;
}

@media screen and (max-width: 480px) {
  #exhibition img {
    width: calc(100%*2);
    overflow: hidden;
  }

  #exhibition .sp {
    display: block;
  }

  #exhibition .pc {
    display: none;
  }
}
.cta-wrap .contact-wrap .contact-box {
  -ms-flex-item-align: stretch;
  align-self: stretch;
  width: 50%;
  max-width: 570px;
  border: 1px solid #666666;
  position: relative;
  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;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 40px 0 30px;
  font-size: 1.8rem;
  margin: 50px auto;
}

@media screen and (max-width: 1200px) {
  .cta-wrap .contact-wrap .contact-box {
    width: 48%;
  }
}

@media screen and (max-width: 768px) {
  .cta-wrap .contact-wrap .contact-box {
    width: 90%;
  }
}

@media screen and (max-width: 480px) {
  .cta-wrap .contact-wrap .contact-box {
    padding: 30px 0 20px;
  }
}

.cta-wrap .contact-wrap .contact-box h3 {
  font-family: 'Noto Serif JP', serif;
  font-weight: 500;
  display: inline-block;
  position: absolute;
  padding: 0 10px;
  left: 50%;
  top: -20px;
  background-color: #fff;
  color: #635200;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  white-space: nowrap;
}

@media screen and (max-width: 480px) {
  .cta-wrap .contact-wrap .contact-box h3 {
    font-size: 1.4rem;
    top: -13px;
  }
}

.cta-wrap .contact-wrap .contact-box .box-inner {
  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;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}

@media screen and (max-width: 1200px) {
  .cta-wrap .contact-wrap .contact-box .box-inner {
    padding: 0 20px;
  }
}

@media screen and (max-width: 480px) {
  .cta-wrap .contact-wrap .contact-box .box-inner {
    padding: 0 10px;
  }
}

.cta-wrap .contact-wrap .contact-box .box-inner a {
  width: 100%;
  max-width: 400px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 70px;
  line-height: 70px;
  color: #fff;
  font-family: 'Noto Serif JP', serif;
  padding-left: 30px;
  position: relative;
}

@media screen and (max-width: 480px) {
  .cta-wrap .contact-wrap .contact-box .box-inner a {
    height: 50px;
    line-height: 50px;
    font-size: 1.4rem;
    padding-left: 15px;
  }
}

.cta-wrap .contact-wrap .contact-box .box-inner a.footer-btn::after {
  content: '';
  width: 50px;
  height: 8px;
  background-image: url(../img/arrow-white.svg);
  background-size: 50px 8px;
  background-repeat: no-repeat;
  background-position: 100% 0;
  position: absolute;
  right: 20px;
  top: 50%;
  margin-top: -4px;
  -webkit-transition: .3s;
  transition: .3s;
}

@media screen and (max-width: 480px) {
  .cta-wrap .contact-wrap .contact-box .box-inner a.footer-btn::after {
    width: 30px;
    height: 4px;
    background-size: 30px 4px;
    right: 10px;
  }
}

.cta-wrap .contact-wrap .contact-box .box-inner a:hover::after {
  width: 40px;
}

@media screen and (max-width: 480px) {
  .cta-wrap .contact-wrap .contact-box .box-inner a:hover::after {
    width: 20px;
  }
}

.cta-wrap .contact-wrap .contact-box .box-inner a.btn-contact {
  background: #635200;
}
.cta-wrap .contact-wrap .contact-box .icon-mail {
  display: inline-block;
  background-image: url(../img/icon-mail.svg);
  width: 20px;
  height: 15px;
  background-size: 20px 15px;
  margin-right: 5px;
}


.ba-btn .contact-wrap .contact-box{
  border: none ;
  margin-bottom: 0;
}

.whiy-list_5::before{
  content: "" !important;
}

.cotnent-detail .price-wrap .detail .price .price__body{
  letter-spacing:-0.025em;
}

.higephotos-list_2col .item{
  width: calc(50% - 30px);
}

.higephotos-list_2col .item.item:nth-of-type(3) {
  margin-top: -10px;
}
.higephotos-list_2col .item.item:nth-of-type(4) {
  margin-top: 20px;
}
@media screen and (max-width: 840px) {
  .higephotos-list_2col .item {
      margin: 5px;
    }
  .higephotos-list_2col .item.item:nth-of-type(3) {
    margin-top: -15px;
  }
  .higephotos-list_2col .item.item:nth-of-type(4) {
    margin-top: 10px;
  }
}
@media screen and (max-width: 480px) {
  .higephotos-list_2col .item {
    margin: 0px;
    width: 48%;
  }
  .higephotos-list_2col .item.item:nth-of-type(3) {
    margin-top: 2.5px;
  }

  .higephotos-list_2col .item.item:nth-of-type(4) {
    margin-top: 10px;
  }
}

.higephotos .higephotos-list_2col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 70%;
  min-width: 840px;
  margin: 50px auto 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: center;
}
@media screen and (max-width: 840px) {
  .higephotos .higephotos-list_2col {
    min-width: auto;
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .higephotos .higephotos-list_2col {
    margin-top: 30px;
    justify-content: space-between;
  }
}

.higephotos .higephotos-list_2col .cover {
  position: relative;
  line-height: 1;
  font-family: "Noto Serif JP", serif;
  color: #fff;
}

.higephotos .higephotos-list_2col .cover .tile {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 180px;
  height: 40px;
  background-image: url(../img/photo_tile.svg);
  background-size: 180px 40px;
  padding-left: 20px;
  font-size: 2rem;
  line-height: 40px;
}

@media screen and (max-width: 768px) {
  .higephotos .higephotos-list_2col .cover .tile {
    width: 90px;
    height: 20px;
    background-size: 90px 20px;
    padding-left: 10px;
    font-size: 1.2rem;
    line-height: 20px;
  }
}

.demo-other-rev-wrap {
  margin: 100px 0 120px;
  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) {
  .demo-other-rev-wrap {
    margin: 60px 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

@media screen and (max-width: 480px) {
  .demo-other-rev-wrap {
    margin: 40px 0;
  }
}

.demo-other-rev-wrap .item {
  width: calc(50% - 20px);
  margin-right: 40px;
  margin-top: 40px;
  position: relative;
  border: 6px solid #e7e7de;
  padding: 45px 45px 25px;
}

@media screen and (max-width: 768px) {
  .demo-other-rev-wrap .item {
    width: 100%;
    margin-right: 0;
  }

  .demo-other-rev-wrap .item:first-of-type {
    margin-top: 0;
  }
}

@media screen and (max-width: 480px) {
  .demo-other-rev-wrap .item {
    padding: 25px 10px 15px;
    margin-top: 40px;
  }

  .demo-other-rev-wrap .item:first-of-type {
    margin-top: 0;
  }
}

.demo-other-rev-wrap .item:nth-of-type(2n) {
  margin-right: 0;
}

.demo-other-rev-wrap .item .ttl {
  background-image: url(../img/ttl-bg.svg);
  width: 280px;
  height: 50px;
  background-size: 280px 50px;
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-size: 2.4rem;
  font-weight: 500;
  position: absolute;
  padding-left: 20px;
  left: -6px;
  top: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  line-height: 50px;
}

@media screen and (max-width: 480px) {
  .demo-other-rev-wrap .item .ttl {
    width: 196px;
    height: 35px;
    background-size: 196px 35px;
    font-size: 1.6rem;
    padding-left: 10px;
    line-height: 35px;
  }
}

.contactsDemoList{
  display: flex;
  justify-content: center;
  align-items: stretch;
  width: 95%;
  margin: 0 auto;
  font-family: 'Noto Serif JP', sans-serif;
}
.contactsDemoList .item{
  width: 50%;
  margin: 5px 20px;
}
.contactsDemoList .title{
  font-size: 20px;
  font-weight: 900;
  border-bottom: 1px solid black;
  padding-left: 10px;
  padding-bottom: 2.5px;
  color: #635200;
}
.contactsDemoList .text {
  font-size: 15px;
  font-weight: 600;
  padding-left: 10px;
  padding-top: 10px;
}
.contactBtn .contact-box{
  margin-top: 0px !important;
  padding: 0px !important;
}
.contactBtn {
  margin: 30px auto 60px;
}
@media screen and (max-width: 480px) {
  .contactBtn{
    margin: 15px auto 40px;
  }
  .contactsDemoList {
    align-items: center;
    flex-direction: column;
    width: 100%;
  }
  .contactsDemoList .item {
    width: 100%;
    margin: 5px 20px;
  }
  .contactsDemoList .title {
    font-size: 16px;
  }

  .contactsDemoList .text {
    font-size: 12px;
    padding-top: 5px;
    line-height: 1.4;
  }
}


@media (max-width: 600px) {
  a:hover {
    opacity: 1;
  }
}

.youtube{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center; 
  width: 100%;
  /* gap 10px */
  gap: 20px;
}
.youtube-top{
  width: 60%;
  margin: auto;
}
.youtube_wrap{
  width: calc(50% - 10px);
}
.youtube_title{
  color: white;
  text-align: center;
  font-size: 1.8rem;
  font-family: 'Noto Serif JP', serif;
}
@media(max-width:800px) {
  .youtube-top {
      width: 65%;
      margin: auto;
    }
  .youtube_wrap {
      width: calc(50% - 10px);
    }
    .youtube{
      flex-wrap: wrap;
    }
}
@media(max-width:600px){
.youtube {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  flex-direction: column;
  gap: 25px;
}

.youtube-top {
  width: 100%;
  /* margin: auto; */
}
.youtube .pc-photo {
  width: 100%;
}
.youtube_wrap {
  width: 100%;
}

}