@charset "utf-8";
@import url(http://fonts.googleapis.com/earlyaccess/notosansjp.css);

/* 基本設定
---------------------------------------- */

body {
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  background: #f7f8f8;
}

/* カスタムプロパティの定義 */
:root {
  --main-color: #fff7e7;
  --secondary-color: #ffbb00;
}

#facility_info {
  background: var(--main-color);
}

#mv-sp {
  display: none;
}

#mv-pc {
  display: block;
}

/* メインビジュアル
---------------------------------------- */

#mv {
  background-image: url(/club_event_2025/apple_intelligence/img/mv_bg_appleintelligence.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 0;
}

#mv h1 {
  position: relative;
  background: #fff;
  max-width: 540px;
  width: 90%;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.7);
  padding: 20px 0;
  text-align: center;
}
#mv h1:before {
  position: absolute;
  top: 4px;
  left: 4px;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  content: "";
  border: 2px solid #fff;
}





/* タイトル
---------------------------------------- */

#mv h1 .ttl_01{
  font-size: 0.6em;
  margin: 0 0 10px;
  display: block;
}

#mv h1 img{
  max-width: 300px;
  display: block;
  text-align: center;
  margin: 0 auto;
}

#mv h1 .ttl_02{
  font-size: 0.6em;
}





/* コンテンツ
---------------------------------------- */

.ao_lead{
  text-align: center;
  margin: 70px 0 40px;
}

.ao_lead a{
  color: #4f79ec;
}

.facility-list {
  padding: 60px 0;
}

h2 {
    /* "エリア一覧"の文字 */
    font-size: 34px;
  font-weight: bold;
  text-align: center;
  margin: 0 0 42px;
}

.facility-list .facility-list--content ul {
  max-width: 1000px;
  margin: 0 auto;
  padding-bottom: 90px;
}

.flexList--base {
    margin-top: 32px;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

.facility-list--content ul h3 {
    /* "埼玉北エリア"の文字 */
    line-height: 310%;
    font-size: 26px;
    font-weight: bold;
    width: 100%;
    border-bottom: solid 2px black;
}


.flexList--base__box{
    width: 48%;
}
.flexList--base__box__title p {
    /* "ピーシーデポスマートライフ"の文字 */
    line-height: 171%;
    font-size: 14px;
} 
.flexList--base__box__title h4 {
    /* "幕張インターベース"の文字 */
  line-height: 133%;
  font-size: 18px;
  font-weight: bold;
}
.flexList--base__box__underBox{
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 8px;
}
.flexList--base__box__underBox img{
    width: 42%;
    height: auto;
}
.flexList--base__box__underBox__rightBox{
    width: 56%;
   
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 46fr 8fr 46fr;
}

.flexList--base__box__underBox__rightBox > a{
    font-size: 14px;
    font-weight: bold;
    width: 100%;
    display: flex;
    background-color: #FFD600;
    border-radius: 1rem;
    height: 100%;
    justify-content: center;
    align-items: center;
}
.flexList--base__box__underBox__rightBox > a:nth-of-type(1) {
    grid-row: 1;
  }
  .flexList--base__box__underBox__rightBox > a:nth-of-type(2) {
    grid-row: 3;
  }

/* -----------個別拠点ページ用-------- */

#wrapper-contents{
    max-width: 1000px;
    margin: auto;
  }
  .tab-menu {
    padding-top: 80px;
    border-bottom: solid 2px #E2DBD2;
    display: flex;
    justify-content: space-between;
  }
  .tab-btn {
    width: 48%;
    padding: 10px;
    font-size: 18px;
    font-weight: bold;
    border: solid 2px #E2DBD2;
    border-bottom: none;
    color: #333;
    background: #fff;
    cursor: pointer;
    text-align: center;
    transition: background 0.2s;
    border-radius: .8rem .8rem 0 0;
  }
  .tab-btn:hover {
    background: #d8d8d8;
  }
  .tab-btn.active {
    background: #E2DBD2;
    color: #333;
    /* font-weight: bold; */
  }


  .tab-content {
    /* data-cell２つに付与 */
    display: none; /* 初期状態は非表示 */
    margin-top: 24px;
    color: #333;
    padding-bottom: 72px;
  }
  .tab-content table {
    width: 100%;
    /* border-collapse: collapse; */
    margin: 0;
    padding: 0;
  }
  .tab-content tbody{
    width: 100%;
  }

  .tab-content tbody tr{
    /* border-bottom: solid 1px #666; */
    /* background-color: #E2DBD2; */
    background-color: #ffffff;
  }
  .tab-content tbody tr:nth-of-type(2n){
    /* border-bottom: solid 1px #666; */
    background-color: #ffffff;
  }
  /* .tab-content tbody tr:first-child{
    border-top: solid 1px #666;
  } */
  .tab-content tbody tr td:first-child{
    /* border-right: solid 2px #C7B2C5; */
    position: relative; 
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
  }
  .tab-content tbody tr td:first-child::after {
    content: "";
    position: absolute;
    top: 20%;         /* 上から 20% の位置から始める */
    right: 0;         
    width: 2px;       
    /* 20% => 80%で配置 */
    height: 60%;      
    background-color: #C7B2C5;  
  }

  table {
    border-collapse: separate; /* セル同士を結合しない */
    /* セルを縦方向に隙間を入れて並べる */
    border-spacing:  0 14px;      
  }

  .tab-content tbody tr td:first-child {
    /* border-right: solid 2px #C7B2C5; */
    /* 左側の角に丸みを付ける */
    border-top-left-radius: 1.8rem;
    border-bottom-left-radius: 1.8rem;
  }
  .tab-content tbody tr td:last-child {
    /* 右側の角に丸みを付ける */
    border-top-right-radius: 1.8rem;
    border-bottom-right-radius: 1.8rem;
    padding-left: 5rem;
  }

  /* テーブルのフォントサイズ */
  .tab-content table th{
    font-size: 18px;
    line-height: 1.24;
    padding-bottom: 20px;
  }
  table td {
    padding: 22px;
    font-size: 16px;
    line-height: 1.24;
    text-align: left;
  }

  /* ここは列数に応じて調整が必要 */
  .tab-content table thead tr th:first-child,
  .tab-content table tbody tr td:first-child
  {
    width: 20%;
    text-align: left;
    /* text-align: center; */
    padding-left: 40px;
  }
  .tab-content table thead tr th span:first-child,
  .tab-content table tbody tr td span:first-child
  {
    display: block;
    font-size: 0.9em;
    font-weight: bold;
    color: #6b6262;
    padding: 6px 4px 0px;
  }
  .tab-content table thead tr th:nth-child(2)
  {
    /* ここは位置を見て調整 */
    text-align: left;
    padding-left: 12rem;
  }
  .tab-content table tbody tr td:nth-child(2)
  {
    width: 44%;
  }
  
  .information {
    padding: 40px 20%;
    background-color: var(--main-color);
  }

  .information p {
    line-height: 1.6em;
    margin-bottom: 1.1rem;
  }

  .information p a {
    color: var(--secondary-color);
  }
 
