@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Bellefair&family=Noto+Sans+JP:wght@100..900&family=Shippori+Mincho&display=swap");
.splide__slide img {
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  will-change: opacity, transform;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.splide__slide.is-active img {
  -webkit-animation: zoomAnimation 12s linear forwards;
          animation: zoomAnimation 12s linear forwards;
}

@-webkit-keyframes zoomAnimation {
  from {
    -webkit-transform: scale(1) translateZ(0);
            transform: scale(1) translateZ(0);
  }
  to {
    -webkit-transform: scale(1.25) translateZ(0);
            transform: scale(1.25) translateZ(0);
  }
}

@keyframes zoomAnimation {
  from {
    -webkit-transform: scale(1) translateZ(0);
            transform: scale(1) translateZ(0);
  }
  to {
    -webkit-transform: scale(1.25) translateZ(0);
            transform: scale(1.25) translateZ(0);
  }
}
/*=================================================
共通
=================================================*/
body, .bg_beige {
  background: #F7F7F2;
}

#bg_sticky {
  z-index: 2;
  position: relative;
  padding-top: 80px;
}

.msg {
  font-size: 1.8rem;
  line-height: 2.3;
}

.clm_btn {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin-top: 50px;
  gap: 24px;
}
.clm_btn a {
  background: #F7F7F2;
  padding: 24px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 33%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Shippori Mincho", serif;
  line-height: 1.6;
  padding-right: 110px;
  position: relative;
  border: #245233 1px solid;
}
.clm_btn a:after {
  position: absolute;
  top: 50%;
  right: 24px;
  -webkit-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
  content: "";
  background-image: url("../img/common/arrow.svg");
  width: 50px;
  height: 30px;
}
.clm_btn a:hover {
  color: #F7F7F2;
  border: #F7F7F2 1px solid;
  background: none;
}

