/* 
共通
*/
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: #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;
}

/*
テーブル
*/

table,
tr,
th,
td {
  border: #d8d8db 1px solid;
  padding: 8px;
  vertical-align: middle;
  background-color: #fff;
}

table {
  table-layout: fixed;
  width: 100%;
}

tr {
  height: 80px;
}

th {
  background-color: #fafafa;
}

/* 
ボタン
*/

.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.5;
  padding-left: 1em;
  text-indent: -1em;
  margin-top: 8px;
  margin-bottom: 24px;
}

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

.caution {
  color: #ec0000;
}

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

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

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

  .sp {
    display: block;
  }

  .pc-br {
    display: none;
  }

  .sp-br {
    display: block;
  }

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

/*
ヘッダー
*/

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: 32px;
}

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

.header-text {
  padding: 0 4px;
  transition-duration: 0.2s;
}

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

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

.header-button-contact {
  margin-left: 2px;
}

.hamburger {
  display: none;
}

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

  .header-wrap {
    height: 72px;
  }

  .header-logo {
    height: 28px;
  }

  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: 300;
  }

  .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: 4;
  }
  .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 24px;
  }

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

/*
メイン
*/

/*
チャットボット＆フローティングメニュー
*/

#sci-chatwindow {
  display: none;
  z-index: 2;
}

@media screen and (max-width: 768px) {
  /* チャットボットの位置調整 */
  #sci-chatwindow {
    bottom: 90px !important;
  }

  .floating-section {
    display: none;
    position: fixed;
    z-index: 3;
    bottom: 0;
    right: 0;
    width: 100%;
  }

  .floating-wrap {
    width: 100%;
  }

  .floating-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 12px 16px;
    background-color: #fa8200;
  }

  .floating-list-item {
    flex: 1;
  }

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

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

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

.main-section {
  position: relative;
}

.main-banner {
  position: absolute;
  right: 40px;
  bottom: 24px;
  width: 256px;
}

.main-img > img {
  width: 100%;
  padding: 0 15px;
}

@media only screen and (max-width: 768px) {
  .main-banner {
    display: block;
    position: inherit;
    width: 100%;
    padding: 0 16px;
    padding-top: 8px;
  }

  .main-img > img {
    padding: 0;
  }
}

/*
実績
*/

.result__section {
  padding: 0 24px;
}

.result__wrap {
  max-width: 1120px;
  padding: 24px 0px;
  margin: 0 auto;
  text-align: center;
}

/* 
トピックス
*/

.topics-section {
  padding: 0 24px;
  margin-top: 32px;
  background-color: #fafafa;
}

.topics-wrap {
  max-width: 1120px;
  padding: 40px 0;
  margin: 0 auto;
}

.topics-list {
  display: flex;
  gap: calc(64px / 3);
}

.topics-list-item {
  width: calc(calc(100% - 64px) / 4);
  transition-duration: 0.2s;
}

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

