@charset "UTF-8";
/* CSS Document */

:root {
  --text-color-brand: #CE3366;
  --background-color-secondary: #f9f7f3;
  --background-color-primary: #fff;
  --section-padding: 60px;
  --section-boundary-height: 60px;
  --inline-padding: 16px;
  --card-shadow-size: 0 4px 16px rgba(0,0,0,0.1);
  --card-shadow-color: rgba(0,0,0,0.1);
  --font-family-display: "Noto Sans JP", sans-serif;
  --light-color:#FFF8F8;
}

.op0 {
    opacity: 0;
}

.fadeup{
  animation: fadeup 0.6s 1 forwards;
}
 
@keyframes fadeup {
  0% {
    transform: translateY(40px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
  }
  80%, 100% {
    opacity: 1;
  }
}


input[type="text"],
button,
textarea{
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

select{
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
    -moz-appearance: menulist;
  -webkit-appearance: menulist;
  appearance: menulist;
}

textarea {
  resize: vertical;
}


input[type='submit'],
input[type='button'],
label,
button,
select {
  cursor: pointer;
}


html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p,
dl, dt, dd, ol, ul, li
{
  margin:0;
  padding:0;
  border:0;
  outline:0;
  font-size:100%;
  vertical-align:baseline;
  background:transparent;
}

body {
 	line-height:1.5;
  font-family: var(--font-family-display);
	font-weight: 400;
  color:#3b3b3b;
  padding-top: 65px;
}

ul {
  list-style:none;
}

a {
  margin:0;
  padding:0;
  font-size:100%;
  vertical-align:baseline;
  background:transparent;
}

/* change colours to suit your needs */
ins {
  background-color:#ff9;
  color:#000;
  text-decoration:none;
}

/* change colours to suit your needs */
mark {
  background-color:#ff9;
  color:#000; 
  font-style:italic;
   font-weight:bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom:1px dotted;
  cursor:help;
}

table {
  border-collapse:collapse;
  border-spacing:0;
}

/* change border colour to suit your needs */
hr {
  display:block;
  height:1px;
  border:0;   
  border-top:1px solid #cccccc;
  margin:1em 0;
  padding:0;
}

input, select {
  vertical-align:middle;
}

img{
	max-width: 100%;
}

*{
  box-sizing: border-box;
}

.wraper{
  width: 100vw;
  overflow-x: hidden;
}

.min,.min *{
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;  
}

.margin-bottom-30{
  margin-bottom: 30px;
}

.margin-bottom-40{
  margin-bottom: 40px;
}

.main-color{
  color:var(--text-color-brand);
}

.text-center{
  text-align: center;
}

.section__wrap{
  padding: var(--section-padding) 0;
}

.bg__light-color{
  background: #FFF8F8;
}

.grid-gap-s{
  display: grid;
  gap:16px;
}

.grid-gap-m{
  display: grid;
  gap:20px;
}

.grid-gap-l{
  display: grid;
  gap:24px;
}

.grid-gap-xl{
  display: flex;
  gap:80px;
  flex-wrap: wrap;
}

.pc{
  display: none;
}

@media screen and (min-width: 767px) {
  .grid-gap-l,
  .grid-gap-xl{
    gap:40px;
  }
  
  .pc{
    display: block;
  }
  
  .sp{
    display: none;
  }
  
  .section-heading__description{
    text-align: center;
  }
  
}

  .default__text{
    font-size: 16px;
    font-weight: bold;
    line-height: 1.8em;
  }

  .content{
    width: 90%;
    margin: auto;
    max-width: 920px;
  }

  .content__title{
    padding: 30px 0;
    text-align: center;
    position: relative;
  }

  .content__title span{
    color:var(--text-color-brand);
    font-size: 32px;
    font-weight: bold;
    line-height: 1.25em;
  }

  .content__title small{
    color:#3b3b3b;
    font-size: 20px;
    line-height: 1.9em;
    font-weight: bold;
  }

  .content__title:before{
    content:" ";
    width: 220px;
    height: 20px;
    background: url("../images/title_obj.webp") center;
    position: absolute;
    left: calc(50% - 110px);
    top:0;
    background-size: contain;
  }

  .content__title:after{
    content:" ";
    width: 220px;
    height: 20px;
    background: url("../images/title_obj.webp") center;
    position: absolute;
    left: calc(50% - 110px);
    bottom:0;
    background-size: contain;
  }

/* header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 64px;
  background: #fff;
  z-index: 1200;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 16px;
}

/* ===============================
   ハンバーガーボタン
=============================== */
.hamburger {
  position: relative;
  width: 18px;
  height: 12px;
  cursor: pointer;
  z-index: 1100;
  transition: 0.3s;
  display: block;
}
.hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #333;
  transition: all 0.4s ease;
}
.hamburger span:nth-child(1) {
  top: 0;
}
.hamburger span:nth-child(2) {
  top: 5px;
}
.hamburger span:nth-child(3) {
  top: 10px;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 5px;
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 5px;
}
  
  .contactBtn{
    position: absolute;
    right: 50px;
    top:10px;
    z-index: 9999;
  }
  
  .contactBtn button{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 144px;
    padding: 12px;
    text-align: center;
    background: linear-gradient(to top,#CE800A,#FDC450);
    color:#ffffff;
    transition: 0.5s;
    text-decoration: none;
    border-radius: 100px;
    font-size: 12px;
    font-weight: bold;
  }
  
  .contactBtn button img{
    display: inline-block;
    margin-left: 5px;
  }
  
  .contactBtn button:hover{
    opacity: 0.7;
  }

/* ===============================
   ナビゲーションメニュー
=============================== */
nav {
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  background: #fff;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.7s ease;
  z-index: 1050;
  padding: 0 5%;
}
nav.active {
  max-height: 750px; /* メニュー項目数に合わせて適宜調整 */
}
nav ul {
  list-style: none;
  padding-bottom: 50px;
}
nav li {
  border-bottom: 1px solid #EFEFEF;
}
nav a {
  display: flex;
  padding: 16px 0;
  text-decoration: none;
  color: #333;
  font-size: 12px;
  transition: 0.3s;
  font-weight: bold;
  align-items: center;
}
nav a:hover {
  opacity: 0.7;
}
  
nav span{
  font-size: 20px;
  color:#CE3366;
  display: inline-block;
  margin-right: 10px;
  letter-spacing: 0.1em;
}

/* ===============================
   背景の黒幕
=============================== */
.overlay {
  position: fixed;
  top: 60px;
  left: 0;
  width: 100%;
  height: calc(100vh - 60px);
  background: rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 1110;
}
.overlay.active {
  opacity: 1;
  visibility: visible;
}

  .mainLogo{
    position: relative;
    top:4px;
  }
  
/* ===============================
   PC表示
=============================== */
@media (min-width: 1275px) {
  .hamburger {
    display: none;
  }
  
  nav li {
    border: none;
  }
  .overlay {
    display: none;
  }
  
  nav {
      position: initial;
      height: auto;
      max-height: max-content;
    width: auto;
    padding: 0;
    padding-right: 160px;
    background: none;
  }

  nav ul {
      display: flex;
      gap: 16px;
      padding-bottom: 0;
  }
  
  nav a {
    padding: 0;
    font-size: 10px;
    display: block;
    text-align: center;
    color:#878787;
  }
  
  nav a span{
    display: block;
    font-size: 14px;
    margin: 0;
  }
  
  .contactBtn {
    right: 5%;
    top:12px;
  }
  
  header {
    padding: 0 5%;
  }
  
}


/* ===============================
   メインビジュアル
=============================== */
/* 初期状態（背景非表示） */
.mainVisual {
  position: relative;
  width:100%;
  background-repeat: no-repeat;
  background: #ffffff;
}
  
/* 背景画像を ::before で管理 */
.mainVisual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/mainImage_sp.webp") top;
  background-size: 100% auto;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.5s ease;
  z-index: 0;
}  

/* メインテキストの親 */
.mainVisual__mainText {
  position: relative;
  z-index: 2;
  padding-top: 20px;
  padding-left: 5%;
  padding-bottom: 50%;
}

/* 各テキスト要素の初期状態 */
.mainVisual__mainText p {
  opacity: 0;
  transform: translateX(-30px);
  animation: slideIn 1s ease forwards;
}

/* 時間差で発火 */
.mainVisual__mainText .pt01 {
  animation-delay: 0.2s;
}
.mainVisual__mainText .pt02 {
  animation-delay: 0.6s;
  padding-left: 10px;
}
.mainVisual__mainText .pt03 {
  animation-delay: 1s;
  padding-left: 20px;
}

/* 左→右スライド＋フェードイン */
@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* 全テキスト表示後に背景ふわっと */
.mainVisual.show-bg::before {
  opacity: 1;
}

@media (min-width: 500px) {
  .mainVisual:before {
    background-position: center;
  }
} 

@media (min-width: 714px) {
  .mainVisual {
    height: 400px;
  }
  
  .mainVisual:before {
    background-image: url("../images/mainImage_pc.webp");
    background-size: cover;
  }
  
  .mainVisual__mainText .pt01 img{
    width:265px;
  }
  
  .mainVisual__mainText .pt02 img{
    width:312px;
  }
  
  .mainVisual__mainText .pt03 img{
    width:327px;
  }
  
}

@media (min-width: 767px) {
  
}
  
@media (min-width: 1000px) {
  
  .mainVisual__mainText {
    position: relative;
    z-index: 2;
    padding-top: 70px;
    padding-left: 10%;
    height: 620px;
  }
  
  .mainVisual {
    height: 620px;
  }
}

@media (min-width: 1800px) {
  .mainVisual {
    height: 800px;
  }
  
  .mainVisual__mainText .pt01 img{
    width:calc(265px * 1.75);
  }
  
  .mainVisual__mainText .pt02 img{
    width:calc(312px * 1.75);
  }
  
  .mainVisual__mainText .pt03 img{
    width:calc(327px * 1.75);
  }
    
}
/* -----------------------------
   slider section
----------------------------- */
.style{
  position: relative;
  margin-top: -50px;
  z-index: 1060;
  padding-top: 30px;
}

.style::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 394px; /* 背景部分だけ固定 */
  background: url("../images/slide_bg.png") no-repeat center top;
  background-size: 100% 394px;
  z-index: 0;
}

