/* 
共通
*/

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif, "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #424242;
  letter-spacing: 0.04em;
}

body.nav-open {
  overflow: hidden;
}

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

.bold {
  font-weight: 700;
}

.caution {
  color: #ec0000;
}

.text-link {
  text-decoration: none; /* デフォルトの下線を非表示にする */
  padding-bottom: 4px;
  background-image: linear-gradient(90deg, #fff, #fff); /* 線の色 */
  background-repeat: no-repeat;
  background-position: left bottom; /* 線の起点を左・下に設定 */
  background-size: 0 1px; /* 線の横幅を0、縦幅を1pxに */
  transition: 0.3s; /* 線を伸ばすアニメーション実行時間を指定 */
}

@media (hover: hover) {
  .text-link:hover {
    background-size: 100% 1px; /* 線の横幅を100%にする */
  }
}

.sp {
  display: none;
}

.sp-br {
  display: none;
}

.button {
  display: block;
  width: 100%;
  padding: 20px;
  margin: 0 auto;
  text-align: center;
  font-weight: 700;
  line-height: 1;
  border-radius: 8px;
  cursor: pointer; /*hrefが入らない場合*/
  transition-duration: 0.2s;
}

.button-primary {
  color: #fff;
  background-color: #fa8200;
}

@media (hover: hover) {
  .button-primary:hover {
    background-color: #f47100;
  }
}

.button-secondary {
  color: #fa8200;
  background-color: #fff;
  border: #fa8200 1px solid;
}

@media (hover: hover) {
  .button-secondary:hover {
    background-color: #fff4e0;
  }
}

h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.h2-cap {
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  margin: 8px 0 24px;
  color: #fa8200;
  text-align: center;
}

.note {
  font-size: 12px;
  line-height: 1.5;
  padding-left: 1em;
  text-indent: -1em;
  letter-spacing: 0.02em;
  margin-top: 4px;
}

.note > li {
  margin-top: 4px;
}

/* チャットボット非表示 */
#sci-chatwindow {
  display: none;
}

@media only screen and (max-width: 768px) {
  .pc {
    display: none;
  }

  .sp {
    display: block;
  }

  .pc-br {
    display: none;
  }

  .sp-br {
    display: block;
  }

  h2 {
    font-size: 24px;
    line-height: 1.4;
  }

  .h2-cap {
    font-size: 14px;
    margin: 8px 0 16px;
  }
}

/*
ヘッダー
*/

.header-wrap {
  position: absolute;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  z-index: 3;
}

.header-logo {
  margin-left: 24px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-weight: 700;
}

.header-nav-item > a {
  font-size: 14px;
  color: #000;
  transition-duration: 0.2s;
}

