@charset "utf-8";

/* ======================
common
====================== */



:root {
    --primary-white: #fdfdfd;
    --primary-whiteLow: rgba(241, 243, 245, 1);
    --primary-blue: rgba(38, 81, 133, 1);
    --primary-red: rgba(216, 26, 31, 1);
    --primary-black: rgba(35, 24, 21, 1);
    /* --contentWidth: 91.4%; */
    --contentPadding: 4.2%;
}

html {
    font-size: 62.5%;
}

body {
    font-family: 
        'Inter'
        'Noto Sans JP', 
        Arial, 
        sans-serif;
    font-style: normal;
    color: var(--primary-black);
    background-color:white;
    line-height: 1.5;
    margin-top: 82px;
}

.marker {
  background: linear-gradient(transparent 60%,var(--primary-beige) );
}

@media screen  and (min-width: 769px){
body {
        margin-top: 90px;
    }
}

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

.section__topic {
    font-family: Arial;
    font-size: 3.2rem;
    font-weight: 200;
    line-height: 1.3; /* 41.6px */
    text-align: center;
}

/* sp inner */

 .lead__inner{
            padding: 0 var(--contentPadding);
            margin: 0 auto;
        }

 .benefit__inner{
            padding: 0 var(--contentPadding);
            margin: 0 auto;
        }

 .lineUp__inner{
            padding: 0 var(--contentPadding);
            margin: 0 auto;
        }

 .evidence__inner{
            padding: 0 var(--contentPadding);
            margin: 0 auto;
        }

 .comment__inner{
            padding: 0 var(--contentPadding);
            margin: 0 auto;
        }

 .review__inner{
            padding: 0 var(--contentPadding);
            margin: 0 auto;
        }

 .footer__inner{
            margin: 0 auto;
        }


/* pc inner */
@media screen  and (min-width: 769px){
 .lead__inner{
            max-width: 1280px;
        }

 .benefit__inner{
            max-width: 1280px;
        }

 .lineUp__inner{
            max-width: 1280px;
        }

 .evidence__inner{
            max-width: 1280px;
            padding: 0;
        }

 .comment__inner{
            max-width: 1280px;
        }

 .review__inner{
            max-width: 1280px;
        }

 .footer__inner{
            max-width: 1280px;
        }
 }

 /* pc 769px */



/* ======================
Btn
====================== */

.btn {
    display: block;
    padding: 16px 0px 18px;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1; 
    color: var(--primary-whiteLow);
    border-radius: 32px;
    background: var(--primary-blue);
    border: 3px solid var(--txt, var(--primary-whiteLow));
    margin: 16px auto 0;
    transition: 0.4s;
    position: relative;
    box-shadow: 0px 0px 10px 0 rgba(0, 0, 0, 0.25);
    width: 343px;
    /* z-index: 9999;
    position: relative; */
}


/* 
.btn::after {
    display: block;
    content: '';
    width: 7px;
    height: 12px;
    background-image: url(../images/btn-arrow.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    
} */

.btn:hover {
    opacity: 0.5;
}

.btn:first-of-type {
    margin-top: 40px;
}

.btn02{
    display: block;
    padding: 10px 0px 12px;
    text-align: center;
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1; 
    color: var(--primary-blue);
    border-radius: 32px;
    background: var(--primary-whiteLow);
    border: 3px solid var(--txt, var(--primary-blue));
    margin: 16px auto 0;
    transition: 0.4s;
    position: relative;
    box-shadow: 0px 0px 10px 0 rgba(33, 43, 51, 1);
    width: 240px;

    margin-top: 12px;
}

/* btn pc */

@media screen  and (min-width: 769px){

.btn {
    margin-top: 72px;
}

.btn {
    font-size: 2.2rem;
    font-weight: 600;
    width: 500px;
    height: 64px;
}

.btn02 {
    margin-top: 32px;


}
}

/* pc 769px */
/* ======================
header
====================== */