.style__title{
  padding-right: 5%;
  text-align: right;
}

.slider {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 5px;
    position: relative;
    flex-grow: 1;
    justify-content: center;
}

.slider__container,
.slider__list {
    display: flex;
    gap: 5px
}

.slider__list--top {
    animation: infinity-scroll-left 80s infinite linear .5s both;
    animation-play-state: paused
}

.slider__list--top.is-playing {
    animation-play-state: running
}

.slider__list--bottom {
    animation: infinity-scroll-right 80s infinite linear .5s both;
    animation-play-state: paused
}

.slider__list--bottom.is-playing {
    animation-play-state: running
}

.slider__item {
    height: 117px;
    aspect-ratio: 167/117;
}

.slider__item>img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.slider__catch {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center
}

.slider__catch-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transform: rotate(-8deg)
}

.slider__catch-text__line {
    overflow: hidden;
    transition: transform cubic-bezier(.215, .61, .355, 1) .5s;
    transform: translate(-101%)
}

.slider__catch-text__line.is-show {
    transform: translate(0)
}

.slider__catch-text__line>img {
    height: 11vw;
    width: auto;
    display: block;
    transition: transform cubic-bezier(.215, .61, .355, 1) .5s;
    transform: translate(101%)
}

.slider__catch-text__line>img.is-show {
    transform: translate(0)
}

