@charset "utf-8";

/* ========================================
  共通
  .inner : コンテンツ幅 1024px 中央寄せ
======================================== */
#biz-mv .inner,
#biz-overview .inner,
#biz-coin .inner,
#biz-cta-oyakata .inner,
#biz-plan .inner,
#biz-trial .inner,
#biz-other-plan .inner,
#biz-quality .inner,
#biz-flow .inner,
#biz-cta .inner,
#biz-company .inner,
#biz-inquiry .inner,
#biz-news .inner,
#biz-agreement .inner {
  margin: 0 auto;
  width: 100%;
  max-width: 1024px;
}

body {
  background: #fff;
  &::before {
    content: "";
    display: block;
    width: 100%;
    height: 420px;
    background: #e1f2fc;
    position: absolute;
    top: 0;
  }
}

/* ========================================
  #biz-mv : メインビジュアル
======================================== */
main {
  background-image:
    url(../../images/company/bg_biz-main__left.svg),
    url(../../images/company/bg_biz-main__right.svg);
  background-size: auto 580px;
  background-position:
    calc(50% - 940px) 120px,
    calc(50% + 940px) 120px;
  background-repeat: no-repeat;
  z-index: 1;
}

#biz-mv {
  padding: 168px 0 40px;
}

.biz-mv__inner {
  position: relative;
  display: flex;
  background: #fff;
  border-radius: 32px;
}

.biz-mv__card {
  padding: 40px 120px 24px;
  width: 100%;
  flex: 1;
  background:
    url(../../images/company/bg-biz-mv__card-front.png) 100% 100% no-repeat,
    url(../../images/company/bg_biz-mv__card.svg) 50% calc(100% - 40px)
      no-repeat,
    #fff;
  border: 4px solid #7ab4e4;
  border-radius: 32px;
  box-shadow: 4px 8px 12px rgba(0, 0, 0, 0.1);
}

.biz-mv__desc {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  & p {
    padding: 6px 12px;
    font-size: 18px;
    font-weight: 700;
    display: inline-block;
    background: #fce952;
  }
}

.biz-mv__title {
  margin-top: 40px;
  width: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.biz-mv__subtitle {
  font-size: 24px;
  font-weight: 700;
  color: #222;
  line-height: 1;
  & span {
    font-size: 20px;
  }
  & strong {
    color: #ea575e;
    & span {
      color: #ea575e;
    }
  }
}

.biz-mv__logo {
  margin: 0 0 24px;

  & img {
    display: block;
    width: 480px;
    height: auto;
  }
}

.biz-mv__cta {
  margin-top: 64px;
  width: 480px;
  display: flex;
  justify-content: center;
  position: relative;
}

.biz-mv__cta-tag {
  padding: 0 24px;
  height: 32px;
  display: flex;
  font-size: 14px;
  font-weight: 500;
  line-height: 30px;
  background: #fce952;
  position: absolute;
  top: -29px;
  left: 50%;
  transform: translateX(-50%);
  &::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    border-top: 8px solid #fce952;
    border-bottom: 0;
    bottom: -8px;
    left: calc(50% - 4px);
    position: absolute;
  }
}

.biz-mv__btn {
  display: block;
  padding: 0 40px;
  height: 64px;
  background: #fff;
  color: #222;
  font-weight: 700;
  font-size: 20px;
  line-height: 56px;
  text-decoration: none;
  border-radius: 9999px;
  transition: background 0.2s ease;
  border: 3px solid #188ed0;

  &:hover {
    background: #188ed0;
    color: #fff;
    text-decoration: none;
  }

  &::after {
    display: none;
  }
}

.biz-mv__caution {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  align-items: baseline;
  & span {
    color: #0284c7;
  }
}

/* ========================================
  #biz-overview : 還元実績
======================================== */
#biz-overview {
  padding: 40px 0 80px;
  & .inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}

.biz-overview__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;

  & img {
    width: 90vw;
    max-width: 800px;
    height: auto;
  }
  & span {
    font-size: 18px;
    font-weight: 700;
    color: #4aa3d5;
    line-height: 1;
  }
}

.biz-overview__desc {
  margin-top: 48px;
  text-align: center;
}

#biz-overview h3 {
  margin-top: 80px;
  margin-bottom: 24px;
  display: flex;
  padding: 12px 40px;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  line-height: 1.25;
  background: #4aa3d5;
  border-radius: 9999px;
}
.biz-overview__cards {
  margin-top: 40px;
  padding-bottom: 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  background: url(../../images/company/bg_biz-overview__arrow.png) 50% 100%
    no-repeat;
}

.biz-overview__card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 2px 4px 6px rgba(0, 0, 0, 0.1);
  background: #fff;
}

.biz-overview__card-photo {
  & img {
    display: block;
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
}

.biz-overview__card-body {
  padding: 16px;
}

.biz-overview__card-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  & span {
    padding: 4px 16px;
    font-size: 13px;
    line-height: 1.25;
    background: #d0eaff;
    border-radius: 9999px;
  }
  & p {
    font-size: 16px;
    font-weight: 600;
  }
}

