/* 
共通
*/
html {
  cursor: auto;
}

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;
  color: #333;
  text-align: center;
  overflow-y: scroll; /* モーダル時にもスクロールバー表示 */
}

.text-link {
  color: #fa8200;
  text-decoration: none;
  border-bottom: 1px solid #fa8200;
  padding-bottom: 0.5px;
}

.text-link:hover {
  opacity: 0.8;
}

.nav-open {
  position: fixed;
}

img {
  max-width: 100%;
  height: auto;
}

.sp {
  display: none;
}

.pc-br {
  display: block;
}

.sp-br {
  display: none;
}

.btn {
  display: block;
  width: 100%;
  padding: 15px 0;
  margin: 0 auto;
  color: #fff;
  text-decoration: none;
  text-align: center;
  font-weight: bold;
  background: #fa8200;
  border-radius: 45px;
  transition-duration: 0.2s;
  cursor: pointer; /*hrefが入らない場合*/
}

.btn:hover {
  opacity: 0.8;
}

h3 {
  font-size: 32px;
  font-weight: bold;
  margin: 0;
  line-height: 1.2;
}

.h3_cap {
  font-size: 16px;
  text-align: center;
  color: #fa8200;
  font-weight: bold;
  margin: 10px 0 30px;
  line-height: 1;
}

.note {
  font-size: 14px;
  line-height: 1.6;
  text-align: left;
  margin: 10px 0 20px;
}

@media only screen and (max-width: 768px) {
  .pc {
    display: none;
  }

  .sp {
    display: block;
  }

  .pc-br {
    display: none;
  }

  .sp-br {
    display: block;
  }

  .h3-cap {
    margin: 10px 0 20px;
  }
}

/*
ヘッダー
*/

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 15px;
}

h1 img {
  display: block;
  width: 260px;
}

header nav ul {
  display: flex;
  align-items: center;
  gap: 30px;
  font-weight: bold;
}

header nav ul li a {
  font-size: 14px;
  text-decoration: none;
  color: #333;
  transition-duration: 0.2s;
}

header nav ul li a:hover {
  color: #fa8200;
}

