@charset "utf-8";

/*
Theme Name: Luoda ⊂ Quest Child Theme
Template: arkhe
Description: Luoda ⊂ Quest Child Theme
Author: shiiba
Version: 1.0.0
*/

/*--------------------------------------------------

目次

--

カスタムプロパティ

--

1. 全般
  全体のスタイル
  ナビゲーションボタンのスタイル

2. トップページ
  ロードのスタイル
  アニメーションのスタイル
  余白のスタイル
  ヘッダーのスタイル
  スライダーのスタイル
  s1のスタイル
  s2のスタイル
  s3のスタイル
  s4のスタイル
  s5のスタイル
  s6のスタイル
  s7のスタイル
  s8のスタイル
  s9のスタイル
  フッターのスタイル

3. 記事ページ
  見出しのスタイル

4. 固定ページ
  余白のスタイル
  ヘッダーのスタイル
  タイトルのスタイル
  ヒーローイメージのスタイル
  コンテナのスタイル

5. 利用案内ページ
  仕様表のスタイル
  スケジュールのスタイル
  FAQのスタイル

6. 規約・ポリシーページ
  基本情報のスタイル
  条文のスタイル

--------------------------------------------------*/



/*--------------------------------------------------

カスタムプロパティ

--------------------------------------------------*/

:root {
  --color-bg: #fefffa;

  --color-white: #ffffff;
  --color-gray-100: #f5f5f5;
  --color-gray-500: #d9d9d9;
  --color-gray-900: #808080;
  --color-black: #404040;

  --color-red: #e63946;
  --color-blue: #0077cc;

  --color-neutral: #f0f4f8;
}



/*--------------------------------------------------

全般

--------------------------------------------------*/

/*全体のスタイル*/
body {
  position: relative;
  margin: 0;
  padding: 0;
  font-style: normal;
  font-weight: 400;
  font-family: "Times New Roman", "Shippori Mincho", "Yu Mincho", "Hiragino Mincho", serif;
  -webkit-tap-highlight-color: transparent;
}

/*ナビゲーションボタンのスタイル*/
.l-header {
  background-color: transparent;
}
.l-header__body {
  height: 0;
}
.l-header__left,
.l-header__center,
.l-header__searchBtn {
  display: none;
}
.l-header__right {
  position: fixed;
  top: 30px;
  right: 3vw;
}
.c-gnav__li {
  height: 150px;
  writing-mode: vertical-rl;
}
.c-gnav__li .__mainText {
  color: #000000;
  font-size: 1rem;
  text-align: left;
  transition: .3s ease;
}
.c-gnav__li .__mainText:hover {
  color: var(--color-gray-500);
}
#drawer_menu {
  padding-top: 40px;
}



/*--------------------------------------------------

トップページ

--------------------------------------------------*/

/*ロードのスタイル*/
body.loading-active {
  overflow: hidden;
}
#loader {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  position: fixed;
  inset: 0;
  z-index: 9999;
  width: 100vw;
  height: 100vh;
  background-color: rgba(255, 255, 255, 1);/*background-color: var(--color-white);*/
  transition: background-color 1.5s ease-in-out, opacity 1.5s ease-in-out;/*transition: opacity 1s ease-in-out 0.3s;*/
  will-change: opacity;
}
/* ローダーを透明化・背景も透過化 */
#loader.fade-background {
  background-color: rgba(255, 255, 255, 0);
  opacity: 0;
}
#loader-img {
  opacity: 0;
  max-width: 300px;
 animation: fade-in 2s ease-in-out 0.3s forwards;
}
#loader-img.fade-out {
 animation: fade-out 0.8s ease-in-out forwards;
}
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
/* コンテンツ全体にフェードイン + スケール演出（新たに .page-content を使うなら） */
.home-content {
  opacity: 0;
  transform: scale(0.98);
  transition: opacity 1.2s ease-out, transform 1.2s ease-out;
  transition-delay: 0.2s;
}
.home-content.visible {
  opacity: 1 !important;
  transform: scale(1) !important;
}

