/* 
共通
*/

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: #333333;
  letter-spacing: 0.02em;
}

body.nav-open {
  overflow: hidden;
}

.text-link {
  color: #fa8200;
  text-decoration: underline;
}

@media (hover: hover) {
  .text-link:hover {
    opacity: 0.8;
  }
}

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

.sp {
  display: none;
}

.pc-br {
  display: block;
}

.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;
  }
}

/* 
注釈
*/

.note {
  font-size: 14px;
  line-height: 1.75;
  padding-left: 1em;
  text-indent: -1em;
  margin-top: 8px;
  margin-bottom: 24px;
}

.note > li:nth-child(n + 2) {
  margin-top: 12px;
}

.caution {
  color: #ec0000;
}

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

  .sp {
    display: block;
  }

  .pc-br {
    display: none;
  }

  .sp-br {
    display: block;
  }
}

/*
ヘッダー
*/

header {
  width: 100%;
  padding: 0 24px;
}

.header__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.header__logo {
  display: block;
  width: auto;
  height: 40px;
  margin-left: 24px;
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header__button {
  font-size: 14px;
  padding: 16px;
  min-width: 136px;
}

.hamburger {
  display: none;
}

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

  .header__wrap {
    height: 72px;
  }

  .header__logo {
    margin-left: 0;
  }

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

  .header__button {
    font-size: 16px;
    padding: 20px;
  }

  .header__button--contact {
    margin-left: inherit;
    margin-top: 32px;
  }

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

  .hamburger__border {
    position: absolute;
    left: 24px;
    width: 24px;
    height: 2px;
    transition: all 0.2s;
    background-color: #333;
  }
  .hamburger__border--top {
    top: 29px;
  }
  .hamburger__border--center {
    top: 35px;
  }
  .hamburger__border--bottom {
    top: 41px;
  }

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

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

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

/*
メイン
*/

/* 共通 */

h3 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}

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

@media only screen and (max-width: 768px) {
  .h3-cap {
    font-size: 14px;
    margin: 8px 0 16px;
  }
}

/*
フローティングメニュー
*/

.floating {
  display: none;
}

@media screen and (max-width: 768px) {
  .floating {
    display: block; /* display を常にブロックに */
    position: fixed;
    z-index: 3;
    bottom: 0;
    right: 0;
    width: 100%;
    opacity: 0; /* 初期は透明 */
    pointer-events: none; /* 非表示中は操作不可 */
    transition: opacity 0.4s;
  }

  .floating__wrap {
    width: 100%;
  }

  .floating__list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    padding: 8px;
    background-color: #fa8200;
  }

  .floating__item {
    flex: 1;
  }

  .floating__button {
    padding: 16px 0;
    font-size: 14px;
  }

  .floating__button-apply {
    color: #fa8200;
    background-color: #fff;
  }

  .floating__button-contact {
    color: #fff;
    background-color: #fa8200;
    border: 1px solid #fff;
  }
}

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

.mv__img {
  width: 100%;
  padding: 0 16px;
}

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

/* 
お申し込み
*/

.apply {
  padding: 0 24px;
  margin: 64px 0;
}

.apply__wrap {
  max-width: 1120px;
  padding: 40px 24px;
  margin: 0 auto;
  background-color: #fff9f2;
  border-radius: 12px;
  text-align: center;
}

.apply__heading-sub {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
}
.apply__heading {
  font-size: 36px;
  font-weight: 700;
}

.apply__list {
  max-width: 952px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 16px;
  margin: 0 auto;
  margin-top: 24px;
}

.apply__item {
  width: 100%;
}

.apply__button-sub {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: 700;
  color: #fa8200;
  margin-bottom: 16px;
}

.apply__button-sub::before,
.apply__button-sub::after {
  content: "";
  width: 2px;
  height: 48px;
  background-color: #fa8200;
}

.apply__button-sub::before {
  margin-right: 32px;
  transform: rotate(-30deg);
}
.apply__button-sub::after {
  margin-left: 26px;
  transform: rotate(30deg);
}

.apply__button-sub__img {
  margin-right: 8px;
}

.apply__button {
  display: inline-flex;
  align-items: center;
  font-size: 18px;
  line-height: 1.5;
  padding: 24px 16px 24px 24px;
  text-align: left;
}