.nav-btn {
  padding: 10px 15px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.nav-btn:hover {
  color: #fff;
}

.hamburger,
.black_bg {
  display: none;
}

@media only screen and (max-width: 1200px) {
  header {
    padding: 0 15px;
    position: absolute;
  }
  h1 {
    margin: 16px 0;
  }
  h1 img {
    width: 182px;
  }
  header nav {
    display: none;
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    padding-top: 60px;
    background-color: #fa8200;
    transition: all 0.6s;
    z-index: 200;
    overflow-y: auto; /* メニューが多くなったらスクロールできるように */
  }
  .hamburger {
    display: initial;
    position: absolute;
    right: 15px;
    top: 10px;
    width: 40px; /* クリックしやすい幅 */
    height: 40px; /* クリックしやすい高さ */
    cursor: pointer;
    z-index: 300;
  }

  .hamburger_border {
    position: absolute;
    left: 11px;
    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;
  }
  .nav-open .hamburger_border_top {
    transform: rotate(45deg);
    top: 20px;
    background-color: #fff;
  }
  .nav-open .hamburger_border_center {
    width: 0;
    left: 50%;
    background-color: #fff;
  }
  .nav-open .hamburger_border_bottom {
    transform: rotate(-45deg);
    top: 20px;
    background-color: #fff;
    margin-bottom: 15px;
  }

  .nav-open header nav ul {
    display: block;
    text-align: left;
    padding: 0 15px;
  }

  .nav-open header nav ul li a {
    display: inline-block;
    font-size: 16px;
    color: #fff;
    padding: 17px 17px 17px 0;
  }

  .nav-open .nav-btn {
    background-color: #fff;
    color: #fa8200;
    padding: 12px;
    margin-top: 17px;
  }
}

/*
メイン
*/

/*
メインビジュアル
*/

.main > img {
  width: 100%;
  padding: 0 15px;
}

@media only screen and (max-width: 1200px) {
  .main > img {
    margin-top: 60px;
  }
}

@media only screen and (max-width: 768px) {
  .main > img {
    padding: 0;
    margin-top: 0;
  }
}

/* 
申し込み
*/

.apply {
  width: 100%;
  background-color: #fa8200;
  padding: 40px 15px;
  margin-top: 30px;
}

.apply-heading {
  font-size: 26px;
  font-weight: bold;
  color: #fff;
  margin: 0;
  margin-bottom: 30px;
}

.apply-column {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  max-width: 700px;
  margin: 0 auto;
  gap: 15px;
}

.apply-column a {
  font-size: 18px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.apply-column a:hover {
  opacity: 0.8;
}

.apply-item {
  flex: 1;
}

.apply-note {
  font-size: 14px;
  text-align: left;
  color: #fff;
  margin: 0;
  margin-top: 10px;
}

@media only screen and (max-width: 768px) {
  .apply {
    padding: 0 15px 35px;
    margin-top: 0;
  }

  .apply-heading {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .apply-column {
    display: block;
  }

  .apply-column a {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  }
}

/* トピックス */

.topics-section {
  padding: 40px 24px;
  background: #fafafa;
}

.topics-wrap {
  max-width: 1080px;
  margin: 0 auto;
}

.topics-heading {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
}

.topics-column {
  display: flex;
  gap: calc(56px / 3);
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.topics-column-item {
  width: 256px;
  min-width: 256px;
  transition: 0.3s ease; /* ゆっくり変化させる */
}

.topics-column-item > a {
  display: block;
}

@media (hover: hover) {
  .topics-column-item:hover {
    opacity: 0.8;
  }
}

@media only screen and (max-width: 1080px) {
  .topics-section {
    padding: 40px 0;
  }
  .topics-column {
    padding: 0 16px;
    overflow-x: scroll;
  }
}

/*
コンセプト
*/
#concept {
  padding-top: 20px;
  width: 100%;
  margin: 0 auto;
  font-size: 16px;
}

#about {
  width: 100%;
  margin: 0 auto;
  padding: 15px;
  background: url(../images/content_back.jpg) repeat top center;
  background-size: 1920px auto;
}

.overview {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 15px;
}

.overview > h2 {
  margin: 0;
}

.overview-heading {
  display: inline-block;
  font-size: 50px;
  margin: 0;
  padding: 2px 25px 10px;
  color: #fa8200;
  border-radius: 12px;
  line-height: 1;

  display: flex;
  justify-content: center;
  align-items: baseline;
}

.overview-heading-span {
  position: relative;
  padding: 0 25px 0 35px;
}

.overview-heading-span::before,
.overview-heading-span::after {
  content: "";
  width: 2px;
  height: 70px;
  background-color: #fa8200;
  margin-top: 4px;
  top: 30px;
  position: absolute;
}

.overview-heading-span::before {
  left: 0;
  transform: rotate(-35deg);
}
.overview-heading-span::after {
  right: 0;
  transform: rotate(35deg);
}

.overview-zero {
  font-size: 90px;
  margin: 0 4px 0 5px;
  vertical-align: -2px;
}

.overview-yen {
  font-size: 38px;
}

.overview-heading sup {
  font-size: 60%;
  position: relative;
}

.overview-lead {
  font-size: 56px;
  margin: 0;
  margin-top: 6px;
  margin-bottom: 40px;
}

.overview-lead > span {
  color: #ff6318;
}

.overview-note {
  text-align: center;
  font-weight: normal;
  margin: 0;
  margin-top: 15px;
  margin-bottom: 30px;
  text-align: left;
}

.overview-text {
  font-size: 20px;
  line-height: 1.8;
  text-align: left;
}

.overview-eco {
  display: inline-block;
  cursor: pointer;
  width: 50%;
}

/* 
キャンペーン
*/

#campaign {
  background-color: #fff9f2;
  padding: 30px 15px 40px;
}
.campaign_container {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}

.campaign_container > h3 {
  margin: 0;
}

.campaign_area {
  display: flex;
  gap: 2%;
  margin-top: 20px;
}

.cap_area {
  font-size: 16px;
  line-height: 34px;
  margin-top: 20px;
}

.cap_btn {
  display: block;
  width: 400px;
  padding: 15px 0;
  margin: 0 auto;
  color: #fff;
  text-decoration: none;
  text-align: center;
  font-weight: 700;
  background: #fa8200;
  border-radius: 45px;
  transition-duration: 0.2s;
  cursor: pointer;
}

@media only screen and (max-width: 768px) {
  .cap_btn {
    width: 90%;
    font-size: 18px;
  }
}

.campaign_area a > img {
  width: 100%;
}

.campaign_area a > img:hover {
  opacity: 0.8;
  transition: 0.2s;
}

@media screen and (max-width: 768px) {
  .campaign_area {
    display: block;
  }

  .campaign_area > picture:first-child > img {
    margin-bottom: 10px;
  }

  .campaign_area a {
    display: block;
    margin-top: 15px;
  }

  .campaign_area a > img {
    width: 100%;
  }
}

/* リスク */

.risk {
  width: 100%;
  margin: 0 auto;
  margin-top: 50px;
  padding: 50px 15px;
  background-color: #fff9f2;
}

.risk > h3 {
  font-size: 26px;
  line-height: 1.8;
  background-color: #cc0000;
  color: #fff;
  max-width: 1080px;
  margin: 0 auto;
}

.risk-text {
  font-size: 18px;
  line-height: 1.8;
  max-width: 1080px;
  margin: 0 auto;
  margin-top: 15px;
  text-align: left;
}

.risk-wrap {
  display: flex;
  justify-content: space-between;
  max-width: 1080px;
  margin: 0 auto;
  margin-top: 30px;
  text-align: left;
  gap: 20px;
}

.risk-wrap div p {
  font-weight: bold;
}

.risk-note {
  max-width: 1080px;
  margin: 0 auto;
  margin-top: 15px;
}

@media only screen and (max-width: 768px) {
  .concept {
    padding: 30px 0 0;
  }

  .overview {
    padding-bottom: 30px;
  }

  .overview > h2 {
    font-size: 32px;
    margin: 0;
  }

  .overview-heading {
    font-size: 28px;
    border-radius: 6px;
  }

  .overview-heading-span {
    padding: 0 20px 0 25px;
  }

  .overview-heading-span::before,
  .overview-heading-span::after {
    width: 2px;
    height: 40px;
    top: 5px;
  }

  .overview-zero {
    font-size: 44px;
    margin: 0 4px 0 5px;
    vertical-align: -2px;
  }

  .overview-yen {
    font-size: 20px;
  }

  .overview-lead {
    font-size: 30px;
    margin-top: 0;
    margin-bottom: 10px;
  }

  .overview-text {
    text-align: left;
    font-size: 16px;
  }

  .overview-eco {
    margin-top: 10px;
    width: 100%;
  }

  .overview-note {
    margin-bottom: 20px;
  }

  /* リスク */

  .risk {
    margin-top: 0;
    padding: 30px 0;
  }

  .risk > h3 {
    font-size: 20px;
    line-height: 1.5;
    padding: 10px 0;
  }

  .risk > h3 span {
    font-size: 20px;
  }

  .risk-text {
    font-size: 16px;
    text-align: left;
    margin-top: 12px;
    padding: 0 15px;
  }

  .risk-wrap {
    display: block;
    padding: 0 15px;
    margin-top: 20px;
  }

  .risk-wrap div:nth-child(2) {
    margin-top: 15px;
  }

  .risk-wrap div p {
    font-size: 14px;
    margin-top: 20px;
    margin-bottom: 10px;
  }

  .risk-note {
    padding: 0 15px;
  }
}

/*
3つのポイント
*/

.feature {
  padding: 50px 0;
  background-color: #fa8200;
}

.feature-section {
  padding: 0 15px;
}

.feature-section h3,
.feature-section .h3-cap {
  color: #fff;
}

.feature-column {
  display: flex;
  max-width: 1080px;
  margin: 0 auto;
  margin-bottom: 10px;
  list-style: none;
  gap: 2%;
  padding: 0;
}

.feature-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;
  padding: 15px;
}

.feature-column li img {
  width: 100%;
  border-radius: 6px 6px 0 0;
}

.feature-wrap {
  display: flex;
  align-items: center;
  margin-top: 15px;
}

