@charset "utf-8";

@import url(/landing/20260730_appli_renewal/css/spacer.css);

@import url(/landing/20260730_appli_renewal/css/font.css);

/* ========================
  表示切り替えユーティリティ
======================== */
.sty-hide-pc {
  display: none !important;
}
@media only screen and (max-width: 640px){
  .sty-hide-pc {
    display: block !important;
  }
    .sty-hide-sp {
    display: none !important;
  }
}

/* =========================================
  ベース設定・ユーティリティ
========================================= */
.sty-lp-wrapper {
  overflow: hidden;
}

.sty-section--bg-white {
  background-color: #FFFFFF;
}

.sty-text-gradient {
  background: linear-gradient(to right, #EB5505 11%, #FFAD09 65%, #FF9F32 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.sty-text-black {
  color: #212426;
}

@media only screen and (max-width: 640px){
  .sty-shadow-sp {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
}

h1,h4,h5 {
  margin-block-start: initial;
  margin-block-end: initial;
}

p {
  margin: initial;
}

/* =========================================
  コンポーネント: ハンバーガーメニュー
========================================= */
.sty-hamburger {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 102;
  width: 46px;
  height: 46px;
  background-color: #D2E8EA;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0;
  gap: 4px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
}
@media only screen and (max-width: 640px){
  .sty-hamburger {
    top: 15px;
    right: 15px;
  }
}

.sty-hamburger__lines {
  display: block;
  width: 19px;
  height: 1px;
  background-color: #17829A;
  position: relative;
  margin-top: 4px;
  margin-bottom: 4px;
  transition: background-color 0.3s ease;
}

.sty-hamburger__lines::before,
.sty-hamburger__lines::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: inherit;
  transition: transform 0.3s ease, top 0.3s ease;
}

.sty-hamburger__lines::before {
  top: -4.5px;
}

.sty-hamburger__lines::after {
  top: 4.5px;
}

.sty-hamburger__text {
  color: #17829A;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
  transition: opacity 0.3s ease;
}

.sty-hamburger.is-active {
  background-color: #FFF;
  gap: 0;
}
.sty-hamburger.is-active .sty-hamburger__text {
  display: none;
}
.sty-hamburger.is-active .sty-hamburger__lines {
  background-color: transparent;
}
.sty-hamburger.is-active .sty-hamburger__lines::before,
.sty-hamburger.is-active .sty-hamburger__lines::after {
  background-color: #17829A;
  height: 1.5px;
  top: 0;
}
.sty-hamburger.is-active .sty-hamburger__lines::before {
  transform: rotate(45deg);
}
.sty-hamburger.is-active .sty-hamburger__lines::after {
  transform: rotate(-45deg);
}

/* =========================================
  コンポーネント: オーバーレイ（メニュー）
========================================= */
.sty-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 100;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 80px 0 20px 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.sty-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.sty-overlay__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  cursor: pointer;
}

.sty-overlay__inner {
  position: relative;
  background: #FFF;
  width: 90%;
  max-width: 480px;
  border-radius: 12px 0 0 12px;
  padding: 30px 20px 40px 30px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  z-index: 101;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
}

.sty-overlay__title {
  color: #007B94;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 20px;
}

.sty-overlay__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sty-overlay__list li {
  border: none;
  border-bottom: 1px solid #757575;
}

.sty-overlay__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  color: #212426;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: opacity 0.2s;
}

.sty-overlay__link > span {
  display: flex;
  align-items: center;
  line-height: 1.5;
}

.sty-overlay__link:hover {
  opacity: 0.7;
  text-decoration: none;
  color: #333;
}
.sty-overlay__link.sty-overlay__link--orange:hover {
  color: #EB5505;
}

.sty-overlay__link--orange {
  color: #EB5505;
}

.sty-overlay__num {
  flex-shrink: 0;
  width: 32px;
  font-family: 'Roboto', sans-serif;
}

.sty-overlay__link::after {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-top: 1.5px solid #757575;
  border-right: 1.5px solid #757575;
  transform: rotate(45deg);
  margin-left: 10px;
}