.apply__button::before {
  content: "";
  display: inline-block;
  width: 52px;
  height: 52px;
  margin-right: 12px;
  vertical-align: middle;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.apply__button-sw::before {
  background-image: url("../images/apply-sw-button.svg");
}

.apply__button-re {
  background-color: #259d63;
}

.apply__button-re:hover {
  background-color: #1d8b56;
}

.apply__button-re::before {
  background-image: url("../images/apply-re-button.svg");
}

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

  .apply__wrap {
    border-radius: inherit;
    padding: 40px 16px;
  }

  .apply__heading-sub {
    font-size: 16px;
  }
  .apply__heading {
    font-size: 20px;
    line-height: 1.5;
    margin-top: 8px;
  }

  .apply__list {
    display: block;
  }

  .apply__button-sub {
    font-size: 14px;
    margin-top: 24px;
  }

  .apply__button-sub::before,
  .apply__button-sub::after {
    width: 2px;
    height: 36px;
  }

  .apply__button-sub::before {
    margin-right: 24px;
  }
  .apply__button-sub::after {
    margin-left: 16px;
  }

  .apply__button {
    font-size: 16px;
    padding: 16px 12px;
    max-width: inherit;
  }

  .apply__button::before {
    width: 42px;
    height: 42px;
    margin-right: 12px;
  }

  .apply__button-re {
    margin-top: 12px;
  }
}

/*
おすすめポイント
*/

.recommend {
  background-color: #1f3759;
  padding: 0 24px;
}

.recommend__wrap {
  max-width: 1120px;
  padding: 64px 0px;
  margin: 0 auto;
}

.recommend__heading {
  position: relative;
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  padding: 24px;
  background-color: #fff;
  border-radius: 8px;
  line-height: 1.4;
}

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

.recommend__heading__bold {
  font-size: 48px;
  color: #fa8200;
}

@media only screen and (max-width: 768px) {
  .recommend {
    padding: 0 16px;
  }

  .recommend__wrap {
    padding: 40px 0px;
  }

  .recommend__heading {
    font-size: 16px;
    border-radius: 4px;
    padding: 24px 16px;
  }

  .recommend__heading__bold {
    font-size: 23px;
    margin-top: 4px;
  }
}

/* 
おすすめポイント - 結論パート
*/

.recommend__conclusion {
  margin-top: 40px;
}

.recommend__conclusion__wrap {
  background-color: #fff;
  padding: 40px 24px;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin: 0 auto;
  line-height: 1.5;
  border-radius: 8px;
  max-width: 1120px;
}

.recommend__conclusion__bold {
  background-color: #fff5e5;
  font-size: 30px;
  padding: 24px;
  max-width: 912px;
  margin: 16px auto;
}

.recommend__conclusion__point {
  font-size: 36px;
  color: #fa8200;
  line-height: 1.75;
}

.recommend__conclusion__saving {
  font-size: 36px;
  color: #fa8200;
  margin-bottom: 4px;
}

.recommend__conclusion__saving__cap {
  font-size: 32px;
}

@media only screen and (max-width: 768px) {
  .recommend__conclusion {
    margin-top: 24px;
  }

  .recommend__conclusion__wrap {
    background-color: #fff;
    padding: 24px 16px;
    font-size: 18px;
    border-radius: 8px;
  }

  .recommend__conclusion__heading {
    font-size: 16px;
  }

  .recommend__conclusion__bold {
    font-size: 22px;
    padding: 24px 16px;
    margin: 12px auto;
  }

  .recommend__conclusion__point {
    font-size: 24px;
    line-height: 1.5;
  }

  .recommend__conclusion__cap {
    font-size: 18px;
    padding: 8px 0;
  }

  .recommend__conclusion__saving {
    font-size: 24px;
    margin-top: 4px;
  }

  .recommend__conclusion__saving__cap {
    font-size: 20px;
  }
}

/* 
プランの特徴
*/

.recommend__feature__lead {
  display: flex;
  align-items: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  margin-top: 40px;
}

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

.recommend__feature__lead:before {
  margin-right: 16px;
}

.recommend__feature__lead:after {
  margin-left: 16px;
}

.recommend__feature__culumn {
  display: flex;
  padding: 40px 40px 40px 48px;
  background-color: #fff;
  gap: 48px;
  margin-top: 32px;
  border-radius: 8px;
}

.recommend__feature__culumn__item:first-child {
  flex: 0 0 440px; /* 固定幅 */
}

.recommend__feature__culumn__item:last-child {
  flex: 1; /* 残りのスペースを自動調整 */
}

.recommend__feature__point {
  display: inline-block;
  padding: 4px 16px;
  background-color: #fa8200;
  font-weight: 700;
  color: #fff;
  border-radius: 24px;
}

