@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=Noto+Serif+JP:wght@200&display=swap");

/*----------------------------------------
// 共通
----------------------------------------*/
/* Variables */
:root {
    --background-color: #00042E;
    --white: #ffffff;
    --highlight-color: #ffcc00;
    --text-color: #333;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 10px rgba(0, 0, 0, 0.1);
    --font-primary: 'Noto Sans JP', sans-serif;
    --font-en: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    overflow-x: hidden;
}
h1 {
  font-size: 1.5em
}

a {
    text-decoration: none;
}

.container {
    position: relative;
    margin: 0 auto;
    max-width: 1280px;
    overflow: hidden;
    padding: 0 20px;
}

@media screen and (max-width: 1920px) {
    .container {
        width: 100%;
    }
}

@media screen and (max-width: 1100px) {
    .container {
        padding: 35px;
    }
}

@media screen and (max-width: 480px) {
    .container {
        width: 100%;
        padding: 15px;
    }
}

/*----------------------------------------
// Header
----------------------------------------*/
.header {
    background-color: #00042E;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    top: 0;
    z-index: 100;
}
  
.header__link {
    display: block;
    text-align: center;
}
.header__logo {
  width: 100%;
  max-width: 200px;
  height: auto;
}

/*----------------------------------------
// Hero Section
----------------------------------------*/
.hero {
    background: url('../images/bg.png') no-repeat center center/cover;
    background-color: #00042E;
    color: #ffffff;
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
@media screen and (max-width: 480px) {
  .hero {
    background-position: center;
    background-size: cover;
  }
}

.hero::before {
    content: "";
    display: block;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, rgba(0, 4, 46, 1) 0%, rgba(0, 4, 46, 0) 100%);
    position: absolute;
    bottom: 0;
    left: 0;
}

@media screen and (max-width: 1200px) {
    .hero {
        padding: 0 0 40px 0;
    }
}

@media screen and (max-width: 768px) {
    .hero {
        background-position: right center;
        padding: 0 0 30px 0;
    }
}
  
@media screen and (max-width: 480px) {
    .hero {
        padding: 0 0 20px 0;
    }
}
.special-character {
  font-size: 12px;
  font-weight: normal;
  color: #fff;
}
@media screen and (max-width: 480px) {
  .special-character {
    font-size: 10px;
  }
}

.hero__main {
    position: relative;
}
  
.hero__main .button--secondary {
    width: calc(50% - 100px);
    position: absolute;
    top: calc(50% + 100px);
    left: calc(50% - 240px);
    transform: translate(-50%, -50%);
}



@media screen and (max-width: 768px) {
    .hero__main .button--secondary {
        position: relative;
        width: 100%;
        top: auto;
        left: auto;
        transform: none;
    }
}

.hero__main .button--secondary .button__image {
    width: 100%;
    max-width: 480px;
    height: auto;
}
@media screen and (max-width: 768px) {
    .hero__main .button--secondary .button__image {
        max-width: 360px;
    }
}

@media screen and (max-width: 480px) {
    .hero__main .button--secondary .button__image {
        max-width: 100%;
    }
}

.devices {
    width: 50%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}
  
@media (max-width: 768px) {
    .devices {
        width: 100%;
        justify-content: center;
    }
}

.devices__image {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
}
  
@media (max-width: 768px) {
    .devices__image {
        width: 70%;
    }
}

.note__highlight {
    color: #ffcc00;
}

.note {
    width: 100%;
    display: flex;
    justify-content: center;
}

.note .note__text {
    width: 100%;
    max-width: 980px;
    line-height: 2;
    text-align: left;
}
@media screen and (max-width: 480px) {
  .note__text {
    font-size: 12px;
  }
}
.note .note__small {
    font-size: 12px;
    display: block;
}

/* Price Image styles */
.price {
    max-width: 100%;
    margin: 0 auto;
}
.price__link {
    cursor: default;
    display: block;
}

.price__image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

@media screen and (max-width: 768px) {
    .price {
        width: 100%;
    }
    
    .price__image {
        width: 90%;
    }
}

/*----------------------------------------
// plan
----------------------------------------*/
.plan,
.steps {
    margin-top: -1px;
    background-color: #00042E;
    padding: 0 0 80px 0;
}
  
