@charset "UTF-8";
/* -----------------------------
	clearfix
----------------------------- */
.cfx:after {
  content: ".";
  display: block;
  height: 0;
  font-size: 0;
  clear: both;
  visibility: hidden;
}

.cfx {
  display: inline-block;
}

/* Hides from IE Mac */
* html .cfx {
  height: 1%;
}

.cfx {
  display: block;
}

/* End Hack */
/* -----------------------------
	OFFアニメーション
----------------------------- */
@keyframes anim_h {
  0% {
    transform: translate(0px, 0);
  }
  100% {
    transform: translate(15px, 0);
  }
}
/* -----------------------------
	ページスクロール アニメーション
----------------------------- */
/* 上から下に */
.fadeInBottom {
  opacity: 0;
  /* 最初は非表示にしておく */
  transform: translateY(-5px);
  /* 予め要素を上に配置 */
  transition: all 1s;
  /* 動きを滑らかに */
}
@media screen and (max-width: 750px) {
  .fadeInBottom {
    transition: all 0.5s;
  }
}

/* フェードイン用のクラス */
.fadeInAnime {
  opacity: 1;
  transform: translate(0);
}

/* -----------------------------
	動く矢印
----------------------------- */
.cp_arrows {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.cp_arrows .cp_arrow {
  /*矢印を配置するベースの設定*/
  position: absolute;
  width: 94px;
  animation: updown 2s infinite ease-in-out;
}
@media screen and (max-width: 750px) {
  .cp_arrows .cp_arrow {
    width: 70px;
  }
}

.cp_arrows .cp_arrow::before,
.cp_arrows .cp_arrow::after {
  /*矢印全体の設定*/
  position: absolute;
  content: "";
  width: 45px;
  height: 4px;
  border-radius: 10px;
}
@media screen and (max-width: 750px) {
  .cp_arrows .cp_arrow::before,
  .cp_arrows .cp_arrow::after {
    width: 30px;
    height: 4px;
  }
}

.cp_arrows .cp_arrow::before,
.cp_arrows .cp_arrow::after {
  background: #cf3f3f;
}

.cp_arrows .cp_arrow::before {
  /*矢印左の線の位置と傾斜*/
  left: 10px;
  transform: rotate(45deg);
}

.cp_arrows .cp_arrow::after {
  /*矢印左の線の位置と傾斜*/
  right: 10px;
  transform: rotate(-45deg);
}

@keyframes updown {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(0, -30px);
  }
  100% {
    transform: translate(0, 0);
  }
}
/* -----------------------------
	動くボタン
----------------------------- */
.sec_cv_btn a {
  display: block;
  animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@media screen and (max-width: 750px) {
  /* SP */
}
@media screen and (min-width: 751px) {
  /* PC */
}
/* -----------------------------

----------------------------- */
body {
  background-image: url("../images/bg.png");
  background-attachment: fixed;
  background-size: cover;
  background-position: center top;
}

.lp-wrapper {
  max-width: 750px;
  margin: 0 auto;
}

.lp-wrapper p {
  margin: 0;
}

.poRe {
  position: relative;
}

/* -----------------------------
	header
----------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 750px;
  height: 80px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  transition: background-color 0.3s ease, -webkit-backdrop-filter 0.3s ease;
  transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
  transition: background-color 0.3s ease, backdrop-filter 0.3s ease, -webkit-backdrop-filter 0.3s ease;
  background-color: transparent;
  z-index: 100;
}

.header.scrolled {
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
}

.logo {
  position: absolute;
  top: 15px;
  left: 20px;
}

.logo img {
  height: 50px;
  width: auto;
}

/* ★ ヘッダーが透過する時、ハンバーガー線も自然に変化 */
.drawer_open span,
.drawer_open span::before,
.drawer_open span::after {
  background: #333;
  transition: background 0.3s;
}

.header.scrolled .drawer_open span,
.header.scrolled .drawer_open span::before,
.header.scrolled .drawer_open span::after {
  background: #000;
}

/* ★ チェックボックスを完全非表示 */
#drawer_input {
  display: none;
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* PC */
@media screen and (min-width: 751px) {
  .header {
    width: 750px;
    margin: 0 auto;
    padding: 0;
  }
}
/* SP */
@media screen and (max-width: 750px) {
  .header {
    width: 100%;
    padding: 0;
  }
}
/* -----------------------------
	hamburger menu
----------------------------- */
.nav-wrapper {
  position: absolute;
  margin: 0 auto;
  width: 750px;
  top: 15px;
  right: 20px;
}

/* ハンバーガーアイコン */
.drawer_open {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 10px;
  top: 5px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 101;
}

.drawer_open span,
.drawer_open span:before,
.drawer_open span:after {
  content: "";
  display: block;
  height: 2px;
  width: 30px;
  background: #000;
  position: absolute;
  transition: 0.4s;
}

.drawer_open span:before {
  bottom: 10px;
}

.drawer_open span:after {
  top: 10px;
}

#drawer_input:checked ~ .drawer_open span {
  background: transparent;
}