.recommend__feature__heading {
  font-size: 26px;
  font-weight: 700;
  margin: 32px 0;
}

.recommend__feature__text {
  margin: 24px 0;
  font-size: 16px;
  line-height: 1.9;
}

.recommend__feature__culumn__item__button {
  margin-top: 32px;
  margin-bottom: 16px;
}

@media only screen and (max-width: 768px) {
  .recommend__feature__lead {
    font-size: 18px;
    margin-top: 32px;
  }

  .recommend__feature__lead:before {
    margin-right: 8px;
  }

  .recommend__feature__lead:after {
    margin-left: 8px;
  }

  .recommend__feature__culumn {
    display: block;
    padding: 16px;
    margin-top: 16px;
  }

  .recommend__feature__heading {
    font-size: 24px;
    margin: 20px 0;
  }
  .recommend__feature__culumn__item__button {
    margin-bottom: 32px;
  }
}

/*
POINT 1
*/

.recommend__feature__heading__token {
  font-size: 36px;
  color: #fa8200;
  line-height: 1.5;
  padding-right: 8px;
}

@media only screen and (max-width: 768px) {
  .recommend__feature__heading__token {
    font-size: 28px;
    padding-right: 6px;
  }
}

/*
POINT 2
*/

.recommend__feature__heading__price {
  font-size: 36px;
  color: #fa8200;
  line-height: 1.25;
}

@media only screen and (max-width: 768px) {
  .recommend__feature__heading__price {
    font-size: 36px;
    line-height: 1.25;
    margin: 20px 0;
  }
}

.recommend__feature__detail__list {
  display: flex;
  align-items: stretch;
  gap: 8px;
}

.recommend__feature__deatil__item {
  flex: 0 0 50%;
  background-color: #e8ebee;
  padding: 24px;
}

.recommend__feature__deatil__item__text {
  font-weight: 700;
  margin-top: 8px;
}

/* 
POINT 3
*/

.recommend__feature__heading__supply {
  font-size: 42px;
  vertical-align: -3px;
  color: #fa8200;
  line-height: 1.25;
}

@media only screen and (max-width: 768px) {
  .recommend__feature__heading__supply {
    font-size: 32px;
    padding-left: 8px;
  }

  /*
POINT 2
*/
  .recommend__feature__detail__list {
    display: block;
  }

  .recommend__feature__deatil__item {
    margin-bottom: 16px;
  }

  .recommend__feature__deatil__item > img {
    width: 100%;
  }
}

/*
料金体系
*/

.price {
  padding: 0 24px;
}

.price__wrap {
  padding: 64px 0;
  max-width: 1120px;
  margin: 0 auto;
}

.price__list {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  margin-top: 32px;
}

.price__item {
  flex: 0 0 50%; /* 2分割 */
}

.price__item__img {
  background-color: #fef4e5;
  padding: 52px;
  text-align: center;
}

.price__item:last-child {
  max-width: 480px;
  padding-left: 8px;
}

.price__item__heading {
  display: inline-block;
  color: #fff;
  font-weight: 700;
  background-color: #fa8200;
  padding: 4px 16px;
  border-radius: 8px;
}

.price__item__text {
  font-size: 18px;
  font-weight: 700;
  margin: 8px 0 24px;
  line-height: 1.5;
}

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

  .price__wrap {
    padding: 40px 0 16px;
  }

  .price__list {
    display: block;
    margin-top: 16px;
  }

  .price__item:first-child {
    margin-bottom: 32px;
  }
  .price__item__img {
    padding: 16px;
  }

  .price__item:last-child {
    padding-left: 0;
  }

  .price__item__heading {
    display: inline-block;
    color: #fff;
    font-weight: 700;
    background-color: #fa8200;
    padding: 4px 16px;
    border-radius: 8px;
  }

  .price__item__text {
    margin: 8px 0 24px;
  }
}

/* 料金体系 - 結論パート*/

.price__conclusion {
  background-color: #1f3759;
  padding: 64px 24px;
}

.price__conclusion__wrap {
  background-color: #fff;
  padding: 40px 24px;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin: 0 auto;
  line-height: 1.5;
  border-radius: 8px;
  max-width: 1120px;
}

.price__conclusion__inner {
  background-color: #fff5e5;
  font-size: 30px;
  padding: 32px 24px;
  max-width: 912px;
  margin: 16px auto;
}

.price__conclusion__point {
  max-width: 96px;
  padding: 4px 12px;
  background-color: #fa8200;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  border-radius: 24px;
  margin: 0 auto;
  margin-bottom: 12px;
}