.slider__catch-text__line--1 {
    margin-left: -1.7948717949vw
}

.slider__catch-text__line--2 {
    margin-top: -1px;
    margin-left: 1.7948717949vw
}

@keyframes infinity-scroll-left {
    0% {
        transform: translate(0)
    }

    to {
        transform: translate(-100%)
    }
}

@keyframes infinity-scroll-right {
    0% {
        transform: translate(-100%)
    }

    to {
        transform: translate(0)
    }
}

.styleBox{
  margin: 10px auto;
  width: 90%;
  padding: 20px;
  background: #ffffff;
  border-radius: 20px;
}

.styleBox__subtitle{
  text-align: center;
}

.styleBox__subtitle span{
  display: inline-block;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: bold;
  color:var(--text-color-brand);
  position: relative;
}

.styleBox__subtitle span:before{
  content:" ";
  display:block;
  width: 1px;
  height: 26px;
  border-left: 1px dashed var(--text-color-brand);
  position: absolute;
  top:0;
  left: -15px;
  transform: rotate(-25deg);
}

.styleBox__subtitle span:after{
  content:" ";
  display:block;
  width: 1px;
  height: 26px;
  border-left: 1px dashed var(--text-color-brand);
  position: absolute;
  top:0;
  right: -15px;
  transform: rotate(25deg);
}
  
.styleBox__title{
  display: flex;
  justify-content: center;
  align-items: center;
}

.styleBox__title span{
  font-size:28px;
  line-height: 140%;
  text-decoration: underline;
  font-weight: bold;
}

.styleBox__priceWrap{
  display: flex;
  justify-content: center;
  align-items:baseline;
}

.styleBox__priceTime{
  padding: 2px 8px;
  font-size: 24px;
  color:#ffffff;
  font-weight: 600;
  background: var(--text-color-brand);
  border-radius:4px;
  display: inline-block;
  margin-right: 5px;
  position: relative;
  top:-10px;
}

.styleBox__price{
  font-size: 64px;
  color:var(--text-color-brand);
  font-weight: bold;
}

.styleBox__priceText{
  font-size: 20px;
  color:var(--text-color-brand);
  font-weight: 600;
  display: inline-block;
  margin-left: 5px;
  position: relative;
  top:-5px;
}

.styleBox__btn{
  text-align: center;
}