#drawer_input:checked ~ .drawer_open span:before {
  bottom: 0;
  transform: rotate(45deg);
  background: #000;
}

#drawer_input:checked ~ .drawer_open span:after {
  top: 0;
  transform: rotate(-45deg);
  background: #000;
}

/* メニュー本体 */
.nav_content {
  position: fixed;
  top: 0;
  right: -100vw;
  /* ← ★ 完全に画面外へ。750pxではなく画面幅ベース */
  width: 750px;
  height: 100dvh;
  max-height: 100svh;
  background: rgb(255, 255, 255);
  padding: 80px 0;
  text-align: center;
  transition: right 0.5s ease;
  z-index: 99;
}

/* 開く時だけ中央にスライドイン */
#drawer_input:checked ~ .nav_content {
  right: calc(50% - 375px);
  /* ★ 中央750px範囲の右端に出現 */
}

/* スマホ */
@media screen and (max-width: 750px) {
  .header {
    width: 100%;
    height: 60px;
    left: 0;
    transform: none;
    justify-content: flex-end;
    padding-right: 20px;
  }
  .nav_content {
    right: -100vw;
    /* ★ 初期は完全非表示 */
    width: 100vw;
  }
  #drawer_input:checked ~ .nav_content {
    left: 0;
  }
  .logo {
    top: 11px;
    left: 13px;
  }
  .logo img {
    height: 38px;
  }
  .drawer_open {
    top: -4px;
  }
}
/* 背景オーバーレイ */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.2);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 98;
}

/* 開いた時だけ表示 */
#drawer_input:checked ~ .nav-overlay {
  opacity: 1;
  pointer-events: auto;
}

/* メニュー内装飾 */
p.menu_btn {
  padding: 0 100px;
  margin-bottom: 20px;
}

@media screen and (max-width: 750px) {
  p.menu_btn {
    padding: 0 40px;
  }
}
.menu_btn img {
  box-shadow: 3px 3px 1px #CCCCCC;
}

.nav_list {
  list-style: none;
  text-align: left;
  margin: 0;
  padding: 0;
}

.nav_item {
  border-bottom: 1px dotted #8f8f8f;
  padding: 3px 8%;
}

.nav_item:first-child {
  border-top: 1px dotted #8f8f8f;
}

.nav_item a {
  display: block;
  font-size: 1.1rem;
  padding: 10px 0;
  text-decoration: none;
}

.icn_img {
  max-width: 248px;
  width: 33%;
  margin: 0 auto;
  position: absolute;
  left: 0;
  right: 0;
}

#sec02 {
  background-image: url(../images/sec02_bg.png);
  background-size: 100% auto;
  background-position: center top;
  padding: 15.5% 0 15.5%;
}