.feature-number {
  width: 45px;
  height: 45px;
  line-height: 45px;
  background-color: #fa8200;
  font-weight: bold;
  color: #fff;
  font-size: 20px;
  margin: 0;
}

.feature-heading {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5rem;
  color: #333;
  text-align: left;
  margin: 0;
  margin-left: 10px;
}

.feature-text {
  font-size: 16px;
  color: #333;
  text-align: left;
  line-height: 1.6rem;
  margin: 0;
  margin-top: 10px;
}

@media only screen and (max-width: 768px) {
  .feature {
    padding: 30px 0 30px;
  }

  .feature-column {
    display: block;
    gap: 15px;
  }

  .feature-column li {
    width: 100%;
    margin-top: 15px;
  }
}

/*
料金体系
*/

.price {
  margin-top: 30px;
  padding-top: 20px;
}

.price-section {
  padding: 0 15px;
}

/* インフォグラフィック */

.price-table {
  box-sizing: border-box;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}

.price-table-wrap {
  align-items: center;
  max-width: 500px;
  margin: 0 auto;
}

.price-table-heading {
  background-color: #5abde7;
  color: #fff;
  margin: 0;
  padding: 10px 0;
  font-size: 24px;
  border-radius: 6px 6px 0 0;
}

.price-table-text {
  background-color: #abe3fc;
  margin: 0;
  padding: 15px;
  border-radius: 0 0 6px 6px;
}

.price-table-text-div {
  background-color: #fff;
  font-size: 22px;
  color: #333;
  margin: 0;
  margin-top: 35px;
  padding: 26.1px 15px;
}

.price-table-text-div > .note {
  text-align: center;
  font-weight: normal;
  margin: 0;
  margin-top: 2px;
  margin-bottom: 10px;
}

.price-table-text > div:nth-child(1) {
  margin-top: 0;
}

.price-table-amount {
  background-color: #1eb892;
  color: #fff;
  padding: 7px;
}

.price-table-amount:nth-child(1) {
  margin-top: 10px;
}

.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: -48px;
  position: relative;
  z-index: 2;
}

/* 電源調達料金単価の計算方法で使用 */
.price-table-plus-times {
  font-size: 24px;
  line-height: 34px;
}

.price-table-times {
  height: 32px;
  width: 32px;
  border-radius: 50%;
  line-height: 26px;
  text-align: center;
  background: #218dbc;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  margin: 0 auto;
  margin-top: -5px;
  margin-bottom: -5px;
  border: solid 2px #fff;
  position: relative;
  z-index: 2;
}

/* 新プラン */

.price-table-heading.new {
  background-color: #ff6318;
}

.price-table-text.new {
  background-color: #ffccb1;
}

.price-table-btn-wrap.new {
  background-color: #ffe9e3;
  margin-top: 10px;
}

.price-table-text-div.new {
  padding: 15px 15px;
}

.price-table-amount.new {
  background-color: #ff5033;
  margin: 0;
}

.price-btn {
  position: relative;
  padding: 15px 0;
  background-color: #ff5033;
  font-size: 18px;
  line-height: 1.2;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.price-btn:hover {
  opacity: 0.8;
}

.price-btn-plus {
  margin: -2px 0 -1px;
  color: #ff5033;
}

.price-btn::before {
  position: absolute;
  top: 14px;
  right: 20px;
  display: block;
  margin: auto;
  content: "";
  width: 20px; /* 横幅 */
  height: 20px; /* 高さ */
  border-radius: 50%; /* 角の丸み */
  background: #fff;
}

.price-btn::after {
  position: absolute;
  top: 20px;
  right: 27px;
  display: block;
  width: 6px;
  height: 6px;
  margin: auto;
  content: "";
  transform: rotate(135deg);
  border-top: 2px solid #ff5033;
  border-right: 2px solid #ff5033;
}

.price-btn2 {
  padding: 20px 0;
  background-color: initial;
  font-size: 16px;
  color: #333333;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  margin-top: 30px;
  max-width: 345px;
}

.price-btn2:hover {
  opacity: 0.7;
}

.price-table-plus.new,
.price-table-times.new {
  background: #ff5033;
}

.price-arrow {
  width: 70px;
  height: auto;
  transform: rotate(-90deg);
}

@media only screen and (max-width: 768px) {
  .price-table-wrap {
    display: block;
  }

  .price-table-text-div {
    margin-top: 40px;
    padding: 15px 15px;
  }

  /* 新プラン */

  .price-table.new {
    margin-top: 10px;
  }

  .price-table-heading.new {
    background-color: #ff6318;
  }

  .price-table-text.new {
    background-color: #ffccb1;
  }

  .price-table-btn-wrap.new {
    background-color: #ffe9e3;
    margin-top: 10px;
  }

  .price-table-amount.new {
    background-color: #ff5033;
    margin: 0;
  }

  .price-btn {
    font-size: 16px;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
  }

  .price-btn2 {
    margin-top: 20px;
  }

  .price-arrow {
    width: 90px;
    transform: initial;
  }
  .price-table-text-div > .note {
    font-size: 13px;
  }
}

/* サブ */

.price-section-sub {
  background-color: #fff9f2;
  padding: 50px 15px;
  margin-top: 50px;
}
.price-section-sub-text {
  line-height: 1.8;
  margin: 0;
  margin-top: 10px;
}

.price-wrap {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  max-width: 1080px;
  margin: 0 auto;
  text-align: left;
}

#price1,
#price2 {
  flex: 1;
  padding-top: 15px;
  margin-top: -15px;
}

.price-wrap h4 {
  font-size: 22px;
  font-weight: bold;
  display: inline-block;
  padding-left: 15px;
  position: relative;
  margin: 0;
}

.price-wrap h4:before {
  content: ""; /*疑似要素の中身を指定*/
  position: absolute; /*絶対位置指定*/
  left: 0; /*横位置の指定*/
  top: 25%; /*縦位置の指定*/
  background: #fa8200; /*線の色指定*/
  width: 3px; /*線の幅指定*/
  height: 20px; /*線の高さ指定*/
}

.price-wrap-inner {
  background-color: #fff;
  padding: 20px;
  border-radius: 6px;
  margin-top: 10px;
}

.price-wrap-inner:nth-of-type(1) {
  margin-top: 15px;
}