.styleBox__btn button{
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 280px;
  padding: 12px;
  text-align: center;
  background: linear-gradient(to top,#CE800A,#FDC450);
  color:#ffffff;
  transition: 0.5s;
  text-decoration: none;
  border-radius: 100px;
  font-size: 16px;
  font-weight: bold;
}

.styleBox__btn button img{
  display: inline-block;
  margin-left: 5px;
}

.styleBox__btn button:hover{
  opacity: 0.7;
}

@media screen and (min-width: 744px) {
  .style {
      margin-top: -60px;
      position: relative;
    padding-top: 40px;
  }
  
  .slider__item{
    height: 167px;
  }
  
  .style__title{
    position: absolute;
    top:10px;
    right: 30px;
    width: 321px;
    z-index: 10;
  }
  
  .style__title img{
    width: 100%;
  }
  
  .styleBox{
    max-width: 720px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap:10px;
    padding: 32px 20px;
    margin-top: 40px;
  }
  
  .styleBox__price {
    line-height: 1.25em;
  }
  
  .style__block{
    width: 50%;
    text-align: center;
  }
  
}


.campaign{
  background:url("../images/campaign_bg.webp") bottom;
  background-size: 100% auto;
  background-repeat: no-repeat;
  padding-bottom: 70px;
}


.campaign__cont{
  padding: 0 5%;
}

.campaign__title{
  text-align: center;
  font-size: 32px;
  color:#ffffff;
  font-weight: bold;
  margin: 30px 0 10px;
  letter-spacing: 0.1em;
}

.campaign__text{
  text-align: center;
  font-size:20px;
  color:#ffffff;
  font-weight: bold;
  margin-bottom: 30px;
}

.campaignBox{
  padding: 20px;
  border-radius: 20px;
  border:2px solid var(--text-color-brand);
  background: #ffffff;
}

.campaignBox__title{
  max-width: 280px;
  width: 100%;
  padding: 5px;
  text-align: center;
  border-radius: 100px;
  background:var(--text-color-brand);
  color:#ffffff;
  margin: auto;
  font-size: 16px;
}

.campaignBox__subtitle{
  text-align: center;
  position: relative;
  margin-top: 10px;
}

.campaignBox__subtitle:before{
  content:" ";
  width: 100%;
  height: 1px;
  border-top:1px dashed var(--text-color-brand);
  position: absolute;
  top:50%;
  max-width: 260px;
  left: calc(50% - 130px);
  z-index: 0;
}

.campaignBox__subtitle span{
  display: inline-block;
  background: #ffffff;
  font-size: 16px;
  font-weight: bold;
  color:var(--text-color-brand);
  z-index: 10;
  position: relative;
  padding: 5px;
}

.campaignBox__text{
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  color:var(--text-color-brand);
  line-height: 150%;
}

@media screen and (min-width: 744px) {
  .campaignBox__title {
      max-width: 100%;
  }
  
  .campaignBox{
    max-width: 720px;
    margin: auto;
    padding: 24px;
  }
  
  .campaign__block{
    display: flex;
    justify-content: center;
    gap:30px;
    padding: 0 30px;
  }
  
  .campaign__box{
    width: 100%;
  }
  
  .campaign{
    background-image:url("../images/campaign_bg_pc.svg");
    background-position: bottom center;
    background-size: auto 70%;
    padding-bottom: 80px;
  }
  
  .campaign__cont{
    padding-top: 10px;
  }
  
}

@media screen and (min-width: 1290px) {
.campaign {
        background-position: bottom center;
        background-size:100% auto;
    }
}

/*===============
CONCEPT
================*/
  .concept{
    background: var(--light-color);
  }
  
  .concept__text--primary{
    font-size: 24px;
    font-weight: bold;
    text-align: center;
  }
  
  .concept__text--primary span{
    font-size: 32px;
    color:var(--text-color-brand);
  }

@media screen and (min-width: 767px) {
  .concept__block{
    position: relative;
    gap:24px;
  }
  
  .concept__text--primary,
  .concept__text{
    width: 40%;
    max-width: 340px;
    text-align: left;
  }
  
  .concept__text--primary{
    padding-top: 30px;
  }
  
  .concept__text{
   padding-bottom: 30px; 
  }
  
  .concept__img{
    width: 60%;
    max-width: 540px;
    padding-left: 40px;
    position: absolute;
    right: 0;
    top:0;
  }
  
  .concept__img img{
    width: 100%;
  }
}
/*===============
facility
================*/
.facility{
  padding-bottom: 0;
}

.facility__point-cont{
  margin: 60px 0 0;
  position: relative;
  background: #EFEFEF;
  padding: 20px 0;
}

.facility__point-cont:before{
  content:" ";
  position: absolute;
  top:-40px;
  height: 40px;
  width: 100%;
  background-image: url("../images/facility_bg01.webp");
  background-size: 100% 40px;
}

.facility__point-cont:after{
  content:" ";
  position: absolute;
  bottom:-40px;
  height: 40px;
  width: 100%;
  background-image: url("../images/facility_bg02.webp");
  background-size: 100% 40px;
}

.facility__point-title{
  position: relative;
}

.facility__point-title__text {
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  position: absolute;
  z-index: 4;
  width: 100%;
  top:-20px;
}

.facility__point-title__text span{
  display: inline-block;
  padding: 3px 8px;
  border-radius: 4px;
  background:#ffffff;
  color:var(--text-color-brand);
  border:1px solid var(--text-color-brand);
}

.facility__point-description{
  font-size: 24px;
  font-weight: bold;
  color:#ffffff;
  padding: 12px;
  padding-top: 24px;
  background:var(--text-color-brand);
  border-radius:8px;
  text-align: center;
}



.facility-card__container {
    filter: drop-shadow(var(--card-shadow-size) var(--card-shadow-color));
    grid-area: image;
    width:90vw;
  overflow: visible;
}

.facility-card__container .swiper-slide {
    height: auto
}

.facility-card {
    background-color: #fff;
    padding-inline: 24px;
    padding-top: 24px;
    padding-bottom: 24px;
    border-radius: 8px;
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.facility-card__title {
    font-size: 16px;
    font-weight: 700;
    width: -moz-fit-content;
    width: fit-content;
    padding-inline: 12px;
    padding: 5px 14px;
    border-radius:8px;
    color: #fff;
}

.facility-card__title[data-num="pt01"] {
    background-color: #7A71F3;
}

.facility-card__title[data-num="pt02"] {
    background-color: var(--text-color-brand);
}

.facility-card__title[data-num="pt03"] {
    background-color: #31BFC4;
}

.facility-card__details {
    margin-top: 0;
}

.facility-cards__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 16px;
}

.facility-cards__prev {
    left: unset;
    right: 16px;
    position: unset;
    top: unset;
    margin-top: 0;
    width: 32px;
    height: 32px;
    border-radius: 9999px;
    transition: .3s;
    margin-right: 4px
}

@media (hover: hover) and (pointer: fine) {
    .facility-cards__prev:hover {
        background-color: #e2d7bc
    }
}

.facility-cards__prev:after {
    font-size: 16px;
    color: #3B3B3B;
    font-weight: 700
}

.facility-cards__next {
    right: unset;
    position: unset;
    top: unset;
    margin-top: 0;
    margin-left: 4px;
    width: 32px;
    height: 32px;
    border-radius: 9999px;
    transition: .3s
}

@media (hover: hover) and (pointer: fine) {
    .facility-cards__next:hover {
        background-color: #e2d7bc
    }
}

.facility-cards__next:after {
    font-size: 16px;
    color: #3B3B3B;
    font-weight: 700
}

.facility-cards__pagination {
    grid-area: pagination;
    position: relative;
    bottom: 0 !important;
    width: -moz-fit-content !important;
    width: fit-content !important;
    display: flex
}

.facility-cards__pagination>.swiper-pagination-bullet {
    background-color: #ffffff;
  border:2px solid var(--text-color-brand);
}

.facility-cards__pagination>.swiper-pagination-bullet-active {
    background-color: var(--text-color-brand)
}


.facility__features__container {
    padding: 24px;
    background-color: #fff;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    filter: drop-shadow(var(--card-shadow-size) var(--card-shadow-color));
}

.facility__features__container {
  gap:16px;
}

.facility__feature-item{
    display: flex;
    padding: 20px 0;
  align-items: center;
}

.facility__feature-item:not(:last-child){
    border-bottom:1px solid #EFEFEF;
}

.facility__feature-item__image{
  display: inline-block;
  margin-right: 15px;
}

.facility__feature-description{
  margin-top: 0;
}

.facility__feature-item__description {
    font-size: 16px;
    font-weight: 700;
    text-align: center
}

.facility__feature-item__description span {
    font-size: 12px;
    font-weight: 700
}

@media screen and (min-width: 767px) {
  .facility__block{
    position: relative;
    gap:24px;
  }
  
  .facility__title{
    max-width: 420px;
    padding-top: 30px;
    width: 45%;
  }
  
  .facility__title img{
    width: 100%;
  }
  
  .facility__text{
    max-width: 420px;
    padding-bottom: 150px;
    width: 45%;
  }
  
  .facility__img{
    padding-left: 40px;
    width: 55%;
    position: absolute;
    top:0;
    right: 0;
  }
  
  .facility__img img{
    width: 100%;
  }
  
  .facility__point-title{
    display: inline-block;
  }
  
  .facility__point-block{
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .facility__point-block.pt01{
    flex-flow: row-reverse;
  }
  
  .facility__point-box{
    width: 50%;
    gap: 24px;
    align-items: flex-start;
    grid-auto-rows: min-content;
  }
  
  .facility__point__image{
    width: 100%;
  }
  
  .facility__point-box:nth-child(1){
    width: calc(50% - 40px);
  }
  
  .facility-card__container {
   width:50vw;
    max-width: 460px;
    overflow:hidden;
  }
  
  .facility__udWrap{
    display: flex;
    gap:20px;
  }
  
  .facility__features{
   background: #ffffff;
    border-radius: 10px;
  }
  
  .facility__feature-item {
    padding: 10px 0;
  }
  
}

@media screen and (min-width: 980px) {
  .facility__title{
    padding-top: 150px;
  }
  
}

/* -----------------------------
   price section
----------------------------- */  
.price{
  padding: var(--section-padding) 0;
  padding-top: 100px;
}  
  
.price-heading__title{
  font-size: 24px;
  font-weight: bold;
  color:var(--text-color-brand);
}

.price-card__member-title{
  padding: 12px;
  text-align: center;
  background: var(--text-color-brand);
  border-radius: 16px 16px 0 0;
  font-weight: bold;
  color:#ffffff;
  font-size: 20px;
}

.price-cards-list__item{
  border-radius: 16px;
  box-shadow: var(--card-shadow-size);
  background: #ffffff;
}

.price-card__details{
  padding: 20px;
  padding-top: 0;
  min-height: 220px;
}

.price-card__amount{
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap:10px;
}

.price-card__amount__number{
  font-size: 64px;
  font-family: "Inter", sans-serif;
  color:var(--text-color-brand);
  font-weight: bold;
}

.price-card__amount__unit{
  font-size: 20px;
  color:var(--text-color-brand);
  font-weight: bold;

}

.price-card__amount__unit small{
  color:#3B3B3B;
}  

.price-card__recommendations {
  list-style: disc;
  margin-left: 1em;
  font-size: 14px;
  font-weight: bold;
  display: grid;
  gap: 4px;
  line-height: 1.5;
}

@media screen and (min-width: 767px) {
  .price-cards-list{
    grid-template-columns:repeat(3,1fr);
    margin-bottom: 20px;
  }
  
  .price-card__amount__number {
    font-size: 45px;
  }

  
  .price-card__amount__unit {
    font-size: 12px;
  }
}

@media screen and (min-width: 1000px) {
    .price-card__amount__unit {
        font-size: 16px;
    }
  
    .price-card__amount__number {
    font-size: 55px;
  }
}


/* -----------------------------
   simulation section
----------------------------- */   

.simulation {
    padding: var(--section-padding) 0;
    position: relative;
}

.simulation__slide {
    display: flex;
    flex-direction: column;
    align-items: center
}

.simulation__member-title {
    font-size: 20px;
    text-align: center
}

.simulation__image {
    width: 100%;
    height: auto;
    max-width: 320px
}

.simulation-slider__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 16px
}

.simulation-slider__prev {
    left: unset;
    right: 16px;
    position: unset;
    top: unset;
    margin-top: 0;
    width: 32px;
    height: 32px;
    border-radius: 9999px;
    transition: .3s;
    margin-right: 4px
}

@media (hover: hover) and (pointer: fine) {
    .simulation-slider__prev:hover {
        background-color: #e2d7bc
    }
}

.simulation-slider__prev:after {
    font-size: 16px;
    color: #3B3B3B;
    font-weight: 700
}

.simulation-slider__next {
    right: unset;
    position: unset;
    top: unset;
    margin-top: 0;
    margin-left: 4px;
    width: 32px;
    height: 32px;
    border-radius: 9999px;
    transition: .3s
}

@media (hover: hover) and (pointer: fine) {
    .simulation-slider__next:hover {
        background-color: #e2d7bc
    }
}

.simulation-slider__next:after {
    font-size: 16px;
    color: #3B3B3B;
    font-weight: 700
}

.simulation-slider__pagination {
    bottom: 0 !important;
    position: relative;
    width: -moz-fit-content !important;
    width: fit-content !important;
    display: flex
}

.simulation-slider__pagination>.swiper-pagination-bullet {
    background-color: #ffffff;
  border:1px solid var(--text-color-brand);
}

.simulation-slider__pagination>.swiper-pagination-bullet-active {
    background-color: var(--text-color-brand);
}

.simulation-list {
    display: none
}

.simulation-list__item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    list-style: none;
    align-items: center
}