@media only screen and (max-width: 640px) {
  .sty-overlay {
    padding: 75px 0 20px 20px;
  }
  .sty-overlay__inner {
    padding: 24px 20px 24px 24px;
    max-height: calc(100vh - 95px);
  }
  .sty-overlay__title {
    font-size: 14px;
    margin-bottom: 12px;
  }
  .sty-overlay__link {
    padding: 12px 0;
    font-size: 14px;
  }
  .sty-overlay__num {
    width: 28px;
  }
}

/* ========== hero area ========== */
.sty-hero {
  position: relative;
  background-image: url(/landing/20260730_appli_renewal/img/kv_bg_pc.png);
  background-size: cover;
  background-position: center center;
  background-color: #FDF6EF;
  overflow: hidden;
}

@media only screen and (max-width: 640px){
  .sty-hero {
    background-image: url(/landing/20260730_appli_renewal/img/kv_bg_sp.png);
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center top;
    background-color: #FDF6EF;
    overflow: visible;
    display: flow-root;
  }

  .sty-hero::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    bottom: -40px;
    height: 40px;
    background-image: url(/landing/20260730_appli_renewal/img/grade_sp_01.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    z-index: 10;
  }
}

.sty-hero__inner {
  max-width: 976px;
  display: flex;
  justify-content: space-between;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 640px){
  .sty-hero__inner {
    display: block;
    padding: 0 20px;
  }
}

.sty-hero__txt-block {
  width: 602px;
}
@media only screen and (max-width: 640px){
  .sty-hero__txt-block {
    width: 100%;
  }
}

.sty-hero__main-txt {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 72px;
}
@media only screen and (max-width: 640px){
  .sty-hero__main-txt {
    font-size: 36px;
    line-height: 50.4px;
  }
}

.sty-hero__sub-txt {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 42px;
  color: #212426;
}
@media only screen and (max-width: 640px){
  .sty-hero__sub-txt {
    font-size: 20px;
    line-height: 30px;
  }
}

.sty-hero__notes {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 10px;
  line-height: 18px;
  margin-bottom: 0px;
  color: #212426;
}
@media only screen and (max-width: 640px) {
  .sty-hero__notes {
    font-weight: 400;
    font-size: 11px;
    line-height: 1.6;
    color: #535252;
    text-align: left;
    max-width: 311px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    text-indent: 0;
  }

  .sty-hero__notes span {
    display: block;
    padding-left: 1.2em;
    text-indent: -1.2em;
    margin-bottom: 4px;
  }
  .sty-hero__notes span:last-child {
    margin-bottom: 0;
  }
}

.sty-schedule__img {
  width: 217.5px;
}
@media only screen and (max-width: 640px){
  .sty-schedule__img {
    width: 180px;
  }
}

.sty-hero__image-wrap {
  width: 217.5px;
}
@media only screen and (max-width: 640px){
  .sty-hero__image-wrap {
    width: 180px;
    margin-left: -20px;
  }
}

.sty-hero__img {
  max-width: 100%;
  height: auto;
}

.sty-hero__gif-wrap {
  width: 172px;
  margin-right: 162px;
}
@media only screen and (max-width: 640px){
  .sty-hero__gif-wrap {
    width: 171px;
    margin-right: auto;
    margin-left: auto;
  }
}

.sty-hero__gif-wrap .sty-hero__img {
  border-radius: 12px;
  box-shadow: 0px 0px 8px 0px rgba(235, 85, 5, 0.5);
}

.sty-hero__txt-content {
  margin: 0 40px 0 48px;
  max-width: 554px;
}
@media only screen and (max-width: 640px){
  .sty-hero__txt-content {
    margin: initial;
  }
}

/* =========================================
  コンポーネント: 目次
========================================= */
.sty-toc__inner {
  max-width: 976px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 640px){
  .sty-toc__inner {
    padding: 0 16px;
  }
}

.sty-toc__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  color: #535252;
  margin-left: 48px;
}
@media only screen and (max-width: 640px){
  .sty-toc__title {
    margin-left: initial;
    padding: 0 12px;
  }
}