.biz-overview__card-data {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  & dt,
  & dd {
    padding: 8px 0;
    font-weight: 300;
    font-size: 14px;
    line-height: 1.4;
    border-bottom: 1px solid #ddd;
  }
  & dt {
    width: 9em;
  }
  & dd {
    width: calc(100% - 9em);
  }
}
.biz-overview__coin-box {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  background: #fff8c3;
  border-radius: 8px;
  padding: 12px;
}
.biz-overview__coin-subhead {
  width: 100%;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}
.biz-overview__coin-amount {
  font-size: 32px;
  font-weight: 700;
  color: #ea575e;
  font-family: "Oswald", sans-serif;
  line-height: 1;

  & span {
    margin-left: 4px;
    font-size: 14px;
    font-family: "Noto Sans JP", sans-serif;
    color: #ea575e;
  }
}

.biz-overview__footer {
  padding: 24px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 4px solid #ffdc00;
  border-radius: 16px;
  background: #fff;
  position: relative;
  &::after {
    content: "";
    display: block;
    width: 120px;
    height: 130px;
    position: absolute;
    right: 32px;
    bottom: 8px;
    background: url(../../images/company/img_biz-overview__footer.svg) 50% 100%
      no-repeat;
  }

  & p {
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    & span {
      font-size: 24px;
      color: #ea575e;
    }
  }
}

/* ========================================
  #biz-coin : ふるなびコインとは
======================================== */
#biz-coin {
  padding: 0 0 80px;
  background: #f7f7f7;
}

#biz-coin .inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.biz-coin__heading {
  padding-top: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
  &::before {
    content: "";
    display: block;
    width: 160px;
    height: 4px;
    background-image: linear-gradient(
      90deg,
      rgba(255, 220, 0, 1) 50%,
      rgba(74, 163, 213, 1) 50%
    );
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  & span {
    font-size: 20px;
    font-weight: bold;
    color: #ea575e;
  }
  & h2 {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    font-weight: bold;
    gap: 8px;
    & img {
      height: 40px;
      width: auto;
    }
  }
}
.biz-coin__desc {
  margin-top: 40px;
  text-align: center;
}

.biz-coin__exchange {
  margin-top: 40px;
  padding: 40px;
  width: 100%;
  display: flex;
  gap: 40px;
  background: #fff;
  border: 4px solid #ffdc00;
  border-radius: 16px;
}

.biz-coin__exchange-desc {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  flex: 1;
  & .biz-coin__exchange-title {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 16px;
    font-size: 20px;
    line-height: 1.25em;
    font-weight: 600;
    font-family: "Zen Kaku Gothic New", sans-serif;
    &::before {
      content: "";
      display: block;
      flex-shrink: 0;
      width: 4px;
      align-self: stretch;
      background: linear-gradient(to bottom, #ffdc00 50%, #4aa3d5 50%);
    }
  }
  & img {
    margin-top: 24px;
  }
  & ol {
    padding: 16px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #eaf8ff;
    border-radius: 8px;
  }
  & li {
    font-weight: 600;
    & i {
      margin-right: 8px;
    }
  }
  & a {
    padding: 0 16px;
    display: flex;
    height: 40px;
    align-items: center;
    font-size: 14px;
    color: #222;
    text-decoration: none;
    background-color: #fff;
    justify-content: center;
    border: 2px solid #ffdc00;
    border-radius: 9999px;
  }
}
@media (hover: hover) {
  .biz-coin__exchange-desc a:hover {
    background-color: #ffdc00;
  }
}

.biz-coin__exchange-triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 16px solid #4aa3d5;
  border-right: 0;
  align-self: center;
}

.biz-coin__exchange-data {
  width: 500px;
  border-collapse: collapse;
  font-size: 14px;
  & table {
    width: 100%;
    border-bottom: 1px solid #ddd;
    border-left: 1px solid #ddd;
  }
  & tr {
    display: flex;
  }
  & th,
  & td {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 64px;
    border-right: 1px solid #ddd;
    border-top: 1px solid #ddd;
    font-weight: bold;
    & span {
      margin: -0.125em 0.15em 0;
      font-size: 20px;
      color: #188ed0;
    }
  }

  & th {
    background: #f5f5f5;
    font-weight: 600;
    height: 32px;
    font-family: "Zen Kaku Gothic New", sans-serif;
  }

  & tr:last-child td {
    border-bottom: none;
  }

  & th:first-child,
  & td:first-child {
    width: 200px;
  }
  & th:last-child,
  & td:last-child {
    flex: 1;
  }
}

.biz-coin__img {
  text-align: center;

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

.biz-coin__cautions {
  margin-top: 16px;
  padding: 16px;
  width: 100%;
  background: #fff;
  border-radius: 8px;
  & p {
    font-size: 13px;
    color: #666;
  }
}

/* ========================================
  #biz-cta-oyakata : 問い合わせCTA（oyakata）
======================================== */
#biz-cta-oyakata {
  padding: 40px 0;
  background: #e1f2fc;
  & .inner {
    width: 864px;
  }
}

