:root {
  --primary: #2f509f;
  --sub-color: #e60012;
  --header-height: 87px;
  --header-height-sp: 68px;
  --text-main: #333;
  --bg-default: #f5f7fa;
  --bg-subtle: #e4ecf7;
  --bg-grey: #e0e3e9;
  --border-color: #e6e6e6;
  /* --font-family-ja: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
  --font-family-en: "Barlow Condensed", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif; */
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  /* font-family: var(--font-family-ja);
  color: var(--text-main);
  letter-spacing: 0.1em; */
  background-color: var(--bg-default);
}

* {
  box-sizing: border-box;
}

h3 {
  font-size: 2.4rem;
}

div {
  font-size: 1.5rem;
  box-sizing: border-box;
}

p {
  font-size: 1.5rem;
  line-height: 1.8;
  margin: 0;
}

img {
  width: 100%;
}

a {
  text-decoration: none;
  color: var(--text-main);
}

a:hover {
  cursor: pointer;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

ul,
dt,
dd,
dl {
  margin: 0;
  padding-inline-start: 0;
}

ul {
  font-size: 0;
}

li {
  list-style-type: none;
  font-size: 1.4rem;
  box-sizing: border-box;
}

table {
  width: 100%;
}

button {
  all: unset;
  display: inline-block;
  cursor: pointer;
}

.pc {
  display: inline-block !important;
}

.sp {
  display: none !important;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-120 {
  margin-bottom: 120px;
}

.color-primary {
  color: var(--primary);
}

.bg-color-subtle {
  background-color: var(--bg-subtle) !important;
}

.note {
  font-size: 1.4rem;
  color: #666;
}

/*-------------------- header --------------------*/

/* .header {
  position: sticky;
  top: 0;
  width: 100%;
  height: var(--header-height);
  background: transparent;
  color: #fff;
  transition: background 0.3s ease, color 0.3s ease;
  z-index: 1000;
  background: #fff;
  color: var(--text-main);
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.header__inner {
  margin: auto;
  padding: 0 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header__logo-link {
  width: 160px;
}

.header__logo-img {
  width: 100%;
}

.header__nav {
  display: block;
}

.header__nav--sp {
  display: none;
}

.header__nav-list {
  display: flex;
  gap: 40px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.header__nav-item {
  position: relative;
  padding: 24px 0;
}

.header__nav-link {
  position: relative;
  text-decoration: none;
  color: inherit;
  font-size: 1.5rem;
  padding: 5px 0;
  display: flex;
  align-items: center;
  font-weight: 600;
}

.header__nav-item .header__nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background-color: var(--primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.header__nav-item .header__nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
} */

.arrow-down {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 10px;
  border: solid currentColor;
  border-width: 0 1px 1px 0;
  transform: rotate(45deg);
}

.has-dropdown:hover .arrow-down {
  transform: rotate(-135deg);
}

.dropdown {
  position: absolute;
  top: 84px;
  left: -30px;
  color: var(--text-main);
  padding: 8px 0 0 0;
  margin: 0;
  list-style: none;
  border-radius: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  min-width: 210px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.dropdown__inner {
  background: #fff;
  border-radius: 10px;
  padding: 15px 25px;
}

.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown li {
  border-bottom: 1px solid #eee;
  font-weight: 600;
  white-space: nowrap;
}

.dropdown li:last-child {
  border-bottom: none;
}

.dropdown a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  color: inherit;
  text-decoration: none;
  gap: 10px;
}

.dropdown a:hover {
  color: var(--primary);
  font-weight: 600;
}

.dropdown a i {
  color: var(--primary);
}

.mypage-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  padding: 10px 15px;
  width: 154px;
  height: 49px;
  text-decoration: none;
  overflow: hidden;
  border-radius: 3px;
  font-weight: 600;
  font-size: 1.5rem;
  justify-content: space-between;
  box-sizing: border-box;
  background: linear-gradient(to right, var(--primary) 0%, #4e87d8 100%);
}

.header .mypage-btn:hover {
  border: 2px solid var(--primary);
  background: #fff;
  color: var(--primary);
}

.arrow-animate {
  display: inline-block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

a:hover .arrow-animate,
button:hover .arrow-animate {
  animation: fadeSlideOutIn 0.6s ease forwards;
}

a:hover .fa-arrow-down.arrow-animate {
  animation: arrowFloatDown 0.6s ease forwards;
}

@keyframes fadeSlideOutIn {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  30% {
    opacity: 0;
    transform: translateX(8px);
  }
  60% {
    opacity: 0;
    transform: translateX(-8px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.header__burger {
  display: none;
}

body.menu-open {
  overflow: hidden;
  touch-action: none;
}

/*-------------------- header --------------------*/

/*-------------------- fade-in-up --------------------*/

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition-property: opacity, transform;
  will-change: transform;
}

.fade-in-up.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition-duration: 0.65s;
  transition-timing-function: cubic-bezier(0.65, 0, 0.35, 1), cubic-bezier(0.33, 1, 0.68, 1);
}

/*-------------------- fade-in-up --------------------*/

/*-------------------- button --------------------*/

.link-button--primary {
  background: linear-gradient(to right, var(--primary) 0%, #4e87d8 100%);
  color: #fff;
  padding: 12px 30px;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  height: 76px;
  text-decoration: none;
  overflow: hidden;
  border-radius: 3px;
  font-weight: 600;
  font-size: 1.5rem;
  width: 380px;
  justify-content: space-between;
  box-sizing: border-box;
}

.link-button--primary:hover {
  border: 2px solid var(--primary);
  background: #fff;
  color: var(--primary);
}

.link-button--primary.pc {
  display: flex !important;
}

.arrow-button--primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background-color: var(--primary);
  color: #fff;
  border-radius: 50%;
  font-size: 1.6rem;
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transition: 0.3s;
  box-sizing: border-box;
}

a:hover .arrow-button--primary {
  background-color: #fff;
  color: var(--primary);
  transition: 0.3s;
  border: 1px solid var(--primary);
}

.arrow-button--red {
  background: var(--sub-color);
  width: 28px;
  height: 28px;
  font-size: 1.1rem;
  right: 0;
}

a:hover .arrow-button--red {
  background-color: #fff;
  color: var(--sub-color);
  transition: 0.3s;
  border: 1px solid var(--sub-color);
}

.section__link-area {
  display: flex;
  flex-wrap: wrap;
  gap: 2%;
}

.section__link {
  width: 32%;
  position: relative;
}

.section__link-area.two-column .section__link {
  width: 49%;
}

.section__link a {
  transition: 0.3s;
  display: block;
  padding: 20px 0;
  font-size: 1.5rem;
  font-weight: bold;
}

.section__link a.download-link {
  display: flex;
  justify-content: space-between;
  text-decoration: none;
}

.section__link a:hover {
  color: var(--sub-color);
}

.section__link-area .section__link:nth-child(n + 4) {
  margin-top: 30px;
}

.section__link-area--primary .section__link a:hover {
  color: var(--primary);
}

.section__link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background-color: var(--border-color);
}

.section__link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background-color: var(--sub-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: 2;
}

.section__link-area--primary .section__link::after {
  background-color: var(--primary);
}

.section__link:hover::after {
  transform: scaleX(1);
}

.download-link__label {
  border: 2px solid var(--primary);
  color: #fff;
  background: var(--primary);
  border-radius: 3px;
  padding: 2px 10px;
  margin-right: 8px;
  font-size: 1.2rem;
  box-sizing: border-box;
  transition: 0.3s;
}

.link-icon--primary {
  display: inline-block;
  transition: none;
  width: 22px;
  color: var(--primary);
}

.link-icon--primary.fa-solid {
  line-height: inherit;
}

.download-link:hover .link-icon--primary {
  animation: arrowFloatDown 0.6s ease forwards;
}

.download-link:hover .download-link__label {
  color: var(--primary);
  background: #fff;
}

@keyframes arrowFloatDown {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  30% {
    opacity: 0;
    transform: translateY(8px);
  }
  60% {
    opacity: 0;
    transform: translateY(-8px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/*-------------------- button --------------------*/

/*-------------------- footer --------------------*/

.footer {
  background-color: #2c2f36;
  color: #fff;
  padding: 80px 0;
}

.footer__inner {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
}

.footer__logo {
  margin-bottom: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__logo img {
  max-width: 180px;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 80px;
  width: 100%;
  gap: 40px;
}

.footer__col {
  flex: 1 1 160px;
}

.footer__heading {
  position: relative;
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 16px;
  border-bottom: 1px solid #3d424c;
  padding-bottom: 12px;
  color: #fff;
  display: inline-block;
  width: 100%;
}

.footer__heading::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30%;
  height: 1px;
  background-color: #8b919b;
  transform-origin: left;
  transition: transform 0.6s ease;
}

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

.footer__list li {
  margin-bottom: 10px;
}

.footer__list a {
  color: #fff;
  text-decoration: none;
  font-size: 1.4rem;
  opacity: 0.7;
}

.footer__list a:hover,
.footer__legal a:hover {
  opacity: 1;
  transition: 0.3s;
}

.footer__bottom {
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.footer__bottom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 1px;
  background-color: #3d424c;
  transform: translateX(-50%);
  left: 50%;
}

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  list-style: none;
  margin-bottom: 10px;
  padding: 0;
}

.footer__legal a {
  color: #fff;
  opacity: 0.7;
  text-decoration: none;
  font-size: 1.3rem;
}

.footer__legal .pc {
  color: #3d424c;
}

.footer__copyright {
  font-size: 1.3rem;
  color: #747d8c;
}

.scroll-top {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(70px, 11.5vw);
  height: min(70px, 11.5vw);
  background-color: #fff;
  color: #292e37;
  border-radius: 50%;
  font-size: 1.6rem;
  transition: 0.3s;
  box-sizing: border-box;
}

.scroll-top:hover {
  background-color: #292e37;
  color: #fff;
  transition: 0.3s;
  border: 2px solid #fff;
}

.scroll-top:hover .arrow-animate {
  animation: arrowFloatY 0.6s ease forwards;
}

@keyframes arrowFloatY {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  30% {
    opacity: 0;
    transform: translateY(-8px);
  }
  60% {
    opacity: 0;
    transform: translateY(8px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/*-------------------- footer --------------------*/

/*-------------------- 下層ページ共通 --------------------*/

.page-header {
  position: relative;
  height: 410px;
  overflow: hidden;
  margin-bottom: 120px;
}

.page-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  object-position: right;
}

.page-header__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 90%;
  max-width: 1120px;
}

.page-header__inner h1 {
  color: #fff;
  font-size: 3.8rem;
  font-weight: bold;
  margin: 0;
  transition: 0.3s;
}

.page-header__label {
  font-size: 1.5rem;
  color: #fff;
  padding: 4px 24px;
  border: 1px solid #fff;
  display: inline-block;
  border-radius: 2px;
  margin-bottom: 5px;
  transition: 0.3s;
}

.section {
  width: 90%;
  max-width: 1120px;
  margin: 0 auto 120px;
}

.section__heading {
  position: relative;
  margin-bottom: 60px;
}

.section h2 {
  font-size: 3.6rem;
  color: var(--text-main);
  position: relative;
  margin-left: 60px;
  padding-bottom: 20px;
  display: inline-block;
}

.section__heading::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 1px;
  background-color: var(--border-color);
  transform: translateX(-50%);
  left: 50%;
}

.border-slide--right::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background: linear-gradient(to right, var(--primary) 0%, #4e87d8 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.2s ease;
  z-index: 2;
}

.section h2.is-animated::after {
  transform: scaleX(1);
}

.section__body {
  display: flex;
  gap: 2%;
  flex-wrap: wrap;
}

.card {
  width: 100%;
  background: #fff;
  padding: 60px;
  border-radius: 8px;
  transition: 0.3s;
}

.card--two-column {
  width: 49%;
}

.features-list__content {
  width: 48%;
}

.features-list__content .link-button--primary {
  margin-top: 30px;
  max-width: 380px;
  width: 100%;
}

.features-list__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 60px;
  margin-bottom: 60px;
  border-bottom: 1px solid var(--border-color);
  gap: 5%;
}

.features-list__item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.features-list__title {
  font-size: 2.8rem;
  margin-bottom: 15px;
}

.features-list__title small {
  font-size: 2rem;
}

.features-list__label {
  font-family: var(--font-family-en);
  color: var(--primary);
  font-weight: 500;
  display: block;
  margin-bottom: 20px;
  position: relative;
  padding-left: 12px;
}

.features-list__label::before {
  content: "";
  position: absolute;
  left: 0;
  width: 2px;
  height: 60%;
  background: linear-gradient(to bottom, var(--primary), #4e87d8);
  top: 50%;
  transform: translateY(-50%);
}

.highlight-marker {
  background: linear-gradient(transparent 75%, rgba(255, 225, 55, 0.38) 0%);
}

.features-list__title .text-emphasis {
  font-size: 4.2rem;
}

.features-list__image-wrap {
  max-width: 463px;
  width: 60%;
  background: var(--bg-default);
  border-radius: 5px;
  min-height: 292px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.features-list__image-wrap .features-list__image {
  width: 70%;
  min-width: 270px;
}

.features-list__image-wrap .features-list__image--bottom-shift {
  position: absolute;
  bottom: 10%;
  max-width: 312px;
  min-width: 250px;
}

.features-list__image {
  max-width: 463px;
  width: 50%;
  border-radius: 8px;
  object-fit: cover;
}

.card.link-banner {
  padding: 0;
  position: relative;
  transition: all 0.2s ease-out;
  min-height: 200px;
  box-shadow: 0 5px 25px rgba(150, 158, 165, 0.08);
  margin-bottom: 2%;
}

.link-banner__inner {
  display: flex;
  align-items: center;
  gap: 5%;
  border-radius: 8px;
  height: 100%;
}

.link-banner__title {
  color: var(--primary);
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 12px;
  font-size: 2rem;
}

.link-banner__image-wrap {
  height: 100%;
  background: linear-gradient(to right, #c6deff 0%, #def2ff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40%;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}

.link-banner__image {
  width: 60%;
}

.plan-list .link-banner__image {
  max-width: 160px;
}

.link-banner:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 5px 25px rgba(136, 146, 155, 0.2);
}

.link-banner__content {
  padding: 25px 0;
  width: 42%;
}

.plan-list--close {
  margin-top: 40px;
}

.plan-list--close .card.link-banner {
  min-height: 140px;
}

.plan-list--close .card.link-banner a {
  padding: 30px 60px;
}

.plan-list--close .link-banner__content {
  width: 100%;
}

.card__title {
  font-size: 2.4rem;
  margin-bottom: 40px;
  position: relative;
  padding-left: 12px;
  display: block;
}

.card__title::before {
  content: "";
  position: absolute;
  left: 0;
  width: 2px;
  height: 70%;
  background: linear-gradient(to bottom, var(--primary), #4e87d8);
  top: 50%;
  transform: translateY(-50%);
}

.bottom-banner-section {
  background: var(--bg-subtle);
  padding: 60px 0;
}

.bottom-banner-section__inner {
  width: 90%;
  max-width: 1280px;
  display: flex;
  justify-content: center;
  margin: 0 auto;
}

.bottom-banner-section .card--two-column {
  margin-bottom: 0;
  width: 662px;
}

.anchor-button-area .anchor-button {
  padding: 0;
  transition: all 0.2s ease-out;
  box-shadow: 0 5px 25px rgba(150, 158, 165, 0.08);
}

.anchor-button-area .anchor-button a {
  height: 126px;
  padding: 0 40px;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
}

.anchor-button-area .anchor-button:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 5px 25px rgba(136, 146, 155, 0.2);
}

.bottom-banner-section .link-banner__inner {
  gap: 4%;
}

.bottom-banner-section .link-banner__content {
  width: 45%;
}

.bottom-banner-section .link-banner__title {
  margin-bottom: 0;
  color: var(--text-main);
}

.bottom-banner-section .link-banner__image {
  width: 100%;
  object-fit: cover;
  height: 100%;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}

.region-tabs {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.region-tab {
  background: var(--bg-default);
  width: calc(100% / 9);
  text-align: center;
  border: 1px solid #fff;
  height: 50px;
  box-sizing: border-box;
}

.region-tab.active {
  background: var(--primary);
  color: #fff;
  font-weight: 500;
}

.region-tables {
  margin-bottom: 40px;
}

.region-table {
  opacity: 0;
  transform: translateY(10px);
  visibility: hidden;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  position: absolute;
  width: 100%;
}

.region-table td,
.region-table th {
  text-align: center;
}

.region-table.active {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  position: relative;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
}

table td,
table th {
  border: 1px solid #d2d2d2;
  text-align: left;
  height: 69px;
  padding: 20px 30px;
}

.plan-header td,
.plan-header th {
  background-color: #d4e5f9;
  font-weight: bold;
}

.label-cell {
  background: #f4f4f4;
}

.brands .card--two-column {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 212px;
  margin-bottom: 20px;
}

.brands .card--two-column img {
  width: 70%;
  max-width: 262px;
}

.anchor-target {
  scroll-margin-top: calc(var(--header-height) + 40px);
}

.media {
  display: flex;
  align-items: center;
  gap: 5%;
}

.text-link {
  color: var(--sub-color);
  text-decoration: underline;
}

.phone-number img {
  width: 29px;
  display: inline-block;
}

.phone-number {
  font-size: 3.2rem;
  color: var(--primary);
  font-weight: 600;
}

.bg-grey {
  background: var(--bg-grey);
}

.benefit-section {
  background-color: var(--bg-subtle);
  padding: 60px 20px;
  border-radius: 8px;
  text-align: center;
}

.benefit-section__title {
  font-size: 2.4rem;
  font-weight: bold;
  color: var(--primary);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
}

.benefit-section__description {
  font-size: 1.6rem;
  margin-bottom: 60px;
}

.benefit-section__items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.benefit-card {
  background-color: #fff;
  border-radius: 5px;
  padding: 30px 24px;
  display: flex;
  align-items: center;
  max-width: 240px;
  width: 26%;
  position: relative;
  height: 86px;
  justify-content: center;
}

.benefit-card__icon {
  height: 44px;
  position: absolute;
  top: -30%;
}

.benefit-card__label {
  font-weight: 500;
  color: var(--primary);
  font-size: 1.5rem;
  line-height: 1.4;
}

.benefit-section__plus {
  font-size: 2.4rem;
  color: var(--primary);
  font-weight: bold;
}

/*-------------------- 下層ページ共通 --------------------*/

@media (max-width: 1024px) {
  .header {
    height: var(--header-height-sp);
  }

  .header__logo-link {
    width: 120px;
  }

  .header__nav {
    display: none;
  }

  .header__inner {
    padding: 0 24px;
  }

  .header__nav--sp {
    position: fixed;
    inset: 0;
    background: var(--primary);
    opacity: 0;
    transition: background 0.4s ease, opacity 0.4s ease;
    z-index: 1100;
    overflow-y: auto;
    padding-top: 120px;
    pointer-events: none;
    display: flex;
    justify-content: center;
  }

  body.menu-open .header__nav--sp {
    background: var(--primary);
    opacity: 1;
    pointer-events: auto;
  }

  .header__nav-list--sp {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-direction: column;
    width: 90%;
    display: flex;
  }

  .nav__sp-padding {
    height: 120px;
    min-height: 120px;
    pointer-events: none;
    line-height: 1;
  }

  .nav__sp-padding::before {
    content: "\00a0";
    display: block;
  }

  .nav__item--sp {
    width: 100%;
    border-bottom: 1px solid #5374c3;
  }

  .nav__item--sp:last-child {
    border: none;
  }

  .nav__item--sp a {
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    padding: 16px 0;
    font-size: 1.5rem;
    text-decoration: none;
    cursor: pointer;
  }

  body.menu-open .mypage-btn {
    color: var(--primary);
    width: 100%;
    padding: 17px 20px;
    background: #fff;
    margin-top: 40px;
    height: 55px;
  }

  .nav__item--sp.open .arrow-down {
    transform: rotate(-135deg);
  }

  .sp-dropdown {
    overflow: hidden;
    height: 0;
    transition: height 0.4s ease;
    margin: 0;
    padding: 0;
  }

  .sp-dropdown li a {
    color: #fff;
    display: block;
    padding: 12px 0;
    text-decoration: none;
  }

  .sp-dropdown li:last-child a {
    margin-bottom: 12px;
  }

  .nav__item--sp.open .arrow-down {
    transform: rotate(-135deg);
    transition: transform 0.3s ease;
  }

  .header__burger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 20px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    z-index: 1101;
  }

  .header__burger span {
    width: 100%;
    height: 2px;
    background: var(--text-main);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s, background 0.3s;
  }

  body.menu-open .header__burger span {
    background: #fff;
  }

  body.menu-open .header__burger span:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
  }
  body.menu-open .header__burger span:nth-child(2) {
    opacity: 0;
  }
  body.menu-open .header__burger span:nth-child(3) {
    transform: translateY(-9.5px) rotate(-45deg);
  }

  .header__nav--sp .dropdown {
    position: static;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    background: transparent;
    box-shadow: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0;
  }

  .header__nav--sp .header__nav-item.has-dropdown.open .dropdown {
    max-height: 800px;
  }

  .header__nav--sp .dropdown__inner {
    background: transparent;
    padding: 0;
  }

  .header__nav--sp .dropdown li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .header__nav--sp .dropdown a {
    color: #fff;
    padding: 14px 40px 14px 24px;
  }

  .header__nav--sp .dropdown a i {
    color: #fff;
  }

  .header__nav--sp .header__nav-list li {
    opacity: 0;
    transform: translateY(10px);
  }

  body.menu-open .header__nav--sp .header__nav-list li {
    animation: menuFade 0.4s forwards;
  }
  body.menu-open .header__nav--sp .header__nav-list li:nth-child(1) {
    animation-delay: 0.05s;
  }
  body.menu-open .header__nav--sp .header__nav-list li:nth-child(2) {
    animation-delay: 0.1s;
  }
  body.menu-open .header__nav--sp .header__nav-list li:nth-child(3) {
    animation-delay: 0.15s;
  }
  body.menu-open .header__nav--sp .header__nav-list li:nth-child(4) {
    animation-delay: 0.2s;
  }
  body.menu-open .header__nav--sp .header__nav-list li:nth-child(5) {
    animation-delay: 0.25s;
  }
  body.menu-open .header__nav--sp .header__nav-list li:nth-child(6) {
    animation-delay: 0.3s;
  }

  @keyframes menuFade {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .nav__item--sp.open .arrow-down--sp {
    transform: rotate(-135deg);
  }

  .arrow-down--sp {
    display: inline-block;
    width: 8px;
    height: 8px;
    border: solid currentColor;
    border-width: 0 1px 1px 0;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
    margin-right: 5px;
  }

  .arrow-down-right {
    transform: rotate(-45deg);
  }

  .top-support__links {
    flex-flow: column;
  }

  /*-------------------- footer --------------------*/

  /* .footer {
    padding: 40px 15px 25px;
  }

  .footer__col {
    flex: 0;
  }

  .footer__nav {
    flex-direction: column;
  }

  .footer__heading {
    font-size: 1.4rem;
    border-bottom: none;
    margin-bottom: 0;
  }

  .footer__heading::before {
    display: none;
  }

  .footer__nav {
    gap: 0;
    margin-bottom: 60px;
  }

  .footer .nav__item--sp {
    border-bottom: 1px solid #3d424c;
    position: relative;
  }

  .footer .nav__item--sp::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 1px;
    background-color: #8b919b;
  }

  .footer .nav__item--sp a {
    font-size: 1.4rem;
    padding: 20px 0;
  }

  .footer .footer__list li {
    margin-bottom: 0;
  }

  .footer .footer__list li:last-child a {
    margin-bottom: 20px;
  }

  .footer .footer__list a {
    font-size: 1.4rem;
    padding: 10px 0;
  }

  .footer .footer__legal {
    position: relative;
    flex-direction: column;
    gap: 10px;
    padding-bottom: 60px;
    margin-bottom: 0;
  }

  .footer .footer__bottom {
    padding-top: 0;
    align-items: inherit;
    flex-flow: column;
  }

  .footer .footer__bottom::before {
    display: none;
  }

  .footer .footer__legal li.pc {
    display: none !important;
  }

  .footer .footer__legal::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: 1px;
    background-color: #3d424c;
    transform: translateX(-50%);
    left: 50%;
  }

  .footer .footer__copyright {
    margin-top: 25px;
    font-size: 1.2rem;
    text-align: center;
  } */

  /*-------------------- footer --------------------*/

  .section h2 {
    margin-left: 0;
    font-size: 2.8rem;
  }

  .card--two-column,
  .bottom-banner-section .card--two-column {
    width: 100%;
  }

  .plan-list--close .link-banner__inner {
    flex-flow: inherit;
  }

  .section__link {
    width: 49%;
  }

  .section__link-area .section__link:nth-child(n + 3) {
    margin-top: 30px;
  }

  .features-list__image-wrap .features-list__image--bottom-shift {
    bottom: 13%;
  }

  .region-tab {
    width: calc(100% / 3);
  }

  .features-list__title {
    font-size: 2rem;
  }

  .features-list__title small {
    font-size: 1.6rem;
  }

  .j-plan .features-list__image {
    height: 340px;
  }

  .anchor-button-area .anchor-button:not(:last-child) {
    margin-bottom: 15px;
  }
}

@media (max-width: 768px) {
  .pc {
    display: none !important;
  }

  .sp {
    display: inline-block !important;
  }

  h3 {
    font-size: 2rem;
  }

  .mb-60 {
    margin-bottom: 30px;
  }

  .mb-80 {
    margin-bottom: 60px;
  }

  .link-button--primary {
    width: 100%;
    font-size: 1.5rem;
    padding: 12px 20px;
  }

  .link-button--primary.pc {
    display: none !important;
  }

  .link-button--primary.sp {
    display: flex !important;
  }

  .arrow-button--primary {
    width: 30px;
    height: 30px;
    font-size: 1.2rem;
  }

  .arrow-button--red {
    width: 24px;
    height: 24px;
    font-size: 1rem;
    right: 0;
  }

  .page-header {
    height: auto;
    margin-bottom: 60px;
  }

  .page-header img {
    max-height: 340px;
  }

  .page-header__inner {
    position: inherit;
    transform: inherit;
    width: 100%;
    top: 0;
    left: 0;
    margin: 30px 15px 0;
  }

  .page-header__inner h1 {
    color: var(--text-main);
    font-size: 3rem;
  }

  .page-header__label {
    font-size: 1.3rem;
    color: #fff;
    border: none;
    background: var(--primary);
    margin-bottom: 5px;
  }

  .section {
    width: calc(100% - 30px);
    margin: 0 auto 60px;
  }

  .section__heading {
    margin-bottom: 30px;
  }

  .section h2 {
    font-size: 2.5rem;
    margin-left: 0;
    padding-bottom: 16px;
  }

  .card {
    width: 100%;
    padding: 30px 15px;
    border-radius: 5px;
  }

  .features-list__item {
    flex-flow: column;
    padding-bottom: 30px;
    margin-bottom: 30px;
  }

  .features-list__item .link-button--primary {
    margin-top: 20px;
  }

  .features-list__content {
    width: 100%;
  }

  .features-list__image {
    max-width: 100%;
    width: 100%;
    border-radius: 5px;
    height: auto;
  }

  .j-plan .features-list__image {
    height: auto;
  }

  .features-list__label {
    margin-bottom: 8px;
  }

  .features-list__title {
    margin-bottom: 20px;
    font-size: 2rem;
  }

  .features-list__text {
    width: 100%;
    margin-top: 20px;
  }

  .link-banner__inner {
    display: flex;
    gap: 0;
    border-radius: 5px;
    flex-flow: column;
  }

  .link-banner__image-wrap {
    width: 100%;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 0;
    border-top-right-radius: 5px;
    min-height: 185px;
    max-height: 240px;
  }

  .link-banner__image {
    width: 46%;
  }

  .link-banner__content {
    padding: 30px 20px;
    width: 100%;
  }

  .link-banner__title {
    position: relative;
    display: inline-block;
  }

  .link-banner__title .arrow-button--primary {
    right: -40px;
  }

  .card--two-column {
    margin-bottom: 5%;
  }

  .plan-list--close {
    margin-top: 20px;
  }

  .plan-list--close .card.link-banner a {
    padding: 25px 20px;
  }

  .plan-list--close .link-banner__inner {
    flex-grow: inherit;
  }

  .plan-list--close .link-banner__content {
    padding: 0;
  }

  .card__title {
    font-size: 2rem;
    margin-bottom: 20px;
  }

  .section__link {
    width: 100%;
  }

  .section__link-area .section__link:nth-child(n) {
    margin-top: 0;
  }

  .bottom-banner-section__inner {
    width: calc(100% - 30px);
  }

  .bottom-banner-section .card--two-column {
    width: 100%;
  }

  .bottom-banner-section .link-banner__image {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 0;
    border-top-right-radius: 5px;
  }

  .features-list__image-wrap {
    max-width: 100%;
    width: 100%;
  }

  .features-list__image-wrap .features-list__image {
    max-width: 340px;
  }

  .features-list__image-wrap .features-list__image--bottom-shift {
    bottom: inherit;
    max-width: 280px;
  }

  .brands .card--two-column {
    height: 140px;
    margin-bottom: 10px;
  }

  .brands .card--two-column img {
    width: 65%;
    max-width: 192px;
  }

  .anchor-button-area .anchor-button a {
    height: auto;
    padding: 30px 15px;
    font-size: 1.6rem;
  }

  .media {
    flex-flow: column;
    align-items: start;
    gap: 20px;
  }

  .media__image {
    max-width: 100%;
    width: 100%;
  }

  .phone-number img {
    width: 18px;
  }

  td.phone-number {
    font-size: 2rem;
  }

  table td,
  table th {
    padding: 20px 10px;
  }

  .benefit-section {
    padding: 30px 15px;
    border-radius: 5px;
  }

  .benefit-card {
    width: 100%;
    max-width: 100%;
  }

  .benefit-section__title {
    font-size: 2rem;
  }

  .benefit-section__description {
    margin-bottom: 30px;
  }

  .benefit-card__icon {
    position: inherit;
    top: inherit;
    left: inherit;
    width: auto;
    margin-right: 12px;
  }
}