@media screen and (max-width: 1200px) {
    .plan,
    .steps {
        padding: 60px 0;
    }
}
  
@media screen and (max-width: 768px) {
    .plan,
    .steps {
        padding: 40px 0;
    }
    .plan {
      padding-top: 0;
    }
}
  
@media screen and (max-width: 480px) {
    .plan,
    .steps {
        padding: 0;
    }
}

.plan__content {
    --plan-content-border: 3px solid #fff;
    --plan-content-padding: 30px;
    --plan-content-gap: 30px;
    
    border: var(--plan-content-border);
    border-radius: 10px;
    padding: var(--plan-content-padding);
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: var(--plan-content-gap);
}

@media screen and (max-width: 768px) {
    .plan__content {
        --plan-content-border: 2px solid #fff;
        --plan-content-padding: 20px;
        --plan-content-gap: 25px;
        flex-direction: column;
        align-items: center;
        line-height: 1.5;
        font-size: 14px;
    }
}
@media screen and (max-width: 768px) {
  .plan__content {
    gap: 0;
  }
}

@media screen and (max-width: 768px) {
    .plan__timeline, 
    .plan__info {
        width: 100%;
    }


}

@media screen and (max-width: 480px) {
    .plan__content {
        border: 1px solid #fff;
        padding: 15px;
        gap: 15px;
    }
    
    .plan__timeline {
        margin-bottom: 15px;
    }
    
    .plan__timeline-image {
        max-width: 280px;
        height: auto;
    }
    

}

.plan__timeline {
    width: 30%;
}
@media screen and (max-width: 768px) {
  .plan__timeline {
    width: 100%;
        margin-bottom: 25px;
        display: flex;
        justify-content: center;
  }
}
@media screen and (max-width: 480px) {
  .plan__timeline {
    width: 100%;
    margin-bottom: 0;
  }
}

.plan__info {
    width: 70%;
}
@media screen and (max-width: 768px) {
  .plan__info {
    width: 100%;
  }
}

.plan__timeline-image {
    max-width: 450px;
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
}

@media screen and (max-width: 768px) {
    .plan__timeline-image {
        width: 100%;
        max-width: 350px;
        height: auto;
    }
}

.plan__header,
.steps__header {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-bottom: 50px;
}

@media screen and (max-width: 480px) {
  .plan__header,
  .steps__header {
    margin-bottom: 20px;
  }
}

.plan__label,
.steps__label {
  font-size: 14px;
  color: #5E6DA7;
  letter-spacing: 1.68px;
  line-height: 1;
}

.plan__header-text--medium {
  font-size: 20px;
  font-weight: normal;
  color: #fff;
  margin-bottom: 20px;
}

.plan__title,
.steps__title {
  text-align: center;
  font-size: 35px;
  font-weight: bold;
  letter-spacing: 3.36px;
  color: #FFFFFF;
  margin-bottom: 35px;
}

  @media screen and (max-width: 768px) {
  .plan__title,
  .steps__title {
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 480px) {
  .plan__title,
  .steps__title {
    font-size: 24px;
    margin-bottom: 20px;
  }
}

.plan__subtitle,
.steps__subtitle {
  display: block;
  font-size: 20px;
  font-weight: normal;
  color: #ffcc00;
}
.steps__picture {
  width: 100%;
}
.steps__picture img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .steps__image {
    width: 100%;
    height: auto;
  }
}

.plan__description,
.steps__description {
  text-align: center;
  font-size: 18px;
  color: #FFFFFF;
  margin-bottom: 20px;
}
@media screen and (max-width: 480px) {
  .plan__description,
  .steps__description {
    font-size: 14px;
  }
}

.plan__scroll {
  width: 100%;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .plan__scroll {
    margin-bottom: 10px;
  }
}
/* Add style to hide scrollbar on PC */
@media screen and (min-width: 769px) {
  .plan__scroll {
    overflow-x: hidden;
  }
}
.plan__image {
  width: 100%;
  height: auto;
  max-width: 980px;
  margin: 0 auto;
  display: block;
}
@media screen and (max-width: 768px) {
  .plan__image {
    width: 100%;
    height: auto;
    max-width: 600px;
  }
}