.price__conclusion__token__bold {
  font-size: 38px;
  color: #fa8200;
  line-height: 1.5;
}

.price__conclusion__price__bold {
  color: #fa8200;
}

.price__conclusion__price__price {
  font-size: 64px;
  color: #fa8200;
  padding: 6px;
  line-height: 1;
  vertical-align: -3px;
}

.price__conclusion__result__bold {
  color: #fa8200;
}

.price__conclusion__result__price {
  font-size: 52px;
  line-height: 1.25;
}

.price__conclusion__plan__triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 24px solid transparent;
  border-left: 24px solid transparent;
  border-top: 24px solid #fa8200;
  border-bottom: 0;
  margin: 0 auto;
}

.price__conclusion__plan__cap {
  margin-top: 16px;
}

.price__conclusion__plan__bold {
  font-size: 36px;
  color: #fa8200;
  padding: 4px;
  margin-bottom: 24px;
}

@media only screen and (max-width: 768px) {
  .price__conclusion {
    padding: 40px 16px;
  }

  .price__conclusion__wrap {
    background-color: #fff;
    padding: 24px 16px;
    font-size: 18px;
  }

  .price__conclusion__bold {
    font-size: 22px;
    padding: 24px 16px;
    margin: 12px auto;
  }

  .price__conclusion__inner {
    font-size: 18px;
    padding: 24px 16px;
    max-width: inherit;
    margin: 8px auto;
  }

  .price__conclusion__point {
    padding: 2px 2px;
    font-size: 14px;
  }

  .price__conclusion__token__bold {
    font-size: 24px;
    color: #fa8200;
    line-height: 1.5;
  }

  .price__conclusion__price__price {
    font-size: 52px;
  }

  .price__conclusion__result__price {
    font-size: 36px;
    padding: 4px;
    vertical-align: -0.5;
  }

  .price__conclusion__result__ken {
    font-size: 24px;
  }

  .price__conclusion__plan__triangle {
    border-right: 16px solid transparent;
    border-left: 16px solid transparent;
    border-top: 16px solid #fa8200;
  }

  .price__conclusion__plan__cap {
    margin-top: 16px;
  }

  .price__conclusion__plan__bold {
    font-size: 24px;
  }
}

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

.steps {
  padding: 0 24px;
  background-color: #fff9f2;
}
.steps__wrap {
  padding: 48px 0 64px;
  max-width: 1120px;
  margin: 0 auto;
}

/* タブ */
.steps__tab {
  display: flex;
  flex-wrap: wrap;
  grid-gap: 16px;
  margin: 0 auto;
}

.steps__tab-item {
  flex: 1;
  line-height: 1.4;
}

input[name="steps__tab-item"] {
  display: none;
}

.steps__tab__content {
  display: none;
  width: 100%;
  margin-top: 24px;
}

#sw:checked ~ #sw-content,
#re:checked ~ #re-content {
  display: block;
}

.steps__tab input:checked + .steps__tab-item {
  color: #fff;
  background-color: #fa8200;
}

@media (hover: hover) {
  .steps__tab input:checked + .steps__tab-item:hover {
    background-color: #f47100;
  }
}

/* タブ */

.steps__lead {
  text-align: center;
  margin-bottom: 32px;
}
.steps__lead__text {
  font-size: 18px;
  line-height: 1.5;
  margin-top: -8px;
}
.steps__lead__text > span {
  font-weight: 700;
}

.steps__lead__note {
  margin-top: 8px;
}

.steps__list {
  position: relative;
  margin-top: 24px;
  z-index: 1;
}

.steps__list::before {
  content: "";
  display: block;
  width: 4px;
  height: 100%;
  background-color: #fa8200;
  position: absolute;
  left: 72px;
  z-index: -1;
}

.steps__item {
  display: flex;
  align-items: center;
  gap: 40px;
  background-color: #fff;
  border-radius: 8px;
  padding: 32px 24px 32px 48px;
  margin-top: 24px;
}

.steps__head-area {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 240px;
}

.steps__head-area__img {
  width: 52px;
}

.steps__heading {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}

@media only screen and (max-width: 768px) {
  .steps {
    padding: 0 16px;
  }
  .steps__wrap {
    padding-top: 48px;
  }

  /* タブ */
  .steps__tab {
    display: block;
  }

  .steps__tab-item {
    margin-bottom: 12px;
  }

  /* タブの中身 */
  .steps__lead {
    margin-bottom: 16px;
  }
  .steps__lead__text {
    margin-top: 0px;
  }

  .steps__lead__note {
    text-align: left;
    margin-top: 8px;
  }

  .steps__list {
    display: block;
    margin-top: 24px;
  }

  .steps__list::before {
    left: 0;
    right: 0;
    margin: auto;
  }
  .steps__item {
    display: block;
    padding: 24px;
    margin-top: 16px;
  }

  .steps__head-area {
    min-width: inherit;
  }
  .steps__text-area {
    margin-top: 16px;
  }
}