/* -----------アンカーボタン-------- */
/* 説明文 */
.instruction{
  padding-top: 80px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}
#anchor_wrapper{
  max-width: 1000px;
  margin: auto;
  padding: 20px;
  text-align: center;
  /* background-color: #fafafa; */
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-start;
}
 /* アンカーボタンのスタイル */
    .anchor_btn {
      display: inline-block;
      width: 23%;
      margin-right: 2.6%;
      font-size: 20px;
      font-weight: bold;
      margin-top: 10px;
      padding: 10px 15px;
      background-color: #FFD600;
      color: #333;
      text-decoration: none;
      border-radius: .8rem;
      transition: background-color 0.3s;
    }
    .anchor_btn:nth-of-type(4),
    .anchor_btn:nth-of-type(8)
    {
      margin-right: 0;
    }

    /* .anchor_btn:hover {
      background-color: #ddd;
    } */

/* sp版のみのbr */
.sp_only{
  display: none;
}
@media (min-width: 768px) and (max-width: 1280px) {
}
/* 768-1280 end */

@media (max-width: 940px) {

  #mv h1 {
    font-size: 24px;
  }

  h2 {
    /* "エリア一覧"の文字 */
    font-size: 24px;
  }
  .facility-list--content ul{
    margin: 20px auto 0;
    width: 96%;
    padding-bottom: 60px;
  }

  .flexList--base {
    /* 1列になるので、.flexList--base__box側で上マージンを取って統一する */
    margin-top: 0px;
}

  .facility-list--content ul h3 {
    /* "埼玉北エリア"の文字 */
    font-size: 20px;
}


.flexList--base__box{
    width: 100%;
    margin-top: 24px;

}
.flexList--base__box__title p {
    /* "ピーシーデポスマートライフ"の文字はサイズ変更無で */
    font-size: 14px;
} 
.flexList--base__box__title h4 {
    /* "幕張インターベース"の文字もサイズ変更無で */
  font-size: 18px;
}
.flexList--base__box__underBox{
    margin-top: 6px;
}

/* データテーブル */
.tab-menu {
    padding-top: 60px;
}
  .tab-btn {
    padding: 10px;
    font-size: 16px;
  }
  .tab-content {
    margin-top: 20px;
    padding-bottom: 54px;
  }

/* テーブルのフォントサイズ */
  .tab-content table th{
    font-size: 16px;
    padding-bottom: 18px;
  }
  table td {
    padding: 16px;
    font-size: 14px;
  }

    /* sp版のみのbr */
.sp_only{
  display: block;
}
.tab-btn {
  width: 49%;
}
  /* ここは列数に応じて調整が必要 */
  .tab-content table thead tr th:first-child,
  .tab-content table tbody tr td:first-child
  {
    width: 24%;
    text-align: left;
    /* text-align: center; */
  }

  .tab-content table tbody tr td:nth-child(2)
  {
    width: 76%;
  }
  .tab-content tbody tr td:last-child {
    padding-left: 4rem;
}


/* -----------アンカーボタン-------- */
/* 説明文 */
.instruction{
  margin-top: 60px;
  font-size: 16px;
}
 /* アンカーボタンのスタイル */
    .anchor_btn {
      width: 31%;
      margin-right: 3.5%;
      font-size: 18px;
      margin-top: 8px;
      padding: 9px 14px;
    }
    .anchor_btn:nth-of-type(4),
    .anchor_btn:nth-of-type(8)
    {
      margin-right: 3.5%;

    }
    .anchor_btn:nth-of-type(3),
    .anchor_btn:nth-of-type(6),
    .anchor_btn:nth-of-type(9)
    {
      margin-right: 0;
    }

    /* .anchor_btn:hover {
      background-color: #ddd;
    } */

}
/* 768 end */

/* 装飾 */

/* 下から上に移動しながらフェードイン */
.fadeInUp {
  opacity: 0;
  transform: translateY(100px);
}

/* フェードインアニメーション */
@keyframes fadeIn {
  0% {
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
/* フェードインさせるクラス */
.fadeIn {
  animation-name: fadeIn;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

/* リンク無効 */
.pointer-events {
  pointer-events: none;
}
