@charset "utf-8";

:root {
  --easing: cubic-bezier(.2, 1, .2, 1);
  --transition: .8s var(--easing);
}

* {
  /* outline: 1px solid #cc00ff; */
}

/* =========================
common
========================= */
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family:
    "ヒラギノ角ゴ ProN W3",
    "Noto Sans JP",
    sans-serif;
  font-style: normal;
  color: #000000;
  background-color: #ffff;
  line-height: 1.5;
}

img {
  max-width: 100%;
  height: auto;
}

/* =========================
header
========================= */
.header {
  position: relative;
  width: 100%;
  height: 48px;
  z-index: 100;
}

/* =========================
header nav
========================= */
.nav_hum {
  position: fixed; /* ハンバーガーメニューを追従させる */
  top: 0;
  right: 0; /* 画面の右上に配置 */
  padding: 6.5vw 6.5vw 0 0;
  z-index: 101; /* 他の要素の上に表示 */
}

.nav_hum img {
  width: 25px;
  height: 25px;
}

.nav_sidebarOpen_SPon {
  transform: scale(0);
  transform-origin: top right;
  transition: 1s;
}

.nav_sidebar {
  position: fixed; /* サイドバーも追従させる */
  top: 0; /* 画面上部に固定 */
  right: 0; /* 画面の右側に固定 */
  width: 89.6%;
  max-width: 370px;
  min-width: 330px;
  transition: 1s ease;
  z-index: 100; /* ハンバーガーメニューより下に表示 */
  visibility: hidden;
  /* transform: scale(0); */
}

.nav_sidebar.activeopacity {
  visibility: visible;
  /* transform: scale(1); */

}

.nav_sidebar.activeopacity .nav_sidebarOpen_SPon {
  transform: scale(1);
}

.nav_inner {
  position: absolute;
  top: 1.75vh;
  right: 7vw;
  width: 181px;
  height: 378px;
  margin-top: 10px;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  /* transition-delay: 0.5s; */
  /* transition-duration:1s ; */
}

.none {
  opacity: 0;
  visibility: hidden;
}

.nav_inner.activeopacity {
  opacity: 1;
  visibility: visible;
}
/* 
.activescale {
  transform: scale(1);
} */

.nav_arrow_sidebar img {
  width: 4.0%;
  margin-right: 1.35vw;
}

.navAbout_acdList img {
  width: 5.5px;
  text-align: center;
  padding-bottom: 3.5%;
  margin-right: 5px;
}

.nav_closeBtnBox {
  margin-left: auto;
  width: 12px;
  height: 15px;
}

.nav_list {
  margin-top: 30px;
}

.nav_listItem {
  margin-top: 11px;
  color: #FFF;
  font-size: 1.4rem;
  font-weight: 500;
}

.nav_list :nth-of-type(1) {
  margin-top: 0;
}

.navAbout_acdList {
  padding-top: 2.8%;
  color: #ffff;
  font-size: 1.1rem;
  font-weight: 600;
}

.navAbout_acdList li {
  height: 22px;
  padding-left: 12px;
  margin-top: 5px;
  line-height: 1.9;
  width: 92%;
}

.nav_listItem_eng {
  color: rgba(255, 255, 255, 0.60);
  font-family: Jost;
  font-size: 1.0rem;
  font-weight: 500;
}

/* メニュー項目のホバー時のアニメーション */
.nav_listItem,
.navAbout_acdList li {
  transition: transform 0.3s ease-out, opacity 0.1s ease-out;
}

.nav_listItem:hover,
.navAbout_acdList li:hover {
  transform: translateY(0px);
  opacity: 0.8;
}