.plan__text {
  font-size: 18px;
  color: #FFFFFF;
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 1.6px;
  line-height: 1.8;
  font-weight: normal;
}

@media screen and (max-width: 768px) {
  .plan__text {
    width: 100%;
    font-size: 14px;
  }
}

@media screen and (max-width: 480px) {
  .plan__text {
    font-size: 12px;
    line-height: 1.5;
  }
}

.plan__text + .plan__text {
  margin-top: 0;
}

.plan__link {
  display: block;
  font-size: 18px;
  color: #fff;
  width: 100%;
  text-align: right;
  margin-top: 10px;
  text-decoration: underline;
}
.plan__link:hover {
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  .plan__link {
    text-align: center;
    font-size: 14px;
  }
}
@media screen and (max-width: 480px) {
  .plan__link {
    font-size: 14px;
    text-align: left;
    margin-top: 15px;
    font-weight: bold;
  }
}

.plan__note {
  font-size: 14px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .plan__note {
    font-size: 12px;
  }
}


.plan__note--highlight {
  color: #ffcc00;
}
.plan__note--highlight-arrow {
  color: #fff;
}

/*----------------------------------------
// steps
----------------------------------------*/
.steps__subtitle {
  color: #fff;
  font-size: 12px;
  margin-top: 20px;
}

.step_statusbar {
  display: flex;
  justify-content: center;
}
  
  @media screen and (max-width: 768px) {
  .step_statusbar {
    padding: 0 10px;
    margin-bottom: 30px;
  }
}

.steps__text {
  color: #ffcc00;
  font-size: 18px;
  text-align: center;
  margin-top: 20px;
}

@media screen and (max-width: 768px) {
  .steps__text {
    font-size: 14px;
  }
}
@media screen and (max-width: 480px) {
  .steps__text {
    font-size: 12px;
    text-align: left;
  }
}

/*----------------------------------------
// floating
----------------------------------------*/
.cv-floating {
  box-sizing: border-box;
  background-color: rgba(0, 0, 0, 0.8);
  box-shadow: 0 -3px 6px rgba(0, 0, 0, 0.16);
  z-index: 100;
  padding: 10px;
  width: 100%;
  color: #fff;
  text-align: center;
  position: fixed;
  left: 0;
  bottom: -150px;
  transition: all 0.3s;
}

.cv-floating.view {
    bottom: 0;
  }

.floating__container {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px 0;
}

.buttons {
  display: flex;
  justify-content: center;
  max-width: 400px;
  width: 100%;
}

.buttons .button--secondary {
  width: 100%;
}

.buttons .button__image {
  max-width: 100%;
}

.cv-floating .aside {
    margin-top: 10px;
  font: normal normal normal 12px/22px "Noto Sans JP", sans-serif;
  }

.cv-floating .cv-floating__inner {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding: 0;
    max-width: 520px;
    width: 40%;
  font-size: 14px; /* 代替: clampVw(13, 14, 15, 1000)に相当する固定サイズ */
}

.cv-floating .cv-floating__inner .cv-floating__inner__btn {
  margin-right: min(2vw, 20px);
}

.cv-floating .cv-floating__inner .cv-floating__inner__btn:last-child {
        margin-right: 0;
  margin-left: min(2vw, 20px);
      }

@media screen and (max-width: 768px) {
  .cv-floating .cv-floating__inner .cv-floating__inner__btn {
        margin-right: 2vw;
  }
  
  .cv-floating .cv-floating__inner .cv-floating__inner__btn:last-child {
          margin-right: 0;
          margin-left: 2vw;
      }
    }

.cv-floating .cv-floating__inner .arrow-right img {
      vertical-align: middle;
}

.font-siz {
  font-size: 15px;
  margin: 10px 0;
  font-weight: bold;
  text-decoration: underline;
  color: inherit;
}

.underline-coment {
  border-bottom: #fff solid 2px;
  color: #fff;
}

.text-s {
  font-size: 12px;
  text-align: left;
}

  @media screen and (max-width: 768px) {
  .text-s {
    font: normal normal normal 10px/22px "Noto Sans JP", sans-serif;
    margin: 0;
  }
}