.price-wrap-inner p {
  font-size: 14px;
  line-height: 1.4rem;
  margin: 0;
}

.price-wrap-inner-heading {
  font-size: 17px !important;
  font-weight: bold;
  margin: 0;
  padding-bottom: 5px;
  color: #fa8200;
}

.price1-table {
  margin-top: 20px;
}

.price1-table .price-table-amount {
  margin-top: 0;
  font-size: 18px;
}

#price2 .price-table > p {
  font-size: 18px;
  font-weight: bold;
  margin: 0;
  margin-top: 20px;
  margin-bottom: 10px;
  text-align: left;
}

.price-table table {
  width: 100%;
  text-align: center;
  border-collapse: collapse;
  border-spacing: 0;
  border: solid 2px #fa8200;
  background: #fff;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}
.price-table table th {
  padding: 15px;
  background: #fa8200;
  border-bottom: solid 2px #fa8200;
  color: #fff;
}
.price-table table td {
  padding: 15px;
  border: dashed 1px #fee9d2;
}

.price-table table td:nth-of-type(2) {
  font-size: 18px;
  color: #fa8200;
}

.price-table table tr {
  border: solid 1px #fdd9b2;
}

@media only screen and (max-width: 768px) {
  .price {
    margin-top: 10px;
    padding-top: 20px;
  }

  .price1-img {
    margin-bottom: 20px;
  }

  .price-section-sub {
    padding: 30px 15px;
    margin-top: 40px;
  }

  .price-wrap {
    display: block;
  }

  .price-wrap-inner {
    padding: 15px;
  }

  .price-wrap-inner:first-of-type {
    margin-top: 15px;
  }

  .price-wrap-inner p {
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
  }

  .price-wrap-inner-heading {
    line-height: 1;
  }

  .price1-table {
    margin-top: 20px !important;
  }
}

/*
cv
*/

.cv {
  width: 100%;
  background-color: #fa8200;
  padding: 30px;
}

.cv-column {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 700px;
  margin: 0 auto;
  gap: 15px;
}

.cv-column a {
  font-size: 18px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.cv-column a:hover {
  opacity: 0.8;
}

.cv-btn1 {
  border: solid 2px;
}

.cv-btn2 {
  background-color: #fff;
  color: #fa8200;
  border: 2px solid #fff;
}

@media only screen and (max-width: 768px) {
  .cv-column {
    display: block;
  }

  .cv-column a {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  }

  .cv-btn2 {
    margin-top: 13px;
  }
}

/*
use
*/

.use {
  margin-top: 30px;
  padding-top: 20px;
}

/*タブ切り替え全体のスタイル*/
.use-tab {
  background-color: #fff;
  max-width: 1080px;
  margin: 0 auto;
}

/*タブのスタイル*/
.tab-item {
  position: relative;
  width: calc(100% / 2);
  background-color: #808080;
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  color: #fff;
  float: left;
  transition: all 0.2s ease;
  padding: 15px;
}
.tab-item:hover {
  opacity: 0.8;
  cursor: pointer;
}

.tab-item > p {
  margin: 0;
  line-height: 1.3;
  padding-left: 80px;
}
.tab-item > img {
  position: absolute;
  width: auto;
  height: 120px;
}

.tab-item-alone > img {
  transform: translate(-100%, -34%);
}

.tab-item-family > img {
  transform: translate(-120%, -34%);
}

.tab-item-sub {
  font-size: 14px;
  display: block;
}

/*ラジオボタンを全て消す*/
input[name="tab-item"] {
  display: none;
}

/*タブ切り替えの中身のスタイル*/
.tab_content {
  display: none;
  padding: 40px;
  clear: both;
  overflow: hidden;
  background-color: #fff9f2;
}

/*選択されているタブのコンテンツのみを表示*/
#alone:checked ~ #alone_content,
#family:checked ~ #family_content {
  display: block;
}

/*選択されているタブのスタイルを変える*/
.use-tab input:checked + .tab-item {
  background-color: #fa8200;
}

.use-tab input:checked + .tab-item :before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -12px;
  border: 12px solid transparent;
  border-top: 12px solid #fa8200;
}

.tab_content-heading {
  font-size: 28px;
  font-weight: bold;
  margin: 0;
  margin-top: 5px;
}

.tab_content-heading > span {
  color: #fa8200;
}

.tab_content-text {
  font-size: 18px;
}

.use-column {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-top: 30px;
}