/*アニメーションのスタイル*/
.fade-in {
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}
.fade-in.is-visible {
  opacity: 1;
}
.slide-fade-up {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity .8s ease-out, transform .8s ease-out;
}
.slide-fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/*余白のスタイル*/
.home .l-content__body,
.home #main_content {
  max-width: none;
  margin: 0;
  padding: 0;
}
.home-header,
.home-slider,
.home-sec01,
.home-sec02,
.home-sec03,
.home-sec04,
.home-sec05,
.home-sec06,
.home-sec07,
.home-sec08,
.home-sec09 {
  margin: 0;
  padding: 0;
}

/*ヘッダーのスタイル*/
.home-header {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  z-index: 10;
  width: 100%;
  height: 61.8vh;
  padding: 7vh 3vw;
  box-sizing: border-box;
  gap: 15px;
}
.home-header-logo {
  max-width: 15vw;
  margin-bottom: 20px;
}
.home-header-copy {
  max-width: 15vw;
  font-size: .75rem;
  line-height: 1.1;
}
.home-header-brand {
  font-size: .75rem;
}
@media (max-width: 768px) {
  .home-header {
    align-items: center;
    height: 70.7vh;
    padding: 10vh 5vw;
    text-align: center;
  }
  .home-header-logo,
  .home-header-copy,
  .home-header-brand {
    max-width: 65%;
  }
  .home-header-logo {
    margin-bottom: 18vh;
  }
  .home-header-copy {
    text-align: left;
  }
}

/*スライダーのスタイル*/
.home-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background-color: var(--color-black);
}
.home-slider img {
  opacity: 0;
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  transition: opacity 1.5s ease-in-out;
  inset: 0;
  object-fit: cover;
}
.home-slider img:first-child {
  opacity: 1;
  z-index: 1;
}
@media (max-width: 768px) {
  .home-slider {
    height: 50vh;
  }
}

/*s1のスタイル*/
.home-sec01 {
  position: relative;
  width: 100%; min-height: 80vh;
  writing-mode: vertical-rl;
}
.home-sec01-title {
  position: absolute;
  inset: 50% 10% auto auto;
  transform: translateY(-50%);
  margin: 0; font-weight: normal;
  font-size: 5rem;
  white-space: nowrap;
}
.home-sec01-text {
  position: absolute;
  inset: 50% 50% auto auto;
  transform: translateY(-50%);
  height: 16rem;
}
.home-sec01-text p {
  margin: 0 0 0 1.5rem;
} 
.home-sec01-text p:last-child {
  margin-left: 0;
}
@media (max-width: 1200px) {
  .home-sec01-title {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: .08 !important;
    inset: 0;
    z-index: 1;
    transform: none;
    width: 100%;
    height: 100%;
    font-size: min(20vw, 70px);
    line-height: 1;
  }
  .home-sec01-text {
    inset: 50% auto auto 50%;
    z-index: 2;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 40rem;
    height: auto;
    writing-mode: horizontal-tb;
  }
  .home-sec01-text p {
    margin: 0 0 1.5rem 0;
  }
  .home-sec01-text p:last-child {
    margin-bottom: 0;
  }
}

/*s2のスタイル*/
.home-sec02 {
  display: flex;
  flex-direction: row;
  width: 100vw;
}
.home-sec02-img,
.home-sec02-text {
  flex: 0 0 50%;
}
.home-sec02-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-sec02-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 50px;
  box-sizing: border-box;
}
.home-sec02-text p {
  max-width: 40rem;
  margin-bottom: 1.5rem;
}
.home-sec02-text p:last-child {
  margin-bottom: 0;
}
.home-sec02-title {
  margin-bottom: 30px;
  font-size: min(6vw, 40px);
  text-align: center;
}
@media (max-width: 1200px) {
  .home-sec02 {
    flex-direction: column;
  }
  .home-sec02-img,
  .home-sec02-text {
    flex: 0 0 100%;
  }
  .home-sec02-text {
    padding: 80px 20px 20px;
  }
  .home-sec02-text p {
    width: auto;
  }
  .home-sec02-title {
    position: relative;
    margin-bottom: 50px;
    padding-bottom: 20px;
  }
  .home-sec02-title::after {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--color-black);
    content: "";
  }
}