#sec03 {
  background: #000;
  background-image: url("../images/sec03_bg.png");
  background-size: 100% auto;
  background-position: center top;
  background-repeat: no-repeat;
  padding: 18% 0 31.5%;
  /* 非アクティブなドットを円形の白に、境界線を黒にする */
  /* アクティブなドットを円形の黒に、境界線を白にする */
}
#sec03 .sec03_ttl {
  max-width: 380px;
  width: 50%;
  margin: 0 auto 33%;
}
#sec03 .sec03_note {
  font-size: 1rem;
  line-height: 1.2;
  text-align: right;
  margin-top: 50px;
  margin-right: 5%;
}
@media screen and (max-width: 750px) {
  #sec03 .sec03_note {
    font-size: 0.7em;
    margin-top: 10vw;
  }
}
#sec03 .slider {
  margin: 50px auto 0;
}
#sec03 .slick-slide {
  margin: 0px 20px;
}
#sec03 .slick-slide img {
  width: 100%;
  box-shadow: 5px 8.66px 27px 3px rgba(0, 0, 0, 0.15);
}
#sec03 .slick-prev:before,
#sec03 .slick-next:before {
  color: black;
}
#sec03 .slick-slide {
  transition: all ease-in-out 0.3s;
  opacity: 1;
}
#sec03 .slick-active {
  opacity: 0.5;
}
#sec03 .slick-current {
  opacity: 1;
}
#sec03 .slick-list {
  padding-bottom: 50px !important;
}
@media screen and (max-width: 750px) {
  #sec03 .slick-list {
    padding-bottom: 30px !important;
  }
}
#sec03 .slick-dots li {
  margin: 0 30px;
}
@media screen and (max-width: 750px) {
  #sec03 .slick-dots li {
    margin: 0 20px;
  }
}
#sec03 .slick-dots li button:before {
  content: "" !important;
  /* 擬似要素の中身を空にする */
}
#sec03 .slick-dots li button {
  background-color: #fff !important;
  width: 60px !important;
  height: 6px !important;
  padding: 0 !important;
  box-shadow: none !important;
  opacity: 1 !important;
  outline: none !important;
}
@media screen and (max-width: 750px) {
  #sec03 .slick-dots li button {
    width: 40px !important;
  }
}
#sec03 .slick-dots li.slick-active button {
  background-color: #cfad39 !important;
  box-shadow: none !important;
  opacity: 1 !important;
  outline: none !important;
}