@media only screen and (max-width: 768px) {
  .topics-section {
    padding: 0;
    background-color: #fafafa;
  }

  .topics-list {
    padding: 0 16px;
    gap: 16px;
    overflow-x: scroll;
  }

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

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

.recommend__section {
  background-color: #fa9600;
  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__section {
    padding: 0 16px;
  }

  .recommend__wrap {
    padding: 40px 0px;
  }

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

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

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

.recommend__conclusion__section {
  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: 40px;
  max-width: 736px;
  margin: 16px auto;
}

.recommend__conclusion__forecast {
  font-size: 36px;
  color: #fa8200;
  padding: 8px;
  line-height: 1;
}

.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__section {
    margin-top: 24px;
  }

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

  .recommend__conclusion__heading {
    font-size: 16px;
  }

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

  .recommend__conclusion__forecast {
    font-size: 24px;
    padding: 8px;
    line-height: 1.4;
  }

  .recommend__conclusion__cap {
    font-size: 18px;
  }

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

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

/* 
Styleプラスの特徴
*/

.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 {
  max-width: 440px;
}

.recommend__feature__culumn__item:nth-child(2) {
  display: block;
  width: calc(100% - 488px);
}

.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 24px;
  font-size: 18px;
  line-height: 1.9;
}

@media only screen and (max-width: 768px) {
  .recommend__feature__culumn__item:nth-child(2) {
    width: 100%;
  }

  .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__culumn__item:first-child {
    max-width: inherit;
  }

  .recommend__feature__note {
    margin-bottom: 24px;
  }
}

/* POINT 1 */

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

.feature02-img > img {
  display: block;
  margin-bottom: 16px;
  width: 100%;
}

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

/* POINT 2 */

.recommend__feature__heading__forecast {
  font-size: 32px;
  padding-right: 4px;
  color: #fa8200;
  line-height: 1;
}

.recommend__feature__heading__marker {
  background-color: #fff0b3;
}

.recommend__feature__forecast__wrap {
  padding: 40px;
  border: solid 1px #e5e5e5;
}

.forecast__column {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
}

.forecast__column__item {
  display: flex;
  width: 100%;
  gap: 32px;
}

.forecast__column__item > div > img {
  width: 72px;
}

.forecast__label {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 12px;
}

.forecast__value {
  font-size: 72px;
  font-weight: 700;
  line-height: 1;
  color: #fa8200;
}

.forecast__value > span {
  font-size: 16px;
  padding-left: 8px;
  color: #969696;
}

@media only screen and (max-width: 768px) {
  .recommend__feature__forecast__wrap {
    width: 100%;
    padding: 32px 0;
    border: initial;
    border-top: solid 1px #e5e5e5;
    border-bottom: solid 1px #e5e5e5;
    margin-top: 32px;
  }

  .forecast__column {
    margin-bottom: 24px;
  }

  .forecast__column__item {
    gap: 24px;
  }

  .forecast__column__item > div > img {
    width: 56px;
  }

  .forecast__label {
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 12px;
  }

  .forecast__value {
    font-size: 52px;
    margin-top: -8px;
  }

  .forecast__value > span {
    font-size: 14px;
  }

  .forecast__value > span {
    font-size: 16px;
    padding-left: 4px;
    color: #969696;
  }
}

/* chart.js*/

/* 配置の基準となるラッパーブロック; 背景色も設定する */
.forecast__chart__wrap {
  width: 100%;
  margin: 24px 0 0;
  background-color: #fff;
}

.forecast__chart {
  position: relative;
}

/* スクロール可能グラフを囲む div */
.forecast__chart > div {
  position: relative;
  overflow-x: scroll;
}

/* Y軸イメージコピー用 canvas */
.forecast__chart > canvas {
  position: absolute; /* これにより、上の div と重なる位置に canvas が配置される */
  left: 0;
  top: 0;
  background-color: #fff; /* ここをコメントアウトすると、背景色が透明になるので、Y軸を透かしてグラフ部分が見えるようになる */
}

.forecast__chart__label {
  font-size: 12px;
  color: #787878;
}

.forecast__chart__label__yen {
  text-align: left;
  margin-left: 6px;
  margin-bottom: 6px;
}

.forecast__chart__label__time {
  text-align: center;
  margin-top: 8px;
}

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

/* 
POINT 3
*/

.recommend__feature__heading__supply {
  font-size: 48px;
  padding: 8px;
  vertical-align: -3px;
  color: #fa8200;
  line-height: 1;
}

.recommend__customer__section {
  background-color: #fef4e5;
  padding: 24px;
  text-align: center;
}

.recommend__customer__lead {
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  background-color: #fa8200;
  padding: 10px 24px;
  border-radius: 50px;
}

.recommend__customer__list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.recommend__customer__list__item {
  width: calc(calc(100% - 32px) / 3);
  height: auto;
  padding: 16px 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  background-color: #fff;
  border-radius: 8px;
}

.recommend__customer__list__item > img {
  width: 144px;
  margin-bottom: 4px;
}

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

  .recommend__customer__section {
    padding: 16px;
  }

  .recommend__customer__lead {
    font-size: 16px;
  }

  .recommend__customer__list {
    gap: 16px;
    margin-top: 16px;
  }

  .recommend__customer__list__item {
    width: calc(calc(100% - 16px) / 2);
    font-size: 14px;
    border-radius: 4px;
  }
}

/*
料金体系
*/

.price__section {
  padding: 0 24px;
  background-color: #fff9f2;
}

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

.price__wrap > h3 {
  text-align: center;
}

.price__box {
  padding: 24px;
  border-radius: 8px;
  background-color: #fff;
}

.price__list {
  display: flex;
  gap: 16px;
  padding: 16px;
  border-radius: 8px;
  background-color: #e6e6e6;
}

.price__item {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  background-color: #fff;
  min-height: 120px;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  padding: 24px;
}

.price__item__equal::after,
.price__item__plus::after,
.price__item__times::after {
  position: absolute;
  right: -29px;
  content: "";
  display: inline-block;
  width: 44px;
  height: 44px;
  background-size: contain;
  vertical-align: middle;
  z-index: 2;
}

.price__item__equal::after {
  background-image: url("../images/price-equal.png");
}