.biz-cta-oyakata__card {
  background:
    url(../../images/company/biz_cta_oyakata.png) 100% 100% no-repeat,
    #fff;
  background-size:
    auto 380px,
    auto;
  border-radius: 20px;
  padding: 48px;
  display: flex;
  align-items: center;
  gap: 40px;
  box-shadow: 0 4px 20px rgba(74, 163, 213, 0.15);
}

.biz-cta-oyakata__content {
  width: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.biz-cta-oyakata__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  & p {
    font-size: 20px;
    font-weight: bold;
    line-height: 1;
    & span {
      color: #ea575e;
    }
  }
  & img {
    display: block;
    width: 360px;
    height: auto;
  }
}

.biz-cta-oyakata__desc {
  margin-top: 32px;
  font-size: 14px;
}

.biz-cta-oyakata__btn-wrap {
  margin-top: 61px;
  display: flex;
  align-items: center;
  position: relative;
}

.biz-cta-oyakata__btn-tag {
  padding: 0 24px;
  height: 32px;
  display: flex;
  font-size: 14px;
  font-weight: 500;
  line-height: 30px;
  background: #fce952;
  position: absolute;
  top: -29px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  &::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    border-top: 8px solid #fce952;
    border-bottom: 0;
    bottom: -8px;
    left: calc(50% - 4px);
    position: absolute;
  }
}

.biz-cta-oyakata__btn {
  display: block;
  padding: 0 40px;
  height: 64px;
  background: #fff;
  color: #222;
  font-weight: 700;
  font-size: 20px;
  line-height: 56px;
  text-decoration: none;
  border-radius: 9999px;
  transition: background 0.2s ease;
  border: 3px solid #188ed0;

  &:hover {
    background: #188ed0;
    color: #fff;
    text-decoration: none;
  }

  &::after {
    display: none;
  }
}