.header-text-link {
  background-image: linear-gradient(90deg, #000, #000); /* 線の色 */
}

.header-button {
  display: block;
  width: 160px;
  padding: 24px 0;
  font-size: 13px !important;
  text-align: center;
  color: #fff !important;
}

.header-button-agency {
  background-color: #0000b2;
  margin-left: 8px;
}

@media (hover: hover) {
  .header-button-agency:hover {
    background-color: #000082;
  }
}

.header-button-contact {
  background-color: #fa8200;
  margin-left: -24px;
}

@media (hover: hover) {
  .header-button-contact:hover {
    background-color: #f47100;
  }
}

.header-button > img {
  display: block;
  margin: 0 auto;
}

.hamburger {
  display: none;
}

@media only screen and (max-width: 1200px) {
  .header-wrap {
    padding: 0 16px;
  }

  .header-logo {
    margin-left: 0;
    width: 50%;
    margin: 16px 0;
  }

  header nav {
    display: none;
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    padding-top: 60px;
    background-color: #fff;
    transition: all 0.6s;
    z-index: 200;
    overflow-y: auto; /* メニューが多くなったらスクロールできるように */
  }

  .header-button {
    width: 100%;
    border-radius: 8px;
    font-size: 16px !important;
    margin-left: 0;
  }

  .header-button-agency {
    margin-top: 16px;
  }

  .header-button-contact {
    margin-bottom: 64px;
  }

  .hamburger {
    display: initial;
    position: absolute;
    right: 24px;
    top: 10px;
    width: 32px; /* クリックしやすい幅 */
    height: 32px; /* クリックしやすい高さ */
    cursor: pointer;
    z-index: 300;
  }

  .hamburger_border {
    position: absolute;
    left: 6px;
    width: 18px;
    height: 2px;
    transition: all 0.6s;
    background-color: #333;
  }
  .hamburger_border_top {
    top: 14px;
  }
  .hamburger_border_center {
    top: 20px;
  }
  .hamburger_border_bottom {
    top: 26px;
  }

  /* 表示された時用のCSS */
  .nav-open nav {
    display: block;
    right: 0;
    background-color: #f5f5f5;
    z-index: 3;
  }
  .nav-open .hamburger_border_top {
    transform: rotate(45deg);
    top: 20px;
    background-color: #333333;
  }
  .nav-open .hamburger_border_center {
    width: 0;
    left: 50%;
    background-color: #333333;
  }
  .nav-open .hamburger_border_bottom {
    transform: rotate(-45deg);
    top: 20px;
    background-color: #333333;
    margin-bottom: 15px;
  }

  .nav-open header nav ul {
    display: block;
    text-align: left;
    padding: 0 24px;
  }

  .nav-open header nav ul li {
    margin-bottom: 8px;
  }

  .nav-open header nav ul li > a {
    display: inline-block;
    font-size: 16px;
    line-height: 1;
    color: #333333;
    padding: 16px 0;
  }

  .nav-open header nav ul li > a > img {
    display: inline;
    margin-right: 6px;
    vertical-align: -7px;
  }
}

/* 
メインビジュアル
*/

.mv-list {
  position: absolute;
  left: 24px;
  bottom: 24px;
  font-weight: 700;
  line-height: 1;
  z-index: 1;
}

.mv-list-lead {
  display: inline-block;
  font-size: 28px;
  padding: 8px;
  background-color: #fff;
}
.mv-list-heading {
  font-size: 72px;
  padding: 8px 8px 14px 8px;
  margin-top: 8px;
  background-color: #fff;
  font-feature-settings: "palt";
}
.mv-list-alert {
  display: inline-block;
  padding: 16px;
  margin-top: 8px;
  color: #fff;
  background-color: #ec0000;
  border-radius: 4px;
  padding-left: 46px; /* 画像の配置場所を確保 */
  background-image: url(../images/mv-info.svg); /* 画像URLを指定 */
  background-position: left 16px center; /* 画像の位置 */
  background-size: 24px 24px; /* 画像のサイズ */
  background-repeat: no-repeat; /* 背景画像の繰り返しなくす */
}

@media only screen and (max-width: 768px) {
  .mv-list {
    position: absolute;
    left: 8px;
    bottom: 8px;
  }
  .mv-list-lead {
    font-size: 14px;
    padding: 5px 5px 6px 5px;
  }
  .mv-list-heading {
    font-size: 34px;
    padding: 5px 5px 6px 5px;
    margin-top: 4px;
  }

  .mv-list-alert {
    font-size: 12px;
    line-height: 1.4;
    padding: 10px;
    margin-top: 4px;
    padding-left: 38px; /* 画像の配置場所を確保 */
    background-position: left 8px center; /* 画像の位置 */
  }
}

/* メインビジュアル swiper */

@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.05);
  }
}
.swiper-slide-active .swiper-img,
.swiper-slide-duplicate-active .swiper-img,
.swiper-slide-prev .swiper-img {
  animation: zoomUp 7s linear 0s normal both;
}
.swiper-slide img {
  width: 100%;
  height: 100svh;
  -o-object-fit: cover;
  object-fit: cover;
}

/* スクロールアニメ */

.mv-scroll::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80%;
  background: linear-gradient(180deg, rgba(#000, 0) 0, rgba(#000, 0.8) 80%, rgba(#000, 0.8) 100%);
  z-index: 1;
}

.mv-scroll a {
  display: inline-block;
  position: absolute;
  right: 40px;
  bottom: 0;
  z-index: 2;
  padding: 10px 10px 110px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  writing-mode: vertical-lr;
  transition: 0.2s;
  overflow: hidden;
  text-shadow: 0 0 8px rgba(0, 0, 0, 1);
}
.mv-scroll a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 100px;
  background: #fff;
  animation: sdl01 1.5s cubic-bezier(1, 0, 0, 1) infinite;
}

@media (hover: hover) {
  .mv-scroll a:hover {
    opacity: 0.6;
  }
}

@keyframes sdl01 {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

@media only screen and (max-width: 1200px) {
  .mv-scroll a {
    right: 8px;
    font-size: 12px;
  }
}

/*
キャッチ
*/

.catch-section {
  background-color: #f5f5f5;
  padding: 64px 24px 58px 24px;
}

.catch-wrap {
  max-width: 848px;
  margin: 0 auto;
  text-align: center;
}

.catch-heading {
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
}

.catch-heading > span {
  color: #fa8200;
}

.catch-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 700;
  margin-top: 40px;
}