@media screen and (min-width:1000px) {
  .nav_hum {
    padding: 40px 40px 0 0;
  }

  .nav_hum img {
    width: 40px;
    height: 35px;
  }

  .nav_sidebar {
    width: 48%;
    max-width: 580px;
  }

  .nav_listItem {
    margin-top: 24px;
    color: #FFF;
    font-size: 2.0rem;
    font-weight: 500;
  }

  .nav_listItem_eng {
    font-size: 1.3rem;
    font-weight: 500;
  }

  .nav_list {
    margin-top: 55px;
  }

  .nav_inner {
    top: 3vh;
    right: 4vw;
    width: 275px;
    height: 378px;
  }

  .nav_closeBtnBox {
    margin-left: auto;
    width: 12px;
    height: 15px;
  }

  .navAbout_acdList {
    padding-top: 2.8%;
    font-size: 1.4rem;
  }

  .navAbout_acdList li {
    height: 27px;
    padding-left: 12px;
    margin-top: 5px;
    width: 88.6%;
  }
}

/*======= Js =======*/
.load-fade {
  opacity: 0;
  visibility: hidden;
  transition: all 3s;
}

.load-fade.is-show {
  opacity: 1;
  visibility: visible;
}


/* =========================
main top
========================= */
.section_top {
  margin-top: -50px;
  background-image: url(../KV_BG1.png);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: contain;
}

.KV_SP {
  position: relative;
  height: 290px;
  padding-top: 8vh;
  max-width: 410px;
}

.KV_sp1 {
  position: absolute;
  bottom: 0;
}

.KV_sp2 {
  position: absolute;
  bottom: 0;
}

.KV_sp3 {
  position: absolute;
  bottom: 0;
}

.KV_sp4 {
  position: absolute;
  bottom: 0;
}

.topKV_SPonSHADOW {
  max-width: 410px;
}

.top_txt_SPnone {
  margin-top: -50px;
}

.KV_txtBox2,
.topKV_SPnoneSHADOW {
  display: none;
}

.top_parts img {
  width: 140px;
  margin: 3.7vw 0;
}

.top_subTitle img {
  width: 170px;
  margin: 6.7vw 22.4vw 0 3vw;
}

.top_parts {
  display: flex;
  padding-top: 5px;
}

.top_txt_SPnone {
  display: none;
}

.topKV_SPonSHADOW_BOX {
  position: relative;
  padding-bottom: 100px;
}

.top_txt_SPon {
  position: absolute;
  top:  120px;
  padding: 0 3.5vw 0 24.5px;
  /* font-family: "Hiragino Kaku Gothic StdN"; */
  font-size: min(1.4rem, 600px);
  font-weight: 300;
  line-height: 1.8;
  z-index: 999;
}

/* SP時のKVアニメーション */
.KV_SP img,
.topKV_SPonSHADOW,
.top_txt_SPon {
    opacity: 0;
    transform: translateY(0px); /* 初期状態 */
    transition: opacity 1s ease-out, transform 1s ease-out;
}