.simulation-list__item-title {
    font-weight: 700
}  


  .simulation-slider__container .swiper-slide{
    padding:0 10px;
  }
  .simulation__slide{
    padding: 20px;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: var(--card-shadow-size);
  }
  
  .simulation-slider__container{
    overflow: visible;
    width: 90vw;
  }

@media screen and (min-width: 767px) {
  .simulation-slider__container{display: none;} 
  
  .simulation-list {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(3,1fr);
    margin-top: 20px;
  }
  
  .simulation-list__item{
    padding: 16px;
    border-radius: 8px;
    box-shadow: var(--card-shadow-size);
  }
  
}

/* -----------------------------
   voice section
----------------------------- */
.voice {
  padding: var(--section-padding) 0;
  position: relative;
}

.voice-card__header-info{
    width: 130px;
    text-align: center;
}

.voice-cards {
  filter: drop-shadow(var(--card-shadow-size) var(--card-shadow-color));
  margin-top: 20px;
}
.voice-cards>.swiper-wrapper>.swiper-slide {
  height: auto !important;
  transform: scale(.9);
  transition: .3s;
}
.voice-cards>.swiper-wrapper>.swiper-slide-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}
.voice-cards__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
}
.voice-cards__controls>.voice-cards__prev,
.voice-cards__controls>.voice-cards__next {
  width: 32px;
  height: 32px;
  border-radius: 9999px;
  transition: .3s;
  position: initial;
}
.voice-cards__controls>.voice-cards__prev:after,
.voice-cards__controls>.voice-cards__next:after {
  font-size: 16px;
  color: #3B3B3B;
  font-weight: 700;
}
@media (hover: hover) and (pointer: fine) {
  .voice-cards__controls>.voice-cards__prev:hover,
  .voice-cards__controls>.voice-cards__next:hover {
    background-color: #e2d7bc;
  }
}