/*----------------------------------------
// benefits
----------------------------------------*/
.benefits {
  background-color: #00042E;
  padding: 40px 0;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .benefits {
    padding: 20px 0;
  }
}

.benefits__label {
  font-size: 14px;
  color: #5E6DA7;
  letter-spacing: 1.68px;
  line-height: 1;
}

.benefits__header {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .benefits__header {
    margin-bottom: 20px;
  }
}

.benefits__title {
  text-align: center;
  font-size: 35px;
  font-weight: bold;
  letter-spacing: 3.36px;
  color: #FFFFFF;
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  .benefits__title {
    margin-bottom: 10px;
    font-size: 28px;
  }
}
@media screen and (max-width: 480px) {
  .benefits__title {
    font-size: 20px;
  }
}

.benefits__description {
  text-align: center;
  font-size: 16px;
  max-width: 900px;
  line-height: 1.8;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .benefits__description {
    margin-bottom: 0;
    text-align: left;
  }
}

.benefits__content {
  max-width: 1080px;
  margin: 0 auto;
}

.feature-item--present {
  margin: 0 !important;
  padding: 0 !important;
}
@media screen and (max-width: 768px) {
  .feature-item--present {
    margin: 0 0 20px 0 !important;
    padding: 0 !important;
  }
}

.feature-item--present .feature-item__title-wrapper {
  padding: 0 !important;
  margin: 0 !important;
}

.feature-item--present .feature-item__info {
  padding: 0 20px 0 0 ;
}

.feature-item__link {
  width: 100%;
  text-align: right;
  display: block;
  color: #fff;
  text-decoration: underline;
}
@media screen and (max-width: 480px) {
  .feature-item__link {
    text-align: left;
    font-size: 14px;
  }
}

.feature-item {
  display: flex;
  flex-direction: column;
  background-color: #00042E;
  border-radius: 10px;
  padding: 40px 0;
  color: #fff;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .feature-item {
    padding: 10px 0;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 480px) {
  .feature-item {
    padding: 10px 0 30px;
    margin-bottom: 0;
  }
}

.feature-item__wrapper {
  display: flex;
}

.feature-item__title-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
  background-repeat: no-repeat;
  background-position: left 15px;
  padding-left: 90px;
}

@media screen and (max-width: 768px) {
  .feature-item__title-wrapper {
    width: 100%;
    background-size: 40px;
    margin-bottom: 10px;
    padding-left: 50px;
  }
}
@media screen and (max-width: 480px) {
  .feature-item__title-wrapper {
    padding-bottom: 10px;
    padding-left: 40px;
    background-size: 30px;
    background-position: left 10px;
  }
}

@media screen and (max-width: 480px) {
  .feature-item__title-wrapper--experience,
  .feature-item__title-wrapper--insurance {
    border-bottom: 1px solid #fff;
  }
}
.feature-item__header {
  background: url('../images/present_icon.svg') no-repeat left 10px;
  background-size: 50px;
  padding-left: 70px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

@media screen and (max-width: 768px) {
  .feature-item__header {
    background-size: 40px;
    padding-left: 50px;
  }
}

@media screen and (max-width: 480px) {
  .feature-item__header {
    width: 100%;
    padding:0 0 10px 40px;
    margin-bottom: 10px;
    background-size: 30px;
    border-bottom: 1px solid #fff;
  }
}

.feature-item__info {
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .feature-item__info {
    margin-top: 0;
  }
}
.feature-item__title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 0;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .feature-item__title {
    font-size: 24px;
  }
}
@media screen and (max-width: 480px) {
  .feature-item__title {
    font-size: 18px;
  }
}

.feature-item__subtitle {
  font-size: 24px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .feature-item__subtitle {
    font-size: 20px;
  }
}
@media screen and (max-width: 480px) {
  .feature-item__subtitle {
    font-size: 16px;
  }
}

.feature-item__text {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 10px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .feature-item__text {
    font-size: 14px;
    font-weight: normal;
    margin-bottom: 10px;
  }
}