/*
FAQ
*/

.faq {
  padding: 0 24px;
}
.faq__wrap {
  padding: 48px 0 24px;
  max-width: 1120px;
  margin: 0 auto;
}

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

.faq__summary {
  display: block;
  padding: 24px;
  cursor: pointer;
}

.faq__summary::-webkit-details-marker {
  display: none;
}

@media (hover: hover) {
  .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 #fa8200;
  border-right: 2px solid #fa8200;
}

.faq__details[open] .faq__summary {
  border-bottom: 1px dashed #d8d8db;
}

.faq__details[open] .faq__summary-inner::before {
  color: #999999;
}

.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__content-inner__list {
  list-style: disc;
  padding-left: 24px;
  margin-top: 8px;
}

.faq__content-inner__button {
  max-width: 360px;
  margin-top: 24px;
  margin-bottom: 8px;
}

@media screen and (max-width: 768px) {
  .faq {
    padding: 0 16px;
  }
  .faq__wrap {
    padding-top: 48px;
  }

  .faq__list {
    margin-top: -4px;
  }

  .faq__summary {
    padding: 16px 4px;
  }

  .faq__summary-inner {
    padding: 0 26px;
  }

  .faq__summary-inner::after {
    width: 8px;
    height: 8px;
    border-top: 1px solid #fa8200;
    border-right: 1px solid #fa8200;
  }

  .faq__content {
    padding: 16px 4px;
  }
  .faq__content-inner {
    padding: 0 26px;
  }
  .faq__content-inner__button {
    margin-bottom: 40px;
  }
}

/*
コンタクト
*/

.contact {
  background-color: #f5f5f5;
  padding: 40px 24px;
  margin-top: 40px;
}

.contact__culumn {
  display: flex;
  gap: 16px;
}

.contact__culumn-item {
  width: 100%;
  background-color: #fff;
  padding: 40px;
  margin: 0 auto;
  text-align: center;
  border-radius: 8px;
}
.contact__heading {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}

.contact-button {
  max-width: 356px;
  margin-top: 8px;
  margin-bottom: 8px;
  line-height: 1.2;
}

.contact__tel {
  font-size: 46px;
  font-weight: 700;
  color: #fa8200;
  line-height: 1.2;
}

@media (hover: hover) {
  .contact__tel > a:hover {
    color: #f47100;
  }
}

.contact__tel-note {
  font-size: 14px;
  font-weight: 700;
  margin-top: 8px;
}

@media only screen and (max-width: 768px) {
  .contact {
    padding: 40px 16px;
  }
  .contact__culumn {
    display: block;
  }
  .contact__culumn-item {
    padding: 40px 16px;
  }
  .contact__culumn-item:last-child {
    margin-top: 16px;
  }
  .contact-button {
    max-width: inherit;
  }
  .contact__tel {
    font-size: 40px;
  }
  .contact__tel-note {
    font-size: 14px;
  }
}

/* 
フッター
*/

.footer {
  background-color: #424242;
  padding: 0 16px;
}

.footer__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
}

.footer__sns {
  display: flex;
  gap: 16px;
}

.footer__sns img {
  display: block;
  width: 24px;
  height: 24px;
  transition: 0.2s;
}

@media (hover: hover) {
  .footer__sns img:hover {
    opacity: 0.8;
  }
}

.footer__sitemap {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer__sitemap-item {
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  transition: 0.2s;
}

.footer__sitemap-item-text-link {
  text-decoration: none;
}

@media (hover: hover) {
  .footer__sitemap-item:hover {
    opacity: 0.8;
  }
}

.footer__copyright {
  font-size: 10px;
  color: #fafafa;
}

@media only screen and (max-width: 768px) {
  .footer__wrap {
    display: block;
    padding: 64px 0;
  }

  .footer__sns {
    gap: 20px;
  }

  .footer__sns img {
    width: 32px;
    height: 32px;
  }

  .footer__sitemap {
    display: block;
    margin-top: 40px;
  }

  .footer__sitemap-item {
    margin-top: 16px;
  }

  .footer__copyright {
    margin-top: 40px;
  }
}