.header {
    background: var(--primary-blue);
    padding: 16px;
    position: fixed;   /* 画面に固定 */
    top: 0;            /* 上にぴったり */
    left: 0;           /* 左端に */
    width: 100%;       /* 横いっぱいに */
    z-index: 1000;     /* 他の要素より前面に表示 */
    box-shadow: 0 2px 4px rgba(0,0,0,0.1); /* optional: 下に影を付ける */
    height: 120px;          /* ヘッダーの高さを適当に調整 */
}

/* .nav初期表示 */
.nav {
    background: var(--primary-blue);
    opacity: 0.9; /* 要素全体が透過する */
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    transform: translateX(-100%);
    transition: transform 0.4s;

}

.nav__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
}

.nav__btn {
    position: absolute;
    top: 41px;
    left: 6.7%;
    width: 32px;
    height: 32px; /* 高さも指定 */
    display: block; 
    /* 画像なら filter で色を調整、SVGなら fill を使う方が確実 */
    filter: brightness(0) invert(1); 
}

.nav__list {
    margin-top: 80px;
}

.nav__item {
    font-family: Inter;
    font-size: 2.0rem;
    line-height: 1; 
    color: var(--primary-whiteLow);
    margin-top: 48px;
}

.nav__item img {
    display: inline-block;
    width: 32px;
    /* ⭐️⭐️⭐️↓↓あとで確認⭐️⭐️⭐️ */
    vertical-align: 7px;
    margin-right: 16px;
}

.nav.active {
    transform: translateX(0);
}

/* 左上のボタン */
.header__btn {
    position: absolute;
    top: 40px;
    left: 6.4%;
    width: 32px;
    height: 32px;
    cursor: pointer;
}

.header__sns{
    display: inline-block;
    width: 20px;
    height: 20px;


}

/* 右上のSNSリスト */
.header__snsList {
    position: absolute;
    top: 22px;
    right: 6.4%;
    display: flex;
    gap: 8px;
}

/* 中央のロゴ */
.header__logoSp {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 83px;
    height: 88px;
}

/* ロゴ下中央の地図 */
.header__map {
    position: absolute;
    top: calc(50% + 0px); /* ロゴの高さの半分を下にずらす */
    left: 88%;
    transform: translateX(-50%);
    width: 50px;
    height: 24px;
}


.header__logoPc {
    display: none;
}


/* .header pc */
@media screen and (min-width: 769px) {
    .header {
        background-color: transparent; 
        width: 100%;
        margin: 0 auto;
        padding: 32px 0px 24px;
        display: flex;
        justify-content: center;
        align-items: center;
        padding-right: 200px;
        gap: 80px;
        height: 90px;  
    }
    
    .nav {
        background: transparent;
        width: auto;
        height: auto;
        padding: 0;
        position: static;
        transform: translate(0);
    }
    
    .nav__list {
        margin-top: 0;
        display: flex;        
        justify-content: flex-start;
  
    }
    

    .nav__item {
        color: var(--primary-whiteLow);
        font-size: 1.6rem;
        font-weight: 400;
        line-height: 1;
        margin-left: 64px;
        margin-top: 0;
    }
    
    .nav__header {
        display: none;
    }
    
    .nav__item img {
        display: none;
        margin-right: 0;
    }
    
    .header__btn{
        display: none;
        color: var(--primary-whiteLow);
    }

    .header__sns{
        width: 42px;
        height: 42px;
        text-shadow: 0 1px 1px rgba(0,8,8,0.1); 
        color: var(--primary-whiteLow);
   
    }

    .header__snsList{
        gap: 12px;
    }

    .header__map {
        display: none;  
        color: var(--primary-whiteLow); 
    }
    

    .nav__item a {
        display: flex;
        flex-direction: column; /* 上下に配置 */
        align-items: center;
        text-decoration: none;
        text-shadow: 0 3px 3px rgba(0,4,4,0.1); 
    }

    .header__logoSp {
    display: none;
    }

    .header__logoPc{
        display: block;
        width: 200px;
    }

}
/* pc 769px */

