/* ==================================================
   カスタムCSS - ユーザー編集用
   ================================================== */

/*
   このファイルはTailwindCSSのJITコンパイルの影響を受けません。
   独自のスタイルをここに追加してください。
*/

@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@500;900&display=swap');

/* footer {
  font-size: 87.5%;
  background-color: #f2f0e8;
}

.footerWrap01 dl dt {
  font-size: 1.25rem;
}
.footerWrap02,
.footerWrap03 {
  background-color: #f2f0e8;
}
.footerWrap02 ul li a {
  font-size: 0.875rem;
}

.footerWrap03 address {
  font-size: 10px;
} */

.noto-sans {
  font-family:Noto Sans JP,sans-serif;
}

/* ==================================================
   カルーセルのスタイル
   ================================================== */
img {
  width: revert-layer;
}
header {
  height: auto;
  box-shadow: none;
  z-index: inherit;
}
a {
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.8;
}
#nav nav {
  position: static;
}
#hero {
  position: relative;
  overflow: hidden;
  background: #028AEC;
  background: linear-gradient(90deg, rgba(2, 138, 236, 1) 0%, rgba(0, 87, 204, 1) 100%);
}

.mv-carousel {
  width: 100%;
  padding-bottom: 56px;
  height: auto;
  /* aspect-ratio: 2.03 / 1; */
  position: relative;
}

.mv-carousel .swiper-wrapper {
  height: 100%;
}

.mv-carousel .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.mv-carousel .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ==================================================
   ナビゲーションボタンのスタイル
   ================================================== */

.btns {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  z-index: 10;
  pointer-events: none;
}

.swiper-button-prev,
.swiper-button-next {
  position: static;
  /* background: rgba(255, 255, 255, 0.8); */
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: auto;
  backdrop-filter: blur(4px);
}

@media (min-width: 768px) {
  .swiper-button-prev,
  .swiper-button-next {
    width: 60px;
    height: 60px;
  }
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  /* background: rgba(255, 255, 255, 1); */
  opacity: 0.5;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  display: none;
}

.swiper-button-prev img,
.swiper-button-next img {
  width: 120px;
  height: 120px;
  object-fit: contain;
}

.swiper-button-prev:focus-visible,
.swiper-button-next:focus-visible {
  outline: 2px solid #0066cc;
  outline-offset: 2px;
}

.swiper-live-region {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ==================================================
   sec-01の背景スタイル
   ================================================== */

/* #sec-01 {
  position: relative;
  overflow: hidden;
}

.sec-01-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
} */

.sec-01-bg img {
  /* width: 100%;
  height: 100%; */
  object-fit: cover;
  object-position: center;
}

/* 45度傾いた背景（必要に応じてコメントアウトを解除）
#sec-01::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background-color: #02ADEC;
  transform: rotate(45deg);
  z-index: -1;
}
*/

/* ==================================================
   モバイル対応
   ================================================== */

@media (max-width: 768px) {
  .footerMenu01 ul li a span {
    font-size: 1rem;
  }
  .footerMenu02 ul li a span {
    font-size: 0.8125rem;
  }
  address {
    padding-bottom: 60px;
  }
  .swiper-button-prev,
  .swiper-button-next {
    width: 80px;
    height: 80px;
  }

  .swiper-button-prev img,
  .swiper-button-next img {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 480px) {
  .swiper-button-prev,
  .swiper-button-next {
    width: 20px;
    height: 20px;
  }

  .swiper-button-prev img,
  .swiper-button-next img {
    width: 20px;
    height: 20px;
  }
}

/* ==================================================
   footer-cvセクションのスタイル
   ================================================== */
/* ==================================================
   ユーザーカスタムスタイル（自由に編集してください）
   ================================================== */

/*
   ここにプロジェクト固有のスタイルを追加してください。
   例：

   .custom-section {
     padding: 2rem;
     background: linear-gradient(45deg, #02ADEC, #0066CC);
   }

   .custom-button {
     background-color: #FF2F00;
     color: white;
     border-radius: 8px;
     padding: 12px 24px;
   }
*/

/* ==================================================
   モーダルスタイル
   ================================================== */

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  background: #fff;
  border-radius: 8px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
  z-index: 10000;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  color: #000;
  /* background: rgba(255, 255, 255, 1); */
}

.modal-close {
  width: 40px;
  height: 40px;
}
.modal-close::before,
.modal-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  background: #333;
}
.modal-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.modal-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

#modalImage {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