.catch-list-item {
  display: flex;
  align-items: center;
  width: calc(50% - 8px);
  text-align: left;
  background-color: #fff;
  border-radius: 8px;
  padding: 20px;
  padding-left: 80px; /* 画像の配置場所を確保 */
  background-image: url(../images/catch-check.svg); /* 画像URLを指定 */
  background-position: left 24px center; /* 画像の位置 */
  background-size: 40px 40px; /* 画像のサイズ */
  background-repeat: no-repeat; /* 背景画像の繰り返しなくす */
}

@media only screen and (max-width: 768px) {
  .catch-section {
    padding: 40px 0 40px 0;
  }

  .catch-wrap {
    padding: 0 24px 0 24px;
  }

  .catch-heading {
    font-size: 24px;
    line-height: 1.4;
  }

  .catch-list {
    display: block;
    font-size: 16px;
    margin-top: 24px;
  }

  .catch-list-item {
    width: 100%;
    border-radius: 4px;
    padding-left: 60px; /* 画像の配置場所を確保 */
    background-position: left 16px center; /* 画像の位置 */
    background-size: 32px 32px; /* 画像のサイズ */
    margin-bottom: 8px;
  }

  .catch-list-item:last-of-type {
    margin-bottom: 0;
  }
}

/*
レコメンド
*/

.recommend-section {
  background-color: #fa9600;
}

.recommend-section::before {
  content: "";
  display: block;
  background-color: #f5f5f5;
  clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
  width: 100%;
  height: 50px;
}

.recommend-wrap {
  max-width: 1024px;
  padding: 72px 24px 58px 24px;
  margin: 0 auto;
  text-align: center;
}

.recommend-heading {
  position: relative;
  font-size: 48px;
  font-weight: 700;
  padding: 24px;
  background-color: #fff;
  border-radius: 100px;
}

.recommend-heading:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-top: 15px solid #fff;
}

.recommend-heading > span {
  color: #fa8200;
}

.recommend-lead {
  display: flex;
  align-items: center;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  margin-top: 48px;
}

.recommend-lead:before,
.recommend-lead:after {
  content: "";
  height: 2px;
  flex-grow: 1;
  background-color: #fff;
}

.recommend-lead:before {
  margin-right: 1rem;
}

.recommend-lead:after {
  margin-left: 1rem;
}

.recommend-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 32px;
}

.recommend-list-item {
  width: calc(calc(100% - 160px) / 6);
  height: auto;
  padding: 16px 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  background-color: #fff;
  border-radius: 8px;
}

.recommend-list-item > img {
  margin-bottom: 4px;
}

@media only screen and (max-width: 768px) {
  .recommend-section::before {
    height: 24px;
  }

  .recommend-wrap {
    padding: 40px 24px 36px 24px;
  }

  .recommend-heading {
    font-size: 24px;
    border-radius: 4px;
    line-height: 1.4;
    padding: 24px;
  }

  .recommend-lead {
    font-size: 18px;
    margin-top: 32px;
  }

  .recommend-list {
    gap: 16px;
    margin-top: 16px;
  }

  .recommend-list-item {
    width: calc(calc(100% - 32px) / 3);
    font-size: 12px;
    border-radius: 4px;
  }
}

/* 
概要
*/

.overview-section::before {
  content: "";
  display: block;
  background-color: #fa9600;
  clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
  width: 100%;
  height: 50px;
}

.overview-wrap {
  padding: 0 24px;
}

.overview-wrap-inner {
  max-width: 1024px;
  text-align: center;
  margin: 0 auto;
}

.overview-heading {
  margin-top: 60px;
}

.overview-textarea {
  padding: 64px;
  background-color: #fafafa;
  border-radius: 12px;
  text-align: left;
}