.sty-toc__title--orange {
  color: #EB5505;
}

.sty-toc__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  max-width: 880px;
  margin-left: 48px;
}
@media only screen and (max-width: 640px){
  .sty-toc__list {
    gap: 10px;
    margin-left: initial;
    padding: 0 16px;
  }
}

.sty-btn {
  position: relative;
  display: flex;
  align-items: center;
  width: calc(33.333% - 11px);
  padding: 10px 28px 10px 12px;
  border-radius: 50px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 18px;
  text-decoration: none;
  background: #FFF;
  box-sizing: border-box;
}
@media only screen and (max-width: 640px){
  .sty-btn {
    width: 100%;
    padding: 9.5px 27px 9.5px 12px;
    font-size: 14px;
    line-height: 22.5px;
  }
}

.sty-btn.sty-btn--orange:hover {
  text-decoration: none;
  opacity: 0.7;
  color: #EB5505;
}
.sty-btn.sty-btn--gray:hover {
  text-decoration: none;
  opacity: 0.7;
  color: #535252;
}

.sty-btn__num {
  font-size: 15px;
  line-height: 22.5px;
  margin-right: 4px;
  font-weight: 700;
}
@media only screen and (max-width: 640px){
  .sty-btn__num {
    font-size: 14px;
  }
}

.sty-btn::after {
  content: '';
  position: absolute;
  right: 15px;
  top: 48%;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}

.sty-btn--orange {
  border: 1px solid #EB5505;
  color: #EB5505;
}

.sty-btn--gray {
  border: 1px solid #757575;
  color: #535252;
  font-weight: 400;
  font-size: 11px;
}
@media only screen and (max-width: 640px){
  .sty-btn--gray {
    font-size: 12px;
  }
}

/* =========================================
  コンポーネント: セクション共通ブロック (01〜)
========================================= */
@media only screen and (max-width: 640px) {
  .sty-sp-section__box {
    padding: 0 32px;
  }
}
.sty-section__inner {
  max-width: 832px;
  margin-left: auto;
  margin-right: auto;
}

.sty-block-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media only screen and (max-width: 640px) {
  .sty-block-top {
    flex-direction: column;
  }
}

.sty-block-top__txt {
  width: 461px;
  margin-right: 60px;
}
@media only screen and (max-width: 640px) {
  .sty-block-top__txt {
    width: 100%;
  }
}

.sty-block-top__head {
  display: flex;
  align-items: flex-end;
}

.sty-block-top__num {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 72px;
  line-height: 72px;
}
@media only screen and (max-width: 640px) {
  .sty-block-top__num {
    font-size: 64px;
    line-height: 64px;
  }
}

.sty-block-top__num.sty-text-black.sty-title-05 {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 64px;
  line-height: 64px;
}

.sty-block-top__subtitle {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 22.5px;
  margin-left: 20px;
  margin-bottom: 15px;
  color: #212426;
}
@media only screen and (max-width: 640px) {
  .sty-block-top__subtitle {
    font-size: 12px;
    line-height: 18px;
    margin-left: 8px;
    margin-bottom: 6px;
  }
}

.sty-block-top__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 48px;
}
@media only screen and (max-width: 640px) {
  .sty-block-top__title {
    font-size: 28px;
    line-height: 42px;
    margin-top: 9px;
  }
}

.sty-block-top__title.sty-text-black.sty-title-05 {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 42px;
}
@media only screen and (max-width: 640px) {
  .sty-block-top__title.sty-text-black.sty-title-05 {
    margin-top: initial;
  }
}

@media only screen and (max-width: 640px) {
  .sty-box-lightgray .sty-section__desc {
    font-size: 15px;
    line-height: 22.5px;
  }

  .sty-section__desc.sty-desc__bold {
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
  }
}