#sec04 {
  background-image: url(../images/sec04_bg.png);
  background-size: 100% auto;
  background-position: center top;
  padding: 6% 0 0;
}
#sec04 .before_after {
  max-width: 650px;
  width: 86.67%;
  margin: 0 auto;
}
#sec04 .sec04_ttl01 {
  margin-bottom: 14%;
}
#sec04 .sec04_img01 {
  margin-bottom: 13%;
}
#sec04 .icn_check {
  position: absolute;
  left: 8%;
  width: 41px;
}
@media screen and (max-width: 750px) {
  #sec04 .icn_check {
    width: 6vw;
  }
}
#sec04 .icn_check.icn_check01 {
  top: 17%;
}
#sec04 .icn_check.icn_check02 {
  top: 25%;
}
#sec04 .icn_check.icn_check03 {
  top: 37.3%;
}
#sec04 .icn_check.icn_check04 {
  top: 45%;
}
#sec04 .icn_check.icn_check05 {
  top: 52.7%;
}
#sec04 .icn_check.icn_check06 {
  top: 60.7%;
}
#sec04 .icn_check.icn_check07 {
  top: 72.7%;
}
#sec04 .sec04_ttl02 {
  margin-bottom: 9%;
}
#sec04 .sec04_img02_bg {
  width: 100%;
  height: 900px;
  position: relative;
}
@media screen and (max-width: 750px) {
  #sec04 .sec04_img02_bg {
    height: 55vh;
  }
}
#sec04 .sec04_img02_bg video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
#sec04 .sec04_img02_bg .sec04_img02 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  max-width: 750px;
  width: 100%;
  z-index: 1;
}
#sec05 .sec05_box01 {
  background-image: url("../images/sec05_box01_bg.png");
  background-size: 100% auto;
  background-position: center top;
  padding: 0 0 16%;
  position: relative;
}
#sec05 .icn_img {
  top: -3%;
}
#sec05 .sec05_box01_ttl {
  margin-bottom: 8%;
  padding-top: 30%;
}
#sec05 .sec05_box01_img01 {
  margin-bottom: 6.67%;
}
#sec05 .sec05_movie_container {
  width: 650px;
  height: 680px;
  margin: 0 auto 8%;
}
@media screen and (max-width: 750px) {
  #sec05 .sec05_movie_container {
    width: 86.67vw;
    height: 90.67vw;
  }
}
#sec05 .sec05_movie {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#sec05 .sec05_box01_img02 {
  margin-bottom: 8%;
}
#sec05 .sec05_box02 {
  background-image: url("../images/sec05_box02_bg.png");
  background-size: 100% auto;
  background-position: center top;
  padding: 29% 0 15%;
  position: relative;
}
#sec05 .sec05_box02 .icn_img {
  top: -4%;
}
#sec05 .sec05_box02_ttl {
  margin-bottom: 5%;
}
#sec05 .sec05_box02_img01 {
  margin-bottom: 8%;
}
#sec05 .sec05_box02_img02 {
  margin-bottom: 8%;
}
#sec05 .sec05_box03 {
  background-image: url("../images/sec05_box03_bg.png");
  background-size: 100% auto;
  background-position: center top;
  padding: 29% 0 15%;
  position: relative;
}
#sec05 .sec05_box03 .icn_img {
  top: -3%;
}
#sec05 .sec05_box03_ttl {
  margin-bottom: 5%;
}
#sec05 .sec05_box03_img01 {
  margin-bottom: 8%;
}
#sec05 .sec05_box03_img02 {
  margin-bottom: 8%;
}
#sec06 {
  background-color: #e7e7e7;
  padding: 29% 0 0;
  position: relative;
}
#sec06 .icn_img {
  top: -3%;
}
#sec06 .sec06_ttl {
  margin-bottom: 8%;
}
#sec06 .sec06_img01 {
  margin-bottom: 8%;
}
#sec06 .sec06_img02 {
  margin-bottom: 8%;
}
#sec06 .sec06_img03 {
  margin-bottom: 8%;
}

.sec_cv {
  background-image: linear-gradient(90deg, rgb(182, 151, 93) 0%, rgb(129, 98, 54) 100%);
  padding-bottom: 20%;
}

.sec_cv01 .sec_cv01_ttl {
  margin-bottom: 8%;
}

.sec_cv02 {
  position: relative;
}
.sec_cv02 .sec_cv02_mv {
  position: absolute;
  top: -4.2%;
}
.sec_cv02 .sec_cv02_ttl {
  padding-top: 185%;
  margin-bottom: 8%;
}

.sec_cv04 {
  position: relative;
  padding-top: 90%;
}
.sec_cv04 .sec_cv04_ttl {
  position: absolute;
  top: -3%;
}
.sec_cv04 .sec_cv04_img05 {
  margin-bottom: 12%;
}
.sec_cv04 .sec_cv04_img06 {
  margin-top: 6%;
}