/* ======================
main
====================== */
/* article header */
.mainImg .mainImg__pc {
    display: none;
}




.mainImg {
    display: block;
    width: 100%;
    height: auto;

}

.mainImg__ img{
    position: relative;
}

.mainImg::after{
    content: '神戸駅徒歩2分\Aフィットネスボクシングジム' ; 
    white-space: pre;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 700;
    display: block;
    color: var(--primary-whiteLow);
    font-size:20px;
    position: absolute;
    left: 20px;
    bottom: 1790px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}




.mainImg__sp {
    width: 100%;
    height: auto;
    display: block;
}

/* .mainImg__text {
    position: absolute;
    top: 50%;
    left: 20%;
    transform: translateY(-50%);
    font-size: 3vw;
    text-align: left;
    display: flex;           
    flex-direction: column;  
    gap: 0.2em;             
}

.mainImg__text span {
    display: inline-block;       
    padding: 0.2em 0.4em;
    background-color: rgba(255,255,255,0.8);
}

.mainImg__textLg {
    font-size: 3vw;              
} */

.mainTopics__name {
    font-family: Arial;
    font-weight: 700;
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 1.3; /* 31.2px */
    color: #FF6000;
    text-align: center;
}

.mainTopics__txt {
    font-size: 1.4rem;
    line-height: 1.5; /* 21px */
    margin-top: 24px;
}






.center img {
  width: 100%;
  border-radius: 10px;
}

.slick-slide {
  transition: transform 0.3s ease;
}

.slick-center img {
  transform: scale(1.1); /* 中央スライドを少し拡大 */
}



/* article header pc */
@media screen and (min-width: 769px) {
    .mainImg .mainImg__pc {
        display: block;
        width: 100%;
        height: auto;
        margin-top: -90px;
        position: relative;
    }

    .mainImg .mainImg__sp {
        display: none;
    }

 
    .mainImg::after{

        font-size:32px;
        position: absolute;
        left: 50px;
        bottom: 1750px;

    }

}

/* pc 769px */


/* ======================
concept
====================== */

.container{
    background-color: var(--primary-whiteLow);
}

.concept__topic{
    position: relative;
    display: block;
    align-items: center;
    font-size: 2.4rem;
    line-height: 2;
    font-weight: 700;
    color: var(--primary-blue);
    text-align: center; 
    margin: 32px auto 24px;
}

.concept__topic::after {
    content: "";
    position: absolute;
    left: 50%; /* 親要素の中央に配置 */
    bottom: 5px; /* 文字との距離 */
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background-color: var(--primary-blue);
}


.concept__txt{
    text-align: center;
    font-size: 2.2rem;
    line-height: 1;
    font-weight: 600;
    margin-top: 12px;
}

.concept__smTxt{
    text-align: center;
    font-size: 1.4rem;
    line-height: 1;
    font-weight: 500;
    margin-top: 16px;
}

.concept__list{
    display: flex;               /* inline-flex → flex */
    flex-direction: column;      /* 縦並び */
    align-items: center;         /* 子要素を中央揃え */
    justify-content: center;     /* 垂直方向の中央揃え（必要なら） */
    width: 100%;                 /* 親幅いっぱいに */

}

.conceptImg{
    display: block;
    width: 72px;
    height: 72px;
    margin: 32px auto 0;
}

.concept__content{
    display: flex;               /* inline-flex → flex */
    align-items: center;
    font-size: 2rem;
    line-height: 1;
    font-weight: 500;
    text-align: center; 
    gap: 8px;
    margin-top: 8px;             /* 画像との間隔 */
}

.concept__content::before{
    content: "";
    display: inline-block;
    width: 24px;
    height: 24px;
    background: url("../images/concept_icon.png") no-repeat center center;
    background-size: contain;
}