.feature-item__note {
  font-size: 18px;
  line-height: 1.6;
  color: #ffcc00;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .feature-item__note {
    font-size: 14px;
    font-weight: normal;
    margin-bottom: 15px;
  }
}


.feature-item__image {
  width: 50%;
  text-align: center;
  margin-top: 15px;
}

.feature-item__img {
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.benefit-more__link {
  display: inline-block;
  color: #ffcc00;
  text-decoration: underline;
  font-weight: bold;
  margin-top: 10px;
}

@media screen and (max-width: 768px) {
  .feature-item__wrapper {
    flex-direction: column;
  }
  
  .feature-item__image {
    width: 100%;
    margin: 0 auto 10px;
  }
  
  .feature-item__img {
    max-width: 100%;
    height: auto;
  }

}

.benefit-condition {
  margin: 10px 0 0 0;
  background-color: hsla(0, 0%, 100%, 0.2);
  border-radius: 10px;
  padding: 20px;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .benefit-condition {
    padding: 0;
    margin: 0;
  }
}

.benefit-condition__content {
  margin: 0 auto;
  padding-left: 1em;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .benefit-condition__content {
    padding: 30px 10px;
    box-sizing: border-box;
    margin: 0 0 0 1em;
  }
}

.benefit-condition__text {
  text-indent:-1em;
  margin-bottom: 10px;
  font-size: 13px;
  line-height: 1.6;
  color: #ffffff;
}
@media screen and (max-width: 768px) {
  .benefit-condition__text {
    font-size: 11px;
    margin-bottom: 3px;
  }
}

.benefit-more {
  text-align: center;
  margin-top: 20px;
}

.experience-benefits {
  margin-top: 30px;
}

.experience-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.experience-item {
  flex: 1;
  min-width: 250px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}

.experience-item__image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.experience-item__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.experience-item:hover .experience-item__img {
  transform: scale(1.05);
}

.experience-item__title {
  font-size: 20px;
  font-weight: bold;
  color: #ffcc00;
  padding: 15px 15px 10px;
}

.experience-item__text {
  font-size: 14px;
  line-height: 1.5;
  padding: 0 15px 20px;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .experience-row {
    flex-direction: column;
  }
  
  .experience-item {
    width: 100%;
  }
  
  .experience-item__image {
    height: 180px;
  }
}

.experience-list__grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto;
  max-width: 1200px;
}

.experience-card {
  flex: 1;
  min-width: 300px;
  max-width: 380px;
  overflow: hidden;
}

.experience-card__image {
  width: 100%;
  overflow: hidden;
}

.experience-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.experience-card:hover .experience-card__img {
  transform: scale(1.05);
}

.experience-card__content {
  padding: 20px;
}
@media screen and (max-width: 768px) {
  .experience-card__content {
    padding: 10px;
  }
}
@media screen and (max-width: 480px) {
  .experience-card__content {
    padding: 5px;
  }
}

.experience-card__title {
  font-size: 20px;
  font-weight: bold;
  color: #ffcc00;
  margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
  .experience-card__title {
    font-size: 18px;
  }
}

.experience-card__text {
  font-size: 14px;
  line-height: 1.6;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .experience-list__grid {
    flex-direction: column;
    align-items: center;
  }
  
  .experience-card {
    width: 100%;
    max-width: 100%;
  }
  
}

/**
 * Footer
 */
.club-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #143596;
    width: 100%;
    padding: 60px 0;
}
@media screen and (max-width: 480px) {
  .club-footer {
    padding: 40px 0 100px;
  }
}

.club-footer__sitemap {
    padding: 15px;
    font-size: 1vw;
}

.club-footer__sitemap__item {
    padding: 0 20px;
    position: relative;
}

.club-footer__sitemap__item::after {
    content: "";
    display: none;
    margin-left: auto;
    width: 10px;
    height: 10px;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    transform: rotate(45deg);
    position: absolute;
    right: 15px;
    top: 50%;
    margin-top: -5px;
}

.club-footer__corporate-info {
    margin-top: 80px;
    color: #fff;
}

.club-footer__logo__img {
    width: 80%;
    max-width: 500px;
    margin: 0 auto;
    display: block;
}