/* ========================================
  #biz-plan : 市場連動型プラン
======================================== */
#biz-plan {
  background: #fff;
}
.biz-plan__heading {
  padding-top: 80px;
  display: flex;
  justify-content: center;
  font-size: 28px;
  font-weight: bold;
  line-height: 1.4;
  position: relative;
  &::before {
    content: "";
    display: block;
    width: 160px;
    height: 4px;
    background-image: linear-gradient(
      90deg,
      rgba(255, 220, 0, 1) 50%,
      rgba(74, 163, 213, 1) 50%
    );
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}
.biz-plan__chart {
  margin-top: 48px;
  display: flex;
  gap: 40px;

  & img {
    max-width: 100%;
    height: auto;
  }
}
.biz-plan__chart-desc {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.biz-plan__chart-caution {
  margin-top: 8px;
  & p {
    margin-top: 4px;
    font-size: 14px;
    color: #666;
  }
}

.biz-plan__structure {
  margin-top: 40px;
  & p {
    margin-top: 16px;
  }
  & a {
    & i {
      margin-left: 4px;
    }
    &::after {
      content: none;
    }
  }
}
.biz-plan__structure-heading {
  padding-left: 32px;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 600;
  background: url(../../images/common/icon_subtitle--thunder.svg) 0 50%
    no-repeat;
  background-size: 20px auto;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.biz-plan__items {
  margin-top: 24px;
  display: flex;
  gap: 8px;
  width: 100%;
}

.biz-plan__items-headline {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  height: 48px;
  font-size: 18px;
  color: #fff;
  font-weight: bold;
  background: #ea575e;
  & span {
    padding: 0 12px;
    line-height: 28px;
    font-size: 14px;
    color: #ea575e;
    background: #fff;
    border-radius: 9999px;
  }
}

.biz-plan__items-text {
  padding: 16px;
  height: calc(100% - 48px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  & p {
    text-align: center;
    font-size: 14px;
    & b {
      font-size: 14px;
    }
  }
}

.biz-plan__items-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  & h4 {
    margin-bottom: 4px;
    font-size: 14px;
    font-weight: bold;
  }
}

.biz-plan__item1,
.biz-plan__item2 {
  position: relative;
}

.biz-plan__item1::after,
.biz-plan__item2::after {
  content: "+";
  display: block;
  width: 44px;
  height: 44px;
  line-height: 34px;
  border-radius: 9999px;
  background: #a4cced;
  text-align: center;
  font-weight: bold;
  font-size: 24px;
  color: #fff;
  border: 4px solid #fff;
  top: 50%;
  right: -30px;
  position: absolute;
  z-index: 1;
}

.biz-plan__item1 {
  width: 288px;
  flex-shrink: 0;
  border: 4px solid #ea575e;
  border-radius: 16px 0 0 16px;
}

@media (max-width: 768px) {
  .biz-plan__item1 {
    width: 100%;
    border-radius: 16px 16px 0 0;
  }
}

.biz-plan__item2 {
  flex: 1;
  border: 4px solid #4aa3d5;
}

.biz-plan__item2 .biz-plan__items-headline {
  background-color: #4aa3d5;
}

.biz-plan__item2 .biz-plan__items-headline span {
  color: #4aa3d5;
}

.biz-plan__item3 {
  width: 288px;
  flex-shrink: 0;
  border: 4px solid #a37fd5;
  border-radius: 0 16px 16px 0;
}

.biz-plan__item3 .biz-plan__items-headline {
  background-color: #a37fd5;
}

.biz-plan__item3 .biz-plan__items-headline span {
  color: #a37fd5;
}

/* ========================================
  #biz-trial : お試しキャンペーン
======================================== */
#biz-trial {
  padding: 64px 0;
  background: #fff;
}

.biz-trial__card {
  padding: 40px;
  border: 4px solid #188ed0;
  border-radius: 24px;
}

.biz-trial__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  & h2 {
    font-size: 24px;
    line-height: 1.25;
    font-weight: bold;
  }
  & span {
    margin-left: -50px;
    padding-left: 50px;
    font-weight: bold;
    line-height: 32px;
    color: #188ed0;
    letter-spacing: 0.2em;
    background: url(../../images/company/icon_biz-trial__heading.svg) 0 0
      no-repeat;
    background-size: 34px 32px;
  }
}

.biz-trial__body {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.biz-trial__wrap {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px;
  background: #f7f7f7;
  border-radius: 16px;
}

.biz-trial__detail-button {
  padding: 12px 80px;
  background: #fff;
  border: 2px solid #188ed0;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s ease;
  & i {
    margin-left: 16px;
    margin-right: -16px;
    transition: transform 0.3s ease;
  }
  &:hover {
    background: #1177b0;
    color: #fff;
    text-decoration: none;
  }
  &.is-open i {
    transform: rotate(180deg);
  }
  &::after {
    display: none;
  }
}

.biz-trial__accordion {
  max-height: 0;
  padding: 0 16px;
  overflow: hidden;
  background: #fff;
  border-radius: 16px;
  transition:
    max-height 0.3s ease,
    margin-top 0.3s ease;
  &.is-open {
    margin-top: 16px;
    padding: 4px 16px 20px;
  }
  & h4 {
    margin-top: 16px;
    margin-bottom: 4px;
    font-size: 15px;
    font-weight: bold;
  }
  & p {
    font-size: 14px;
  }
  & li {
    padding-left: 1em;
    text-indent: -1em;
    font-size: 14px;
  }
}

/* ========================================
  #biz-other-plan : その他プラン
======================================== */
#biz-other-plan {
  padding: 64px 0;
  background: #fff;
}

.biz-other-plan__desc {
  margin-top: 24px;
}

.biz-other-plan__cards {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.biz-other-plan__card {
  padding: 48px 24px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  border-radius: 8px;
  border: 2px solid #ddd;
  position: relative;
}

.biz-other-plan__card-title {
  padding: 8px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: bold;
  white-space: nowrap;
  background: #fff;
  border: 2px solid #ffdc00;
  border-radius: 9999px;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  &::before {
    content: "";
    width: 18px;
    height: 18px;
    display: block;
    background: url(../../images/common/icon_subtitle--thunder.svg) 0 0
      no-repeat;
    background-size: contain;
  }
}

.biz-other-plan__card-body {
  font-size: 14px;
  line-height: 1.8;
  color: #444;
}

/* ========================================
  #biz-quality : カンタン・安心のお乗り換え
======================================== */
#biz-quality {
  padding: 64px 0;
}

.biz-quality__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: bold;
  & h2 {
    display: flex;
    align-items: center;
    height: 92px;
    padding: 0 80px;
    font-size: 30px;
    background:
      url(../../images/company/bg_biz-quality-left.svg) 0 0 no-repeat,
      url(../../images/company/bg_biz-quality-right.svg) 100% 0 no-repeat;
    background-size: contain;
  }
  & span {
    font-size: 20px;
    color: #188ed0;
    letter-spacing: 0.2em;
  }
}

.biz-quality__desc {
  margin-top: 40px;
  text-align: center;
}

.biz-quality__cards {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.biz-quality__card {
  padding: 24px;
  background: #fff;
  border: 2px solid #ddd;
  border-radius: 12px;
}

.biz-quality__card-icon {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f7f7f7;
  & img {
    width: auto;
    height: 56px;
  }
}

.biz-quality__card-title {
  display: flex;
  gap: 16px;
  align-items: center;
  & h3 {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 16px;
    line-height: 1.4;
    font-weight: bold;
  }
  & span {
    font-size: 14px;
    color: #188ed0;
    line-height: 1.25;
  }
}

.biz-quality__card-body {
  margin-top: 16px;
  font-size: 14px;
}

/* ========================================
  #biz-flow : 申し込みの流れ
======================================== */
#biz-flow {
  padding: 0 0 64px;
  background: #fff;
}