.overview-lead {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.overview-text {
  margin-top: 24px;
}

.overview-note {
  margin-top: 24px;
}

@media only screen and (max-width: 768px) {
  .overview-section::before {
    content: "";
    display: block;
    background-color: #fa9600;
    clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
    width: 100%;
    height: 24px;
  }

  .overview-wrap {
    padding-top: 40px;
  }

  .overview-heading {
    margin-top: 0;
  }

  .overview-textarea {
    padding: 24px;
    background-color: #fafafa;
    border-radius: 12px;
    text-align: left;
  }

  .overview-lead {
    font-size: 16px;
    line-height: 1.6;
    text-align: left;
  }

  .overview-text {
    font-size: 14px;
    margin-top: 16px;
  }

  .overview-note {
    margin-top: 16px;
  }
}

/* 
特徴
*/

.feature-section {
  padding: 0 24px;
  padding-top: 64px;
}

.feature-wrap {
  max-width: 1024px;
  margin: 0 auto;
}

.feature-list {
  display: flex;
  gap: 32px;
}

.feature-list-item {
  width: calc(calc(100% - 64px) / 3);
  background-color: #fafafa;
  border-radius: 8px;
}

.feature-list-item:first-child {
  background-color: #fff6e8;
}

.feature-list-item:first-child > .feature-heading {
  background-color: #fa8200;
}

.feature-heading {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  color: #fff;
  background-color: #636363;
  padding: 32px;
  border-radius: 8px 8px 0 0;
}

.feature-textarea {
  padding: 32px;
}

.feature-textarea > img {
  padding-top: 4px;
}

.feature-label {
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
  color: #717171;
}

.feature-text {
  font-size: 14px;
  margin-bottom: 24px;
}

.feature-text.bold {
  font-size: 16px;
  line-height: 1.5;
  padding-top: 4px;
}

.feature-text:last-child {
  margin-bottom: 0;
}

@media only screen and (max-width: 768px) {
  .feature-section {
    padding: 0;
    padding-top: 40px;
  }

  .feature-list {
    gap: 16px;
    padding: 0 24px;
    padding-bottom: 24px;
    margin-bottom: -24px;
    overflow-x: scroll;
  }

  .feature-list-item {
    min-width: 304px;
  }

  .feature-heading {
    font-size: 20px;
    padding: 24px;
  }

  .feature-textarea {
    padding: 24px;
  }

  .feature-label {
    font-size: 12px;
  }

  .feature-text {
    font-size: 14px;
  }
}

/*
料金体系
*/

.price-section {
  padding: 0 24px;
  padding-top: 64px;
}

/* インフォグラフィック */

.price-table {
  box-sizing: border-box;
  width: 100%;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}

.price-table-wrap {
  max-width: 496px;
  margin: 0 auto;
}

.price-table-heading {
  background-color: #fa8200;
  color: #fff;
  padding: 10px 0;
  font-size: 26px;
  border-radius: 8px 8px 0 0;
}

.price-table-text {
  background-color: #fff6e8;
  padding: 24px;
  border-radius: 0 0 8px 8px;
}

.price-table-textarea {
  position: relative;
  background-color: #fff;
  padding: 24px;
  margin-bottom: 24px;
}

.price-table-textarea:last-of-type {
  margin-bottom: 0;
}

.price-table-textarea::after {
  position: absolute;
  bottom: -63px;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  content: url(../images/price-add.png);
  z-index: 1;
}

.price-table-textarea:last-of-type::after {
  display: none;
}

.price-table-textarea-heading {
  font-size: 24px;
  line-height: 1;
}

.price-table-textarea-text {
  font-size: 14px;
  margin-top: 8px;
  font-weight: 400;
}

.price-table-textarea-div-list {
  position: relative;
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.price-table-textarea-div-list::after {
  position: absolute;
  top: 56%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  content: url(../images/price-times.png);
  z-index: 1;
}

.price-table-amount {
  line-height: 1;
  width: calc(100% - 12px / 2);
  border-radius: 4px;
  padding: 16px;
  background-color: #fa8200;
  color: #fff;
}

.price-table-plus {
  height: 36px;
  width: 36px;
  border-radius: 50%;
  line-height: 32px;
  text-align: center;
  background: #218dbc;
  font-size: 32px;
  font-weight: bold;
  color: #fff;
  margin: 0 auto;
  margin-top: -8px;
  margin-bottom: -8px;
  position: relative;
  z-index: 2;
}

@media only screen and (max-width: 768px) {
  .price-section {
    padding: 0 24px;
    padding-top: 40px;
  }

  .price-wrap {
    padding: 0;
  }

  /* インフォグラフィック */

  .price-table {
    font-size: 18px;
  }

  .price-table-wrap {
    max-width: inherit;
  }

  .price-table-heading {
    font-size: 22px;
  }

  .price-table-text {
    padding: 16px;
  }

  .price-table-textarea-heading {
    font-size: 20px;
  }

  .price-table-textarea-text {
    font-size: 12px;
  }

  .price-table-textarea-div-list {
    display: block;
  }

  .price-table-textarea-div-list::after {
    top: 52%;
  }

  .price-table-amount {
    width: 100%;
    font-size: 16px;
    border-radius: 0;
    margin-bottom: 20px;
  }

  .price-table-amount:last-of-type {
    margin-bottom: 0;
  }
}

/* 
お申し込みの流れ
*/

.steps-section {
  padding: 0 24px;
  padding-top: 64px;
}

.steps-wrap {
  max-width: 1024px;
  margin: 0 auto;
}

.steps-wrap > img {
  width: 100%;
}

.steps-list {
  display: flex;
  gap: 32px;
}

.steps-note {
  margin-top: 16px;
}

.steps-note-indent {
  padding-left: 3em;
  text-indent: -3em;
}

.steps-note:first-of-type {
  margin-top: 24px;
}

@media screen and (max-width: 768px) {
  .steps-section {
    padding: 0 24px;
    padding-top: 40px;
  }
}

/* 
選ばれる理由
*/

.reason-section {
  padding: 0 24px;
  padding-top: 64px;
}

.reason-wrap {
  max-width: 1024px;
  margin: 0 auto;
}

.reason-list {
  display: flex;
  gap: 32px;
}

.reason-list-item {
  width: calc(calc(100% - 64px) / 3);
}

.reason-list-item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 180px;
  background-color: #fff6e8;
  border-radius: 8px;
}

.reason-heading {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  margin-top: 16px;
}

.reason-text {
  margin-top: 12px;
}

@media screen and (max-width: 768px) {
  .reason-section {
    padding: 0 24px;
    padding-top: 40px;
  }

  .reason-list {
    display: block;
  }

  .reason-list-item {
    display: flex;
    width: 100%;
    margin-top: 24px;
  }

  .reason-list-item-img {
    min-width: 96px;
    height: 54px;
    border-radius: 4px;
  }

  .reason-list-item-img img {
    width: 42px;
  }

  .reason-list-item-textarea {
    margin-left: 16px;
  }

  .reason-heading {
    font-size: 16px;
    line-height: 1.5;
    margin-top: 0;
  }

  .reason-text {
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.7;
  }
}

/* 
関連リンク
*/

.link-section {
  padding: 0 24px;
  padding-top: 64px;
}

.link-wrap {
  max-width: 1024px;
  margin: 0 auto;
}

.link-list {
  display: flex;
  gap: 32px;
}

.link-list-item {
  width: calc(calc(100% - 96px) / 4);
  border: 1px solid #d8d8db;
  border-radius: 8px;
  transition-duration: 0.2s;
}

@media (hover: hover) {
  .link-list-item:hover {
    background-color: #fafafa;
  }
  .link-list-item:hover img {
    transform: scale(1.1); /* 拡大 */
  }
}

.link-list-item a {
  display: block;
  height: 100%;
  width: 100%;
}

.link-list-item-img {
  overflow: hidden;
  border-radius: 6px 6px 0 0;
}

.link-list-item-img img {
  width: 100%;

  transition: 0.3s ease; /* ゆっくり変化させる */
}

.link-heading {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  padding: 16px;
}

@media screen and (max-width: 768px) {
  .link-section {
    padding: 0 24px;
    padding-top: 40px;
  }

  .link-list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
  }

  .link-list-item {
    width: calc(calc(100% - 16px) / 2);
  }

  .link-heading {
    font-size: 12px;
    padding: 8px;
  }
}