.sty-block-top__line {
  height: 3px;
  border: none;
  background: linear-gradient(to right, #EB5505 0%, #FFAD09 100%);
  margin-bottom: 0px;
}

.sty-block-top__desc {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 22.5px;
  color: #212426;
}

.sty-block-top__img {
  width: 311px;
}
@media only screen and (max-width: 640px) {
  .sty-block-top__img {
    width: 100%;
    margin-top: 20px;
  }
}

.sty-points-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 36px;
  color: #007B94;
}
@media only screen and (max-width: 640px) {
  .sty-points-title {
    font-size: 20px;
    line-height: 30px;
  }
}

.sty-points-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
}
@media only screen and (max-width: 640px) {
  .sty-points-content {
    flex-direction: column;
    gap: 20px;
  }
}

.sty-points-content__img {
  width: 311px;
}
@media only screen and (max-width: 640px) {
  .sty-points-content__img {
    width: 100%;
  }
}

.sty-points-content__txt-wrap {
  width: 55.4%;
}
@media only screen and (max-width: 640px) {
  .sty-points-content__txt-wrap {
    width: 100%;
    max-height: 230px;
    overflow-y: scroll;
    padding-right: 12px;
  }
    .sty-points-content__txt-wrap.sty-scroll-bar {
      border-right: none;
      background-image: linear-gradient(to left, transparent 0px, #D4D5D5 0px, #D4D5D5 5px, transparent 5px);
  }
}

.sty-points-heading {
  display: flex;
  align-items: flex-start;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #212426;
}

.sty-points-badge {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  background-color: #007B94;
  color: #FFF;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  margin-top: 4px;
  margin-right: 2px;
  line-height: 1;
}

.sty-points-subheading {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 22.5px;
  color: #212426;
}

.sty-points-desc {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 22.5px;
  color: #212426;
}

.sty-icon-arrow-down {
  display: inline-block;
  width: 18px;
  height: auto;
  vertical-align: middle;
  margin-top: -3px;
}

@media only screen and (max-width: 640px) {
  .sty-sp-section__box.sty-section_01-03 {
    position: relative;
  }

  .sty-sp-section__box.sty-section_01-03::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -40px;
    width: 100%;
    height: 40px;
    background-image: url(/landing/20260730_appli_renewal/img/grade_sp_02.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    z-index: 10;
  }
}

/* =========================================
  コンポーネント: 04 アコーディオン & スクロールエリア
========================================= */
.sty-section--bg-cream {
  background-color: #FDF6EF;
}
@media only screen and (max-width: 640px) {
  .sty-section--bg-cream {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.sty-acc-section__inner {
  max-width: 856px;
  margin-left: auto;
  margin-right: auto;
}

.sty-acc-grid {
  max-width: 702px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 80px;
  align-items: start;
}
@media only screen and (max-width: 640px) {
  .sty-acc-grid {
    grid-template-columns: 1fr;
    column-gap: 0;
  }
}

.sty-acc {
  width: 311px;
  margin-bottom: 40px;
  border-top: 1px solid #EB5505;
}
@media only screen and (min-width: 641px) and (max-width: 1024px) {
  .sty-acc-grid {
    padding-left: 32px;
    padding-right: 32px;
  }
  .sty-acc {
    width: 100%;
  }
}
@media only screen and (max-width: 640px) {
  .sty-acc {
    width: 100%;
    margin-bottom: 0;
  }
  .sty-acc + .sty-acc {
    border-top: none;
  }
}

.sty-acc__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 76px;
  padding: 12px 0;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #212426;
  cursor: pointer;
  background-color: transparent;
  border-bottom: 1px solid #EB5505;
}

.sty-acc__icon {
  position: relative;
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-left: 12px;
  flex-shrink: 0;
}
.sty-acc__icon::before,
.sty-acc__icon::after {
  content: '';
  position: absolute;
  background-color: #EB5505;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.sty-acc__icon::before {
  width: 100%;
  height: 2px;
}
.sty-acc__icon::after {
  width: 2px;
  height: 100%;
  transition: opacity 0.2s;
}

.sty-acc__body {
  display: none;
  border-bottom: none;
}
@media only screen and (max-width: 640px) {
  .sty-acc__body {
    border-bottom: 1px solid #EB5505;
  }
}

.sty-acc.is-active .sty-acc__body {
  display: block;
}
.sty-acc.is-active .sty-acc__icon::after {
  opacity: 0;
}

.sty-acc.is-active-pc-only .sty-acc__body {
  display: block;
}
.sty-acc.is-active-pc-only .sty-acc__icon::after {
  opacity: 0;
}
@media only screen and (max-width: 640px) {
  .sty-acc.is-active-pc-only .sty-acc__body {
    display: none;
  }
  .sty-acc.is-active-pc-only .sty-acc__icon::after {
    opacity: 1;
  }
}

.sty-menu-scroll {
  max-width: 311px;
  margin-left: auto;
  margin-right: auto;
}

.sty-menu-scroll__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  color: #000000;
  text-align: center;
}

.sty-menu-scroll__note {
  font-size: 12px;
  color: #212426;
}
@media only screen and (max-width: 640px) {
  .sty-menu-scroll__note {
    text-align: initial;
  }
}

.sty-menu-scroll__box {
  width: 100%;
  max-width: 311px;
  height: 490px;
  overflow-y: scroll;
  background-color: #FFF;
}
@media only screen and (max-width: 640px) {
  .sty-menu-scroll__box {
    height: 570px;
    padding-right: 12px;
    background-image: linear-gradient(to left, transparent 0px, #D4D5D5 0px, #D4D5D5 5px, transparent 5px);
  }
}

@media only screen and (max-width: 640px) {
  .sty-sp-section__box.sty-section_04 {
    position: relative;
  }

  .sty-sp-section__box.sty-section_04::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -40px;
    width: 100%;
    height: 40px;
    background-image: url(/landing/20260730_appli_renewal/img/grade_sp_03.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    z-index: 10;
  }
}

/* =========================================
  コンポーネント: 05 終了する機能
========================================= */
.sty-box-lightgray {
  background-color: #F7F7F7;
  max-width: 832px;
  margin: 0 auto;
  padding: 60px;
}
@media only screen and (max-width: 640px) {
  .sty-box-lightgray {
    padding: 32px 20px;
  }
}

.sty-section__desc {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 22.5px;
  color: #212426;
}
@media only screen and (max-width: 640px) {
  .sty-section__desc {
    font-size: 14px;
  }
}

.sty-notes {
  list-style: none;
  padding: 0;
}

.sty-notes li {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  line-height: 18px;
  color: #212426;
  padding-left: 1.4em;
  text-indent: -1.4em;
  margin-bottom: 4px;
}

/* =========================================
  コンポーネント: ページ評価エリア
========================================= */
.sty-survey .sty-section__inner {
  text-align: center;
  max-width: 480px;
}
@media only screen and (max-width: 640px) {
  .sty-survey .sty-section__inner {
    padding: 0 20px;
  }
}

.sty-survey__line {
  border: none;
  border-top: 2px solid #EB5505;
  margin: 0 auto 40px;
  max-width: 976px;
}
@media only screen and (max-width: 640px) {
  .sty-survey__line {
    margin: 0 auto 32px;
  }
}

.sty-survey__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  color: #007B94;
  margin-bottom: 24px;
}
@media only screen and (max-width: 640px) {
  .sty-survey__title {
    margin-bottom: 10px;
  }
}

.sty-survey__scale-wrap {
  display: inline-block;
  width: 100%;
  max-width: 418px;
}

.sty-survey__scale {
  display: flex;
  justify-content: space-between;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 12px;
}
@media only screen and (max-width: 640px) {
  .sty-survey__scale {
    max-width: 300px;
    margin-bottom: 10px;
  }
}

.sty-survey__btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background-color: #CCE4EA;
  color: #007B94;
  font-family: 'Roboto', 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 18px;
  cursor: pointer;
  transition: opacity 0.2s, background-color 0.2s;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sty-survey__btn:hover {
  background-color: #007B94;
  color: #FFF;
}
@media only screen and (max-width: 640px) {
  .sty-survey__btn {
    width: 40px;
    height: 40px;
    font-size: 15px;
    line-height: 22.5px;
  }
}

.sty-survey__labels {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  line-height: 21px;
  color: #212426;
  margin-bottom: 122px;
}
@media only screen and (max-width: 640px) {
  .sty-survey__labels {
    font-size: 12px;
    line-height: 18px;
    margin-bottom: 75px;
  }
}

/* =========================================
  コンポーネント: サンクスモーダル
========================================= */
.sty-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.sty-modal.is-active {
  opacity: 1;
  visibility: visible;
}

.sty-modal__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  cursor: pointer;
}