/*s3のスタイル*/
.home-sec03 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  padding: 15vh 0;
  box-sizing: border-box;
}
.home-sec03-title {
  margin-bottom: 50px;
  padding: 0 50px;
  background-color: var(--color-black);
  color: var(--color-white);
  font-size: min(6vw, 96px);
  text-align: center;
}
.home-sec03-inner p {
  max-width: 40rem;
  margin: 0 auto 1.5rem;
}
.home-sec03-inner p:last-child {
  margin-bottom: 0;
}
@media (max-width: 1200px) {
  .home-sec03 {
    padding: 20px;
  }
  .home-sec03-text {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    align-items: center;
  }
  .home-sec03-title {
    flex-shrink: 0;
    margin-bottom: 0;
    margin-left: 20px;
    padding: 10px 10px 10px 5px;
    background-color: var(--color-black);
    color: var(--color-white);
    font-size: min(8vw, 48px);
    writing-mode: vertical-rl;
  }
}

/*s4のスタイル*/
.home-sec04 {
  display: flex;
  width: 100vw;
  height: 100vh;
}
.home-sec04-img {
  flex: 1;
  overflow: hidden;
}
.home-sec04-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .home-sec04 {
      height: 50vh;
  }
}

/*s5のスタイル*/
.home-sec05 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
  padding: 15vh 0;
  box-sizing: border-box;
}
.home-sec05-title {
  margin-bottom: 50px;
  padding: 0 50px;
  background-color: var(--color-black);
  color: var(--color-white);
  font-size: min(6vw, 96px);
  text-align: center;
}
.home-sec05-text p {
  max-width: 40rem;
  margin: 0 auto 1.5rem;
}
.size-chart {
  width: 100%;
  max-width: 40rem;
  padding: 25px;
  border: 1px solid var(--color-gray-500);
  border-radius: 4px;
}
.size-chart li {
  font-size: .9rem;
}
.size-chart-title {
  margin-bottom: 25px;
  font-size: 1.5rem;
  text-align: center;
}
.size-section {
  margin-bottom: 25px;
}
.size-section:last-child {
  margin-bottom: 0;
}
.size-section h4 {
  margin-bottom: 15px;
  padding-bottom: 10px;
  font-size: 1.2rem;
  border-bottom: 1px solid var(--color-gray-500);
}
.size-group {
  display: flex;
  gap: 30px;
}
.size-category {
  flex: 1;
}
.size-type {
  margin-bottom: 10px;
  font-weight: bold;
}
.size-section ul {
  list-style: none;
  padding: 0;
}
.size-section li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--color-gray-500);
}
.size-section li:last-child {
  border-bottom: none;
}
.size-section li span {
  margin-right: 15px;
}
@media (max-width: 1200px) {
  .home-sec05 {
    padding: 80px 20px 20px;
  }
  .home-sec05-title {
    position: relative;
    margin-bottom: 50px;
    padding: 0 0 25px;
    background-color: transparent;
    color: var(--color-black);
  }
  .home-sec05-title::after {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--color-black);
    content: "";
  }
  .size-group {
    flex-direction: column;
    gap: 20px;
  }
}

/*s6のスタイル*/
.home-sec06 {
  display: flex;
  flex-direction: row-reverse;
  width: 100vw;
}
.home-sec06-img,
.home-sec06-text {
  flex: 0 0 50%;
}
.home-sec06-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-sec06-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 50px;
  box-sizing: border-box;
}
.home-sec06-text p {
  max-width: 40rem;
  margin-bottom: 1.5rem;
}
.home-sec06-text p:last-child {
  margin-bottom: 0;
}
.home-sec06-title {
  margin-bottom: 30px;
  font-size: min(6vw, 40px);
  text-align: center;
}
@media (max-width: 1200px) {
  .home-sec06 {
    flex-direction: column;
  }
  .home-sec06-img,
  .home-sec06-text {
    flex: 0 0 100%;
  }
  .home-sec06-text {
    padding: 80px 20px 20px;
  }
  .home-sec06-text p {
    width: auto;
  }
  .home-sec06-title {
    position: relative;
    margin-bottom: 50px;
    padding-bottom: 20px;
  }
  .home-sec06-title::after {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--color-black);
    content: "";
  }
}