/*
FAQ
*/

.faq-section {
  padding: 0 24px;
  padding-top: 64px;
}

.faq-wrap {
  max-width: 1024px;
  margin: 0 auto;
}

.faq-details {
  border-bottom: 1px solid #d8d8db;
}

.faq-details.is-hidden {
  visibility: hidden;
  height: 0;
}

.faq-summary {
  /* display: list-item;以外を指定してデフォルトの三角形アイコンを消します */
  display: block;
  padding: 24px;
  cursor: pointer;
}

.faq-summary::-webkit-details-marker {
  /* Safariで表示されるデフォルトの三角形アイコンを消します */
  display: none;
}

.faq-summary:hover {
  background-color: #fafafa;
}

.faq-summary_inner {
  position: relative;
  display: block;
  padding: 0 40px;
}

.faq-summary_inner::before {
  position: absolute;
  top: 3px;
  left: 0;
  content: "Q";
  color: #fa8200;
  font-weight: 700;
  line-height: 1;
}

.faq-summary_inner::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 10px;
  height: 10px;
  content: "";
  transform: translate(-50%, -9px) rotate(135deg);
  border-top: 2px solid #424242;
  border-right: 2px solid #424242;
}

.faq-details[open] .faq-summary {
  border-bottom: 1px dashed #d8d8db;
}