.sty-modal__inner {
  position: relative;
  background: #FFF;
  width: 90%;
  max-width: 400px;
  padding: 48px 24px;
  border-radius: 4px;
  text-align: center;
  z-index: 10000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.sty-modal__msg {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.6;
  color: #007B94;
  margin-bottom: 32px;
}
@media only screen and (max-width: 640px) {
  .sty-modal__msg {
    font-size: 16px;
  }
}

.sty-modal__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 32px;
  background: #FFF;
  border: 1px solid #212426;
  border-radius: 50px;
  font-size: 14px;
  color: #212426;
  cursor: pointer;
  transition: background-color 0.2s;
}
.sty-modal__close:hover {
  background: #F5F5F5;
}

.sty-modal__close-icon {
  font-size: 12px;
  margin-right: 6px;
  color: #212426;
}

/* =========================================
  タブレット幅（PC最大幅以下〜SPブレイクポイント以上）の余白調整
========================================= */
@media only screen and (min-width: 641px) and (max-width: 1016px) {
  .sty-hero__inner,
  .sty-toc__inner,
  .sty-section__inner,
  .sty-acc-section__inner {
    padding-right: 20px;
    padding-left: 20px;
  }
}

/* ========== 流用箇所 ========== */
/* ========== jbk-frame-main ========== */
#jbk-frame-main {
  margin-top: 0!important;
}