/* Modal trigger hover effect */
.modal-trigger:hover {
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

/* Modal navigation buttons */
.modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10001;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-nav:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: translateY(-50%) scale(1.1);
}

.modal-prev {
  left: 20px;
}

.modal-next {
  right: 20px;
}

/* Modal counter */
.modal-counter {
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: bold;
  z-index: 10001;
}

/* Navigation button visibility control */
.modal-nav.hidden {
  display: none;
}

/* Video modal specific styles */
.video-modal-content {
  background: #000;
  max-width: 90%;
  max-height: 90vh;
  width: auto;
  padding: 0;
}

.video-modal-content video {
  display: block;
  max-width: 100%;
  max-height: 85vh;
  width: auto;
  height: auto;
}

.video-modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: rgba(255, 255, 255, 0.9);
  color: #333;
  width: 40px;
  height: 40px;
  font-size: 30px;
}

.video-modal-close:hover {
  background: #fff;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
  .mv-carousel {
    padding-bottom: 38px;
  }
  .modal-nav {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .modal-prev {
    left: 10px;
  }

  .modal-next {
    right: 10px;
  }

  .modal-counter {
    top: 10px;
    font-size: 12px;
    padding: 6px 12px;
  }
}

.map_svg:hover {
  fill: #0066cc;
}

/* ==================================================
   Swiperページネーションのスタイル
   ================================================== */

.mv-carousel {
  position: relative !important;
}

.swiper-pagination {
  position: absolute !important;
  bottom: 20px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  display: flex !important;
  gap: 12px !important;
  z-index: 10 !important;
  width: auto !important;
  text-align: center !important;
}

.swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  background: transparent;
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 1;
  cursor: pointer;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  background: #fff;
  border-color: #fff;
}

.swiper-pagination-bullet:hover:not(.swiper-pagination-bullet-active) {
  background: rgba(34, 204, 255, 0.3);
}

@media (max-width: 768px) {
  .swiper-pagination {
    bottom: 15px;
    gap: 8px;
  }

  .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
  }
}

/* ==================================================
   ナビゲーションボタン（黄色背景）のスタイル
   ================================================== */

.nav-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5625vw;
  justify-content: center;
  align-items: center;
  width: 86.71875vw;
  margin: 0 auto;
  padding-top: 6.34375vw;
}

.nav-grid li {
  display: flex;
  align-items: center;
  height: 4.6875vw; /* 固定高さ */
  flex: 0 0 auto;
}

.nav-btn {
  display: inline-block;
  height: 100%;
  transition: transform 0.3s ease;
}

.nav-btn img {
  height: 100%;
  width: auto;
  display: block;
}

.nav-btn:hover {
  transform: translate(-2px, -2px);
}

@media (max-width: 639px) {
  /* .nav-grid {
    flex-direction: column;
  } */
  .nav-grid {
    gap: 5px;
  }
  .nav-grid li {
    height: 40px;
  }
}