.use-column-item1 {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.use-battery {
  text-align: left;
  background-color: #fff;
  padding: 20px;
  max-width: 400px;
}

.use-column-item2 {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.use-column-item2 > img {
  width: 55px;
}
.use-column-battery-heading {
  font-weight: bold;
  line-height: 1.5;
  color: #fa8200;
  margin: 0;
}

.use-column-battery-text {
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
  margin-top: 5px;
}

.use-battery-btn {
  margin-top: 15px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.use-battery-btn:hover {
  opacity: 0.8;
}

.use-tab-alert {
  background-color: #fff;
  border: solid 4px #cc0000;
  margin-top: 20px;
}

.use-tab-alert-heading {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  padding: 0 0 5px;
  background-color: #cc0000;
  margin: 0;
}

.use-tab-alert-heading > img {
  width: 23px;
  margin-right: 5px;
  padding-bottom: 2px;
}

.use-tab-alert-text {
  font-size: 15px;
  font-weight: bold;
  padding: 10px;
  margin: 0;
}

.use-section-dr {
  max-width: 1080px;
  margin: 0 auto;
  margin-top: 30px;
  padding: 40px;
  background-color: #fa8200;
}

.use-section-dr > p {
  font-size: 26px;
  font-weight: bold;
  line-height: 1.4;
  color: #ffffff;
  margin: 0;
}

.dr-btn {
  margin-top: 15px;
  max-width: 360px;
  background-color: #fff;
  color: #fa8200;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

@media only screen and (max-width: 768px) {
  .use {
    margin-top: 10px;
    padding-top: 20px;
  }

  /*タブのスタイル*/
  .tab-item {
    font-size: 18px;
  }

  .tab-item-alone {
    padding-left: 20px;
  }

  .tab-item-family {
    padding-left: 20px;
  }

  .tab-item-sub {
    font-size: 12px;
  }

  /*タブ切り替えの中身のスタイル*/
  .tab_content {
    padding: 30px 15px;
    text-align: center;
  }

  .tab-item > p {
    padding-left: 50px;
  }
  .tab-item > img {
    height: 80px;
  }

  .tab-item-alone > img {
    transform: translate(-115%, -18%);
  }

  .tab-item-family > img {
    transform: translate(-120%, -18%);
  }

  .tab-item-sub {
    font-size: 12px;
    display: block;
  }

  .tab_content-heading {
    font-size: 21px;
    text-align: center;
  }

  .tab_content-text {
    line-height: 1.6;
    margin: 0;
    margin-top: 15px;
    text-align: left;
  }

  .use-column {
    display: block;
    margin-top: 20px;
  }

  .use-column-item1 {
    max-width: initial;
  }

  .use-tab-alert {
    margin-top: 15px;
  }

  .use-tab-alert-heading {
    text-align: center;
  }

  .use-tab-alert-text {
    text-align: left;
  }

  .use-battery {
    margin: 0 auto;
    margin-top: 20px;
  }

  .use-section-dr {
    margin-top: 0;
    padding: 30px 15px;
  }

  .use-section-dr > p {
    font-size: 18px;
    line-height: 1.6;
  }

  .use-battery-btn,
  .dr-btn {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  }
}

/*
お申し込みの流れ
*/

.steps {
  padding: 50px 0;
  background-color: #fff9f2;
  margin-top: 50px;
}

.steps-section {
  padding: 0 15px;
}

.steps-column {
  display: flex;
  max-width: 1080px;
  margin: 0 auto;
  margin-bottom: 10px;
  list-style: none;
  gap: 2%;
  padding: 0;
}

.steps-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;
  padding: 30px;
}

.steps-column li img {
  max-width: 100%;
  border-radius: 6px 6px 0 0;
}

.steps-wrap {
  align-items: center;
  margin-top: 15px;
}

.steps-heading {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.7rem;
  color: #333;
  margin: 0;
  margin-top: 15px;
}

.steps-text {
  font-size: 16px;
  color: #333;
  text-align: left;
  line-height: 1.6rem;
  margin: 0;
  margin-top: 15px;
}

.steps__button-area {
  margin-top: 40px;
  margin-bottom: 32px;
}

@media only screen and (max-width: 768px) {
  .steps {
    padding: 30px 0;
    margin: 0;
  }

  .steps-column {
    display: block;
  }

  .steps-column li {
    display: flex;
    width: 100%;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 15px;
    margin-top: 15px;
  }
  .steps-column li img {
    width: 85px;
    height: 85px;
  }
  .steps-wrap {
    margin: 0;
    margin-left: 10px;
  }

  .steps-heading {
    font-size: 18px;
    line-height: 1.6rem;
    margin: 0;
    text-align: left;
  }

  .steps-text {
    font-size: 14px;
    line-height: 1.5rem;
    margin-top: 5px;
  }
}

/*
選ばれる理由
*/

.reason {
  margin-top: 30px;
  padding-top: 20px;
}

.reason-section {
  padding: 0 15px;
}

.reason-column {
  display: flex;
  max-width: 1080px;
  margin: 0 auto;
  margin-bottom: 10px;
  list-style: none;
  gap: 2%;
  padding: 0;
}

.reason-column li {
  display: flex;
  width: 64%;
  background-color: #fff;
  min-height: auto;
  border-radius: 6px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  padding: 30px;
}

.reason-column li img {
  width: 100px;
  height: 100px;
}

.reason-wrap {
  margin-left: 20px;
}

.reason-heading {
  font-size: 19px;
  font-weight: bold;
  line-height: 1.7rem;
  color: #333;
  margin: 0;
  text-align: left;
}

.reason-text {
  font-size: 15px;
  color: #333;
  text-align: left;
  line-height: 1.5rem;
  margin: 0;
  margin-top: 5px;
}

@media only screen and (max-width: 768px) {
  .reason {
    margin-top: 10px;
    padding-top: 20px;
  }

  .reason-column {
    flex-wrap: wrap;
    gap: 15px;
  }

  .reason-column li {
    display: block;
    width: calc(100% / 2 - 7.5px);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 15px;
  }

  .reason-column li img {
    width: 80px;
    height: 80px;
  }

  .reason-wrap {
    margin-left: initial;
    margin-top: 10px;
  }

  .reason-heading {
    font-size: 18px;
    text-align: center;
  }

  .reason-text {
    font-size: 14px;
    line-height: 1.6;
    margin-top: 10px;
  }
}

/*
省エネ
*/

.saving {
  margin-top: 30px;
  padding-top: 20px;
}

.saving-section {
  padding: 0 15px;
}

.saving-h3-sub {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: bold;
  color: #808080;
  margin: 0;
  margin-bottom: 8px;
}

.saving-h3-sub::before,
.saving-h3-sub::after {
  content: "";
  width: 2px;
  height: 20px;
  background-color: #808080;
  margin-top: 4px;
}

.saving-h3-sub::before {
  margin-right: 10px;
  transform: rotate(-35deg);
}
.saving-h3-sub::after {
  margin-left: 10px;
  transform: rotate(35deg);
}

.saving-column {
  display: flex;
  max-width: 1080px;
  margin: 0 auto;
  margin-bottom: 10px;
  list-style: none;
  gap: 2%;
  padding: 0;
}

.saving-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;
}

.saving-column li:hover {
  opacity: 0.8;
}

.saving-column li > a {
  text-decoration: none;
  cursor: pointer;
}

.saving-column li img {
  width: 100%;
  border-radius: 6px 6px 0 0;
}

.saving-heading {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  padding: 15px 15px 15px;
  margin: 0;
  text-align: left;
}

@media only screen and (max-width: 768px) {
  .saving {
    margin-top: 10px;
    padding-top: 20px;
  }

  .saving-column {
    flex-wrap: wrap;
    gap: 15px;
  }

  .saving-column li {
    width: calc(100% / 2 - 7.5px);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  }
}

/* モーダルCSS */
.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: 100%;
  max-width: 800px;
  height: 90%;
  padding: 40px 0 0px;
  background-color: #fff;
  overflow: auto;
}

.closeModal {
  font-size: 40px;
  font-weight: lighter;
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  cursor: pointer;
}

.modal_title {
  font-size: 24px;
  text-align: center;
  font-weight: bold;
  margin-bottom: 20px;
}

.modalContents > img {
  width: 100%;
}

.modal-textarea {
  text-align: left;
  padding: 30px;
}

.modal-textarea > img {
  max-width: 100%;
}

.modal-text {
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
  margin-bottom: 25px;
}

.modal-text:last-child {
  margin-bottom: 0;
}

.modal-heading {
  font-size: 15px;
  margin: 0;
  margin-bottom: 5px;
  font-weight: bold;
}

.modal-heading > span {
  color: #fa8200;
  padding-right: 5px;
}

/*
eco オプション
*/

.eco-modalWrapper {
  max-width: 500px;
  padding: 80px 0 0;
}

.modal-eco-h2 {
  font-size: 26px;
  font-weight: bold;
  margin: 0;
  margin-top: 20px;
  margin-bottom: 15px;
}
.modal-eco-h2 > span {
  color: #1f990f;
}

.modal-eco-h3 {
  font-size: 25px;
  font-weight: bold;
  text-align: center;
  margin: 0;
  margin-bottom: 15px;
}

.modal-eco-text {
  font-size: 18px;
  line-height: 1.6;
  text-align: left;
  margin: 0;
}
.modal-eco-note {
  font-size: 15px;
  line-height: 1.6;
  text-align: left;
  margin: 0;
  margin-top: 10px;
}

@media only screen and (max-width: 768px) {
  .eco-modalWrapper {
    padding: 60px 0 0 !important;
  }

  .modal-eco-h2 {
    font-size: 18px;
  }

  .modal-eco-h3 {
    font-size: 24px;
  }

  .modal-eco-text {
    font-size: 15px;
  }
  .modal-eco-note {
    font-size: 13px;
  }
}

/* 料金体系モーダル */

.modalWrapper-price {
  max-width: 1080px;
  padding: 30px;
}

.modal-price-table-wrap {
  display: flex;
  max-width: initial;
  margin-top: 30px;
}

.modal-price-text-div {
  position: relative;
  padding: 12px 0;
  background-color: #ff5033;
  font-size: 22px;
  color: #fff;
  line-height: 1.2;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  margin: 0;
}

@media only screen and (max-width: 768px) {
  .modal-price-table-wrap {
    display: block;
    padding: 0 15px 15px 15px;
    margin-top: 20px;
  }

  .modal-price-text-div {
    font-size: 18px;
  }

  .modal-price-table-text-div {
    font-size: 20px;
  }
}

/* コンセプト */

.eco-concept-section {
  padding: 0 15px;
  padding-bottom: 30px;
}

.concept_container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 40px 0 0;
  text-align: center;
}