.voice-cards__controls{
  position: relative;
  bottom:-40px;
  width: 100%;
  margin-top: 0;
}
.voice-cards__pagination {
  bottom: 0 !important;
  position: relative;
  width: fit-content !important;
  display: flex;
  margin: 0 8px;
  margin-top: -23px;
}

.voice-cards__pagination>.swiper-pagination-bullet {
  background-color: #ffffff;
  border:1px solid var(--text-color-brand);
}

.voice-cards__pagination>.swiper-pagination-bullet-active {
  background-color: var(--text-color-brand);
}

/* -----------------------------
   voice-card
----------------------------- */
.voice-card {
  background-color: #fff;
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  display: grid;
  grid-template-areas: "header" "content";
  grid-template-rows: auto 1fr;
}
.voice-card__header {
  grid-area: header;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-inline: 24px;
  padding-top: 24px;
  padding-bottom: 12px;
  gap: 24px;
}
.voice-card__job-type {
  display: inline-block;
  background-color: var(--text-color-brand);
  color: #fff;
  padding: 4px 12px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 700;
}
.voice-card__person {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
.voice-card__image {
  width: 50%;
  max-width: 180px;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 999px;
  object-fit: cover;
}
.voice-card__content {
  padding-inline: 24px;
  padding-bottom: 24px;
}
.voice-card__catch {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--text-color-brand);
  margin-bottom: 12px;
}
.voice-card__qa {
  display: grid;
  grid-template-areas: "icon question" "answer answer";
  grid-template-columns: auto 1fr;
  gap: 8px;
  margin-bottom: 8px;
}
.voice-card__qa-icon {
  grid-area: icon;
  font-size: 24px;
  color: var(--text-color-brand);
  font-weight: bold;
  font-family: "noto serif jp";
  margin-top: -7px;
}
.voice-card__question {
  grid-area: question;
  font-weight: 700;
}
.voice-card__answer {
  grid-area: answer;
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}
.voice-card__footer {
  display: flex;
  gap: 12px;
  align-items: center;
  background-color: #FFF8F8;
  padding: 8px 12px;
  margin-top: 18px;
  font-size: 13px;
}