.footer-cv-sp {
  /* ブルーグラデ */
  background: linear-gradient(270deg, #47d5ff 0%, #0066cc 100%);
  position: relative;
  padding: 24px 16px;
}

.after\:bg-\[url\(images\/ic-zoom\.jpg\)\]::after {
  content: var(--tw-content);
  background-image: url(images/ic-zoom.png);
}

.after\:bg-\[url\(images\/ic-zoom\.png\)\]::after {
  content: var(--tw-content);
  background-image: url(images/ic-zoom.png);
}

.section-01-title-01-area {
}

.pc_view .section-01-title-01-area {
  width: 89.77%;
  aspect-ratio: 1149 / 498;
  margin-inline: auto;
  position: relative;
  max-width: 1149px;
}

.pc_view {
  min-width: 980px;
}

.sp_view {
  max-width: 767px;
  margin-inline: auto;
}

/* .footer-banners.fixed {
  opacity: 0;
} */

.footer-banners > div {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  width: 100%;
}

.footer-banners > div > div {
  background-color: rgba(0, 0, 0, 0.7);
  width: 100%;
  min-height: 110px;
  display: flex;
  align-items: flex-end;
  padding: 7px 3.4% 0 3.4%;
  gap: 30px;
  box-sizing: border-box;
}

.footer-banners a {
  flex-shrink: 1;
  flex-grow: 0;
  min-width: 0;
}

.footer-banners a:first-child {
  display: flex;
  align-items: center;
  height: 100%;
}

.footer-banners img {
  width: 100%;
  height: auto;
  display: block;
}

/* ==================================================
   モーダルトリガー内のテキストエリアスタイル（「〜本」表示）
   ================================================== */

.modal-trigger .absolute.bottom-0 {
  padding: 5px !important;
  /* min-width: 80px; */
}

.modal-trigger .absolute.bottom-0 span:first-child {
  font-family: "Archivo Black", sans-serif;
  font-weight: 700 !important;
  display: inline-block;
  padding-right: 2px;
  font-size: 30px;
}

.modal-trigger .absolute.bottom-0 span:last-child {
  font-weight: 500 !important;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 25px;
}

.cv-area {
  max-width: 100% !important;
  width: 100% !important;
  padding: 50px !important;
  background-color: #e4e4e4 !important;
  font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "Lucida Grande", "Lucida Sans Unicode", Arial, Verdana, sans-serif;
}
.cv-area p {
  color: #000 !important;
font-size: 16px;
}
.cv-area a {
  color: #0066cc !important;
	border-color: #0066cc !important;
}

.text-white{
  color: #fff !important;
	border-color: #fff !important;
}

.sec-07-bg{
bottom: -220px;
}

.other-link-area {
  background-color: #e4e4e4;
  padding: 50px;
}
.other-link-area__button {
  width: min(800px, 100%);
  margin-inline: auto;
  padding: 20px;
  background-color: #545454;
  color: #fff;
  font-size: 32px;
  text-align: center;
  position: relative;
}
.other-link-area__button a {
  color: inherit;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-decoration: underline;
  text-underline-offset: 10px;
}
.other-link-area__button-circle{
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-content: center;
  place-items: center;
}
.other-link-area__button-circle:after {
  content: '';
  display: inline-block;
  width: 10px;
  height: 12px;
  background-color: #545454;
  clip-path: polygon(0 0, 0 100%, 100% 50%);
  position: relative;
  right: -1px;
}

#nav{
background-image: url(images/nav-back-01.jpg);
background-repeat: no-repeat;
background-size: cover;
width: 100%;
height: 37.78125vw;
}

.nav-note{
font-family: "Zen Kaku Gothic New", sans-serif;
max-width: 1100px;
color: #fff;
font-size: 13px;
letter-spacing: -0.02em;
padding: 0px 10px 20px;
}


.sec-01-title{
width: 51.796875vw;
}

.sec-01-bg{
background-image: url(images/sec-01-back-01.png);
width: 100%;
height: 153.90625vw;
background-repeat: no-repeat;
background-size: cover;
margin-top: -21vw;
padding-top: 14.0625vw;
}

.sec-01-head{
width: 75.46875vw;
}

.sec-01-box{
margin-top: 36.875vw;
background-color: #0066cc;
width: 85.9375vw;
padding: 1.171875vw 0 5.46875vw;
box-shadow: 5px 5px 6px rgba(0, 0, 0, 0.4);
}

.sec-01-movie-box {
  gap: 4.6875vw;
  margin-top: 4.6875vw;
width: 73.4375vw;
}

.sec-01-movie-item{
display: flex;
flex-direction: column;
gap: 2.03125vw;
}

.sec-02-note {
font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 14px;
  right: 85px;
  bottom: 86px;
}

.sec-02-txt{
font-size: 1.6rem;
}

.sec-02-box{
margin-top: -108px;
}

.sec-03-01-bg{
background-image: url(images/sec-03-back-01.png);
width: 100%;
height: 184.0625vw;
background-repeat: no-repeat;
background-size: cover;
margin-top: -10.546875vw;
}

.sec-03-title {
  padding-top: 21.625vw;
  width: 50.78125vw;
margin: 0 auto;
}

.sec-03-cont{
display: flex;
flex-direction: column;
padding-top: 6.25vw;
gap: 6.25vw;
}

.sec-03-item{
width: 70.46875vw;
margin: 0 auto;
}

.sec-03-point{
display: flex;
flex-direction: column;
gap: 70px;
padding: 120px 0 30px;
}

@media (max-width: 979px) {

  #nav {
    height: 484px;
  }