.concept_text {
  font-size: 16px;
  line-height: 34px;
  margin-top: 20px;
}

.concept_text p {
  margin-bottom: 20px;
}

.concept_container_sub {
  background-color: #f7f7f7;
  padding: 20px;
  margin-top: 30px;
}

.concept_container_sub > h4 {
  font-size: 23px;
  margin: 0;
}

.concept_text_sub {
  font-size: 16px;
  line-height: 1.7;
  margin-top: 20px;
}
.concept-drbox {
  background: #eee;
  padding: 25px 25px 5px;
  margin: 0 15px;
}
.concept-drbox h3 {
  color: #fa8200;
  font-size: 24px;
}
.concept-drbox h3 .sub {
  font-size: 80%;
}

@media screen and (max-width: 768px) {
  #concept {
    padding: 30px 0 0;
  }
  .concept_container {
    padding: 0 15px 0;
  }
  .concept_ttl {
    font-size: 18px;
    line-height: 28px;
    margin: 0;
    margin-bottom: 10px;
    padding: 0;
  }
  .concept_text {
    font-size: 15px;
    line-height: 28px;
    text-align: left;
    margin-top: 15px;
  }
  .concept_container_sub {
    padding: 20px;
  }
  .concept_container_sub > h4 {
    font-size: 19px;
    margin: 0;
  }
  .concept_text_sub {
    text-align: left;
  }
}

/* STEPS */
#steps {
  width: 100%;
  margin: 0 auto;
  padding: 40px 15px;
}

.steps_container {
  max-width: 1080px;
  margin: 0 auto;
}

#steps .box-list {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-top: 40px;
  display: flex;
  gap: 2%;
}
#steps .box-list img {
  margin-top: 10px;
  margin-bottom: 10px;
}

#steps .box-list li {
  width: 32%;
  background-color: #fff9f2;
  border-radius: 6px;
  text-align: center;
  padding: 15px;
  position: relative;
}

#steps ul li h4 {
  font-size: 18px;
  line-height: 24px;
  font-weight: bold;
  margin-bottom: 10px;
  display: inline;
}

.steps_text {
  font-size: 15px;
  line-height: 26px;
  margin: 10px 0 25px;
}

#steps .num {
  display: block;
  font-size: 44px;
  font-weight: bold;
  color: #fa8200;
  position: absolute;
  top: -35px;
  left: 10px;
  letter-spacing: 1.5px;
}

@media only screen and (max-width: 768px) {
  #steps {
    padding: 30px 0 0;
  }

  .steps_container {
    display: block;
    padding: 0 15px;
  }

  #steps .box-list {
    margin-top: 20px;
    display: block;
  }

  #steps .box-list li {
    width: 100%;
    margin-bottom: 50px;
    min-height: initial;
    display: flex;
    height: auto;
    padding: 15px;
    margin-bottom: 30px;
  }

  #steps .box-list li img {
    width: 60px;
    height: auto;
    align-self: flex-start;
    margin-top: 0;
  }

  .steps_textarea {
    text-align: left;
    padding: 0;
    padding-left: 15px;
  }

  #steps .num {
    font-size: 38px;
    left: initial;
    top: -30px;
    right: 10px;
  }

  .steps_text {
    margin: 5px 0 0;
  }

  #steps ul li:last-child {
    margin-bottom: 0;
  }
}

/* 申し込み*/

.eco-apply-section {
  display: block;
  background-color: #1f990f;
  margin-top: 10px;
}

.eco-apply-column {
  display: block;
}