h1 {
  margin: 0!important;
}

/* ========== section-faq ========== */
.section-faq {
  background-color: #fff;
}

.section-faq .question,
.section-faq .answer-wrap {
  margin-bottom: 0!important;
  border: 1px solid #bcbcbc;
  border-top: 0;
}

.section-faq ul.questions {
  padding: 0;
}
@media screen and (max-width: 767px){
  .section-faq ul.questions {
    padding: 0;
  }
}

.section-faq ul.questions > li {
  list-style: none;
}

.section-faq ul.questions > li + li {
  margin-top: 0!important;
  margin-top: 1em;
}

.section-faq ul.questions > li:first-child {
  border-top: 1px solid #bcbcbc;
}

.section-faq .question {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  background-color: #fff;
  cursor: pointer;
  margin-bottom: 0.25em;
}

.section-faq .question:hover {
  background-color: #eee;
}

.section-faq .question.opened .text {
  background-image: url("/landing/20260730_appli_renewal/img/icon-chevron-up-black.png");
  background-repeat: no-repeat;
}

.section-faq .question .label {
  margin-bottom: 0;
}

.section-faq .question .text {
  margin-bottom: 0;
  color: #222;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  -ms-box-flex: 1;
  box-flex: 1;
  -webkit-flex-grow: 1;
  flex-grow: 1;
  background-image: url("/landing/20260730_appli_renewal/img/icon-chevron-down-black.png");
  background-repeat: no-repeat;
  -webkit-background-size: auto 1.125em;
  -moz-background-size: auto 1.125em;
  background-size: auto 1.125em;
  background-position: right 1em center;
}

.section-faq .label {
  color: #888;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  padding: 0 30px;
  font-size: 1em;
  font-weight: bold;
}
@media screen and (max-width: 767px){
  .section-faq .label {
    width: 15%;
    padding: 0;
  }
}

.section-faq .text {
  padding: 1.5em 2.5em 1.5em 0;
  font-weight: bold;
  font-size: 1em;
}
@media screen and (max-width: 767px){
  .section-faq .text {
    width: 85%;
  }
}

.section-faq .text .em {
  font-weight: bold;
}

.section-faq .answer-wrap {
  display: none;
}

.section-faq .answer {
  padding: 1.5em 2.5em;
  background-color: #ffede3;
}
@media screen and (max-width: 767px){
  .section-faq .answer {
    width: 100%;
  }
}