.voice-card__member-type{
  font-weight: bold;
  color:var(--text-color-brand);
  font-size: 16px;
  text-align: center;
}

.voice-card__details-item{
  display: flex;
  font-weight: bold;
  font-size: 12px;
}

.voice-cards{
  position: relative;
  width: 90vw;
  overflow: visible;
  padding-bottom: 50px;
}

@media screen and (min-width: 767px) {
  
  .voice__text{
    text-align: center;
  }
  
  #simulation .grid-gap-l,
  #voice.grid-gap-l{
    gap:24px;
  }
  
  .voice-cards{
    margin-top: 0;
  }
  
  .voice-card__member-type,
  .voice-card__details-item{
    font-size: 10px;
  }
  
}

/*===============
application
================*/
  .application{
    background:#EFEFEF;
    padding: var(--section-padding) 0;
  }
  
  .application__title{
    text-align: center;
    font-size: 24px;
    font-weight: bold;
  }
  
  .application-box{
    padding: 16px;
    background: #ffffff;
    border-radius: 8px;
  }
  
  .application-box__header{
    display: flex;
    align-items: center;
    column-gap: 16px;
  }
  
  .application-box__header-image{
    flex:0 0 100px;
  }
  
  .application-box__header-image img{
    width: 100%;
    height: auto;
    display: block;
  }
  
  .application-box__header-title{
    flex:1;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.8em;
  }  
  
  .application-box__text{
    font-size: 16px;
    font-weight: bold;
    line-height: 1.8em;    
  }
  
  .application-box__list{
    font-size: 16px;
    font-weight: bold;
    line-height: 1.8em;
    list-style: disc;
    padding-left: 1.5em;
  }