.eco-cv-btn2 {
  font-size: 16px !important;
  color: #1f990f;
  margin-top: 10px;
}

@media only screen and (max-width: 1024px) {
  .eco-apply-section {
    padding-top: 30px;
  }
  .apply-footer {
    padding-bottom: 0;
  }
}

/* こんなお客さまにおすすめ */

.eco-point-section {
  background-color: #f2f2f2;
  padding: 30px 15px;
}

.modal-eco-point-heading {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  background-color: #d73e41;
  text-align: center;
  padding: 10px;
  margin: 0;
}

.modal-eco-point-heading-biz {
  background-color: #152f50;
}

.modal-eco-point-wrap {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 10px;
  margin-bottom: 30px;
}

.modal-eco-point-wrap:last-child {
  margin-bottom: 0;
}

.modal-eco-point-item {
  width: 33%;
}

.modal-eco-point-item > p {
  font-size: 18px;
  font-weight: bold;
  margin: 0;
}

@media only screen and (max-width: 768px) {
  .modal-eco-point-heading {
    font-size: 14px;
    padding: 5px;
  }

  .modal-eco-point-wrap {
    margin-bottom: 20px;
  }

  .modal-eco-point-item > p {
    font-size: 12px;
  }
}

/* ご利用概要 */

.eco-overview-section {
  padding: 0 15px;
  padding-top: 30px;
}

.eco-overview-heading {
  font-size: 21px;
  font-weight: bold;
  background-color: #1f990f;
  color: #fff;
  padding: 10px;
  margin: 0;
  margin-bottom: 10px;
}

.eco-overview-wrap {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  text-align: left;
  padding: 20px;
  background-color: #f1f1f1;
  margin-top: 15px;
}

.eco-overview-wrap > img {
  width: 80px;
  height: auto;
}

.eco-overview-item-heading {
  font-size: 18px;
  font-weight: bold;
  margin: 0;
  margin-bottom: 3px;
}

.eco-overview-item-text {
  margin: 0;
  line-height: 1.6;
}

@media only screen and (max-width: 768px) {
  .eco-overview-heading {
    font-size: 16px;
  }

  .eco-overview-wrap > img {
    width: 60px;
  }

  .eco-overview-item-heading {
    font-size: 16px;
  }

  .eco-overview-item-text {
    font-size: 15px;
  }
}

/* 料金体系 */

.eco-price-section {
  padding: 0 15px;
  padding-top: 30px;
  text-align: left;
}

.eco-price-table > p {
  font-size: 20px;
  text-align: left;
}

.eco-price-table table {
  border: solid 2px #1f990f;
  margin-bottom: 0;
}
.eco-price-table table th {
  background: #1f990f;
  border-bottom: solid 2px #1f990f;
}
.eco-price-table table td {
  border: dashed 1px #bbe0b7;
}

.eco-price-table table td:nth-of-type(2) {
  color: #1f990f;
}

.eco-price-table table tr {
  border: solid 1px #bbe0b7;
}

@media only screen and (max-width: 768px) {
  .eco-price-table > p {
    font-size: 16px;
  }

  .eco-price-table table td {
    font-size: 15px !important;
  }
}

/* 各種書類 */

.eco-document-section {
  padding: 0 15px;
  padding-top: 30px;
}

.eco-btn {
  background-color: #1f990f;
  font-size: 18px;
  line-height: 1.2;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.eco-btn:last-child {
  margin-top: 10px;
}

.eco-btn:hover {
  opacity: 0.8;
}

@media only screen and (max-width: 768px) {
  .eco-btn {
    font-size: 14px;
  }
}

/* よくある質問 */

.eco-faq-section {
  padding: 0 15px;
  padding-top: 30px;
  margin-bottom: 40px;
}

.eco-faq-list dl::before {
  display: none !important;
}

.eco-faq-list dl {
  padding: 20px 0px 20px 10px !important;
}

.eco-faq-list dl dt {
  padding: 0 0 0 25px !important;
  font-size: 14px !important;
  line-height: 1.8 !important;
}
.eco-faq-list dl dt::before {
  font-size: 14px !important;
  top: 3px !important;
  left: 0 !important;
  color: #1f990f !important;
}
.eco-faq-list dl dd::before {
  font-size: 14px !important;
  top: 3px !important;
  left: 0 !important;
}
.eco-faq-list dl dd {
  margin: 10px 0 0 !important;
  padding: 0 0 0 25px !important;
  font-size: 14px !important;
  line-height: 1.8 !important;
}
.eco-faq-list dl dd p {
  margin: 30px 0 0 !important;
}
.eco-faq-list dl dd p:first-child {
  margin-top: 0 !important;
}

/* 背景固定 */
body.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
}

@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: 90%;
    max-width: 690px;
    padding: 40px 0 0;
    height: 90%;
  }

  .closeModal {
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    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;
  }
}

/*
関連リンク
*/

.related {
  margin-top: 30px;
  padding-top: 20px;
}

.related-section {
  padding: 0 15px;
}

.related-column {
  display: flex;
  max-width: 1080px;
  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;
}

.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;
  text-align: left;
  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 {
  margin-top: 30px;
  padding-top: 20px;
}

.faq-section {
  padding: 0 15px;
  margin-bottom: 120px;
}

.faq-list {
  max-width: 1080px;
  margin: 0 auto;
}

.faq-list dl {
  position: relative;
  margin: 0;
  padding: 25px 80px 25px 30px;
  cursor: pointer;
  border-bottom: 1px solid #e5e5e5;
  text-align: left;
}
.faq-list dl:first-child {
  border-top: 1px solid #e5e5e5;
}
.faq-list dl::before {
  position: absolute;
  top: 32px;
  right: 20px;
  display: block;
  width: 10px;
  height: 10px;
  margin: auto;
  content: "";
  transform: rotate(135deg);
  border-top: 2px solid #fa8200;
  border-right: 2px solid #fa8200;
}
.faq-list .open::before {
  transform: rotate(-45deg);
}
.faq-list dl dt {
  position: relative;
  margin: 0;
  padding: 0 0 0 50px;
}
.faq-list dl dt::before {
  font-size: 21px;
  line-height: 1;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  content: "Q";
  color: #fa8200;
  font-weight: bold;
}
.faq-list dl dd::before {
  font-size: 21px;
  line-height: 1;
  position: absolute;
  top: 1px;
  left: 2px;
  display: block;
  content: "A";
  font-weight: bold;
  color: #ff2323;
}
.faq-list dl dd {
  position: relative;
  display: none;
  height: auto;
  margin: 30px 0 0;
  padding: 0 0 10px 50px;
}
.faq-list dl dd p {
  margin: 30px 0 0;
}
.faq-list dl dd p:first-child {
  margin-top: 0;
}