.faq-details[open] .faq-summary_inner::after {
  transform: translate(-50%, -2px) rotate(315deg);
}

.faq-content {
  padding: 24px;
}

.faq-content_inner {
  position: relative;
  padding: 0 40px;
}

.faq-content_inner::before {
  position: absolute;
  top: 0;
  left: 1px;
  content: "A";
  color: #fa8200;
  font-weight: 700;
}

.faq-note {
  font-size: 14px;
  line-height: 1.7;
  margin-top: 4px;
  padding-left: 1em;
  text-indent: -1em;
  letter-spacing: 0.02em;
  list-style: none;
}

@media screen and (max-width: 768px) {
  .faq {
    margin-top: 10px;
    padding-top: 20px;
  }

  .faq-section {
    padding-top: 40px;
  }

  .faq-summary {
    padding: 16px 4px;
  }

  .faq-summary_inner {
    padding: 0 26px 0 26px;
    font-size: 16px;
  }

  .faq-summary_inner::after {
    width: 8px;
    height: 8px;
    border-top: 1px solid #424242;
    border-right: 1px solid #424242;
  }

  .faq-content {
    padding: 16px 4px 16px 4px;
  }
  .faq-content_inner {
    padding: 0 26px 0 26px;
  }
  .faq-content_inner::before {
    top: 0;
    font-size: 16px;
  }
}
/* 
お問い合わせ
*/

.contact-section {
  padding: 64px 24px 64px;
  margin-top: 80px;
  background-color: #fa9600;
}

.contact-wrap {
  max-width: 1024px;
  margin: 0 auto;
}

.contact-wrap > h2,
.contact-wrap > .h2-cap {
  color: #fff;
}

.contact-list {
  display: flex;
  gap: 32px;
}

.contact-list > li {
  width: calc(calc(100% - 32px) / 2);
  padding: 40px 24px;
  border-radius: 12px;
  background-color: #fff;
  text-align: center;
}

.contact-heading {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 16px;
}

.contact-text {
  margin-top: 8px;
}

.contact-button {
  max-width: 304px;
}

.contact-button > img {
  margin-right: 6px;
  vertical-align: -6px;
}

.contact-tel {
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  color: #fa8200;
}

.contact-tel > a {
  pointer-events: none;
}

.contact-tel:before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 32px;
  background-image: url(../images/contact-tel.png);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: -1px;
  margin-right: 6px;
}

.contact-tel-note {
  font-size: 14px;
  font-weight: 700;
  margin-top: 16px;
}

@media only screen and (max-width: 768px) {
  .contact-section {
    padding: 40px 24px 40px;
    margin-top: 56px;
  }

  .contact-list {
    display: block;
  }

  .contact-list > li {
    width: 100%;
    padding: 24px;
    border-radius: 8px;
  }

  .contact-list > li:first-child {
    margin-bottom: 16px;
  }

  .contact-heading {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .contact-text {
    margin-top: 8px;
  }

  .contact-button {
    width: 100%;
  }

  .contact-tel {
    font-size: 36px;
  }

  .contact-tel > a {
    pointer-events: inherit;
  }

  .contact-tel:before {
    width: 24px;
    height: 24px;
    margin-right: 6px;
  }

  .contact-tel-note {
    font-size: 12px;
    margin-top: 8px;
  }
}

/* 
フッター
*/

.footer-section {
  padding: 32px 24px 32px;
  color: #fff;
  background-color: #424242;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  max-width: 1024px;
  margin: 0 auto;
}

.footer-sitemap > ul {
  font-size: 12px;
  display: flex;
  gap: 24px;
}

.footer-sub {
  width: 232px;
}

.footer-sns {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.footer-sns img {
  width: 32px;
  height: 32px;
}

.footer-copyright {
  font-size: 10px;
  text-align: right;
  margin-top: 8px;
}

@media only screen and (max-width: 768px) {
  .footer-section {
    padding: 64px 24px 64px;
  }

  .footer-wrap {
    display: block;
  }

  .footer-sitemap > ul {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 16px;
  }

  .footer-sub {
    width: inherit;
  }

  .footer-sns {
    justify-content: center;
    margin-top: 32px;
  }

  .footer-copyright {
    text-align: center;
    margin-top: 32px;
  }
}