.section-faq .answer .label {
  color: #f0920c;
  font-size: 1.5em;
  background-color: #ffede3;
  margin-bottom: 0;
}

.section-faq .answer .text {
  color: #222;
  margin-bottom: 0;
}

.c-anchorList-01 a:before,.c-anchorLinks-01>li a:before {
    background-image: none;
    background-repeat: no-repeat;
    background-size: contain;
    mask-image: url(/assets/img/icon__bullet--right_nprl.svg)!important;
    -webkit-mask-image: url(/assets/img/icon__bullet--right_nprl.svg)!important;
    background-color: #007b94!important;
    top: 0!important;
    bottom: 0!important;
    right: 0!important;
    left: auto!important;
    margin: auto!important;
    width: 0.8em!important;
    height: 0.8em!important;
    transform: rotate(-90deg);
}

/* ========== c-btn-mail c-btn-account========== */
a.c-btn-account.c-btn-mail::before {
  background-image: url(/assets/img/icon_mail_01.png)
}

.c-or_area a.c-btn-account.icon-login.sty-icon.size-01 > .label:before {
  mask: url(/assets/img/icon_mail_01.png) no-repeat center center/contain;
  -webkit-mask: url(/assets/img/icon_mail_01.png) no-repeat center center/contain;
}
@media only screen and (max-width: 640px) {
  .c-or_area a.c-btn-account.icon-login.sty-icon.size-01{
    padding: 18px 30px 14px 60px;
  }
  .c-or_area a.c-btn-account.icon-login.size-01 > .label:before {
    content: "";
  }
}

/* ========== footer ========== */
#jbk-footer-area.jbk-footer-au_pay{
  font-size: 100%;
  padding-top: 2em;
  text-align: center;
  background-color: #FFFFFF;
}
.jbk-footer-au_pay .jbk-footer-logo{
  background-color: #fff;
}
.jbk-footer-au_pay .jbk-footer-logo img{
  width: 260px;
}
.jbk-footer-au_pay .jbk-footer-top,
.jbk-footer-au_pay .jbk-footer-top .c-noteList-01 li,
.jbk-footer-au_pay .jbk-footer-bot{
  color: #fff;
}
.jbk-footer-au_pay .jbk-footer-top{
  background-color: #898989;
  padding: 40px 10px;
}
.jbk-footer-au_pay .jbk-footer-top .c-copy-01 p:first-child{
  font-size: 150%;
}
.jbk-footer-au_pay .jbk-footer-top .c-noteList-01 li{
  display: inline-block;
  text-align: left;
}
.jbk-footer-au_pay .jbk-footer-bot{
  background-color: #747474;
  padding: 40px 10px;
}
@media only screen and (max-width: 640px){
  .jbk-footer-au_pay .jbk-footer-logo img{
    width: 130px;
  }
  .jbk-footer-au_pay .jbk-footer-top{
    padding: 20px 10px;
  }
  .jbk-footer-au_pay .jbk-footer-top .c-copy-01 p:first-child{
    font-size: 125%;
  }
  .jbk-footer-au_pay .jbk-footer-bot{
    padding: 20px 10px;
  }
}

/*--------------------------------------------------------------
header
--------------------------------------------------------------*/
.header .inner {
  background-color: #fff;
  padding: 20px 24px 12px;
}

.header .inner img {
  width: 190px;
}

@media screen and (max-width: 640px) {
  .header .inner {
    padding: 10px;
  }
  .header .inner img {
    width: 111px;
    height: auto;
  }
}

.sty-section__inner .c-topLink-01 {
  font-size: 14px;
  line-height: 21px;
  color: #212426;
}

.sty-section__inner .c-heading2-01 {
  padding-top: 80px;
  margin-top: 0px;
  margin-bottom: 0px;
}
@media screen and (max-width: 640px) {
  .sty-section__inner .c-heading2-01 span {
    font-size: 28px;
    line-height: 42px;
}
}

.sty-section__inner .c-heading2-01 span {
  color: #212426;
}