.biz-flow__desc {
  margin-top: 24px;
}

.biz-flow__steps {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.biz-flow__step {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 12px;
  position: relative;

  &:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -14px;
    top: 88px;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 14px solid #f2f2f2;
    z-index: 1;
  }
}

.biz-flow__step-badge {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fce952;
  border: 2px solid #ffdc00;
  font-family: "Oswald", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: absolute;
  top: -18px;
  left: 0;
}

.biz-flow__step-head {
  padding: 12px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  border-radius: 12px;
  background: #f2f2f2;
}

.biz-flow__step-icon {
  width: 100%;
  height: 136px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.biz-flow__step-title {
  font-size: 15px;
  font-weight: bold;
  line-height: 1.25;
}

.biz-flow__step-who {
  padding: 8px 12px;
  background: #fce952;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
}
.biz-flow__step-who.client-step {
  background: #d0eaff;
}

.biz-flow__step-body {
  font-size: 14px;
  line-height: 1.6;
}

/* ========================================
  #biz-cta : 問い合わせCTA（中間）
======================================== */
#biz-cta {
  padding: 64px 0;
  background: #f7f7f7;
}

#biz-cta .inner {
  width: 864px;
}

.biz-cta__card {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  display: flex;
  gap: 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  position: relative;
}

.biz-cta__left {
  flex: 1;
}
.biz-cta__logo {
  display: flex;

  flex-direction: column;
  align-items: center;
  gap: 16px;
  & p {
    font-size: 20px;
    font-weight: bold;
    line-height: 1;
    & span {
      color: #ea575e;
    }
  }

  & img {
    display: block;
    width: 360px;
    height: auto;
  }
}
.biz-cta__desc {
  margin-top: 32px;
  font-size: 14px;
}

.biz-cta__right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.biz-cta__btn-wrap {
  position: relative;
}

.biz-cta__tag {
  padding: 0 24px;
  height: 32px;
  display: flex;
  font-size: 14px;
  font-weight: 500;
  line-height: 30px;
  background: #fce952;
  position: absolute;
  top: -29px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  &:after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    border-top: 8px solid #fce952;
    border-bottom: 0;
    bottom: -8px;
    left: calc(50% - 4px);
    position: absolute;
  }
}

.biz-cta__btn {
  display: block;
  padding: 0 40px;
  height: 64px;
  background: #fff;
  color: #222;
  font-weight: 700;
  font-size: 18px;
  line-height: 56px;
  text-decoration: none;
  border-radius: 9999px;
  transition: background 0.2s ease;
  border: 3px solid #188ed0;
  &:hover {
    background: #188ed0;
    color: #fff;
    text-decoration: none;
  }
  &:after {
    display: none;
  }
}

.biz-cta__human {
  position: absolute;
  right: -24px;
  bottom: -64px;
  pointer-events: none;

  & img {
    display: block;
    width: 96px;
    height: auto;
  }
}

/* ========================================
  #biz-company : 会社概要
======================================== */
#biz-company {
  padding: 64px 0;
  background: #fff;
}

.biz-company__card {
  background: #fff;
  border-radius: 16px;
  padding: 48px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.biz-company__heading span {
  letter-spacing: 0.5em;
}

.biz-company__dl {
  width: 100%;
  border-top: 1px solid #ddd;
}

.biz-company__row {
  display: flex;
  border-bottom: 1px solid #ddd;

  & dt {
    padding: 16px 24px;
    width: 180px;
    flex-shrink: 0;
    font-weight: bold;
    font-size: 14px;
  }

  & dd {
    padding: 16px 24px;
    flex: 1;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    & img {
      width: 56px;
      height: auto;
    }
  }
}

.biz-company__map {
  & iframe {
    display: block;
    width: 100%;
    height: 320px;
    border-radius: 8px;
  }
}

/* ========================================
  #biz-inquiry : お問い合わせ
======================================== */
#biz-inquiry {
  padding: 40px 0;
  background: #e1f2fc;
}

#biz-inquiry .inner {
  width: 864px;
}

.biz-inquiry__heading span {
  letter-spacing: 0.5em;
}

.biz-inquiry__frame {
  margin-top: 24px;
  position: relative;
  padding: 2px;
  border-radius: 20px;
  background: linear-gradient(
    135deg,
    rgba(252, 233, 82, 1),
    rgba(74, 163, 213, 1)
  );
}