.faq-list dl.is-hidden {
  visibility: hidden;
  opacity: 0;
  height: 0;
  margin: 0 10px;
  padding: 0;
}

.faq-note {
  font-size: 14px;
  line-height: 1.5;
  text-align: left;
  margin-top: 10px !important;
}

/* もっと見る */
.faq-btn {
  position: absolute;
  left: 0;
  right: 0;
  max-width: 130px;
  padding: 12px 0;
  margin-top: 20px;
}

@media screen and (max-width: 768px) {
  .faq {
    margin-top: 10px;
    padding-top: 20px;
  }

  .faq-list dl::before {
    display: none;
  }

  .faq-list dl {
    padding: 20px 0px 20px 10px;
  }

  .faq-list dl dt {
    padding: 0 0 0 25px;
    font-size: 14px;
    line-height: 1.8;
  }
  .faq-list dl dt::before {
    font-size: 14px;
    top: 3px;
    left: 0;
  }
  .faq-list dl dd::before {
    font-size: 14px;
    top: 3px;
    left: 0;
  }
  .faq-list dl dd {
    margin: 10px 0 0;
    padding: 0 0 0 25px;
    font-size: 14px;
    line-height: 1.8;
  }
  .faq-list dl dd p {
    margin: 30px 0 0;
  }
  .faq-list dl dd p:first-child {
    margin-top: 0;
  }
  .faq-note {
    font-size: 12px;
    line-height: 1.7;
  }
}

/*
フッター
*/

footer {
  background-color: #fa8200;
  padding: 0 15px;
}

/* 申し込み（フッター）*/

.apply-footer {
  margin: 0;
  padding-bottom: 50px;
}

.form {
  border-top: #fca84d solid 1px;
  max-width: 1080px;
  margin: 0 auto;
  padding-top: 40px;
}

.form-ttl {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  margin: 0;
  margin-bottom: 30px;
}

.form-column {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  max-width: 1080px;
  margin: 0 auto;
}

.form-btn {
  width: 100%;
  padding: 30px;
  font-size: 28px;
  font-weight: bold;
  color: #fff;
  background-color: #f57600;
  border-radius: 0;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.form-mail::before {
  content: ""; /*何も入れない*/
  display: inline-block;
  width: 25px; /*画像の幅*/
  height: 25px; /*画像の高さ*/
  background-image: url(../images/footer-form01.png);
  background-size: contain;
  vertical-align: middle;
  margin-right: 10px;
  margin-bottom: 2px;
}

.form-tel::before {
  content: ""; /*何も入れない*/
  display: inline-block;
  width: 30px; /*画像の幅*/
  height: 30px; /*画像の高さ*/
  background-image: url(../images/footer-form02.png);
  background-size: contain;
  vertical-align: middle;
  margin-right: 2px;
  margin-bottom: 4px;
}

.form-cap {
  font-size: 18px;
  margin: 0;
  line-height: 1.2;
}

.form-tel {
  font-size: 48px;
  margin: 0;
  line-height: 1.2;
}

.form-tel img {
  margin-right: 5px;
}

.form-note {
  font-size: 14px;
  margin: 0;
}

/*
SNS
*/

.sns {
  margin: 0 auto;
  margin-top: 30px;
}

.sns > p {
  color: #fff;
  margin: 0;
}

.sns > ul {
  display: flex;
  justify-content: center;
  padding: 0;
  margin: 0;
  margin-top: 5px;
}

.sns > ul > li {
  list-style: none;
}

.sns-btn {
  padding: 0;
  margin-top: 2px;
}

.sns-btn > img {
  width: 45px;
  margin: 0 2px;
}

/*
サイトマップ
*/

.sitemap {
  max-width: 1080px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  margin-top: 15px;
  border-top: #fca84d solid 1px;
}

.sitemap nav > ul {
  display: flex;
  gap: 25px;
  padding: 5px 0;
}

.sitemap nav > ul li a {
  font-size: 13px;
  text-decoration: none;
  color: #fff;
  transition-duration: 0.2s;
}

.sitemap nav > ul li a:hover {
  text-decoration: underline;
  text-underline-offset: 0.5em;
}

.copyright {
  font-size: 10px;
  color: #fff;
  text-align: center;
}

@media only screen and (max-width: 1024px) {
  footer {
    margin-top: 0;
    padding: 15px;
    padding-top: 30px;
  }

  .apply-footer {
    padding-bottom: 30px;
  }

  .form {
    padding-top: 30px;
  }

  .form-ttl {
    margin-bottom: 20px;
  }

  .form-column {
    display: block;
  }

  .form-btn {
    padding: 20px;
    font-size: 22px;
    margin-top: 15px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  }

  .form-mail::before {
    width: 20px; /*画像の幅*/
    height: 20px; /*画像の高さ*/
    background-image: url(../images/footer-form01.png);
    margin-right: 8px;
    margin-bottom: 1px;
  }

  .form-tel::before {
    width: 20px; /*画像の幅*/
    height: 20px; /*画像の高さ*/
    margin-right: 2px;
    margin-bottom: 4px;
  }

  .form-cap {
    font-size: 15px;
  }

  .form-tel {
    font-size: 34px;
  }

  .form-note {
    font-size: 12px;
  }

  /* サイトマップ */

  .sitemap {
    display: block;
    text-align: left;
    margin-top: 15px;
  }

  .sitemap nav > ul {
    display: block;
    margin-top: 20px;
    text-align: center;
  }

  .sitemap nav > ul li {
    display: inline;
    line-height: 2.3;
    white-space: nowrap;
  }

  .sitemap nav > ul li a {
    font-size: 13px;
    margin-right: 20px;
  }

  .copyright {
    margin: 0;
  }
}

/* 230328 追加 */