/*s7のスタイル*/
.home-sec07 {
  width: 100vw;
  padding: 15vh 0;
  text-align: center;
}
.home-sec07-title {
  display: inline-block;
  margin-bottom: 50px;
  padding: 0 50px;
  background-color: var(--color-black);
  color: var(--color-white);
  font-size: min(6vw, 96px);
  text-align: center;
}
.home-sec07-text p {
  max-width: 40rem;
  margin: 0 auto 1.5rem;
  text-align: left;
}
.home-sec07-text p:last-child {
  margin-bottom: 0;
}
.plans-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 50px 0;
  text-align: center;
  gap: 30px;
}
.plan-card {
  width: 250px;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, .1);
}
.plan-title {
  margin-bottom: 10px;
  color: var(--color-blue);
}
.plan-price {
  margin-bottom: 10px;
  font-size: 1.1rem;
}
.plan-price strong {
  font-size: 2.3rem;
}
.plan-description {
  color: var(--color-gray-900);
  font-size: .9rem;
  line-height: 1.6;
}
.note {
  color: var(--color-gray-900);
  font-size: .9rem;
}
@media (max-width: 768px) {
  .plans-container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .plan-card {
    width: 100%;
    max-width: 320px;
  }
}
@media (max-width: 1200px) {
  .home-sec07 {
    padding: 20px;
  }
  .home-sec07-title {
    position: relative;
    margin-bottom: 50px;
    padding: 0 0 25px;
    background-color: transparent;
    color: var(--color-black);
  }
  .home-sec07-title::after {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--color-black);
    content: "";
  }
}

/*s8のスタイル*/
.home-sec08 {
  max-width: 800px;
  margin: 0 auto;
  padding: 50px;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .1);
}
.home-sec08-text {
  text-align: left;
}
.home-sec08-title {
  margin-bottom: 20px;
  letter-spacing: 2px;
  text-align: center;
}
.section-lead {
  color: var(--color-gray-900);
  text-align: center;
}
.flow-section h3 {
  margin-bottom: 30px;
}
.flow-section,
.flow-section-note {
  margin-top: 80px;
}
.btn-contact {
  display: block;
  width: 250px;
  margin: 30px auto 0;
  padding: 15px 40px;
  border: solid 1px var(--color-black);
  border-radius: 50px;
  background-color: var(--color-black);
  color: var(--color-white);
  text-decoration: none;
  text-align: center;
  transition: .3s ease;
}
.btn-contact:hover {
  background-color: transparent;
  color: var(--color-black);
}
.flow-list {
  list-style: none;
  margin-bottom: 50px;
  padding-left: 0;
  counter-reset: flow-counter;
}
.flow-list-item {
  position: relative;
  margin-bottom: 40px;
  padding-left: 60px;
  font-size: 1.1rem;
}
.flow-list-item::before {
  position: absolute;
  top: -5px;
  left: 0;
  color: var(--color-gray-500);
  font-weight: bold;
  font-size: 2rem;
  content: counter(flow-counter, decimal-leading-zero);
  counter-increment: flow-counter;
}
.flow-list-item:last-child::before {
  font-weight: normal;
  content: "※";
}
.flow-list-item strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.25rem;
}
.timeline {
  list-style: none;
  padding-left: 0;
  text-align: center;
}
.timeline li strong {
  padding: 3px 10px;
  background-color: var(--color-black);
  color: var(--color-white);
  font-weight: bold;
  font-size: 1.2rem;
}
.timeline .timeline-arrow {
  margin: 30px 0;
  color: var(--color-gray-900);
  font-size: 1.5rem;
}
.timeline-description {
  margin-top: 15px;
}
.timeline-duration,
.timeline-note {
  display: block;
  color: var(--color-gray-900);
  font-size: .9rem;
}
.schedule-list {
  display: grid;
  align-items: start;
  padding: 20px;
  border-bottom: solid 1px var(--color-gray-500);
  border-top: solid 1px var(--color-gray-500);
  gap: 15px 20px;
  grid-template-columns: 140px 1fr;
}
.schedule-list dt {
  padding-top: 2px;
  font-weight: bold;
  text-align: right;
}
.schedule-list dd {
  margin: 0;
}
.schedule-list dd strong {
  display: block;
}
.schedule-list dd p {
  margin: 3px 0 0;
  font-size: .9rem;
}
.schedule-note {
  margin-top: 15px;
  color: var(--color-gray-900);
  font-size: .9em;
}
.flow-section-note {
  padding-left: 30px;
  border-left: 5px solid var(--color-gray-900);
}
@media (max-width: 768px) {
  .home-sec08 {
    padding: 50px 20px;
  }
  .timeline .timeline-arrow {
    margin: 10px 0;
  }
  .schedule-list {
    padding: 10px;
    gap: 10px 10px;
    grid-template-columns: 80px 1fr;
  }
}

