@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 64px; /* 固定ヘッダーの高さに応じて調整 */
}

@media screen and (min-width: 768px) {
  [id] {
    scroll-padding-top: 144px; /* 固定ヘッダーの高さ分調整 */
  }
}
.c-inner {
  width: 980px;
  max-width: 90%;
  margin: 0 auto;
}

/* パンくず */
.c-breadcrumb {
  list-style: none;
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  padding-top: 20px;
}
.c-breadcrumb li {
  position: relative;
  font-size: 1.4rem;
}
.c-breadcrumb li a {
  color: inherit;
}
.c-breadcrumb li::after {
  content: "";
  position: absolute;
  right: -14px;
  top: 8px;
  width: 8px;
  height: 8px;
  border-right: 1px solid #32313b;
  border-bottom: 1px solid #32313b;
  transform: rotate(-45deg);
  display: block;
}
.c-breadcrumb li:last-child::after {
  display: none;
}

/* FAQ */
.c-faq__item {
  border-radius: 12px;
  padding: 20px 20px 0;
}

.c-faq__title {
  position: relative;
  border-bottom: 1px solid #e1e1e1;
  padding-bottom: 20px;
}

.c-faq__trigger {
  display: flex;
  gap: 15px;
  width: 100%;
  align-items: center;
  background: transparent;
  border: none;
  padding-right: 30px;
  text-align: left;
  cursor: pointer;
}

.c-faq__title::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 1px;
  background-color: #2e353c;
  display: block;
}

.c-faq__title::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  width: 15px;
  height: 1px;
  background-color: #2e353c;
  display: block;
  transition: all 0.3s ease;
}

.c-faq__title.is-open::before {
  transform: translateY(-50%) rotate(0deg);
}

.c-faq__title-q {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-radius: 50%;
  width: 40px;
  aspect-ratio: 1/1;
  font-size: 16px;
  font-family: "Marcellus SC", serif;
  border: 1px solid #ef9d4d;
  line-height: 1;
  font-weight: 400;
}

.c-faq__title-text {
  width: calc(100% - 55px);
  font-size: 16px;
}

.c-faq__content {
  display: block;
}

.js .c-faq__content {
  transition: height 0.5s ease;
  height: 0;
  overflow: hidden;
  padding-left: 20px;
}

.c-faq__inner {
  display: flex;
  gap: 15px;
}

/* .c-faq__content.is-open{
  transition: all 0.5s ease;
} */
.c-faq__content-a {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  width: 40px;
  aspect-ratio: 1/1;
  height: -moz-fit-content;
  height: fit-content;
  font-size: 16px;
  font-family: "Marcellus SC", serif;
  color: #fff;
  background-color: #ef9d4d;
  line-height: 1;
  margin-top: 20px;
  font-weight: 400;
}

.c-faq__content-block {
  width: calc(100% - 55px);
  margin-top: 20px;
}

@media screen and (min-width: 768px) {
  .c-faq__item {
    border-radius: 16px;
    padding: 30px;
  }
  .c-faq__title::before,
  .c-faq__title::after {
    width: 20px;
  }
}
/* リスト */
.c-under-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.c-under-list li {
  position: relative;
  padding-left: 1em;
  margin-bottom: 0.75em;
}
.c-under-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 0.3em;
  height: 0.3em;
  border-radius: 50%;
  background-color: #333;
  font-size: 1.4rem;
  line-height: 1.5;
  display: block;
}

@media screen and (min-width: 768px) {
  .c-under-list li {
    font-size: 1.6rem;
  }
}
/* テーブル */
.c-under-table {
  font-size: 1.4rem;
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #e1e1e1;
  border-bottom: none;
  color: #32313b;
}
.c-under-table.sp-row th,
.c-under-table.sp-row td {
  display: table-cell;
}
.c-under-table.sp-row th,
.c-under-table.sp-row td {
  border-right: 1px solid #e1e1e1;
}
.c-under-table.sp-row tr > *:last-child {
  border-right: none;
}
.c-under-table th,
.c-under-table td {
  border-bottom: 1px solid #e1e1e1;
  padding: 0.8em;
  display: block;
}
.c-under-table th {
  background-color: #fff7f0;
}
.c-under-table td {
  background-color: #ffffff;
}

.c-anchor-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.c-anchor-link {
  width: 100%;
  background-color: #ef9d4d;
  height: 4em;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}
.c-anchor-link .txt {
  position: relative;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  border: 1px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 1.4rem;
  padding-bottom: 1em;
}
.c-anchor-link .txt::after {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  width: 10px;
  height: 10px;
  display: block;
}

@media screen and (min-width: 500px) {
  .c-anchor-links {
    gap: 10px 2%;
  }
  .c-anchor-link {
    width: 49%;
  }
}
@media screen and (min-width: 768px) {
  .c-under-table {
    font-size: 1.6rem;
  }
  .c-under-table th,
  .c-under-table td {
    display: table-cell;
    border-right: 1px solid #ccc;
  }
  .c-under-table tr > *:last-child {
    border-right: none;
  }
  .c-anchor-links {
    gap: 10px 1%;
  }
  .c-anchor-link {
    width: 32.3333333333%;
  }
}
/* =========================================
   fadeUp（JSあり前提）
========================================= */
.js .js-fadeUp {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s ease, transform 1s ease;
}

.js .js-fadeUp.is-show {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
   no-js fallback（JSが動かない環境）
   → 最初から表示
========================================= */
.js-fadeUp {
  opacity: 1;
  transform: none;
}

/* Fixed Menu */
.c-fixed-menu {
  position: fixed;
  bottom: 0;
  transform: translateY(92px);
  left: 0;
  z-index: 50;
  background-color: rgba(255, 255, 255, 0.9);
  width: 100%;
  padding: 10px 5px;
  height: 90px;
}
.c-fixed-menu.is-visible {
  transform: translateY(0);
  transition: transform 0.8s ease;
}

.c-fixed-menu__list {
  width: 100%;
  display: flex;
  gap: 5px;
  list-style: none;
}

.c-fixed-menu__item {
  width: calc((100% - 80px) / 2);
  height: 70px;
}

.c-fixed-menu__link {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background-color: #ef9d4d;
  color: #fff;
  font-size: 1.6rem;
}

.c-fixed-menu__top-btn {
  width: 70px;
  height: 70px;
}

.c-fixed-menu__top-btn-in {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  border: 1px solid #EF9D4D;
}
.c-fixed-menu__top-btn-in::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  width: 10px;
  height: 10px;
  border-right: 2px solid #ef9d4d;
  border-top: 2px solid #ef9d4d;
  display: block;
}

@media screen and (min-width: 768px) {
  .c-fixed-menu {
    display: none;
  }
}
.c-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #e1e1e1;
  border-bottom: none;
  color: #32313b;
}
.c-table th,
.c-table td {
  border-bottom: 1px solid #e1e1e1;
  padding: 0.8em;
  border-right: 1px solid #e1e1e1;
}
.c-table th:last-child,
.c-table td:last-child {
  border-right: none;
}
.c-table th {
  background-color: #f0f0f0;
}
.c-table td {
  background-color: #ffffff;
}
.c-table.column6 th,
.c-table.column6 td {
  width: 16.6666666667%;
}