/*SPレイアウトここから*/
@media (max-width: 768px) {
  body {
    padding: 0;
  }
  body .msg {
    font-size: 1.6rem;
  }
  body #bg_sticky {
    padding-top: 0;
  }
  .clm_btn {
    margin-top: 40px;
  }
  .clm_btn a {
    width: 100%;
    font-size: 1.4rem;
    margin-bottom: 1px;
  }
}
/*=================================================
MV
=================================================*/
.mv {
  position: -webkit-sticky !important;
  position: sticky !important;
  top: 0;
}
.mv .splide__slide img {
  -webkit-transition: 8s ease-out;
  transition: 8s ease-out;
}
.mv .splide__slide.is-active img {
  -webkit-transform: scale(1.15);
          transform: scale(1.15);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.mv .splide__slide img {
  height: auto;
  width: 100%;
}

.mv_inner {
  margin-top: -427px;
  padding-bottom: 70px;
  max-width: 1240px;
}
.mv_inner h1 {
  font-family: "Bellefair", serif;
  font-size: clamp(3.5rem, 8vw, 7rem);
  z-index: 3;
  color: #fff;
  font-weight: 500;
  line-height: 1.3;
}
.mv_inner h1 span {
  background: #245233;
  line-height: 1;
  height: 66px;
  padding: 0 40px;
  display: inline-block;
}
.mv_inner .bs_msg {
  font-weight: 400;
  font-size: 1.9rem;
  color: #fff;
  letter-spacing: 0.2rem;
  margin-bottom: 18px;
  display: inline-block;
  margin-left: -1px;
  padding: 5px 10px 6px;
  text-shadow: 0 0 8px #033f63, 0 0 15px #033f63, 0 0 30px #033f63, 0 0 50px rgba(3, 63, 99, 0.9), 0 0 80px rgba(3, 63, 99, 0.9), 0 0 120px rgba(3, 63, 99, 0.8), 0 0 160px rgba(3, 63, 99, 0.6);
  line-height: 1.7;
}

/*SPレイアウトここから*/
@media (max-width: 768px) {
  .mv .splide__slide img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    height: 100%;
  }
  .mv .splide__track--draggable {
    height: 100vh;
  }
  .mv_inner {
    margin-top: -238px;
  }
  .mv_inner h1 span {
    height: auto;
    padding: 5px 40px 0;
  }
  .mv_inner .bs_msg {
    font-size: 1.1rem;
    line-height: 2;
    padding: 0;
    margin-left: 4px;
  }
}
/*=================================================
sec2
=================================================*/
.sec2 {
  margin-top: 0px;
  padding-top: 80px;
}
.sec2 .inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 100px;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.sec2 .left {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
  max-width: 600px;
}
.sec2 .right {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.sec2 .right .box {
  border-bottom: 1px solid #BFBFBA;
  padding-bottom: 35px;
  margin-bottom: 35px;
}
.sec2 .right .box:last-child {
  margin-bottom: 0px;
}
.sec2 .parallax_pic {
  position: absolute;
  width: 45%;
  margin-top: 382px;
}
.sec2 .parallax_pic .pic1 {
  overflow: hidden;
  aspect-ratio: 3/2;
  width: 75%;
}
.sec2 .parallax_pic .pic2 {
  position: absolute;
  bottom: -33px;
  right: 0;
  z-index: 2;
  overflow: hidden;
  aspect-ratio: 3/2;
  width: 42%;
}
.sec2 .parallax_pic .pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

/*SPレイアウトここから*/
@media (max-width: 768px) {
  .sec2 {
    margin-top: 0px;
    padding-top: 60px;
  }
  .sec2 .inner {
    display: block;
  }
  .sec2 .right {
    margin-top: 40px;
  }
  .sec2 img.sp {
    width: 100%;
    margin-left: -6%;
  }
}
/*=================================================
sec3
=================================================*/
/*PCレイアウトここから*/
@media (min-width: 769px) {
  .sec3 {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
  }
  .sec3 .rellax_bg {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
/*SPレイアウトここから*/
@media (max-width: 768px) {
  .sec3 .sp {
    width: 100%;
  }
}
/*=================================================
sec4
=================================================*/
/*PCレイアウトここから*/
@media (min-width: 769px) {
  .clm_4box {
    margin-top: 50px;
  }
  .clm_4box .ac_box {
    margin-top: 17px;
  }
  .clm_4box .ac_box .flex {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 40px;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .clm_4box .ac_box .ac_box_in {
    width: 47%;
  }
  .clm_4box .box {
    position: relative;
    width: 100%;
    border-bottom: 1px solid #BFBFBA;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 35px 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    gap: 40px;
  }
  .clm_4box .box .txt {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .clm_4box .box .txt .list {
    margin-top: 10px;
  }
  .clm_4box .box .details {
    width: 100%;
    max-width: 100%;
    margin-top: 10px;
  }
  .clm_4box .box .details-summary {
    font-size: 1.8rem;
  }
  .clm_4box .box .midashi_s {
    margin-bottom: 12px;
  }
  .clm_4box .box img {
    width: 180px;
    height: auto;
  }
  .clm_4box .box .details-content .list {
    margin: 20px auto;
  }
  .clm_4box .box .details-content .list li {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    font-size: 1.6rem;
    line-height: 1.5;
    margin-bottom: 7px;
  }
  .clm_4box .box .ttl_flex {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 30px;
  }
  .clm_4box .box .ttl_flex .midashi_s {
    margin-bottom: 0px;
    width: 307px;
  }
  .clm_4box .mt_none {
    margin-top: 0px !important;
  }
} /*PC-end*/
/*SPレイアウトここから*/
@media (max-width: 768px) {
  .clm_4box {
    margin-top: 40px;
  }
  .clm_4box .box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    border-bottom: 1px solid #BFBFBA;
    padding-bottom: 40px;
    margin-bottom: 40px;
  }
  .clm_4box .box .txt {
    width: 100%;
  }
  .clm_4box .box .txt .list {
    margin-top: 20px;
  }
  .clm_4box .box img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
  }
  .clm_4box .box .details-summary {
    font-size: 1.6rem;
  }
  .clm_4box .midashi_s {
    margin-bottom: 20px;
  }
  .clm_4box .details {
    margin-top: 20px;
  }
  .clm_4box .details-content .list {
    margin: 20px auto;
  }
  .clm_4box .details-content .list li {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    font-size: 1.4rem;
    line-height: 1.5;
  }
  .clm_4box .ac_box_in {
    margin-bottom: 25px;
  }
  .clm_4box .ac_box_in:last-child {
    margin-bottom: 0px;
  }
}
/*=================================================
sec5
=================================================*/
.sec5 {
  background: -webkit-gradient(linear, left top, right top, from(rgb(54, 78, 62)), color-stop(83%, rgb(65, 104, 78)));
  background: -webkit-linear-gradient(left, rgb(54, 78, 62) 0%, rgb(65, 104, 78) 83%);
  background: linear-gradient(90deg, rgb(54, 78, 62) 0%, rgb(65, 104, 78) 83%);
  padding: 80px 0;
}
.sec5 .ttl {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 100px;
}

/*SPレイアウトここから*/
@media (max-width: 768px) {
  .sec5 {
    padding: 60px 0;
  }
  .sec5 .read {
    margin-top: 40px;
  }
}
/*=================================================
sec6
=================================================*/
/*PCレイアウトここから*/
@media (min-width: 769px) {
  .sec6 .table_wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .sec6 .table_normal th {
    width: 20%;
  }
  .sec6 .table_normal .h127 {
    height: 131px;
  }
  .sec6 .table_normal .padding {
    padding: 0 20px;
    height: 175px;
  }
  .sec6 .details .flex {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: self-start;
    -webkit-align-items: self-start;
        -ms-flex-align: self-start;
            align-items: self-start;
    gap: 40px;
  }
  .sec6 .details .flex .box {
    width: 50%;
  }
}
/*SPレイアウトここから*/
@media (max-width: 768px) {
  .sec6 .table_wrap {
    display: block;
  }
  .sec6 .table_normal {
    width: 100%;
  }
  .sec6 .table_normal th, .sec6 .table_normal td {
    width: 100%;
    display: block;
  }
  .sec6 .table_normal th {
    padding: 20px;
  }
  .sec6 .table_normal td {
    padding: 20px 0;
  }
  .sec6 .table_normal:last-child {
    margin-top: -3px;
  }
}/*# sourceMappingURL=top.css.map */