.sec_cv_inner {
  background-color: #fff;
  max-width: 690px;
  width: 92%;
  margin: 0 auto;
  padding: 8% 0 4%;
}
.sec_cv_inner .sec_cv_img01 {
  margin-bottom: 8%;
}
.sec_cv_inner .sec_cv_offer {
  margin-left: 6%;
  margin-right: 6%;
  margin-bottom: 4%;
}
.sec_cv_inner .sec_cv_offer div {
  float: left;
}
.sec_cv_inner .sec_cv_offer .sec_cv_offer1 {
  width: 30%;
}
.sec_cv_inner .sec_cv_offer .sec_cv_offer2 {
  width: 24%;
  padding-left: 2%;
  padding-right: 5%;
}
.sec_cv_inner .sec_cv_offer .sec_cv_offer2 img {
  width: 100%;
}
.sec_cv_inner .sec_cv_offer .sec_cv_offer3 {
  width: 45%;
}
.sec_cv_inner .sec_cv_btn {
  max-width: 590px;
  width: 85.51%;
  margin: 0 auto 8%;
  border-radius: 54px;
  box-shadow: 2.868px 4.096px 9px 1px rgba(62, 43, 45, 0.3);
}

#sec07 .sec07_box01 {
  background-color: #000;
  padding: 30.67% 0 0;
  position: relative;
}
#sec07 .sec07_box01 .icn_img {
  top: -2%;
}
#sec07 .sec07_box01_ttl {
  margin-bottom: 8%;
}
#sec07 .sec07_box01_img01 {
  margin-bottom: 8%;
}
#sec07 .sec07_box01_img02 {
  max-width: 650px;
  width: 86.67%;
  margin: 0 auto 8%;
}
#sec07 .sec07_box01_img03 {
  margin-bottom: 16%;
}
#sec07 .sec07_box01_img04 {
  margin-bottom: 8%;
}
#sec07 .sec07_box02 {
  background-image: url("../images/sec07_box02_bg.png");
  background-size: 100% auto;
  background-position: center top;
}

#sec08 .sec08_box01 {
  background-color: #fff;
  padding: 29% 0 24%;
  position: relative;
}
#sec08 .sec08_box01 .icn_img {
  top: -5%;
}
#sec08 .sec08_box01_ttl {
  margin-bottom: 8%;
}
#sec08 .sec08_box02 {
  background-image: url("../images/sec08_box02_bg.png");
  background-size: 100% auto;
  background-position: center bottom;
  padding: 30% 0 63%;
  position: relative;
}
#sec08 .sec08_box02 .icn_img {
  top: -3.5%;
}
#sec08 .sec08_box02_ttl {
  margin-bottom: 8%;
}
#sec08 .sec08_box03 {
  background-color: #fff;
  padding: 29% 0 29%;
  position: relative;
}
#sec08 .sec08_box03 .icn_img {
  top: -3.5%;
}
#sec08 .sec08_box03_ttl {
  margin-bottom: 8%;
}
#sec08 .sec08_box03_img01 {
  margin-bottom: 11%;
}

#sec10 {
  background-color: #ededec;
  padding: 30% 0 0%;
  position: relative;
}
#sec10 .icn_img {
  top: -1%;
}
#sec10 .sec10_ttl {
  margin-bottom: 8%;
}
#sec10 .sec10_img01 {
  margin-bottom: 8%;
}
#sec10 .sec10_img02 {
  margin-bottom: 6.67%;
}
#sec10 .sec10_img02 video {
  width: 100%;
}
#sec10 .sec10_img03 {
  margin-bottom: 8%;
}
#sec10 .sec10_img04 {
  margin-bottom: 6.67%;
}
#sec10 .sec10_img05 {
  margin-bottom: 8%;
}
#sec10 .sec10_img06 {
  margin-bottom: 6.67%;
}
#sec10 .sec10_img07 {
  margin-bottom: 10.67%;
}
#sec10 .sec10_img08 {
  margin-bottom: 20%;
}