.price__item__plus::after {
  background-image: url("../images/price-plus.png");
}

.price__item__times::after {
  background-image: url("../images/price-times.png");
}

.price__item__total {
  position: relative;
  color: #fa8200;
}

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

.price__item__juryo {
  flex: 2;
}

.price__item__juryo > div {
  width: 100%;
}

.price__item__juryo__span {
  font-size: 16px;
}

.price__item__note {
  font-weight: 400;
  margin-top: 12px;
}

.price__juryo__box {
  position: relative;
  padding: 16px;
  margin-top: 16px;
  background-color: #fff0d9;
  border-radius: 6px;
}

.price__juryo__box::before {
  position: absolute;
  left: 0;
  right: 0;
  top: 66px;
  content: "+";
}

.price__juryo__box::after {
  position: absolute;
  content: "";
  display: inline-block;
  width: 44px;
  height: 44px;
  background-image: url("../images/price-times.png");
  background-size: contain;
  transform: translate(-50%, -50%);
  vertical-align: middle;
  bottom: -56px;
  z-index: 2;
}

.price__juryo__box > p {
  font-size: 18px;
  padding: 16px;
  background-color: #fff;
}

.price__juryo__box > p:nth-child(2) {
  margin-top: 24px;
}

.price__juryo__amount {
  position: relative;
  font-size: 20px;
  background-color: #fff0d9;
  margin-top: 24px;
  padding: 24px;
  border-radius: 6px;
}

.price__button {
  max-width: 160px;
  margin-top: 24px;
}

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

  .price__wrap {
    padding-top: 40px;
  }

  .price__box {
    padding: 16px;
  }

  .price__list {
    display: block;
    padding: 16px;
  }

  .price__item {
    padding: 24px 16px;
  }

  .price__item:nth-child(n + 2) {
    margin-top: 16px;
  }

  .price__item__times {
    padding: 40px 16px;
  }

  .price__item__equal::after,
  .price__item__plus::after,
  .price__item__times::after {
    right: initial;
    bottom: -28px;
  }
}

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

.price__conclusion__section {
  background-color: #fa9600;
  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: 736px;
  margin: 16px auto;
}

.price__conclusion__inner:last-child {
  margin-bottom: 0;
}

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

.price__conclusion__forecast__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: 56px;
  padding: 8px;
  line-height: 1;
  vertical-align: -4px;
}

.price__conclusion__result__ken {
  font-size: 32px;
}

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

.price__conclusion__style-plus__cap {
  margin-top: 16px;
}

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

@media only screen and (max-width: 768px) {
  .price__conclusion__section {
    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__forecast__bold {
    font-size: 24px;
    margin-bottom: 8px;
  }

  .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__style-plus__triangle {
    border-right: 16px solid transparent;
    border-left: 16px solid transparent;
    border-top: 16px solid #fa8200;
  }

  .price__conclusion__style-plus__cap {
    margin-top: 16px;
  }

  .price__conclusion__style-plus__bold {
    font-size: 20px;
  }

  .price__conclusion__section .apply-wrap {
    padding: 32px 16px;
  }

  .price__conclusion__section .apply-heading {
    font-size: 20px;
    line-height: 1.5;
    margin-top: 8px;
  }

  .price__conclusion__section .apply-button-sub {
    font-size: 14px;
    margin-top: 24px;
  }

  .price__conclusion__section .apply-sw-button {
    font-size: 16px;
    padding: 16px;
    max-width: inherit;
  }

  .apply-re-button {
    padding: 16px;
    max-width: inherit;
    margin-top: 8px;
  }

  .apply-note {
    margin-top: 10px;
    text-align: left;
  }
}

/* 料金体系 - モーダル */

body.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
}

.modalArea {
  display: none;
  position: fixed;
  z-index: 20; /*サイトによってここの数値は調整 */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modalBg {
  width: 100%;
  height: 100%;
  background-color: rgba(30, 30, 30, 0.9);
}

.modalWrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 48px);
  max-width: 1120px;
  height: 90%;
  padding: 64px 40px 40px 40px;
  background-color: #fff;
  overflow: auto;
  overflow-y: scroll;
}

.closeModal {
  font-size: 40px;
  font-weight: lighter;
  position: absolute;
  top: 0;
  right: 16px;
  cursor: pointer;
}

/* 料金体系 - モーダル - タブ */

.modal__tab__wrap {
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
  padding: 0 0 20px;
}

.modal__tab__label {
  color: #333333;
  cursor: pointer;
  flex: 1;
  font-weight: 700;
  order: -1;
  padding: 16px 0;
  position: relative;
  text-align: center;
  border-bottom: #949494 1px solid;
}