.concept__mdTxt{
    text-align: center;
    font-size: 2.0rem;
    line-height: 1;
    font-weight: 500;
    margin-top: 24px;
}

.concept__mdTxt02{
    text-align: center;
    font-size: 1.8rem;
    line-height: 1;
    font-weight: 500;
    margin-top: 24px;
}

.concept__mdTxt--blue{
    font-size: 2.2rem;
    color: var(--primary-blue);
}

.autoplay {
  min-width:100%;    
  height: 300px;   
  overflow: hidden;   
  margin-top: 32px;
}

.autoplay img {
  width: 100%;
  height: 100%;
  object-fit: cover;  
}


/* concept pc */

@media screen  and (min-width: 769px){
.concept__list {
    flex-direction: row;   /* 横並びに変更 */
    justify-content: center; /* 中央揃え */
    gap: 32px;             /* 画像同士の間隔 */
    margin-top: 48px;
}

.concept__content{
    font-size: 2.4rem;
    margin-top: 48px;
}

.concept__topic {
    font-size: 3.6rem;
    margin-top: 56px;
}

.concept__txt{
    font-size: 3.2rem;
    margin-top: 56px;
}

.concept__txt br{
    display: none;
}

.concept__smTxt{
    font-size: 2.4rem;
}

.concept__smTxt br{
    display: none;    
}

.concept__mdTxt br{
    display: none;    
}

.concept__mdTxt {
    font-size: 3.2rem;
    margin: 88px 0 64px;
}

.concept__mdTxt02 br{
    display: none; 

}

.concept__mdTxt02{
    font-size: 3.2rem;
    line-height: 1.5;
    margin-top: 48px;
}

.concept__mdTxt02 br.brPc {
    display: inline;

}

.concept__mdTxt--blue{
    font-size: 3.2rem;
}

.autoplay img {
  width: 100%;
  display: block;
}



}
/* pc 769px */


/* ======================
READY TO MAKE A CHANGE?
====================== */

.change__topic{
    position: relative;
    display: block;
    align-items: center;
    font-size: 2.4rem;
    line-height: 1.5;
    font-weight: 700;
    color: var(--primary-blue);
    text-align: center; 
    margin: 56px auto 0;
}

.change__topic::after {
    content: "";
    position: absolute;
    left: 50%; /* 親要素の中央に配置 */
    bottom: -12px; /* 文字との距離 */
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background-color: var(--primary-blue);
    margin: 12px;
}

.change__txt{
    text-align: center;
    font-size: 2.2rem;
    line-height: 1;
    font-weight: 700;
    margin-top: 36px;
}

.change__smTxt{
    text-align: center;
    font-size: 1.4rem;
    line-height: 1.2;
    font-weight: 500;
    margin-top: 16px;
}

.change__rgTxt{
    text-align: center;
    font-size: 1.8rem;
    line-height: 1.2;
    font-weight: 500;
    margin-top: 16px;
}

.change__txt br {
    display: inline;
}


  .change {
    flex-direction: column;
    align-items: center;
    text-align: center; /* ←SP時は中央寄せでOKならここで戻す */
  }
  .changePhoto {
    margin-top: 24px;
  }


/* change pc */

@media screen  and (min-width: 769px){

.change__topic {
    font-size: 3.6rem;
    margin-top: 100px;
}

.change__txt{
    font-size: 3.2rem;
}

.change__txt br{
    display: none;
}

.change__txt br::after {
    content: "　";
}

.change__smTxt{
    font-size: 2.4rem;
    text-align: left;
    margin-top: 36px; 
}

.change__rgTxt{
    font-size: 2.0rem; 
    text-align: left;

}

.change__texts02 {
    display: flex;
    gap: 24px;
    flex-direction: row-reverse;
    justify-content: center;

}

.change__texts03{
    display: flex;
    flex-direction: column;
    margin-top: 56px;
}

.changePhoto {
    max-width: 500px;

}

}
/* pc 769px */