@media screen and (min-width: 767px) {
  .application .grid-gap-l{
    gap:24px;
  }
  
  .application-box__description{
    position: relative;
    display: grid;
    gap:0;
    padding-bottom: 100px;
  }
  .application-box__list,
  .application-box__text{
    width: 60%;
    max-width: 560px;
    padding-right: 20px
  }
  
  .application-box__list.margin-bottom-30{
    margin-bottom: 0;
  }
  
  .application-box__description-image{
    position: absolute;
    width: 40%;
    max-width:330px;
    top:0;
    right:0;
  }
  
}

/*===============

access

================*/
  .access{
    padding: var(--section-padding) 0;
  }
  
  .content__title.mb0{
    margin-bottom: 0;
  }
  
  .access__title{
    font-size: 24px;
    font-weight: bold;
    text-align: center;
  }
  
  .access__table{
    margin: auto;
    width: calc(100% - 48px);
    table-layout: fixed;
    font-size: 16px;
  }

  .access__table th,
  .access__table td{
    padding: 10px 0;
    border-bottom: 1px solid #EFEFEF;
    text-align: left;
    vertical-align: top;
  }
  
  .access__btn a{
    display: inline-flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    column-gap: 10px;
    height: 56px;
    background: var(--text-color-brand);
    border-radius: 100px;
    text-decoration: none;
    font-weight: bold;
    color:#ffffff;
    max-width: 280px;
  }

@media screen and (min-width: 767px) {
  .access__map iframe{
    height: 520px;
  }
  
}

/*===============

faq

================*/

  .faq{
    padding: var(--section-padding) 0;
  }

  .faq-list{
    padding-bottom:16px;
    border-bottom:1px solid #EFEFEF;
    font-size: 16px;
    font-weight: bold;
  }
  
  .faq-list dt{
    margin-bottom: 16px;
    line-height: 2.5em;
  }  
  
  .faq-list dt span{
    font-size: 24px;
    display: block;
  }

@media screen and (min-width: 767px) {
  .faq-list dt{
    font-size: 24px;
    line-height: 1.75em;
  }
  
}



/*===============

store

================*/
  .store{
    padding: var(--section-padding) 0;
  }
  
  .store__link{
    display: flex;
    flex-wrap: wrap;
    gap:24px;
    justify-content: center;
  }
  
  .store__link a{
    font-size: 24px;
    font-weight: bold;
    color:#3B3B3B;
    text-decoration: none;
  }
  
  .store__link a:hover{
    text-decoration: underline;
  }
  
  .store__item a{
    font-size: 16px;
    font-weight: bold;
    color:#3B3B3B;
    text-decoration: none;
    transform: 0.5s;
  }
  
  .store__name{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    column-gap: 10px;
  }
  
  .store__item a:hover{
    opacity: 0.7;
  }

.store__image img{
  width: 100%;
}

@media screen and (min-width: 767px) {
  .store__link a {
      font-size: 20px;
  }
  
  .store__box{
    display: grid;
    grid-template-columns: repeat(2,1fr);
  }
}


/*===============

footer

================*/
  .mainFooter{
    padding: var(--section-padding) 0;
    background: #3B3B3B;
    color:#fffffff;
    text-align: center;
    display: grid;
    gap:24px;
  }
  
  .mainFooter__link{
    display: flex;
    justify-content: center;
    gap:40px;
  }
  
  .mainFooter__copy{
    font-weight: bold;
    color:#ffffff;
    font-size: 12px;
  }


/*モーダル用CSS*/
.line-modal {
  cursor: pointer;
}

.modal-container {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: .3s ease-out;
  z-index: 99999;
}

.modal-container::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}

.modal-container.active {
  opacity: 1;
  visibility: visible;
}

.modal-body {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  max-width: 300px;
  width: 90%;
}

.modal-close {
  position: absolute;
  top: -30px;
  right: 0px;
  font-size: 14px;
  background: #fff;
  padding: 4px 15px;
  cursor: pointer;
  border-radius: 5px;
  border-color: #fff;
}

.modal-content {
  font-weight: bold;
  width: 100%;
  position: relative;
}

.modal-content img {
  width: 100%;
}

.modal-content a {
  width: 55%;
  position: absolute;
  bottom: 25px;
  right: 45px;
  padding: 22px;
  cursor: pointer;
}




@media screen and (max-width:480px){
footer a[href^="tel"],
footer a[href^="mailto"],
footer a[href^="sms"] {
  text-decoration: none !important;
  color: inherit !important;
  pointer-events: none;
  cursor: default;
}  
    
}