/* 各画像が順番に表示される */
.KV_SP img {
    opacity: 0;
    transform: translateY(0px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.topKV_SPonSHADOW,
.top_txt_SPon {
    opacity: 0;
    transform: translateY(0px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

@media screen and (min-width:900px) {
  .section_top {
    background-image: url(../KV_BG1.png);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
  }

  .KV_txtBox2,
  .topKV_SPnoneSHADOW {
    display: block;
  }

  .KV_txtBox_SPon {
    display: none;
  }

  .topKV_SPnone {
    width: 900px;
    display: block;
    /* margin-top: 50vh; */
    margin-top: min(530px, 650px);
    position: relative;
  }

  .KV_pc1 {
    position: absolute;
    bottom: 0;
  }

  .KV_pc2 {
    position: absolute;
    bottom: 0;
  }

  .KV_pc3 {
    position: absolute;
    bottom: 0;
  }

  .KV_pc4 {
    position: absolute;
    bottom: 0;
  }

  .KV_pc5 {
    position: absolute;
    bottom: 0;
  }

  .KV_pc6 {
    position: absolute;
    bottom: 0;
  }

  .topKV_SPnoneSHADOW {
    width: 900px;
    position: relative;
    margin: 0 auto;
  }

  .topKV_SPnoneSHADOW img {
    position: absolute;
    display: block;
  }

/* アニメーション */
.topKV_SPnone img,
.topKV_SPnoneSHADOW,
.top_txt_SPnone {
  opacity: 0;
  transition: opacity 1s ease-out,
  transform 0.1s ease-out;
}

  .top_parts img {
    width: 190px;
    margin: 3.7vw 0 0 0;
  }

  .top_subTitle {
    margin: 60px 0 0 120px;
  }

  .top_subTitle img {
    width: 260px;
    margin-left: 40px;
  }

  .top_parts {
    max-width: 2700px;
    padding-top: 5%;
  }

  .top_BOX {
    margin: -120px auto;
    max-width: 900px;
  }

  .top_txt_SPnone {
    display: block;
    width: 480px;
    margin-top: -4vh;
    padding: 75px 0 3vh 6.7vw;
    /* font-family: "Hiragino Kaku Gothic StdN"; */
    font-size: 1.4rem;
    font-weight: 300;
    line-height: 2.1;
    z-index: 9999;
  }

  .KV_SP, .topKV_SPonSHADOW_BOX {
    display: none;
  }

  .topKV_SPonSHADOW {
    display: none;
  }
  
  .KV_txtBox {
    margin-top: -19%;
  }

}

/* =========================
main swiper
========================= */
.gallery03 {
  margin-top: 0.85vh;
  /* padding-top: 3%; */
}

.l-inner {
  position: relative;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10rem;
}

.l-section {
  border-top: 1px solid #eee;
}

.l-section .l-inner {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

[class*=swiper]:focus {
  outline: none;
}

.slide-media,
.thumb-media {
  position: relative;
  overflow: hidden;
  /* width: 348px; */
  height: fit-content;
}

.slide-media img,
.thumb-media img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.gallery03 {
  margin-top: 3%;
}

.gallery03 .l-inner {
  padding-bottom: 0;
}

.gallery03 .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
}

.gallery03 .swiper-slide {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.gallery03 .slide {
  width: var(--slide-width);
  -webkit-transition: var(--transition);
  transition: var(--transition);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  --slide-width: 348px;
}

.gallery03 .slide-media {
  height: var(--slide-width);
}

.gallery03 .slide-content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 3.2rem 1.6rem 1.6rem;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  opacity: 0;
  color: #fff;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(50%, rgba(0, 0, 0, 0.3)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 50%);
}

.gallery03 .slide-title {
  font-size: 1.4rem;
  line-height: 1.4;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* .gallery03 .slide:hover {
  width: calc(var(--slide-width) * 1.5);
}
.gallery03 .slide:hover .slide-content {
  opacity: 1;
} */

/* .swiperB {
  padding-top: clamp(10px,10vmax, 30px);
} */
.swiperB {
  margin-top: 4.0vh;
}


/* @media screen and (min-width:1000px) {
  .swiper {
  height: 776px;
  }
} */

@media screen and (min-width:900px) {
  .gallery03 {
    padding-top: 7%;
    mix-blend-mode: multiply ;
  }


}
  
/* =========================
main outline
========================= */
.section_outline {
  margin: 0 auto;
  background-image: url(../Outline_BG.png);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: cover;
}

.outline_btn {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60% 8.3% 12%;
  text-align: center;
}

.outline_btn img {
  margin-top: 7%;
}

.outline_btn a {
  opacity: 1;
  transition: 0.3s ease;
}

.outline_btn a:hover {
  opacity: 0.7;
}


@media screen and (min-width:1100px) {
  .section_outline {
    background-image: url(../Outline_BG.png);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    margin: -3vh auto 0;
  }

  .outline_btn {
    display: flex;
    justify-content: center;
    gap: 6.0%;
    max-width: 1200px;
    margin: 0 auto;
    /* margin: 0 13% 0 13%; */
    padding: 60% 0 3% 0;
    text-align: center;
  }
}

.outline_btn img {
  width: 450px;
}

/* =========js========== */
.scrollanimation {
  opacity: 0;
}

.animated {
  /* アニメーションのプロパティを指定 */
  /* animation-name: example;
    animation-duration: 1s;
    display: block;
    opacity: 1; */
  opacity: 1;
  transition: 2s;
}

@keyframes example {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* =========================
main about
========================= */
.section_about {
  background-image: url(../About_BG1_sp.jpg);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}

.aboutBox {
  padding-top: 8%;
}

.about_listBox_SPnone {
  display: none;
}

.about_txt {
  margin: 0 6.1%;
}

.about_txt1 {
  color: #578AC5;
  font-family: Jost;
  font-size: min(9.2vw, 8.1rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 1.5px;
}

.about_txt2 {
  color: #323232;
  /* font-family: "Hiragino Kaku Gothic StdN"; */
  font-size: min(2.85vw, 1.5rem);
  font-weight: 300;
  line-height: 167%;
}

.about_listBox_SPon {
  text-align: center;
  margin: -6.5% auto 0;
  width: 87.5%;
  padding-top: 0px;
}

.about_listBox_SPon img {
  margin-top: 10%;
}

.about_listBox_SPnone a {
  opacity: 1;
  transition: 0.1s ease;
}

.about_listBox_SPnone a :hover {
  opacity: 0.5;
}

@media screen and (min-width:1000px) {
  .section_about {
    margin: 0 auto;
    background-image: url(../About_BG1_pc.jpg);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
  }

  .aboutBox {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 8%;
    width: 900px;
  }

  .about_listBox_SPon {
    display: none;
  }

  .about_listBox_SPnone {
    display: block;
    margin-top: 2%;
  }

  .about_txt {
    margin: 0 0 -7.6% 0;
  }

  .about_txt1 {
    font-size: 7.6rem;
    letter-spacing: 2px;
  }

  .about_txt2 {
    font-size: 1.4rem;
  }

  .about_listBox_SPnone {
    text-align: center;
    margin: -6.5% auto 0;
    padding-top: 0px;
  }

  .about_listBox_SPnone img {
    margin-top: 10%;
  }
}

/* =========================
main special
========================= */
.section_special {
  background-image: url(../About_BG2_sp.jpg);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}

.specialBox {
  max-width: 1200px;
  padding-top: 20%;
}

.special_txt {
  margin: 0 6.1%;
}

.special_txt1 {
  color: #578AC5;
  font-family: Jost;
  font-size: min(9.2vw, 8.1rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 1.5px;
}

.special_txt2 {
  color: #323232;
  /* font-family: "Hiragino Kaku Gothic StdN"; */
  font-size: min(2.85vw, 1.5rem);
  font-weight: 300;
  line-height: 167%;
}

.special_link {
  margin-top: 3%;
  text-align: center;
}

.special_link a {
  opacity: 1;
  transition: 0.5s ease;
}

.special_link a:hover {
  opacity: 0.7;
}

.special_link img {
  margin-bottom: 8.5%;
  width: 90%;
}

@media screen and (min-width:1140px) {
  .section_special {
    background-image: url(../About_BG2_pc.jpg);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
  }

  .specialBox {
    margin: 0 auto;
    padding-top: 15%;
    width: 950px;
  }

  .special_txt {
    margin: 0 0;
  }

  .special_txt1 {
    font-size: 7.6rem;
    line-height: 1;
    letter-spacing: 2px;
  }

  .special_txt2 {
    font-size: 1.4rem;
  }

  .special_link {
    display: flex;
    padding: 1.7% 0 0 0;
    justify-content: center;
    gap: 4%;
  }

}

/* =========================
footer
========================= */
.footer {
  height: 21.1%;
  background-image: url(../footer_BG_sp.png);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}

.footer_inner {
  padding: 15.1% 10.1% 10.1% 10.1%;
}

.logo_SPnone {
  display: none;
}

.footer_navList {
  margin-top: 20px;
  color: #FFF;
  font-size: min(3.6vw, 2rem);
  font-weight: 500;
}

.nav_arrow {
  display: flex;
  align-items: center;
}

.nav_arrow img {
  width: 2.0%;
  margin-right: 1.9vw;
}

.footerNav_listItem {
  margin-bottom: 3%;
}

.nav_list :nth-of-type(1) {
  margin-top: 0;
}

.footerNavAbout_acdList {
  margin-top: 5px;
  color: #ffff;
  font-size: 1.1rem;
  font-weight: 600;
}

.footerNavAbout_acdList li {
  margin-bottom: 0.6vh;
  height: 22px;
  padding-left: 12px;
  line-height: 1.9;
  width: 150px;
}

.footerNavAbout_acdList img {
  width: 5.5px;
  text-align: center;
  padding-bottom: 5%;
  margin-right: 5px;
}

.footerNav_listItem_eng {
  color: rgba(255, 255, 255, 0.60);
  font-family: Jost;
  font-size: 1.0rem;
  font-weight: 500;
}

.footer_underList1 {
  padding-top: 4.3vh;
}

.logo {
  margin-top: 11%;
  text-align: center;
}

.footer_underList1 img {
  width: 32.7vw;
}

.nakanumaM_logo {
  margin-top: 3vh;
}

.snsLogo {
  width: 16%;
  display: flex;
  justify-content: space-between;
}

.snsLogo img {
  margin-left: 19%;
}

.footer_underList2 {
  align-items: center;
  padding: 6vw 18.5vw 4vw 18.5vw;
}

.footer_rule {
  color: #FFF;
  font-family: Inter;
  font-size: min(2.5vw, 2.2rem);
  ;
  font-weight: 400;
}

.ruleBox {
  display: flex;
  justify-content: space-between;
  margin-top: 18%;
}

.footer_rule li {
  text-align: left;
  text-decoration: underline;
  text-decoration-color: #ffff;
}

.footer_underList1_pc {
  display: none;
}

/* メニュー項目のホバー時のアニメーション */
/* アンカータグのホバー効果 */
a {
  transition: transform 0.3s ease-out, opacity 0.1s ease-out;
}

a:hover {
  transform: translateY(0px);
  opacity: 0.8;
}

.footerNav_listItem a:hover {
  transform: translateY(0px);
  opacity: 0.8;
}

/* 画像（ロゴ、アイコン）のホバー効果 */
footer img {
  transition: transform 0.3s ease-out, opacity 0.1s ease-out;
}

footer img:hover {
  transform: translateY(0px);
  opacity: 0.8;
}

/* フッターメニュー項目（利用規約、サイトポリシー）のホバー効果 */
.footer_rule li:hover {
  transform: translateY(0px);
  opacity: 0.8;
}

@media screen and (min-width:1000px) {
  .footer {
    height: 21.1%;
    background-image: url(../footer_BG_pc.png);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
  }

  .footer_inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15.1% 10.5% 10.1% 10.5%;
  }

  .logo_SPnone {
    display: block;
    margin: 0 auto;
    width: 29%;
    margin-top: 5%;
  }

  .footer_underList1 .logo {
    display: none;
  }

  .footer_navList {
    display: flex;
    justify-content: space-between;
    margin: 13% 0 8.5% 0;
  }

  .footerNav_listItem {
    font-size: 1.7rem;
  }

  .footerNav_listItem_eng {
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 1px;
  }

  .nav_arrow img {
    width: 2.0%;
  }

  .footerNavAbout_acdList li {
    width: 84%;
    font-size: 1.3rem;
    align-items: center;
    height: 2.9%;
    text-align: c;
  }

  .nav_arrow img {
    margin-right: 3%;
    width: 3.3%;
  }

  .nav_arrow {
    align-items: center;
  }

  .footerNavAbout_acdList {
    width: 100%;
    align-items: center;
  }

  .footer_underList1_pc {
    display: block;
  }

  .log_pc {
    display: none;
  }

  .footer_underList2_pc {
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    align-items: center;
    width: 600px;
  }

  .footer_underList1 {
    display: none;
  }

  .nakanumaM_logo_pc {
    width: 220px;
  }

  .ruleBox_pc {
    align-items: center;
    display: flex;
    justify-content: space-between;
    gap: 100px;
  }


  .snsLogo_pc {
    display: flex;
    justify-content: space-between;
    height: 59px;
  }

  .footer_rule_pc {
    color: #FFF;
    font-size: 1.3rem;
    font-weight: 400;
  }

  .footer_rule_pc li {
    width: 93px;
  }

  .footer_rule_pc li {
    text-align: left;
    text-decoration: underline;
    text-decoration-color: #ffff;
  }

  .snsLogo_pc img {
    margin-left: 14%;
  }

}