/*s9のスタイル*/
.home-sec09 {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100vw;
  min-height: 80vh;
  margin-top: 25vh;
  overflow: hidden;
}
.home-sec09-img {
  position: absolute;
  inset: 0;
}
.home-sec09-img::after {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, .5);
  content: "";
}
.home-sec09-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-sec09-text {
  height: 16rem;
  color: var(--color-white);
  writing-mode: vertical-rl;
}
.home-sec09-text p {
  margin: 0 0 0 1.5rem;
}
.home-sec09-text p:last-child {
  margin-left: 0;
}
.home-sec09-title {
  margin: 0 0 0 30px;
}
@media (max-width: 1200px) {
  .home-sec09 {
    margin-top: 50px;
  }
  .home-sec09-text {
    width: 80%;
    max-width: 40rem;
    height: auto;
    writing-mode: horizontal-tb;
  }
  .home-sec09-text p {
    margin: 0 0 1.5rem 0;
  }
  .home-sec09-text p:last-child {
    margin-bottom: 0;
  }
  .home-sec09-title {
    margin: 0 0 30px 0;
  }
}

/*フッターのスタイル*/
.home #footer {
  display: none;
}



/*--------------------------------------------------

記事ページ

--------------------------------------------------*/

/*見出しのスタイル*/
body.single-post h2 {
  position: relative;
  margin-bottom: 50px;
  padding: 65px 10px 20px;
  border-top: solid 1px var(--color-gray-500);
  text-align: center;
}
body.single-post h2::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: var(--color-black);
  content: "";
}
body.single-post h3 {
  margin: 50px 0 20px;
  padding-left: 15px;
  border-left: solid 5px var(--color-gray-900);
}



/*--------------------------------------------------

固定ページ

--------------------------------------------------*/

/*余白のスタイル*/
.page-guide .l-content__body,
.page-guide #main_content,
.page-terms .l-content__body,
.page-terms #main_content,
.page-tokushoho .l-content__body,
.page-tokushoho #main_content,
.page-contact .l-content__body,
.page-contact #main_content {
  max-width: none;
  margin: 0;
  padding: 0;
}

/*タイトルのスタイル*/
.page-guide .p-page__title,
.page-terms .p-page__title,
.page-tokushoho .p-page__title,
.page-contact .p-page__title {
  justify-content: center;
  height: 50vh;
  margin: 0;
}
.page-guide .p-page__title h1,
.page-terms .p-page__title h1,
.page-tokushoho .p-page__title h1,
.page-contact .p-page__title h1 {
  margin-bottom: -10vh;
  font-size: 1.6rem;
  letter-spacing: .5rem;
}
@media (max-width: 768px) {
  .page-guide .p-page__title,
  .page-terms .p-page__title,
  .page-tokushoho .p-page__title,
  .page-contact .p-page__title {
    display: flex;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 70.7vh;
  }
  .page-guide .p-page__title h1,
  .page-terms .p-page__title h1,
  .page-tokushoho .p-page__title h1,
  .page-contact .p-page__title h1 {
    position: relative;
    z-index: 3;
    margin-bottom: 0;
    color: var(--color-white);
    writing-mode: vertical-rl;
  }
}