.biz-inquiry__content {
  background: #fff;
  border-radius: 18px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.biz-inquiry__tags {
  display: flex;
  gap: 16px;
}

.biz-inquiry__tag {
  display: block;
  padding: 8px 24px;
  background: #d0eaff;
  border-radius: 9999px;
  font-size: 13px;
}

.biz-inquiry__body {
  margin-top: 24px;
  text-align: center;
}

.biz-inquiry__btn {
  margin-top: 40px;
  padding: 0 64px;
  display: flex;
  color: #222;
  font-weight: bold;
  font-size: 18px;
  height: 64px;
  align-items: center;
  background: #fce952;
  text-decoration: none;
  border-radius: 9999px;
  border: 3px solid #ffdc00;
  transition: background 0.2s ease;

  &:hover {
    background: #ffdc00;
    color: #222;
    text-decoration: none;
  }

  &::after {
    display: none;
  }
}

.biz-inquiry__obj {
  position: absolute;
  right: -40px;
  bottom: -40px;
  pointer-events: none;
  width: 140px;
  height: 228px;
  & img {
    display: block;
    width: 100%;
    height: auto;
  }
}

/* ========================================
  #biz-news : ニュースリリース
======================================== */
#biz-news {
  padding: 64px 0 0;
  background: #fff;
}

.biz-news__list {
  margin-top: 16px;
  list-style: none;
  width: 100%;
}

.biz-news__list .news-item__title {
  padding: 24px 0;
  display: flex;
  align-items: flex-start;
  border-bottom: 1px solid #ccc;
  gap: 16px;
}

.biz-news__list .news-item__title .date {
  width: 88px;
  font-family: "Oswald", "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 500;
  flex-shrink: 0;
  line-height: 28px;
}

.biz-news__list .news-item__title .label {
  width: 102px;
  display: flex;
  text-align: center;
  background: #d0eaff;
  font-size: 13px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  line-height: 28px;
}

.biz-news__list .news-item__title a[target="_blank"]:after {
  content: none;
}

.biz-news__list .news-item__title a i {
  margin-left: 4px;
  font-size: 13px;
}

.biz-news__more {
  margin-top: 40px;
  text-align: center;
}

/* ========================================
  #biz-agreement : 電気需給約款
======================================== */
#biz-agreement {
  padding: 64px 0;
  background: #fff;
}

.biz-agreement__layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: flex-start;
  background: url(../../images/company/agreement_obj.svg) 0 100% no-repeat;
}

.biz-agreement__group-title {
  margin-top: 40px;
  padding-left: 20px;
  font-size: 18px;
  font-weight: bold;
  position: relative;

  &::before {
    content: "";
    display: block;
    width: 8px;
    height: 24px;
    border-radius: 4px;
    background: #ffdc00;
    position: absolute;
    left: 0;
    top: calc(50% - 12px);
  }
}

#biz-agreement ol {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
}

#biz-agreement ol li {
  padding: 16px 24px 16px 0;
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid #ccc;
}

#biz-agreement li a {
  font-size: 14px;
  color: #222;
}

#biz-agreement li span.state {
  font-size: 13px;
  text-align: center;
  width: 72px;
  height: 32px;
  line-height: 30px;
  box-sizing: border-box;
  border-radius: 4px;

  &.revision {
    color: #ea575e;
    border: 1px solid #ea575e;
  }

  &.current {
    color: #4aa3d5;
    border: 1px solid #4aa3d5;
  }

  &.past {
    background: #f0f0f0;
    color: #888;
  }
}

#biz-agreement li a[download] {
  margin-left: auto;
  padding: 0 16px 0 40px;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  line-height: 32px;
  border-radius: 16px;
  background:
    url(../../images/common/icon_download_white.svg) 16px 50% no-repeat,
    #4aa3d5;

  @media (hover: hover) {
    &:hover {
      color: #4aa3d5;
      box-shadow: inset 0 0 0 1px #4aa3d5;
      background:
        url(../../images/common/icon_download_blue.svg) 16px 50% no-repeat,
        #fff;
    }
  }
}