.modal__tab__label:hover {
  background: #f2f2f2;
}

.modal__tab__switch:checked + .modal__tab__label {
  color: #fa8200;
}

.modal__tab__label::after {
  background: #fa8200;
  bottom: 0;
  content: "";
  display: block;
  height: 3px;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  width: 100%;
  z-index: 1;
}

.modal__tab__switch:checked ~ .modal__tab__label::after {
  transform: translateX(-100%);
}

.modal__tab__switch:checked + .modal__tab__label::after {
  opacity: 1;
  transform: translateX(0);
}

.modal__tab__content {
  height: 0;
  opacity: 0;
  pointer-events: none;
  width: 100%;
}

.modal__tab__switch:checked ~ .modal__tab__content {
  transform: translateX(30%);
}

.modal__tab__switch:checked + .modal__tab__label + .modal__tab__content {
  height: auto;
  opacity: 1;
  order: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.modal__tab__switch {
  display: none;
}

/* 料金体系 - モーダル - コンテンツ */

.modal__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 32px;
  margin-bottom: 12px;
}

.modal__heading {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 24px;
  margin-bottom: 8px;
}

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

.modal__note {
  margin-top: 2px;
}

/* 固定従量料金単価 */

.modal__juryo__list {
  display: flex;
  gap: 32px;
}

.modal__juryo__item {
  flex: 1;
}

.modal__juryo__table td:nth-child(2) {
  font-weight: 700;
  color: #fa8200;
}