/* ======================
ABOUT
====================== */

.section--about{
    background-color: var(--primary-blue);
    padding: 4px 36px 36px;
    margin-top: 80px;
}

.about__topic{
    position: relative;
    display: block;
    align-items: center;
    font-size: 2.4rem;
    line-height: 1.5;
    font-weight: 700;
    color: var(--primary-whiteLow);
    text-align: center; 
    margin: 32px auto 0;

}

.about__topic::after {
    content: "";
    position: absolute;
    left: 50%; /* 親要素の中央に配置 */
    bottom: -12px; /* 文字との距離 */
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background-color: var(--primary-whiteLow);
    margin-bottom: 12px;
}

.about__content{
    align-items: center;
    font-size: 2.4rem;
    line-height: 1.5;
    font-weight: 700;
    color: var(--primary-whiteLow);
    text-align: center; 
    margin-top: 24px;
}

.about__txt{
    font-size: 1.6rem;
    line-height: 1.5;
    font-weight: 400;
    color: var(--primary-whiteLow);
    padding: 0 24px 0;
    margin-top: 12px;
}


.aboutImg{
    margin-top: 56px;
}

  .about__list {
    grid-template-columns: 1fr; /* 1列にする */
    gap: 24px;
  }

/* about pc */

@media screen  and (min-width: 769px){

.about__topic {
    font-size: 3.6rem;
}


.about__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2列 */
  gap: 32px; /* 各アイテムの間隔 */
  list-style: none;
  padding: 0 48px 0;
  margin: 0;
}

/* li の基本スタイル */
.about__item {
  padding: 16px;
  border-radius: 8px;
}

.about__content{
    font-size: 2.4rem;
}

.about__txt{
    font-size: 2.0rem;    
}


}
/* pc 769px */



/* ======================
OPEN HOUR
====================== */

.open__topic{
    position: relative;
    display: block;
    align-items: center;
    font-size: 2.4rem;
    line-height: 1.5;
    font-weight: 700;
    color: var(--primary-blue);
    text-align: center; 
    margin: 56px auto 0;
}

.open__topic::after {
    content: "";
    position: absolute;
    left: 50%; /* 親要素の中央に配置 */
    bottom: -12px; /* 文字との距離 */
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background-color: var(--primary-blue);
    margin-bottom: 12px;
}

.open__item{
    font-size: 1.8rem;
    line-height: 1.5;
    font-weight: 400;
}

.open__topic01{
    margin-top: 24px;
}

.open__item02 {
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: 400;
  text-align: right;   /* テキストは右寄せのまま */
  position: relative;  /* 擬似要素の基準 */
}

.open__item02::after {
  content: "";
  display: block;
  max-width: 350px;         /* 線の長さ */
  height: 1.5px;          /* 線の太さ */
  background-color: var(--primary-black); /* 線の色 */
  margin-top: 8px;      /* テキストとの間隔 */
  margin-left: auto;    /* 中央寄せ */
  margin-right: auto;   /* 中央寄せ */

}

.openTxtSm{
    font-size: 1.6rem;
    line-height: 1;
    font-weight: 400;
    display: flex;
    justify-content: center;
}

.openTxtPa{
    display: flex;             /* Flexで横方向に配置 */
    justify-content: center;   /* 横方向中央 */

}

.openTxt{
    font-size: 2.0rem;
    line-height: 1.5;
    font-weight: 700;
    color: var(--primary-blue);
    background-color: #fff;       /* 背景を白に */
    padding: 16px 24px;           /* 内側の余白を調整 */
    box-shadow: 0 2px 8px rgba(0,0,0,0.1); /* optional：少し影をつける */
    display: inline-block;        /* テキスト幅に合わせる場合 */
    text-align: center;           /* 中央揃えにする場合 */
    margin-top: 24px;
}


.open__list {
    margin-top: 12px;
    padding: 0 36px;
}