.nav-grid{
gap: 20px
;
}

  .nav-note {
    padding: 0px 10px 20px;
  }

  .sec-01-title {
    max-width: 663px;
    width: 100%;
  }

  .sec-01-bg {
    height: 1970px;
    margin-top: -300px;
    padding-top: 200px;
    background-position: center top;
  }

  .sec-01-head {
    max-width: 966px;
    width: 100%;
  }

  .sec-01-box {
    margin-top: 472px;
    max-width: 1100px;
    width: 100%;
    padding: 15px 0 70px;
  }

  .sec-01-movie-box {
    gap: 60px;
    margin-top: 60px;
    max-width: 940px;
    width: 100%;
  }

  .sec-01-movie-item {
    gap: 26px;
  }

  .sec-03-01-bg {
    height: 2419px;
    margin-top: -160px;
  }

  .sec-03-title {
    padding-top: 277px;
    max-width: 650px;
    width: 100%;
  }

  .sec-03-cont {
    padding-top: 80px;
    gap: 80px;
  }

  .sec-03-item {
    max-width: 902px;
    width: 100%;
  }

}

#sec-04-01,#sec-04-02,
#sec-04-03,#sec-04-04{
padding: 0 70px;
}

.sec-04-cont{
display: flex;
flex-direction: column;
gap: 80px;
}

.sec-04-box{
background-color: #fff;
max-width: 1100px;
padding-bottom: 75px;
box-shadow: 5px 5px 6px rgba(0, 0, 0, 0.4);
}

.sec-04-com{
margin-top: 60px;
}

.sec-04-lead{
width: 788px;
margin-bottom: 78px;
}

.sec-04-zoom::after{
width: 45px;
height: 45px;
}

.sec-06-step{
background-color: #e4e4e4 !important;
}

.sec-06-head{
width: 100%;
}

.sec-06-salon{
background-color: #02adeb;
}

.sec-06-ex{
background-color: #0066cc;
}

.bn-no01 .annotation {
  font-family: "Zen Kaku Gothic New", sans-serif;
  position: absolute;
  bottom: 21%;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  color: #323232;
  font-size: clamp(8px, 0.78125vw, 16px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.06em;
}

.sec-05-cts {
  background-color: #e4e4e4;
}

#sec-05 .bn-no01 .annotation {
  bottom: 32%;
}

.section-05-lead-01 {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  transform: translateY(55%);
}

.section-05-lead-01 img {
  width: 94%;
}

#sec-05 .cv-area {
  padding-top: 20vw !important;
  margin-top: 80px;
}

#sec-06 .btn-box {
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  gap: 2.34375vw;
}

#sec-06 .txt {
  font-family: "Zen Kaku Gothic New", sans-serif;
text-align: center;
}

.sec-06-salon {
  background-color: unset;
  margin-top: -7.03vw;
}

.sec-06-ex {
  padding: 130px 0 84px;
}

.section-06-ttl {
  max-width: 80%;
}

#sec-06 .cts-box {
  flex-wrap: wrap;
  row-gap: 50px;
  width: 75%;
  max-width: 1100px;
  margin-top: 60px;
}

#sec-06 .cts-box > div{
  width: calc(100% / 3);
}

#sec-09-02 .video-wrap {
  width: 66.36363636363636%;
}

#sec-09-02 .note {
  position: absolute;
  right: 1%;
  bottom: 2%;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-weight: 500;
}

.footer-cv-attr-01 {
  width: 73.90625vw;
  margin-left: auto;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.footer-cv-pc-02 .cv-area {
  background-color: unset !important;
  position: relative;
  z-index: 1;
  padding:
    9.375vw 6.640625vw 4.6875vw !important;
}

.footer-cv-pc-02 .cv-area a {
  font-size: 2.03125vw;
}

.footer-cv-pc-02 .cv-area p {
  font-size: 1.171875vw;
  line-height: 1.5;
}

.footer-cv-pc-02 .cv-btn {
  display: block;
  width: 62.5vw;
}

.footer-cv-pc-02 {
  background-color: #e4e4e4;
}

#sec-04 .bg-blue{
  padding-bottom: 14.0625vw;
}

#sec-07 header {
  padding-top: 3.90625vw;
}

.sec-08-ttl{
width: 61.71875vw;
}

.sec-09-02-cont{
padding-bottom: 11.71875vw;
}

.sec-03-cont-txt {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
}

.video-cycle {
  position: absolute;
  top: 17%;
  right: -13%;
  width: 79%;
  clip-path:circle(30% at 50% 50%);
}

.sec-01-modal-box {
  gap:3.75vw;
}

.sec-01-modal-txt {
  margin: -25px auto 0;
}

@media (max-width: 979px) {
  .sec-01-modal-box {
    gap:48px;
  }
}

.sec-01-zoom--01::after {
  top: 27%;
  left: 38%;
}

.sec-01-zoom--02::after {
  top: 27%;
  left: 1%;
}

.has-mens-floating-footer {
  padding-bottom: max(110px, 10vw);
}