@media only screen and (max-width: 768px) {
  /* モーダルCSS */
  .modalArea {
    display: none;
    position: fixed;
    z-index: 10; /*サイトによってここの数値は調整 */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .modalBg {
    width: 100%;
    height: 100%;
    background-color: rgba(30, 30, 30, 0.9);
  }

  .modalWrapper {
    width: calc(100% - 32px);
    padding: 52px 16px 16px;
    height: 90%;
  }

  .closeModal {
    position: absolute;
    top: 0.5;
    right: 1;
    cursor: pointer;
    font-size: 30px;
  }

  .modal_title {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .modal-textarea {
    padding: 20px;
  }

  .modal-heading {
    margin-bottom: 10px;
  }

  .modal-text {
    font-size: 13px;
    margin-bottom: 15px;
  }

  /* 料金体系 - モーダル - コンテンツ */

  .modal__title {
    margin-top: 24px;
  }

  .modal__heading {
    margin-top: 16px;
  }

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

  .modal__image {
    margin-bottom: 8px;
  }

  /* 固定従量料金単価 */

  .modal__juryo__list {
    display: block;
  }
}

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

.steps__section {
  padding: 0 24px;
  background-color: #fff9f2;
}
.steps__wrap {
  padding-top: 48px;
  max-width: 1120px;
  margin: 0 auto;
}
.steps__wrap > h3 {
  text-align: center;
}

/* タブ */
.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;
}
.steps__item:nth-child(n + 1) {
  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__section {
    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;
  }
  .steps__item:nth-child(n + 1) {
    margin-top: 16px;
  }
  .steps__head-area {
    min-width: inherit;
  }
  .steps__text-area {
    margin-top: 16px;
  }
}

/* お客さまの声 */

.review__section {
  padding: 0 24px;
  background-color: #fff9f2;
}
.review__wrap {
  padding: 48px 0;
  max-width: 1120px;
  margin: 0 auto;
}
.review__wrap > h3 {
  text-align: center;
}
.review__column {
  display: flex;
  gap: 32px;
  margin-top: 28px;
  margin-bottom: 16px;
}
.review__item {
  background-color: #fff;
  border-radius: 8px;
  padding: 24px;
}
.review__text {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.8;
  margin-top: 24px;
}
.review__item__column {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
}
.review__item__column > img {
  width: 86px;
}
.review__cap {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 700;
}

@media only screen and (max-width: 768px) {
  .review__section {
    padding: 0 16px;
  }
  .review__wrap {
    padding: 48px 0;
  }
  .review__column {
    display: block;
    margin-top: 24px;
    margin-bottom: 0;
  }
  .review__item:nth-child(n + 1) {
    margin-top: 16px;
  }
}

/*
関連リンク
*/

.related {
  margin-top: 30px;
  padding-top: 20px;
}

.related-section {
  padding: 0 15px;
}

.related-section > h3 {
  text-align: center;
}

.related-column {
  display: flex;
  max-width: 1120px;
  margin: 0 auto;
  margin-bottom: 10px;
  list-style: none;
  gap: 2%;
  padding: 0;
}

.related-column li {
  width: 32%;
  background-color: #fff;
  min-height: auto;
  border-radius: 6px;
  transition-duration: 0.2s;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

@media (hover: hover) {
  .related-column li:hover {
    opacity: 0.8;
  }
}

.related-column li > a {
  text-decoration: none;
}

.related-column li img {
  width: 100%;
}

.related-textarea {
  padding: 15px 15px 15px;
  position: relative;

  color: #4c4c4c;
}

.related-heading {
  font-size: 15px;
  font-weight: bold;
  margin: 0;
}

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

  .related-column {
    display: block;
  }

  .related-column li {
    width: 100%;
    margin-top: 15px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  }

  .related-column li > a {
    display: flex;
  }

  .related-column li img {
    width: 130px;
    height: auto;
    padding: 15px;
    align-self: flex-start;
  }

  .related-textarea {
    padding-left: 0;
  }
}

/*
FAQ
*/

.faq-section {
  padding: 0 15px;
  margin-top: 50px;
  margin-bottom: 40px;
}

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

.faq-wrap > h3 {
  text-align: center;
}

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

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

.faq-summary::-webkit-details-marker {
  /* Safariで表示されるデフォルトの三角形アイコンを消します */
  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 {
  margin-top: 8px;
  margin-bottom: 8px;
}

.faq-button {
  max-width: 130px;
  margin-top: 24px;
}

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

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

/* 
お申し込み
*/

.apply-section {
  padding: 0 24px;
  margin-bottom: 40px;
}

.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__flex-box {
  max-width: 952px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 16px;
  margin: auto auto 0;
}

.apply__flex-box__item {
  width: 100%;
}

.apply-button-sub {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: 700;
  color: #fa8200;
  margin-top: 24px;
}

.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-sw-button {
  display: inline-flex;
  align-items: center;
  font-size: 18px;
  line-height: 1.5;
  padding: 24px 16px 24px 24px;
  margin-top: 16px;
  text-align: left;
}

.apply-sw-button::before {
  content: "";
  display: inline-block;
  width: 52px;
  height: 52px;
  margin-right: 12px;
  vertical-align: middle;
  background-image: url("../images/apply-sw-button.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.apply-re-button {
  display: inline-flex;
  align-items: center;
  font-size: 18px;
  line-height: 1.5;
  padding: 24px 16px 24px 24px;
  margin-top: 16px;
  text-align: left;
  background-color: #259d63;
}

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

.apply-re-button::before {
  content: "";
  display: inline-block;
  width: 52px;
  height: 52px;
  margin-right: 16px;
  vertical-align: middle;
  background-image: url("../images/apply-re-button.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.apply-note {
  margin-top: 10px;
  text-align: center;
  margin-bottom: 0;
}

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

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

  .apply-heading-sub {
    font-size: 16px;
  }
  .apply-heading {
    font-size: 24px;
    line-height: 1.5;
    margin-top: 8px;
  }

  .apply__flex-box {
    width: 100%;
    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-sw-button {
    font-size: 16px;
    padding: 24px 16px;
    max-width: inherit;
    margin-top: 8px;
  }

  .apply-sw-button::before {
    width: 42px;
    height: 42px;
    margin-right: 12px;
  }

  .apply-re-button {
    font-size: 16px;
    padding: 24px 16px;
    max-width: inherit;
    margin-top: 12px;
  }

  .apply-re-button::before {
    width: 42px;
    height: 42px;
    margin-right: 12px;
  }

  .apply-note {
    margin-top: 10px;
    text-align: left;
  }
}

/*
コンタクト
*/

.contact-section {
  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-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;
}
.contact-button {
  max-width: 356px;
  margin-top: 8px;
  margin-bottom: 8px;
  line-height: 1.2;
}
.contact-button > span {
  font-size: 14px;
}

@media only screen and (max-width: 768px) {
  .contact-section {
    padding: 40px 16px;
  }
  .contact-culumn {
    display: block;
  }
  .contact-culumn-item {
    padding: 40px 16px;
  }
  .contact-culumn-item:nth-child(2) {
    margin-top: 16px;
  }
  .contact-tel {
    font-size: 40px;
  }
  .contact-tel-note {
    font-size: 14px;
  }

  .contact-button {
    max-width: inherit;
  }
}

/* 
フッター
*/

.footer-section {
  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-sitemap {
    display: block;
    margin-top: 40px;
  }

  .footer-sitemap-item {
    margin-top: 16px;
  }

  .footer-sns {
    gap: 20px;
  }

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

  .footer-copyright {
    margin-top: 40px;
  }
}