.openTxtSm {
    text-align: left;     /* テキストは左寄せ */
    width: 90%;           /* 好きな横幅に調整（例：80%） */
    margin: 12px auto 0;       /* ← ブロック全体を中央寄せ！ */
}

.openTxt {
    text-align: center;
}

.openImg {
    margin-top: 36px;
}


/* open pc */

@media screen  and (min-width: 769px){

.section--open{
    margin-top: 32px;
}

.open__topic {
    font-size: 3.6rem;
}

.open__topic00 {
    display: flex;              /* 横並びにする */
    align-items: flex-start;    /* 上揃え */
    gap: 24px;                  /* 画像とテキストの間隔 */
}

.open__topic01 {
    margin-top: 46px;
}

.openImg {
    max-width: 500px;
}

.section--open {
    display: flex;                 /* Flexコンテナにする */
    flex-direction: column;        /* タイトル→横並びコンテンツ の縦並び */
    align-items: center;           /* 横方向中央に揃える */
    gap: 24px;                     /* 上下の間隔 */
}


}
/* pc 769px */

/* ======================
MONTHLY FEE
====================== */

.fee__topic{
    position: relative;
    display: block;
    align-items: center;
    font-size: 2.4rem;
    line-height: 1.5;
    font-weight: 700;
    color: var(--primary-blue);
    text-align: center; 
    margin: 72px auto 0;
}

.fee__topic::after {
    content: "";
    position: absolute;
    left: 50%; /* 親要素の中央に配置 */
    bottom: -12px; /* 文字との距離 */
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 1.5px;
    background-color: var(--primary-blue);
    margin-bottom: 12px;
}

.fee__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 24px;
    font-size: 1.8rem;
    font-weight: 400;
    position: relative; /* 擬似要素の基準 */
}




.fee__item::after {
    content: "";
    display: block;
    width: 350px;                     /* 線の長さを固定 */
    height: 1px;                      /* 線の太さ */
    background-color: var(--primary-black);
    position: absolute;                
    bottom: 0;                        /* liの下端に配置 */
    left: 50%;                        /* 左端を中央に合わせる */
    transform: translateX(-50%);      /* 真ん中に寄せる */
}

.fee__item:last-child::after {
    display: none; /* 最後のアイテムは線なし */
}



.fee__item p {
    margin: 0;                      /* 余白リセット */
    line-height: 1.6;               /* 行間整える */
}

.feeTxt__center {
    font-size: 1.6rem;
    line-height: 1;
    font-weight: 400;   
    text-align: left;     /* テキストは左寄せ */
    width: 80%;           /* 好きな横幅に調整（例：80%） */
    margin: 12px auto 0;       /* ← ブロック全体を中央寄せ！ */
}

.feeTxt__left {
    font-size: 1.6rem;
    line-height: 1;
    font-weight: 400;
    text-align: left;     /* テキストは左寄せ */
    width: 80%;           /* 好きな横幅に調整（例：80%） */
    margin: 12px auto 0;       /* ← ブロック全体を中央寄せ！ */
}

.feeImg {
    margin-top: 36px;
}

.fee__list01{
    margin-top: 12px;
}

/* fee pc */

@media screen  and (min-width: 769px){

.section--fee{
    margin-top: 32px;
}

.fee__topic {
    font-size: 3.6rem;
}

.fee__topic00 {
    display: flex;              
    align-items: flex-start;   
    gap: 24px;                 
    flex-direction: row-reverse;
    justify-content: center;
}


.fee__list01 {
    display: flex;                 /* Flexコンテナにする */
    flex-direction: column;        
    align-items: center;           /* 横方向中央に揃える */
    gap: 0px; 
    justify-content: center;
}




.feeImg {
    max-width: 500px;
}

.section--fee {
    display: flex;                 /* Flexコンテナにする */
    flex-direction: column;        
    align-items: center;           /* 横方向中央に揃える */
    gap: 24px;                     /* 上下の間隔 */

}



}
/* pc 769px */