/*ヒーローイメージのスタイル*/
.page-hero {
  position: relative;
  width: 100vw;
  height: 50vh;
  overflow: hidden;
}
.page-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero::after {
  display: none;
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .5);
  content: "";
}
@media (max-width: 768px) {
  .page-hero {
    height: 70.7vh;
  }
  .page-hero::after {
    display: block;
  }
}

/*コンテナのスタイル*/
.page-container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
}
.page-content {
  padding: 65px 0;
  border-bottom: solid 1px var(--color-gray-500);
}
.page-content:last-child {
  border-bottom: none;
}
.page-content p{
  margin-bottom: 1rem;
}
.page-content-title {
  position: relative;
  margin-bottom: 50px;
  padding-bottom: 20px;
  text-align: center;
}
.page-content-title::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: var(--color-black);
  content: "";
}
.page-content-subtitle {
  margin: 50px 0 20px;
  padding-left: 15px;
  border-left: solid 5px var(--color-gray-900);
}
.page-content-list {
  list-style: none;
  padding-left: 0;
}
.page-content-list li {
  position: relative;
  margin-bottom: 1rem;
  padding-left: 2.5rem;
}
.page-content-list li::before {
  position: absolute;
  font-weight: bold;
  content: "✓";
  inset: 0;
}



/*--------------------------------------------------

利用案内ページ

--------------------------------------------------*/

/*仕様表のスタイル*/
.spec-container {
  width: 100%;
  overflow-x: auto;
}
.spec-table {
  width: 100%;
  min-width: 700px;
}
.spec-table th,
.spec-table td {
  padding: 12px !important;
  text-align: center;
  vertical-align: middle;
  border-bottom: solid 1px var(--color-gray-500);
}
.spec-table th {
  background-color: var(--color-neutral);
  font-weight: bold;
  text-align: right;
}

/*スケジュールのスタイル*/
.page-guide .schedule-list {
  border: none;
}

/*FAQのスタイル*/
.faq-item {
  margin-bottom: 10px;
  border-bottom: solid 1px var(--color-gray-100);
}
.faq-item summary {
  position: relative;
  padding: 15px 0;
  padding-right: 30px;
  outline: none;
  cursor: pointer;
}
.faq-item summary::before {
  margin-right: 10px;
  font-weight: bold;
  content: "Q.";
}
.faq-item summary::after {
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
  font-size: 1.5rem;
  content: "+";
  transition: transform .3s ease;
}
.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}
.faq-answer {
  opacity: 0;
  transform: translateY(-10px);
  padding: 0 15px 20px 35px;
  animation: fadeIn .4s ease forwards;
}
.faq-answer::before {
  margin-right: 10px;
  font-weight: bold;
  content: "A.";
}
@keyframes fadeIn {
  to{
    opacity: 1;
    transform: translateY(0);
  }
}



/*--------------------------------------------------

規約・ポリシーページ

--------------------------------------------------*/

/* 基本情報のスタイル */
.terms-table {
  width: 100%;
}
.terms-table th,
.terms-table td {
  padding: 20px 10px !important;
  border: solid 1px var(--color-gray-500);
  text-align: left;
  vertical-align: middle;
}
.terms-table th {
  width: 20%;
  background-color: transparent;
  font-weight: bold;
  text-align: center;
}
@media (max-width: 768px) {
  .terms-table th,
  .terms-table td {
    display: block;
    width: 100%;
    padding: 20px 5px !important;
  }
  .terms-table th {
    background-color: var(--color-neutral);
    text-align: center;
    border-bottom: none;
  }
}

/*条文のスタイル*/
.terms-style {
  margin: 0;
  counter-reset: item;
}
.terms-style li {
  list-style: none;
  position: relative;
  margin-bottom: 1rem;
  padding-left: 2.5rem;
}
.terms-style li::before {
  position: absolute;
  font-size: 1rem;
  content: counter(item) ".";
  counter-increment: item;
  inset: 0;
}