#sec11 .sec11_box01 {
  background-color: #fff;
  padding: 30.67% 0 8%;
  position: relative;
}
#sec11 .sec11_box01 .icn_img {
  top: -4.5%;
}
#sec11 .sec11_box01_ttl {
  margin-bottom: 10.67%;
}
#sec11 .sec11_box02 {
  background-image: linear-gradient(0deg, rgb(237, 237, 236) 92.5%, rgb(255, 255, 255) 92.5%);
}
#sec11 .sec11_box02_img01 {
  margin-bottom: 4%;
}
#sec11 .sec11_box03 {
  width: 100%;
  height: 900px;
  position: relative;
}
@media screen and (max-width: 750px) {
  #sec11 .sec11_box03 {
    height: 55vh;
  }
}
#sec11 .sec11_box03 video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
#sec11 .sec11_box03 .sec11_box03_img01 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  max-width: 750px;
  width: 100%;
  z-index: 1;
}

#sec12 .sec12_box01 {
  background-color: #fff;
  padding: 32% 0 16%;
  position: relative;
}
#sec12 .sec12_box01 .icn_img {
  top: -1%;
}
#sec12 .sec12_box01 .sec12_box01_ttl {
  margin-bottom: 10.67%;
}
#sec12 .sec12_box01 .sec12_box01_inner {
  max-width: 690px;
  width: 92%;
  margin: 0 auto;
}
#sec12 .sec12_box01 .items_qa {
  margin-bottom: 8%;
}
#sec12 .sec12_box01 .item_q {
  position: relative;
  cursor: pointer;
}
#sec12 .sec12_box01 .item_q::before {
  position: absolute;
  content: "";
  top: 44px;
  right: 4%;
  width: 30px;
  height: 2px;
  background-color: #fff;
  transform: rotate(90deg);
  transition: all 0.3s ease-in-out;
}
#sec12 .sec12_box01 .item_q::after {
  position: absolute;
  content: "";
  top: 44px;
  right: 4%;
  width: 30px;
  height: 2px;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 750px) {
  #sec12 .sec12_box01 .item_q::before {
    top: 6vw;
    width: 20px;
  }
  #sec12 .sec12_box01 .item_q::after {
    top: 6vw;
    width: 20px;
  }
}
#sec12 .sec12_box01 .item_q.active::before {
  transform: rotate(180deg);
}
#sec12 .sec12_box01 .item_q.active::after {
  opacity: 0;
}
#sec12 .sec12_box01 .item_a {
  display: none;
}
#sec12 .sec12_box02 {
  background-color: #ededec;
  padding: 32% 0 34%;
  position: relative;
}
#sec12 .sec12_box02 .icn_img {
  margin-top: -38.5%;
}
#sec12 .sec12_box02 .sec12_box02_ttl {
  position: relative;
  margin-bottom: 10.67%;
  cursor: pointer;
}
#sec12 .sec12_box02 .sec12_box02_ttl::before {
  position: absolute;
  content: "";
  top: 24%;
  right: 10%;
  width: 40px;
  height: 2px;
  background-color: #000;
  transform: rotate(90deg);
  transition: all 0.3s ease-in-out;
}
#sec12 .sec12_box02 .sec12_box02_ttl::after {
  position: absolute;
  content: "";
  top: 24%;
  right: 10%;
  width: 40px;
  height: 2px;
  background-color: #000;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 750px) {
  #sec12 .sec12_box02 .sec12_box02_ttl::before {
    width: 30px;
  }
  #sec12 .sec12_box02 .sec12_box02_ttl::after {
    width: 30px;
  }
}
#sec12 .sec12_box02 .sec12_box02_ttl.active::before {
  transform: rotate(180deg);
}
#sec12 .sec12_box02 .sec12_box02_ttl.active::after {
  opacity: 0;
}
#sec12 .sec12_box02 .sec12_box02_img01 {
  display: none;
}

/* --- ナビゲーション表示中のスクロールロック --- */
body.nav-open {
  /* スクロールを無効化 */
  overflow: hidden;
  /* iOSで背後のコンテンツが動くのを防ぐために固定する */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}/*# sourceMappingURL=style.css.map */