/* ======================
MENU
====================== */

.section--menu {
    margin-top: 72px;
}

.menuLink {
    display: block;          /* aタグ/pタグをブロック化 */
    width: 80vw;
    max-width: 350px;
    margin: 12px auto 0;
}

.menuLink img {
    width: 100%;             /* 親の幅に合わせて縮小 */
    height: auto;            /* 縦横比を保持 */
    display: block;          /* 下に余白が出ないようにする */
}


/* menu pc */

@media screen  and (min-width: 769px){

.section--menu00 {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 横3列 */
    gap: 0px;                             /* アイテム間の隙間 */
    justify-items: center;                  /* 各アイテムを中央寄せ */
    margin: 0;
    padding: 0 180px;
}

.section--menu01 {
    display: flex;                /* 横並びにする */
    justify-content: center;      /* 横方向中央揃え */
    align-items: center;          /* 高さを揃える */
    gap: 16px;                    /* 要素間の隙間 */
    margin-top: 12px;
}

.menuLink {
    display: block;
    width: 100%;
    max-width: 350px; /* アイテムの最大幅 */
    margin: 0;
    padding: 0;
}

.menuLink img {
    width: 100%;
    height: auto;
    display: block;
}

}
/* pc 769px */


/* ======================
MAP
====================== */


.map__topic{
    position: relative;
    display: block;
    align-items: center;
    font-size: 2.4rem;
    line-height: 1.5;
    font-weight: 700;
    color: var(--primary-blue);
    text-align: center; 
    margin: 32px auto 0;
}

.map__topic::after {
    content: "";
    position: absolute;
    left: 50%; /* 親要素の中央に配置 */
    bottom: -12px; /* 文字との距離 */
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background-color: var(--primary-blue);
    margin-bottom: 12px;
}

.map__google {
    position: relative;
    width: 100%;         /* 親幅いっぱい */
    max-width: 600px;    /* デスクトップ用最大幅 */
    height: 0;
    padding-bottom: 75%; /* 高さを縦横比で決定（450/600 = 0.75） */
    margin-top: 36px;
}

.map__google iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}


/* map pc */

@media screen  and (min-width: 769px){

.map__topic {
    font-size: 3.6rem;
    margin-top: 72px;
}

    .map__google {
        max-width: 100%;    /* 横幅を広げる */
        padding-bottom: 50%; /* 縦横比 600/900 ≒ 0.66 */
    }


}
/* pc 769px */


/* ======================
Footer
====================== */

    .footer {
        background-color: var(--primary-blue);
        padding: 24px 0;
    }

    .footer__group {
        display: block;
        text-align: center;
    }

    .footer__logo Img{
        height: 72px;
    }

    .footer__address {
        margin-top: 16px;
        color: var(--primary-white);
        font-size: 0.8rem;
        line-height: 1.5;
    }

    .copy {
            margin-top: 24px;
            font-size: 0.8rem;
            line-height: 1;
            color: var(--primary-white);
            text-align: center;
    }

    .footer__line {
            background-color: var(--primary-whiteLow);
    }

    .footer__icon {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin: 12px auto 0;
            padding-bottom: 12px;
   
    }

    .footer__sns Img{
        height: 24px;
    }

/* footer pc */
@media screen and (min-width: 769px) {
    .footer {
        margin: 0 auto;
        padding: 48px 0 24px;
        height: 150px;
    }  


    .footer__topic {
        font-family: Arial;
        font-size: 2.4rem;
        line-height: 1; /* 24px */
    }

    .footer__address {
        font-size: 1.2rem;
        line-height: 1.5;
        margin-top: 0;
    }

    .footer__list {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 12px;
     
    }

    .footer__icon{
        gap: 24px;
    }

     .footer__sns Img{
        height: 50px;
    }

    .copy {
        margin-top: 0px;
    }


    .footer__group {
        display: flex;
        margin: 0 auto;
        gap: 250px;
    }

}
/* pc 769px */