.club-footer__logo {
    font-size: 2rem;
    margin-bottom: 50px;
}

.club-footer a {
    color: #fff;
}

/**
 * Footer Following Contents
 */
.following-marker {
    position: relative;
    background: #000;
}

.following {
    position: absolute;
    box-sizing: border-box;
    width: 100%;
    padding: 10px;
    background: rgba(0, 0, 0, 0.7);
    text-align: center;
}

.following.fixed {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 1000;
}

.following__text {
    color: #FFFFFF;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
}

.following .cta-button {
    width: 50vw;
    max-width: 700px;
    display: block;
    margin: 0 auto;
}

.following-marker .cta-btn {
    border: none;
    padding-bottom: 4px;
    width: 100%;
    height: 5vw;
    font-weight: bold;
    font-size: 2vw;
    color: #ffffff;
    background: #3BADBB;
    box-shadow: inset 0 -4px 0 #0B717E;
    cursor: pointer;
    font-family: '游ゴシック体', 'YuGothic', '游ゴシック', 'Yu Gothic', sans-serif;
    position: relative;
    margin: 0 auto;
    line-height: 5vw;
}

.following-marker .cta-btn::before {
    content: "";
    display: inline-block;
    background: url('../../images/new_cta_arrow.png');
    background-repeat: no-repeat;
    background-size: 7vw;
    width: 8.5vw;
    height: 7vw;
    position: absolute;
    right: 0;
    top: 0;
}

@media screen and (max-width: 849px) {
    .club-footer__sitemap__item {
        display: block;
        text-align: left;
        padding: 12px 30px 12px 10px;
        position: relative;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .club-footer__sitemap__item::after {
        display: block;
    }

    .club-footer__sitemap {
        padding: 0;
        width: 80%;
        font-size: 3.2vw;
    }

    .club-footer__corporate-info {
        margin-top: 20px;
    }

    .club-footer__logo {
        margin-bottom: 30px;
    }

    .following {
        background-color: #143596;
        padding: 0;
    }

    .following .cta-button {
        width: 100%;
        max-width: unset;
    }

    .following-marker .cta-btn {
        width: 100%;
        font-size: 4vw;
        height: 10vw;
        line-height: 10vw;
    }

    .following-marker .cta-btn::before {
        width: 14vw;
        background-size: 14vw;
        height: 14vw;
        right: 3px;
    }
}

@media screen and (min-width: 769px) {
  .benefits__title-br {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .benefits__title-br {
    display: inline;
  }
}


.feature-item__subtitle--experience {
  color: #fff;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .feature-item--experience {
    padding: 20px 10px;
  }
}

@media screen and (max-width: 480px) {
  .feature-item--experience {
    padding: 15px 5px;
  }
}

/* FAQ セクションのスタイルを追加 */
.faq-section {
  background-color: #00042E;
  padding: 50px 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .faq-section {
    padding: 30px 0;
  }
}

.faq-section__title {
  font-size: 28px;
  color: #fff;
  margin-bottom: 30px;
  font-weight: bold;
}

.faq-section__button {
  display: block;
  width: 100%;
  max-width: 768px;
  margin: 0 auto;
}
@media screen and (max-width: 480px) {
  .faq-section__button {
    max-width: 80%;
  }
}


.faq-section__button img {
  display: block;
  width: 100%;
}
.faq-section__button:hover {
  opacity: 0.8;
}

@media screen and (max-width: 768px) {
  .faq-section {
    padding: 30px 0;
  }
  
  .faq-section__title {
    font-size: 24px;
    margin-bottom: 20px;
  }

}

@media screen and (max-width: 480px) {
  .faq-section__title {
    font-size: 20px;
  }
}

#scroll-top {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: #143596;
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

#scroll-top.show {
  opacity: 1;
}

#scroll-top:hover {
  background-color: #0c2577;
}

@media screen and (max-width: 480px) {
  #scroll-top {
    width: 40px;
    height: 40px;
    bottom: 100px;
    right: 15px;
    font-size: 20px;
  }
}

.pc-br {
  display: inline;
}
@media screen and (max-width: 768px) {
  .pc-br {
    display: none;
  }
}