/* ========================================
  スマホレスポンシブ対応（目安 400px）
======================================== */
@media (max-width: 1023px) {
  /* ===== 共通：左右ガター 24px・固定幅解除 ===== */
  #biz-mv .inner,
  #biz-overview .inner,
  #biz-coin .inner,
  #biz-cta-oyakata .inner,
  #biz-plan .inner,
  #biz-trial .inner,
  #biz-other-plan .inner,
  #biz-quality .inner,
  #biz-flow .inner,
  #biz-cta .inner,
  #biz-company .inner,
  #biz-inquiry .inner,
  #biz-news .inner,
  #biz-agreement .inner {
    width: 100%;
    padding-left: 24px;
    padding-right: 24px;
    box-sizing: border-box;
  }

  /* ===== #biz-mv ===== */
  main {
    background: transparent;
  }
  #biz-mv {
    padding: 88px 0 24px;
    background: #d0eaff;
  }
  #biz-mv .inner {
    background: transparent;
  }
  .biz-mv__card {
    padding: 24px 16px 16px;
    background-size:
      auto 300px,
      auto,
      auto;
    background-position:
      100% 100%,
      45% 240px;
  }
  .biz-mv__title {
    margin-top: 24px;
    width: 100%;
  }
  .biz-mv__cta {
    width: 100%;
  }
  .biz-mv__logo img {
    width: 100%;
    max-width: 320px;
  }
  .biz-mv__subtitle {
    font-size: 20px;
    & span {
      font-size: 16px;
    }
  }
  .biz-mv__desc p {
    font-size: 14px;
  }
  .biz-mv__cta {
    margin-top: 180px;
  }
  .biz-mv__cta-tag {
    white-space: nowrap;
  }
  .biz-mv__btn {
    padding: 0 24px;
    width: 100%;
    font-size: 18px;
    text-align: center;
  }
  .biz-mv__caution {
    margin-top: 16px;
    > span {
      background: #fff;
    }
  }

  /* ===== #biz-overview ===== */
  #biz-overview {
    padding: 40px 0 48px;
  }
  .biz-overview__title {
    & span {
      white-space: nowrap;
      font-size: 3.5vw;
    }
    & img {
      width: 100%;
    }
  }
  .biz-overview__desc {
    margin-top: 40px;
    text-align: justify;
  }
  #biz-overview h3 {
    margin-top: 40px;
    margin-bottom: 16px;
    padding: 12px;
    width: 100%;
    font-size: 16px;
    justify-content: center;
  }
  .biz-overview__cards {
    grid-template-columns: 1fr;
    background: none;
    padding-bottom: 0;
  }
  .biz-overview__footer {
    margin-top: 24px;
    padding: 24px 16px;
    & p {
      text-align: justify;
      font-size: 16px;
      & span {
        font-size: 18px;
        line-height: 24px;
      }
    }
    &::after {
      right: -24px;
      bottom: -48px;
      height: 100px;
      width: 92px;
      background-size: contain;
    }
  }

  /* ===== #biz-coin ===== */
  #biz-coin {
    padding: 0 0 48px;
  }
  .biz-coin__heading {
    padding-top: 48px;
    & span {
      font-size: 16px;
    }
    & h2 {
      font-size: 22px;
      & img {
        height: 30px;
      }
    }
  }
  .biz-coin__desc {
    margin-top: 24px;
    text-align: justify;
  }
  .biz-coin__exchange {
    flex-direction: column;
    padding: 20px;
    gap: 24px;
  }
  .biz-coin__exchange-desc {
    & .biz-coin__exchange-title {
      font-size: 18px;
    }
  }
  .biz-coin__exchange-triangle {
    display: none;
  }
  .biz-coin__exchange-data {
    width: 100%;
    font-size: 13px;
    & th,
    & td {
      & span {
        font-size: 18px;
      }
      & img {
        transform: scale(0.8);
      }
    }
  }
  .biz-coin__exchange-data th:first-child,
  .biz-coin__exchange-data td:first-child {
    width: 42%;
  }

  /* ===== #biz-cta-oyakata ===== */
  #biz-cta-oyakata .inner {
    width: 100%;
  }
  .biz-cta-oyakata__card {
    flex-direction: column;
    padding: 24px 24px 48px;
    gap: 24px;
    background-size:
      auto 210px,
      auto;
  }
  .biz-cta-oyakata__content {
    width: 100%;
  }
  .biz-cta-oyakata__logo {
    & p {
      font-size: 18px;
      white-space: nowrap;
    }
    & img {
      width: 100%;
      max-width: calc(100vw - 96px);
    }
  }
  .biz-cta-oyakata__btn-wrap {
    margin-top: 100px;
    width: 100%;
  }
  .biz-cta-oyakata__btn {
    padding: 0;
    width: 100%;
    font-size: 18px;
    text-align: center;
  }

  /* ===== #biz-plan ===== */
  .biz-plan__heading {
    padding-top: 48px;
    font-size: 20px;
    text-align: center;
  }
  .biz-plan__chart {
    flex-direction: column;
    gap: 24px;
    & img {
      order: 1;
    }
  }
  .biz-plan__chart-desc {
    order: 2;
  }
  .biz-plan__structure-heading {
    padding-left: 24px;
    font-size: 18px;
    background-size: 18px auto;
  }
  .biz-plan__items {
    gap: 16px;
    flex-direction: column;
  }
  .biz-plan__items-headline {
    font-size: 16px;
    & span {
      font-size: 13px;
      line-height: 26px;
    }
  }
  .biz-plan__items-text {
    padding: 12px;
    & p {
      font-size: 13px;
    }
  }
  .biz-plan__items-row {
    gap: 0;
    & h4 {
      font-size: 13px;
    }
  }
  .biz-plan__item1::after,
  .biz-plan__item2::after {
    width: 32px;
    height: 32px;
    line-height: 25px;
    border: 2px solid #fff;
    top: calc(100% - 5px);
    right: calc(50% - 16px);
  }
  .biz-plan__item2 {
    width: 100%;
  }
  .biz-plan__item3 {
    width: 100%;
    border-radius: 0 0 16px 16px;
  }

  /* ===== #biz-trial ===== */
  #biz-trial {
    margin-top: 24px;
    padding: 24px 0;
    background: #a4cced;
  }
  #biz-trial .inner {
    padding: 0 16px;
  }
  .biz-trial__card {
    padding: 20px;
    background: #fff;
    border-radius: 16px;
  }
  .biz-trial__heading span {
    margin-left: 0;
    padding-left: 44px;
    background-position: 0 50%;
    letter-spacing: 0.05em;
  }
  .biz-trial__heading h2 {
    margin-top: 8px;
    text-align: center;
    line-height: 1.4;
  }
  .biz-trial__body {
    margin-top: 24px;
  }
  .biz-trial__wrap {
    padding: 8px;
  }
  .biz-trial__detail-button {
    padding: 16px;
    width: 100%;
    text-align: center;
  }

  /* ===== #biz-other-plan ===== */
  #biz-other-plan {
    padding: 48px 0;
  }
  .biz-other-plan__cards {
    margin-top: 40px;
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .biz-other-plan__card {
    padding: 48px 16px 16px;
  }
  .biz-other-plan__card-title {
    white-space: normal;
    text-align: center;
    width: calc(100% - 32px);
    justify-content: center;
  }

  /* ===== #biz-quality ===== */
  #biz-quality {
    padding: 48px 0;
  }
  .biz-quality__heading h2 {
    width: 100%;
    height: auto;
    padding: 16px 0;
    font-size: 22px;
    background-size: 24px;
    justify-content: center;
  }
  .biz-quality__heading span {
    font-size: 16px;
    letter-spacing: 0.1em;
  }
  .biz-quality__desc {
    margin-top: 24px;
    text-align: justify;
  }
  .biz-quality__cards {
    margin-top: 24px;
    grid-template-columns: 1fr;
  }
  .biz-quality__card {
    padding: 16px;
  }

  /* ===== #biz-flow ===== */
  .biz-flow__steps {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .biz-flow__step:not(:last-child)::after {
    right: auto;
    top: auto;
    left: 50%;
    bottom: -27px;
    transform: translateX(-50%);
    border-top: 14px solid #f2f2f2;
    border-bottom: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
  }
  .biz-flow__step-badge {
    width: 48px;
    height: 48px;
  }

  /* ===== #biz-cta ===== */
  #biz-cta {
    padding: 48px 0;
  }
  #biz-cta .inner {
    width: 100%;
  }
  .biz-cta__card {
    flex-direction: column;
    padding: 24px;
    gap: 24px;
  }
  .biz-cta__logo {
    & p {
      font-size: 18px;
      white-space: nowrap;
    }
    & img {
      width: 100%;
      max-width: calc(100vw - 96px);
    }
  }
  .biz-cta__btn-wrap {
    margin-top: 32px;
    width: 100%;
  }
  .biz-cta__btn {
    padding: 0 24px;
    text-align: center;
  }
  .biz-cta__human {
    display: none;
  }

  /* ===== #biz-company ===== */
  #biz-company {
    padding: 48px 0;
  }
  .biz-company__card {
    padding: 24px 16px;
  }
  .biz-company__row {
    flex-direction: column;
    & dt {
      width: 100%;
      padding: 16px 0 4px;
    }
    & dd {
      padding: 0 0 16px;
      & img {
        flex-shrink: 0;
        margin-left: 16px;
      }
    }
  }
  .biz-company__map iframe {
    height: 240px;
  }

  /* ===== #biz-inquiry ===== */
  #biz-inquiry .inner {
    padding: 0 16px;
    width: 100%;
  }
  .biz-inquiry__content {
    padding: 24px;
  }
  .biz-inquiry__tags {
    gap: 4px;
  }
  .biz-inquiry__tag {
    padding: 6px 16px;
    font-size: 12px;
    white-space: nowrap;
  }
  .biz-inquiry__body {
    margin-top: 16px;
    text-align: justify;
  }
  .biz-inquiry__btn {
    padding: 0 24px;
    width: 100%;
    box-sizing: border-box;
    justify-content: center;
  }
  .biz-inquiry__obj {
    display: none;
  }

  /* ===== #biz-news ===== */
  .biz-news__list .news-item__title {
    flex-wrap: wrap;
    gap: 8px;
  }
  .biz-news__list .news-item__title span.date {
    width: auto;
    line-height: 24px;
  }
  .biz-news__list .news-item__title span.label {
    padding: 0 1em;
    width: auto;
    font-size: 13px;
    line-height: 24px;
  }

  /* ===== #biz-agreement ===== */
  .biz-agreement__layout {
    grid-template-columns: 1fr;
    gap: 24px;
    background: none;
  }
  .biz-agreement__left {
    position: static;
  }
  .biz-agreement__group-title {
    font-size: 18px;
  }
  #biz-agreement ol li {
    padding: 16px 0;
    gap: 13px;
  }
  #biz-agreement li a[download] {
    padding: 0;
    background-position: 50% 50%;
    text-indent: -160px;
    overflow: hidden;
    width: 32px;
    height: 32px;
  }
}
