body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
}


/* 共通コード */
.common-title {
  font-size: clamp(22px, 3.0vw, 32px);
  font-weight: bold;
  background-color: transparent;
  color: #333;
  position: relative;
  margin-bottom: 50px !important;
  
}

.common-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);  
  width: 120px;
  border-top: 4px dashed #fccf00; 
}




/* キャンペーンエリア */
.campaign-area {
  background: #fff;
  margin: 100px auto
}

.campaign-title {
  font-size: clamp(15px, 2.5vw, 24px);
  color: #333;
  text-align: center;
  margin-bottom: 50px;
  line-height: 2
}

.campaign-title.sub {
  margin: 0px auto;
}


.stepped-line {
  position: relative;
  border-bottom: 3px solid #333;
  width: 250px;
  margin: 0 auto;
}

.stepped-line:before {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) skew(-25deg);
  height: 20px;
  width: 15px;
  border-right: 3px solid #333;
  background-color: white;
  content: "";
}

.campaign-title.main {
  font-size: clamp(25px, 3.8vw, 50px);
  font-weight: bold;
  padding-bottom: 75px;
  margin: 50px auto;
  line-height: 1.5
}

.emphasis1 {
  color: #fc490d;
  font-size: clamp(35px, 4.2vw, 70px);
}

@media (max-width: 1148px) {
    .campaign-area {
         margin: 100px auto 50px;
    }
} 

@media (max-width: 768px) {
  .campaign-area {
    margin: 100px auto 20px;
  }
}


/* サービス概要エリア */
.overviewr-area {
  max-width: 1400px;
  margin: 0 auto;
  padding: 50px 20px 10px;
  text-align: center;
}

.overviewr-header {
  margin-bottom: 50px;
}

.overviewr-description-text {
  font-size: clamp(15px, 2.4vw, 22px);
  line-height: 1.8;
}

.highlight {
  color: #fc490d;
  font-weight: bold;
}

.note {
  font-size: clamp(10px, 2.4vw, 18px);
  color: #888;
}

.overviewr-card {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding-bottom: 100px;
}

.overviewr-box {
  width: calc(33.333% - 20px);
  max-width: 400px;
  padding: 20px;
  border-radius: 10px;
  position: relative;
  box-shadow: 1px 2px 6px 0px rgba(0, 0, 0, 0.2);
}

.overviewr-box-non {
  width: calc(33.333% - 20px);
  max-width: 400px;
  padding: 20px;
  border-radius: 10px;
  position: relative;
  display: flex;
  justify-content: center; /* 水平中央寄せ */
  align-items: center;    /* 垂直中央寄せ（必要であれば） */
}

@media (max-width: 1148px) {
    .overviewr-card {
        flex-direction: column; 
        max-width: 800px;
        margin: auto;
        padding-bottom: 50px;
    }
  
    .overviewr-box,
    .overviewr-box-non {
       width: 100%;
       max-width: 1400px;
    }
   .ycf-neobank_logo {
      width: 80%;
  }
} 

.overviewr-box-point {
  position: absolute;
  top: 13px;
  left: 0;
  background: #FCCF00;
  font-size: clamp(10px, 2.4vw, 18px);
  padding: 3px 12px;
  border-bottom-right-radius: 8px;
  font-weight: 600;
}

.overviewr-box-title {
  font-size: clamp(15px, 2.4vw, 24px);
  font-weight: bold;
  line-height: 1.4;
  margin: 20px 0;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overviewr-box-image {
  margin-bottom: 10px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overviewr-box-description {
  text-align: left;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.overviewr-box-description-text {
    display: none;
}

.overviewr-box-description-btn {
    display: inline-flex;
    align-items: center;
    background-color: #fccf00; 
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: bold;
    font-size: clamp(10px, 2.4vw, 18px);
    margin: 10px 0;
}

@media (max-width: 1148px) {
    .overviewr-box-description-btn {
        margin: 0 20% 20px;
    }
}
@media (max-width: 444px) {
    .overviewr-box-description-btn {
        margin: 0 5% 20px;
    }
}

.overviewr-box-description-btn:hover {
    background-color: #333;
    color: #fff;
}

.overviewr-box-description-btn .arrow { margin-left: 5px; }


/* ポップアップ（モーダル） */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    max-width: 550px;
    width: 90%;
    position: relative;
    text-align: left;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.close-modal-btn {
    position: absolute;
    top: 15px; right: 20px;
    font-size: 30px;
    cursor: pointer;
    color: #999;
}




/* 資料ダウンロードエリア */
.material-area {
  padding: 100px 20px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .material-area {
    padding: 50px 20px;
  }
}

.material-card {
    max-width: 1400px;
    background: linear-gradient(135deg, #ffffff 70%, #fccf00 70%);
    box-shadow: 1px 2px 6px 0px rgba(0, 0, 0, 0.2);
    margin: 0 auto;
    padding: 30px 40px;
    border-radius: 10px;
}

.material-header {
  margin: 0 auto 30px auto;
}

.material-title {
  font-size: 1.8rem;
  font-weight: bold;
}

.material-contents {
  display: flex;
  align-items: center;
  gap: 50px;
}

@media (max-width: 1148px) {
    .material-card {
         padding: 60px 40px;
    } 
    .material-contents {
        flex-direction: column; 
    }
}

@media (max-width: 517px) {
    .material-card {
         padding: 60px 20px;
    } 
}

.material-contents-text {
  width: 50%;
  flex-shrink: 0;
}

.text-appeal {
  margin-bottom: 20px;
  font-size: clamp(22px, 3.0vw, 32px);
  font-weight: bold
}

.text-highlight3 {
    color: #fc490d;
}

.text-list {
  list-style: none;
}

.text-list-item {
  position: relative;
  font-size: clamp(15px, 2.4vw, 22px);
  font-weight: bold;
  margin-bottom: 10px;
}


.material-contents-image {
  flex-shrink: 1;
  text-align: right;
  width: 50%;
}

.material-image {
    margin: 0 auto;
    box-shadow: 1px 2px 6px rgba(0, 0, 0, 0.2);
}


@media (max-width: 1148px) {
   .material-contents-text {
     width: 100%;
     text-align: center;
}
    .material-contents-image {
      width: 80%;
    }
  .seikyudx-cta-buttons {
      justify-content: center;
  }
}

@media (max-width: 768px) {
   .material-contents-image {
      width: 100%;
    }
}

.seikyudx-cta-buttons {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.seikyudx-cta-button {
  font-size: clamp(15px, 2.4vw, 18px);
  font-weight: bold;
  padding: 15px 30px;
  border-radius: 10px;
}

@media (max-width: 411px) {
    .seikyudx-cta-button {
        padding: 15px 15px;
        border: 2px solid #333;
    }
}

.seikyudx-cta-button-yellow {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fccf00;
  border: 3px solid #fccf00; 
  color: #333333;
}

.seikyudx-cta-button-yellow:hover {
  background-color: #fff;
  color: #333;
}

@media (max-width: 411px) {
    .seikyudx-cta-button-yellow {
        border: 2px solid #fccf00;
    }
}


/* 「無料」と「資料ダウンロード」の間のスタイル */
.seikyudx-cta-button-text {
  margin-left: 10px;
  position: relative;
  padding-left: 10px; /* 縦線のために左に余白を確保 */
}

/* 擬似要素で縦線を作成 */
.seikyudx-cta-button-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px; /* 線の太さ */
  height: 80%; /* 線の高さ */
  background-color: #333333; /* 線の色 */
}

.seikyudx-cta-button-black {
  background-color: #333333;
  border: 3px solid #333; 
  color: #ffffff;
}

.seikyudx-cta-button-black:hover {
  background-color: #fff;
  color: #333;
}

@media (max-width: 411px) {
    .seikyudx-cta-button-black {
        border: 2px solid #333;
    }
}

.seikyudx-cta-button-text {
  margin-left: 10px;
}

.seikyudx-cta-button-icon {
  margin-left: 10px;
}

/* 画面幅1200px以下で吹き出しを調整 */
@media (max-width: 1200px) {
  .seikyudx-cta-speech-bubble {
    width: 200px;
    padding: 20px;
    right: 5px;
  }
  .seikyudx-cta-speech-text-main {
    font-size: 0.9rem;
  }
  .seikyudx-cta-speech-text-highlight {
    font-size: 1.3rem;
  }
  .seikyudx-cta-speech-text-sub {
    font-size: 0.9rem;
  }
}

/* タブレット版 (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .seikyudx-cta-container {
    padding: 60px 15px;
  }
  .seikyudx-cta-header {
    max-width: 100%;
    margin-bottom: 20px;
  }
  .seikyudx-cta-title {
    font-size: 1.8rem;
    text-align: center;
  }
  .seikyudx-cta-content {
    flex-direction: column;
    gap: 30px;
  }
  .seikyudx-cta-image-wrapper {
    /* width: 100%を削除 */
    text-align: center;
  }
  .seikyudx-cta-text-content {
    width: 100%;
    text-align: center;
  }
  .seikyudx-cta-recommend-wrapper {
    justify-content: center;
    position: static;
  }
  .seikyudx-cta-speech-bubble {
    position: static;
    margin-left: 20px;
    width: 200px;
    height: auto;
    border-radius: 20px;
    padding: 15px;
  }
  .seikyudx-cta-speech-bubble::before,
  .seikyudx-cta-speech-bubble::after {
    display: none;
  }
  .seikyudx-cta-list {
    max-width: 400px;
    margin: 0 auto;
  }
  .seikyudx-cta-list-item {
    text-align: left;
  }
  .seikyudx-cta-buttons {
    justify-content: center;
  }
}

/* スマホ版 (768px以下) */
@media (max-width: 768px) {
  .seikyudx-cta-container {
    padding: 40px 10px;
  }
  .seikyudx-cta-header {
    max-width: 100%;
    margin-bottom: 15px;
  }
  .seikyudx-cta-title {
    font-size: 1.3rem;
    text-align: center;
  }
  .seikyudx-cta-content {
    flex-direction: column;
    gap: 20px;
  }
  .seikyudx-cta-image-wrapper {
    display: none;
    /* width: 100%を削除 */
    text-align: center;
  }
  .seikyudx-cta-text-content {
    width: 100%;
    padding: 40px;
    text-align: center;
  }
  .seikyudx-cta-recommend-wrapper {
    justify-content: center;
    position: static;
    flex-direction: column;
    gap: 10px;
  }
  .seikyudx-cta-speech-bubble {
    position: static;
    width: 100%;
    height: auto;
    border-radius: 10px;
    padding: 15px;
    margin-left: 0;
  }
  .seikyudx-cta-speech-bubble::before,
  .seikyudx-cta-speech-bubble::after {
    display: none;
  }
  .seikyudx-cta-list {
    max-width: 100%;
    margin-top: 20px;
  }
  .seikyudx-cta-list-item {
    font-size: 1rem;
    padding-left: 15px;
  }
  .seikyudx-cta-buttons {
    flex-direction: column;
    gap: 10px;
    margin: 20px 10% 0;
  }
}

@media (max-width: 517px) {
  .seikyudx-cta-buttons {
    margin: 20px auto 0;
  }
}

/* issue-an-invoiceエリアここから */
.seikyudx-issue-an-invoice-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 100px 40px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #333333;
  text-align: center;
}

.seikyudx-issue-an-invoice-header {
  background-color: transparent;
  padding: 0;
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
}




.seikyudx-issue-an-invoice-highlight-text {
  color: #fccf00; /* ハイライトカラーを適用 */
}
.seikyudx-issue-an-invoice-top {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  margin-bottom: 50px;
}

.seikyudx-issue-an-invoice-text-content {
  text-align: left;
  width: 40%;
}

.seikyudx-issue-an-invoice-main-text {
  font-size: 1.2rem;
  line-height: 1.8;
  margin: 0;
}



.seikyudx-issue-an-invoice-image-wrapper {
  width: 60%;
  text-align: center;
  margin: 0 auto;
}

.seikyudx-issue-an-invoice-image {
  max-width: 100%;
  height: auto;
}

.seikyudx-issue-an-invoice-steps {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding-bottom: 20px;
}

.seikyudx-issue-an-invoice-step-item {
  width: calc(25% - 20px);
  max-width: 400px;
  background-color: #f8f8f8;
  border-radius: 10px;
  padding: 20px;
  box-sizing: border-box;
  text-align: left;
  position: relative;
  min-height: 250px;
}
.seikyudx-issue-an-invoice-step-item:nth-child(3) {
  width: calc(50% - 20px);
}

/* ボックス間の右向き矢印 */
.seikyudx-issue-an-invoice-arrow-right {
  width: 30px;
  height: 55px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 25 50"><polygon points="25,25 0,50 0,0" fill="%23fccf00"/></svg>');
  background-repeat: no-repeat;
  background-size: contain;
}

.seikyudx-issue-an-invoice-step-title {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.4;
  margin: 0 0 20px 0;
  color: #333333;
}

.seikyudx-issue-an-invoice-step-content {
  margin-top: 20px;
}

.seikyudx-issue-an-invoice-step-description {
  font-size: 1rem;
  margin: 0 0 10px 0;
}

.seikyudx-issue-an-invoice-step-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.seikyudx-issue-an-invoice-step-list-item {
  position: relative;
  font-size: 1rem;
  padding-left: 20px;
  margin-bottom: 5px;
}

.seikyudx-issue-an-invoice-bullet {
  color: #fccf00;
  position: absolute;
  left: 0;
  font-size: 1.5rem;
  line-height: 1;
}

.seikyudx-issue-an-invoice-step-note {
  font-size: 0.8rem;
  color: #888888;
}

.seikyudx-issue-an-invoice-step-footer-note {
  position: absolute;
  bottom: 10px;
  left: 20px;
  margin: 0;
}

.seikyudx-issue-an-invoice-step-footer-note-text {
  font-size: 0.8rem;
  color: #888888;
}

.seikyudx-issue-an-invoice-notes-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

.seikyudx-issue-an-invoice-notes {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #888888;
  margin: 0;
}

/* タブレット版 (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .seikyudx-issue-an-invoice-container {
    padding: 60px 40px;
  }
  .seikyudx-issue-an-invoice-header {
    margin-bottom: 30px;
  }
  .seikyudx-issue-an-invoice-top {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 30px;
  }
  .seikyudx-issue-an-invoice-text-content,
  .seikyudx-issue-an-invoice-image-wrapper {
    width: 100%;
    text-align: center;
  }
  .seikyudx-issue-an-invoice-main-text {
    font-size: 1.1rem;
  }
  .seikyudx-issue-an-invoice-steps {
    flex-direction: column;
    gap: 20px;
    padding-bottom: 30px;
    margin: 40px auto; /* 縦並びになった際にマージンを設定 */
  }
  .seikyudx-issue-an-invoice-step-item {
    width: 100%;
    max-width: none;
    min-height: 230px;
  }
  .seikyudx-issue-an-invoice-step-item:nth-child(3) {
    width: 100%;
  }
  /* 縦になった場合の下向き矢印 */
  .seikyudx-issue-an-invoice-arrow-right {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 25"><polygon points="25,25 0,0 50,0" fill="%23fccf00"/></svg>');
    width: 55px;
    height: 30px;
  }
  .seikyudx-issue-an-invoice-step-title {
    font-size: 1.2rem;
  }
  .seikyudx-issue-an-invoice-step-list-item {
    font-size: 0.9rem;
  }
}

/* スマホ版 (768px以下) */
@media (max-width: 768px) {
  .seikyudx-issue-an-invoice-container {
    padding: 40px;
  }
  .seikyudx-issue-an-invoice-header {
    margin-bottom: 20px;
  }
  .seikyudx-issue-an-invoice-top {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
  }
  .seikyudx-issue-an-invoice-text-content,
  .seikyudx-issue-an-invoice-image-wrapper {
    width: 100%;
    text-align: center;
  }
  .seikyudx-issue-an-invoice-main-text {
    font-size: 1rem;
  }
  .seikyudx-issue-an-invoice-note {
    font-size: 0.8rem;
  }
  .seikyudx-issue-an-invoice-steps {
    flex-direction: column;
    gap: 15px;
    padding-bottom: 20px;
    margin: 40px auto; /* 縦並びになった際にマージンを設定 */
  }
  .seikyudx-issue-an-invoice-step-item {
    width: 100%;
    max-width: none;
    padding: 15px;
    min-height: 200px;
    flex-direction: column;
  }
  .seikyudx-issue-an-invoice-step-item:nth-child(3) {
    width: 100%;
  }
  /* 縦になった場合の下向き矢印 */
  .seikyudx-issue-an-invoice-arrow-right {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 25"><polygon points="25,25 0,0 50,0" fill="%23fccf00"/></svg>');
    width: 55px;
    height: 30px;
  }
  .seikyudx-issue-an-invoice-step-title {
    font-size: 1rem;
  }
  .seikyudx-issue-an-invoice-step-list-item {
    font-size: 0.8rem;
  }
}
/* issue-an-invoiceエリアここまで */


/* issue-an-invoice-featuresエリアここから */
.seikyudx-issue-an-invoice-features-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 100px 20px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #333333;
  text-align: center;
  background-color: #ffffff;
}

.seikyudx-issue-an-invoice-features-header {
  margin-bottom: 50px;
}

.seikyudx-issue-an-invoice-features-header-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.seikyudx-issue-an-invoice-features-bullet {
  font-size: 1.5rem;
  color: #333333;
}

.seikyudx-issue-an-invoice-features-title-text {
  font-size: 1.8rem;
  font-weight: bold;
  margin: 0;
}

.seikyudx-issue-an-invoice-features-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}


.seikyudx-issue-an-invoice-features-item {
  width: calc(33.333% - 20px);
  max-width: 400px;
  background-color: #f8f8f8;
  border-radius: 20px;
  padding: 30px;
  box-sizing: border-box;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.seikyudx-issue-an-invoice-features-item-title {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.4;
  margin: 0 0 20px 0;
}

.seikyudx-issue-an-invoice-features-item-image-wrapper {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.seikyudx-issue-an-invoice-features-item-image {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  object-fit: contain;
}

/* タブレット版 (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .seikyudx-issue-an-invoice-features-container {
    padding: 60px 15px;
  }
  .seikyudx-issue-an-invoice-features-header {
    margin-bottom: 30px;
  }
  .seikyudx-issue-an-invoice-features-title-text {
    font-size: 1.5rem;
  }
  .seikyudx-issue-an-invoice-features-content {
    gap: 20px;
    margin: 40px;
  }
  .seikyudx-issue-an-invoice-features-item {
    width: calc(50% - 15px);
    max-width: none;
    padding: 25px;
  }
  .seikyudx-issue-an-invoice-features-item-title {
    font-size: 1.2rem;
  }
  .seikyudx-issue-an-invoice-features-item-image-wrapper {
    height: 150px;
  }
}

/* スマホ版 (768px以下) */
@media (max-width: 768px) {
  .seikyudx-issue-an-invoice-features-container {
    padding: 40px 10px;
  }
  .seikyudx-issue-an-invoice-features-header {
    margin-bottom: 20px;
  }
  .seikyudx-issue-an-invoice-features-title-text {
    font-size: 1.2rem;
  }
  .seikyudx-issue-an-invoice-features-content {
    flex-direction: column;
    gap: 20px;
    margin: 40px;
  }
  .seikyudx-issue-an-invoice-features-item {
    width: 100%;
    max-width: none;
    padding: 20px;
  }
  .seikyudx-issue-an-invoice-features-item-title {
    font-size: 1.1rem;
  }
  .seikyudx-issue-an-invoice-features-item-image-wrapper {
    height: 120px;
  }
}
/* issue-an-invoice-featuresエリアここまで */

/* issue-an-invoice-optionsエリアここから */
.seikyudx-issue-an-invoice-options-container {
  margin: 0 auto;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #333333;
  text-align: center;
  background-color: #eaeff3;
}

.seikyudx-issue-an-invoice-options-container2 {
  margin: 0 auto;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #333333;
  text-align: center;
  background-color: #fff;
}

.seikyudx-issue-an-invoice-options-area {
  padding: 50px 0;
}


.seikyudx-issue-an-invoice-options-header {
  margin-bottom: 30px;
}

.seikyudx-issue-an-invoice-options-title-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.seikyudx-issue-an-invoice-options-bullet {
  font-size: 1.5rem;
  color: #333333;
}

.seikyudx-issue-an-invoice-options-title-text {
  font-size: clamp(22px, 3.0vw, 32px);
  font-weight: bold;
  margin: 0;
}

.seikyudx-issue-an-invoice-options-description {
  font-size: 1.1rem;
  margin: 0;
}

.seikyudx-issue-an-invoice-options-content {
  display: flex;
  flex-direction: column; /* 縦に並べる設定 */
  gap: 20px;              /* ボックス同士の間隔（好きな数値に変えてね） */
  max-width: 800px;
  background-color: #fff;
  margin: 0 auto;
  padding: 30px 40px;
  border-radius: 10px;
}

hr.style5 {
  background-color: #fff;
  border-top: 2px dashed #333;
  width: 80%;
  margin: 0 auto;
}

.seikyudx-issue-an-invoice-options-content2 {
  display: flex;          /* 横並びの魔法の言葉 */
  justify-content: center; /* 中央寄せ（左寄せなら flex-start） */
  align-items: stretch;    /* 高さを一番高い要素に合わせる */
  gap: 20px;              /* ボックス同士の間隔 */
  width: 100%;
  flex-wrap: wrap;
}

.seikyudx-issue-an-invoice-options-item {
  width: 100%;            /* 横幅いっぱいにする */
  max-width: 800px;       /* 広がりすぎないように制限（任意） */
  box-sizing: border-box;
  background-color: #fff;
  margin: 0 auto;
  padding: 20px 40px;
}

.seikyudx-issue-an-invoice-options-item2 {
  flex: 0 1 calc(25% - 20px); 
  min-width: 250px;       /* 狭くなりすぎないように最低幅を決める */
  box-sizing: border-box;
  background-color: #f0f0f0;
  margin: 0 auto;
}

.seikyudx-issue-an-invoice-options-item-body {
  display: flex;
  align-items: center; /* 上下中央揃え */
  justify-content: space-between; /* 両端に寄せる */
  gap: 30px; /* テキストと画像の間隔 */
  text-align: left; /* テキストを左寄せに */
}

.seikyudx-issue-an-invoice-options-item-title {
  font-size: clamp(15px, 2.4vw, 24px);
  font-weight: bold;
  line-height: 1.4;
  margin: 0 0 20px 0;
  min-height: 50px;
}

.seikyudx-issue-an-invoice-options-item-body {
  font-size: clamp(15px, 2.4vw, 22px);
}

.seikyudx-issue-an-invoice-options-item-image-wrapper {
  width: 100%;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.seikyudx-issue-an-invoice-options-item-image {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  object-fit: contain;
}

.seikyudx-issue-an-invoice-options-button {
  display: inline-block;
  /*  width: 250px; */
  padding: 20px 80px;
  margin-top: 30px;
  background-color: #333;
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: opacity 0.3s;
  text-align: center;
}

.seikyudx-issue-an-invoice-options-button:hover {
  opacity: 0.8;
}

/* タブレット版 (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .seikyudx-issue-an-invoice-options-container {
    padding: 60px 20px;
  }
  .seikyudx-issue-an-invoice-options-header {
    margin-bottom: 20px;
  }
  .seikyudx-issue-an-invoice-options-description {
    font-size: 1rem;
  }
  .seikyudx-issue-an-invoice-options-content {
    gap: 20px;
  }
  .seikyudx-issue-an-invoice-options-item {
    max-width: none;
    padding: 25px;
  }
  .seikyudx-issue-an-invoice-options-item-image-wrapper {
    height: 120px;
  }
}

/* スマホ版 (768px以下) */
@media (max-width: 768px) {
  .seikyudx-issue-an-invoice-options-container {
    padding: 40px 20px;
  }
  .seikyudx-issue-an-invoice-options-header {
    margin-bottom: 20px;
  }
  .seikyudx-issue-an-invoice-options-description {
    font-size: 0.9rem;
  }
  .seikyudx-issue-an-invoice-options-content {
    flex-direction: column;
    gap: 20px;
  }
  .seikyudx-issue-an-invoice-options-item {
    max-width: none;
    padding: 20px;
    box-sizing: border-box;
  }
  .seikyudx-issue-an-invoice-options-item-image-wrapper {
    height: 100px;
  }
  .seikyudx-issue-an-invoice-options-item-body {
    flex-direction: column;
  }
}

@media (max-width: 500px) {
  .seikyudx-issue-an-invoice-options-content {
    padding: 30px 0px;
  }
}
  
/* issue-an-invoice-optionsエリアここまで */

/* cash-applicationエリアここから */
.seikyudx-cash-application-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 100px 20px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #333333;
  text-align: center;
}

.seikyudx-cash-application-header {
  background-color: transparent;
  padding: 0;
  margin-bottom: 50px;
  display: flex;
  justify-content: center;
}


.seikyudx-cash-application-highlight-text {
  color: #fccf00; /* ハイライトカラーを適用 */
}
.seikyudx-cash-application-top {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
}

.seikyudx-cash-application-text-content {
  text-align: center;
}

.seikyudx-cash-application-main-text {
  font-size: 1.2rem;
  line-height: 1.8;
  margin: 0;
}

.seikyudx-cash-application-note {
  font-size: 0.9rem;
  color: #333;
  margin-top: 20px;
}

.seikyudx-cash-application-image-wrapper {
  width: 60%;
  text-align: center;
}

.seikyudx-cash-application-image {
  max-width: 100%;
  height: auto;
}

/* タブレット版 (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .seikyudx-cash-application-container {
    padding: 60px 15px;
  }
  .seikyudx-cash-application-header {
    margin-bottom: 30px;
  }
  .seikyudx-cash-application-top {
    flex-direction: column;
    gap: 30px;
  }
  .seikyudx-cash-application-text-content,
  .seikyudx-cash-application-image-wrapper {
    width: 100%;
    text-align: center;
  }
  .seikyudx-cash-application-main-text {
    font-size: 1.1rem;
  }
}

/* スマホ版 (768px以下) */
@media (max-width: 768px) {
  .seikyudx-cash-application-container {
    padding: 40px 10px;
  }
  .seikyudx-cash-application-header {
    margin-bottom: 20px;
  }
  .seikyudx-cash-application-top {
    flex-direction: column;
    gap: 20px;
  }
  .seikyudx-cash-application-text-content,
  .seikyudx-cash-application-image-wrapper {
    width: 100%;
    text-align: center;
  }
  .seikyudx-cash-application-main-text {
    font-size: 1rem;
  }
  .seikyudx-cash-application-note {
    font-size: 0.8rem;
  }
}
/* cash-applicationエリアここまで */

/* about-neobankエリアここから */
.seikyudx-about-neobank-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 100px 20px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #333333;
  text-align: center;
}

.seikyudx-about-neobank-header {
  background-color: transparent;
  padding: 0;
  margin-bottom: 50px;
  display: flex;
  justify-content: center;
}



.seikyudx-about-neobank-highlight-text {
  color: #fccf00; /* ハイライトカラーを適用 */
}

.seikyudx-about-neobank-top {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
}

.seikyudx-about-neobank-text-content {
  text-align: left;
  width: 40%;
}

.seikyudx-about-neobank-main-text {
  font-size: 1.2rem;
  line-height: 1.8;
  margin: 0;
  position: relative;
}

.seikyudx-about-neobank-asterisk {
  position: absolute;
  top: 0;
  right: -1em;
  font-size: 0.9em;
  color: #333333;
}

.seikyudx-about-neobank-note {
  font-size: 0.9rem;
  color: #888888;
  margin-top: 20px;
}

.seikyudx-about-neobank-note-item {
  display: block;
  line-height: 1.4;
}

.seikyudx-about-neobank-image-wrapper {
  width: 60%;
  text-align: center;
}

.seikyudx-about-neobank-image {
  max-width: 80%;
  height: auto;
  border-radius: 20px;
  padding: 20px;
}

/* タブレット版 (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .seikyudx-about-neobank-container {
    padding: 60px 15px;
  }
  .seikyudx-about-neobank-header {
    margin-bottom: 30px;
  }
  .seikyudx-about-neobank-top {
    flex-direction: column;
    gap: 30px;
  }
  .seikyudx-about-neobank-text-content,
  .seikyudx-about-neobank-image-wrapper {
    width: 100%;
    text-align: center;
  }
  .seikyudx-about-neobank-main-text {
    font-size: 1.1rem;
  }
  .seikyudx-about-neobank-image {
    padding: 15px;
  }
}

/* スマホ版 (768px以下) */
@media (max-width: 768px) {
  .seikyudx-about-neobank-container {
    padding: 40px 10px;
  }
  .seikyudx-about-neobank-header {
    margin-bottom: 20px;
  }
  .seikyudx-about-neobank-top {
    flex-direction: column;
    gap: 20px;
  }
  .seikyudx-about-neobank-text-content,
  .seikyudx-about-neobank-image-wrapper {
    width: 100%;
    text-align: center;
  }
  .seikyudx-about-neobank-main-text {
    font-size: 1rem;
  }
  .seikyudx-about-neobank-note {
    font-size: 0.8rem;
  }
  .seikyudx-about-neobank-image {
    padding: 10px;
  }
}
/* about-neobankエリアここまで */


/* features-about-neobankエリアここから */
.seikyudx-features-about-neobank-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 100px 20px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #333333;
  text-align: center;
}

.seikyudx-features-about-neobank-header {
  margin-bottom: 50px;
}

.seikyudx-features-about-neobank-title-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.seikyudx-features-about-neobank-bullet {
  font-size: 1.5rem;
  color: #333333;
}

.seikyudx-features-about-neobank-title-text {
  font-size: 1.8rem;
  font-weight: bold;
  margin: 0;
}

.seikyudx-features-about-neobank-content2 {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.seikyudx-features-about-neobank-item2 {
  width: calc(33.333% - 20px);
  max-width: 400px;
  background-color: #f8f8f8;
  border-radius: 20px;
  padding: 30px;
  box-sizing: border-box;
  text-align: center;
}

.seikyudx-features-about-neobank-item-title {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.4;
  margin: 0 0 20px 0;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.seikyudx-features-about-neobank-item-image-wrapper2 {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.seikyudx-features-about-neobank-item-image {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  object-fit: contain;
}

/* 修正後の追加部分 */
.seikyudx-features-about-neobank-footer2 {
  padding: 200px 0;
  background-color: #FFF;
}

.seikyudx-issue-an-invoice-notes-wrapper {
  text-align: center;
  margin-bottom: 30px;
}

.seikyudx-issue-an-invoice-notes {
  font-size: 0.9rem;
  color: #333;
  line-height: 1.5;
  margin: 0;
  text-align: left;
}
/*
.seikyudx-features-about-neobank-button {
  display: inline-block;
  /*  width: 250px; */ /*
  padding: 20px 80px;
  background-color: #333;
  border: 1px solid #333;
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: opacity 0.3s;
  text-align: center;
  
}

.seikyudx-features-about-neobank-button:hover {
  background-color: #f0f0f0;
  color: #333;
  border: 1px solid #333;
}
*/

/* 修正後の追加部分 */

/* タブレット版 (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .seikyudx-features-about-neobank-container {
  padding: 60px 15px;
  }
.seikyudx-features-about-neobank-header {
  margin-bottom: 30px;
}
  .seikyudx-features-about-neobank-title-text {
    font-size: 1.5rem;
  }
  .seikyudx-features-about-neobank-content2 {
    gap: 20px;
    flex-direction: column;
  }
  .seikyudx-features-about-neobank-item2 {
    width: calc(100% - 80px);
    max-width: none;
    padding: 25px;
    margin: 0 40px;
    box-sizing: border-box;
  }
  .seikyudx-features-about-neobank-item-title {
    font-size: 1.2rem;
  }
  .seikyudx-features-about-neobank-item-image-wrapper2 {
    height: 150px;
  }
/* 追加部分 */
  .seikyudx-features-about-neobank-footer2 {
    margin: 30px 0 30px 0;
    flex-direction: column;
    background: #FFF!important;
  }
/* /追加部分 */
}
/* スマホ版 (768px以下) */
@media (max-width: 768px) {
  .seikyudx-features-about-neobank-container {
  padding: 40px 10px;
  }
  .seikyudx-features-about-neobank-header {
  margin-bottom: 20px;
  }
  .seikyudx-features-about-neobank-title-text {
  font-size: 1.2rem;
  }
  .seikyudx-features-about-neobank-content2 {
  flex-direction: column;
  gap: 20px;
  }
  .seikyudx-features-about-neobank-item2 {
    width: calc(100% - 40px);
    max-width: none;
    padding: 20px;
    margin: 0 20px;
    box-sizing: border-box;
  }
  .seikyudx-features-about-neobank-item-title {
    font-size: 1.1rem;
  }
  .seikyudx-features-about-neobank-item-image-wrapper2 {
    height: 120px;
  }
/* 追加部分 */
.seikyudx-features-about-neobank-footer2 {
  margin-top: 20px;
  flex-direction: column;
}
/* /追加部分 */
}
/* features-about-neobankエリアここまで */

/* about-neobankエリアここから */
.seikyudx-about-neobank-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 100px 20px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #333333;
  text-align: center;
}

.seikyudx-about-neobank-header {
  background-color: transparent;
  padding: 0;
  margin-bottom: 50px;
  display: flex;
  justify-content: center;
}



.seikyudx-about-neobank-highlight-text {
  color: #fccf00;
}

.seikyudx-about-neobank-top {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
}

.seikyudx-about-neobank-text-content {
  text-align: left;
  width: 40%;
}

.seikyudx-about-neobank-main-text {
  font-size: 1.2rem;
  line-height: 1.8;
  margin: 0;
  position: relative;
}

.seikyudx-about-neobank-asterisk {
  position: absolute;
  top: 0;
  right: -1em;
  font-size: 0.9em;
  color: #333333;
}

.seikyudx-about-neobank-note {
  font-size: 0.9rem;
  color: #888888;
  margin-top: 20px;
}

.seikyudx-about-neobank-note-item {
  display: block;
  line-height: 1.4;
}


/* タブレット版 (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .seikyudx-about-neobank-container {
    padding: 60px 15px;
  }
  .seikyudx-about-neobank-header {
    margin-bottom: 30px;
  }
  .seikyudx-about-neobank-top {
    flex-direction: column;
    gap: 30px;
  }
  .seikyudx-about-neobank-text-content,
  .seikyudx-about-neobank-image-wrapper {
    width: 100%;
    text-align: center;
  }
  .seikyudx-about-neobank-main-text {
    font-size: 1.1rem;
  }
  .seikyudx-about-neobank-image {
    padding: 15px;
  }
}

/* スマホ版 (768px以下) */
@media (max-width: 768px) {
  .seikyudx-about-neobank-container {
    padding: 40px 10px;
  }
  .seikyudx-about-neobank-header {
    margin-bottom: 20px;
  }
  .seikyudx-about-neobank-top {
    flex-direction: column;
    gap: 20px;
  }
  .seikyudx-about-neobank-text-content,
  .seikyudx-about-neobank-image-wrapper {
    width: 100%;
    text-align: center;
  }
  .seikyudx-about-neobank-main-text {
    font-size: 1rem;
  }
  .seikyudx-about-neobank-note {
    font-size: 0.8rem;
  }
  .seikyudx-about-neobank-image {
    padding: 10px;
  }
}
/* about-neobankエリアここから */
/* neobank-flowエリアここから */
.seikyudx-neobank-flow-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 100px 40px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #333333;
  text-align: center;
  background-color: #f0f0f0;
  max-width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  /* 親要素の影響を受けないようにする */
  margin: 0;
}

.seikyudx-neobank-flow-header {
  margin-bottom: 50px;
  display: flex;
  justify-content: center;
}



.seikyudx-neobank-flow-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding-bottom: 50px;
}

.seikyudx-neobank-flow-item {
  width: calc(33.333% - 20px);
  max-width: 400px;
  background-color: #ffffff;
  border: 1px solid #ddd;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  text-align: left;
  position: relative;
  min-height: 250px;
}


.seikyudx-neobank-flow-container .seikyudx-issue-an-invoice-steps {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.seikyudx-neobank-flow-container .seikyudx-issue-an-invoice-step-item {
  background-color: #ffffff;
}

.seikyudx-neobank-flow-step-title-wrapper {
  color: #ffffff;
  padding: 15px 10px;
  margin-bottom: 10px;
  border-radius: 5px;
}

.seikyudx-neobank-flow-step-title {
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1.4;
  margin: 0;
}

.seikyudx-neobank-flow-box {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.seikyudx-neobank-flow-box-text {
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.seikyudx-neobank-flow-note-text {
  font-size: 0.8rem;
  color: #888888;
}

.seikyudx-neobank-flow-arrow {
  width: 55px;
  height: 30px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 55 30"><polygon points="55,15 0,30 0,0" fill="%23fccf00"/></svg>');
  background-repeat: no-repeat;
  background-size: contain;
}

.seikyudx-neobank-flow-footer-notes {
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

.seikyudx-neobank-flow-footer-note {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #888888;
  margin: 0;
}

/* タブレット版 (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .seikyudx-neobank-flow-container {
    padding: 60px 15px;
  }
  .seikyudx-neobank-flow-header {
    margin-bottom: 30px;
  }
  .seikyudx-neobank-flow-content {
    flex-direction: column;
    gap: 20px;
  }
  .seikyudx-neobank-flow-item {
    width: 100%;
    max-width: none;
  }
  .seikyudx-neobank-flow-arrow {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30 55"><polygon points="15,55 30,0 0,0" fill="%23fccf00"/></svg>');
    width: 30px;
    height: 55px;
    margin: 20px auto;
  }
  .seikyudx-neobank-flow-step-title {
    font-size: 1rem;
  }
  .seikyudx-neobank-flow-box {
    padding: 20px;
    min-height: 120px;
  }
}

/* スマホ版 (768px以下) */
@media (max-width: 768px) {
  .seikyudx-neobank-flow-container {
    padding: 40px 10px;
  }
  .seikyudx-neobank-flow-header {
    margin-bottom: 20px;
  }
  .seikyudx-neobank-flow-content {
    flex-direction: column;
    gap: 15px;
  }
  .seikyudx-neobank-flow-item {
    width: 100%;
    max-width: none;
  }
  .seikyudx-neobank-flow-arrow {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30 55"><polygon points="15,55 30,0 0,0" fill="%23fccf00"/></svg>');
    width: 30px;
    height: 55px;
    margin: 15px auto;
  }
  .seikyudx-neobank-flow-step-title {
    font-size: 0.9rem;
  }
  .seikyudx-neobank-flow-box {
    padding: 15px;
    min-height: 100px;
  }
}
/* neobank-flowエリアここまで */
/* features-about-neobankエリアここまで */

/* priceエリアここから */
.seikyudx-price-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0px 20px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #333333;
  text-align: center;
}

.seikyudx-price-header {
  background-color: transparent;
  padding: 0;
  display: flex;
  justify-content: center;
}



.seikyudx-price-top-text {
  font-size: clamp(15px, 2.5vw, 22px);
  margin-bottom: 50px;
}

.seikyudx-price-table-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.seikyudx-price-box {
  width: calc(33.333% - 20px);
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 1px 2px 6px 0px rgba(0, 0, 0, 0.2);
}

.seikyudx-price-box-title {
  background-color: #333333;
  color: #ffffff;
  font-size: clamp(15px, 2.4vw, 24px);
  font-weight: bold;
  padding: 15px;
}

.seikyudx-price-box-title-sub {
  font-size: clamp(10px, 2.4vw, 18px);
}

.seikyudx-price-box-content {
  background-color: #ffffff;
  padding: 20px;
}

.seikyudx-price-amount {
  font-size: clamp(22px, 3.0vw, 32px);
  font-weight: bold;
  margin: 0;
  line-height: 1;
}

.seikyudx-price-amount-highlight {
  font-size: clamp(22px, 3.0vw, 32px);
  font-weight: bold;
  color: #fc490d;
  margin: 0;
  line-height: 1;
}

.seikyudx-price-amount-highlight-text {
  font-size: clamp(15px, 2.4vw, 24px);
  font-weight: bold;
  color: #fc490d;
  margin: 0;
  line-height: 1;
}

.seikyudx-price-amount-line-through {
  text-decoration: line-through;
}

.seikyudx-price-currency {
  font-size: 1rem;
}

.seikyudx-price-note-inline {
  font-size: clamp(10px, 2.4vw, 18px);
  font-weight: normal;
  vertical-align: super;
}

.seikyudx-price-plus {
  font-size: 2rem;
  font-weight: bold;
  color: #888888;
}

.seikyudx-price-notes {
  max-width: 1000px;
  margin: 30px auto 50px auto;
  text-align: left;
}

.seikyudx-price-note-item {
  font-size: clamp(10px, 2.4vw, 18px);
  line-height: 1.6;
  color: #888888;
  margin: 0;
}

.seikyudx-price-comparison {
  margin-top: 100px;
  text-align: center;
  font-size: clamp(15px, 2.4vw, 22px);
}

.seikyudx-price-comparison-text {
  font-size: 1.1rem;
  margin: 0 0 10px 0;
}

.seikyudx-price-comparison-final {
  font-size: clamp(22px, 3.0vw, 32px);
  font-weight: bold;
  position: relative;
}

.seikyudx-price-highlight-price {
  color: #ff0000; /* 文字色を赤に変更 */
  font-size: 46px!important; /* フォントサイズを1.5倍に */
  font-weight: bold; /* 太文字に */
  position: relative;
  display: inline-block;
  padding: 0 5px;
  border-radius: 5px;
  transition: all 0.3s ease;
  overflow: visible; /* 疑似要素が表示されるようにvisibleに変更 */
}

/* ルビ（傍点）のスタイル */
.seikyudx-price-highlight-price rt {
  font-size: 0.6em; /* 親要素のフォントサイズの半分 */
  font-weight: normal;
  color: #fccf00; /* 黄色に設定 */
  text-align: center;
  position: relative;
}

.seikyudx-price-highlight-price ruby {
  font-size: clamp(35px, 3.8vw, 50px);
  font-weight: bold;
  color: #fc490d;
}

.seikyudx-price-currency-highlight {
  font-size: 1.2rem;
  font-weight: bold;
  color: #333333; /* 文字色を黒に変更 */
}

/* 新しいセクションのスタイル */
.seikyudx-price-option {
  padding: 30px;
  margin-top: 100px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.seikyudx-price-option-title {
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: bold;
  margin: 0 0 20px 0;
  text-align: center;
}

.seikyudx-price-option-body {
  text-align: center;
}

.seikyudx-price-option-text {
  font-size: clamp(15px, 2.4vw, 22px);
  line-height: 1.6;
  margin: 0;
}

.seikyudx-price-option-link {
  color: #007bff;
  text-decoration: underline;
}

/* タブレット版 (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .seikyudx-price-header {
    margin-bottom: 30px;
  }
  .seikyudx-price-top-text {
    margin-bottom: 30px;
  }
  .seikyudx-price-table-container {
    flex-direction: column;
  }
  .seikyudx-price-box {
    width: 100%;
    max-width: 400px;
  }
  .seikyudx-price-plus {
    display: none;
  }
  .seikyudx-price-notes {
    max-width: 100%;
    text-align: center;
    padding: 0 15px;
  }
  .seikyudx-price-highlight-price::before {
    top: -3px;
    height: 3px;
  }
  .seikyudx-price-option {
    padding: 20px;
  }
}

/* スマホ版 (768px以下) */
@media (max-width: 768px) {
  .seikyudx-price-header {
    margin-bottom: 20px;
  }
  .seikyudx-price-top-text {
    margin-bottom: 20px;
  }
  .seikyudx-price-table-container {
    flex-direction: column;
  }
  .seikyudx-price-box {
    width: 100%;
  }
  .seikyudx-price-plus {
    display: none;
  }
  .seikyudx-price-box-content {
    padding: 15px;
  }
  .seikyudx-price-currency {
    font-size: 0.8rem;
  }
  .seikyudx-price-notes {
    max-width: 100%;
    text-align: left;
    padding: 0 10px;
  }
  .seikyudx-price-highlight-price::before {
    top: -2px;
    height: 2px;
  }
  .seikyudx-price-option {
    padding: 15px;
  }
}

/* about-trialエリアここから */
.seikyudx-about-trial-container {
  margin: 0 auto;
  padding: 50px 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #333333;
  text-align: center;
}

@media (max-width: 768px) {
  .seikyudx-about-trial-container {
    padding: 0px 0 50px;
  }
}

.seikyudx-about-trial-area {
  background-color: #fff;
  width: 100%;
  background-color: #fff;
  margin: 0 auto;
  padding: 30px 20px;
  border-radius: 10px;
  max-width: 1400px;
}

.seikyudx-about-trial-header {
  background-color: transparent;
  padding: 0;
  margin-bottom: 50px;
  display: flex;
  justify-content: center;
}


.seikyudx-about-trial-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  margin: 50px auto;
}

.seikyudx-about-trial-text-content {
  width: 50%;
  text-align: left;
}

@media (max-width: 1148px) {
  .seikyudx-about-trial-text-content {
    width: 100%;
  text-align: center;
  }
}

.seikyudx-about-trial-main-text {
  font-size: 1.5rem;
  line-height: 1.6;
  font-weight: bold;
  margin-bottom: 20px;
}

.seikyudx-about-trial-highlight {
  color: #fc490d;
  font-size: 2rem;
  font-weight: bold;
}

.seikyudx-about-trial-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.seikyudx-about-trial-list-item {
  position: relative;
  line-height: 1.6;
  margin-bottom: 10px;
}



.seikyudx-about-trial-note {
  font-size: clamp(10px, 2.4vw, 18px);
  color: #888888;
  margin-bottom: 20px;
}

.seikyudx-about-trial-link {
  color: #888888;
  text-decoration: underline;
}

.seikyudx-about-box-button {
  display: inline-block;
  background-color: #333333;
  color: #ffffff;
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 5px;
  font-weight: bold;
  line-height: 1.4;
  white-space: nowrap;
}

.seikyudx-about-highlight-yellow {
  color: #fccf00;
}

.seikyudx-about-trial-image-wrapper {
  width: 50%;
  position: relative;
}

.seikyudx-about-trial-image {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
}

/* タブレット版 (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .seikyudx-about-trial-header {
    margin-bottom: 30px;
  }
  .seikyudx-about-trial-content {
    flex-direction: column;
    gap: 30px;
  }
  .seikyudx-about-trial-text-content,
  .seikyudx-about-trial-image-wrapper {
    width: 100%;
    text-align: center;
  }
}

/* スマホ版 (768px以下) */
@media (max-width: 768px) {
  .seikyudx-about-trial-header {
    margin-bottom: 20px;
  }
  .seikyudx-about-trial-content {
    flex-direction: column;
    gap: 20px;
  }
  .seikyudx-about-trial-text-content,
  .seikyudx-about-trial-image-wrapper {
    width: 100%;
    text-align: center;
  }
  .seikyudx-about-trial-note {
    text-align: center;
  }
}

/* effectsエリアここから */
.seikyudx-effects-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 100px 20px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #333333;
  text-align: center;
}

.seikyudx-effects-header {
  background-color: transparent;
  padding: 0;
  margin-bottom: 50px;
  display: flex;
  justify-content: center;
}



.seikyudx-effects-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
}

.seikyudx-effects-left-column {
  width: 50%;
  text-align: center;
}

.seikyudx-effects-table-image {
  max-width: 80%;
  height: auto;
}

.seikyudx-effects-text-wrapper {
  margin-top: 20px;
}

.seikyudx-effects-container .emphasis-heading-problem {
  font-size: 1.2rem;
  font-weight: bold;
}

.hero-mobile {
  display: none;
}

.seikyudx-effects-sub-text {
  font-size: 0.9rem;
  color: #888888;
  text-align: right;
  margin-top: 5px;
}

.seikyudx-effects-right-column {
  width: 50%;
  text-align: left;
  padding: 0 40px;
}

.seikyudx-effects-box-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px; /* 余白を調整 */
}

.seikyudx-effects-box-before {
  border: 1px dashed #c0c0c0;
  background-color: #ffffff;
  border-radius: 10px;
  padding: 25px; /* 余白を調整 */
  width: 100%;
  position: relative;
  box-sizing: border-box;
}

.seikyudx-effects-box-title-before {
  font-size: 1.5rem; /* 1.2倍に */
  font-weight: bold;
  margin: 0 0 15px 0; /* マージンを調整 */
  text-align: left;
}

.seikyudx-effects-box-before-content {
  gap: 20px;
  align-items: flex-start;
}

.seikyudx-effects-box-before-list {
  list-style: none;
  padding: 0;
  margin: 0 0 15px 0; /* マージンを調整 */
}

.seikyudx-effects-box-before-list-item {
  position: relative;
  padding-left: 1.5rem;
  font-size: 1.2rem; /* 1.2倍に */
  line-height: 1.6;
  margin-bottom: 10px; /* マージンを調整 */
}

.seikyudx-effects-box-before-list-item::before {
  content: "・";
  position: absolute;
  left: 0;
  color: #333333;
}

.seikyudx-effects-box-before-text {
  font-size: 1.2rem; /* 1.2倍に */
  line-height: 1.6;
  margin: 0 0 15px 0; /* マージンを調整 */
}

.seikyudx-effects-box-highlight {
  font-size: 1.5rem; /* 1.2倍に */
  font-weight: bold;
  color: #fc490d;
}

.seikyudx-effects-arrow-down {
  width: 20px;
  height: 20px;
  background-color: black;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  margin: 10px 0;
}

.seikyudx-effects-box-after {
  background-color: #fff8e1;
  border: 1px solid #ffe8b3;
  border-radius: 10px;
  padding: 25px; /* 余白を調整 */
  width: 100%;
  box-sizing: border-box;
}

.seikyudx-effects-box-title-after {
  font-size: 1.5rem; /* 1.2倍に */
  font-weight: bold;
  margin: 0 0 15px 0; /* マージンを調整 */
  text-align: left;
  color: #fccf00;
}

.seikyudx-effects-box-after-text {
  font-size: 1.2rem; /* 1.2倍に */
  line-height: 1.6;
  margin: 0 0 15px 0; /* マージンを調整 */
}

.seikyudx-effects-box-after-highlight {
  font-size: 1.5rem; /* 1.2倍に */
  font-weight: bold;
  line-height: 1.6;
}

.seikyudx-effects-box-highlight-time {
  font-size: 1.8rem; /* 1.2倍に */
  color: #fccf00;
}

.seikyudx-effects-box-highlight-text {
  color: #fccf00;
}

/* タブレット版 (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .seikyudx-effects-container {
    padding: 60px 15px;
  }
  .seikyudx-effects-content {
    flex-direction: column;
    gap: 30px;
  }
  .seikyudx-effects-left-column,
  .seikyudx-effects-right-column {
    width: 100%;
    padding: 0;
  }
  .seikyudx-effects-box-container {
    width: 100%;
  }
  .seikyudx-effects-box-before,
  .seikyudx-effects-box-after {
    width: 100%;
    padding: 20px;
  }
  .seikyudx-effects-box-title-before,
  .seikyudx-effects-box-title-after {
    font-size: 1.2rem;
  }
  .seikyudx-effects-box-before-list-item,
  .seikyudx-effects-box-after-text {
    font-size: 1rem;
  }
  .seikyudx-effects-box-highlight {
    font-size: 1.2rem;
  }
  .seikyudx-effects-box-highlight-time {
    font-size: 1.5rem;
  }
  .seikyudx-effects-box-after-highlight {
  font-size: 1.2rem; 
  line-height: 1.4;
}
}

/* スマホ版 (768px以下) */
@media (max-width: 768px) {
  .seikyudx-effects-container {
    padding: 40px 10px;
  }
  .seikyudx-effects-content {
    flex-direction: column;
    gap: 20px;
  }
  .seikyudx-effects-left-column,
  .seikyudx-effects-right-column {
    width: 100%;
    padding: 0;
  }
  .emphasis-heading-problem {
    display: none;
  }
  .hero-mobile {
    display: block;
    font-size: 1rem;
    font-weight: bold;
  }
  .seikyudx-effects-box-container {
    width: 100%;
  }
  .seikyudx-effects-box-before,
  .seikyudx-effects-box-after {
    width: 100%;
    padding: 15px;
  }
  .seikyudx-effects-box-title-before,
  .seikyudx-effects-box-title-after {
    font-size: 1rem;
  }
  .seikyudx-effects-box-before-list-item,
  .seikyudx-effects-box-after-text {
    font-size: 0.9rem;
  }
  .seikyudx-effects-box-highlight {
    font-size: 1rem;
  }
  .seikyudx-effects-box-highlight-time {
    font-size: 1.2rem;
  }
  .seikyudx-effects-box-after-highlight {
  font-size: 1.0rem; 
  line-height: 1.2;
}
}

/* introduction-flowエリアここから */

.seikyudx-introduction-flow-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 50px 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #333333;
    text-align: center;
}

.seikyudx-introduction-flow-steps {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 15px;
    padding-bottom: 30px;
}

.seikyudx-introduction-flow-step-item {
    width: 20%;
    background-color: #f8f8f8;
    border-radius: 10px;
    padding: 20px 20px 30px 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    text-align: center;
}

.seikyudx-introduction-flow-step-title {
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 1.4;
    color: #333333;
    margin-bottom: 10px;
}

.seikyudx-introduction-flow-step-content {
    margin-top: 10px;
    flex-grow: 1; /* 内容の高さが揃うように追加 */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.seikyudx-introduction-flow-step-description {
    font-size: 1rem;
    margin-bottom: 10px;
}

.seikyudx-introduction-flow-button {
    display: inline-block;
    padding: 10px 15px;
    background-color: #333333;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 1.4;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.seikyudx-introduction-flow-button:hover {
    background-color: #555555;
}

.seikyudx-introduction-flow-highlight-yellow {
    color: #fccf00;
}

.seikyudx-introduction-flow-image {
    vertical-align: middle;
    margin-left: 5px;
}

.seikyudx-introduction-flow-note-text {
    font-size: 0.8em;
    vertical-align: super;
}

.seikyudx-about-box-button-s {
    display: inline-block;
    background-color: #333333;
    color: #ffffff;
    text-decoration: none;
    padding: 7px 15px; /* 元の半分程度に調整 */
    border-radius: 5px;
    font-weight: bold;
    line-height: 1.4;
    white-space: nowrap;
    font-size: 0.75rem; /* 元のサイズから半分程度に調整 */
}

.seikyudx-about-box-button-s:hover {
  background-color: transparent; /* 背景を透明に */
  color: #333333; /* 文字色を黒に */
  border: 0px solid #333333; /* ホバー時もボーダーを維持 */
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

/* ボックス間の右向き矢印 */
.seikyudx-introduction-flow-arrow-right {
    width: 20px;
    height: 40px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 25 50"><polygon points="25,25 0,50 0,0" fill="%23fccf00"/></svg>');
    background-repeat: no-repeat;
    background-size: contain;
    align-self: center;
}

.seikyudx-introduction-flow-footer-note {
    text-align: right;
    margin-top: 0px;
}

.seikyudx-introduction-flow-footer-note-text {
    font-size: 0.8rem;
    color: #888888;
}

/* タブレット版 (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .seikyudx-introduction-flow-steps {
        flex-wrap: wrap;
        justify-content: center;
    }
    .seikyudx-introduction-flow-step-item {
        width: calc(50% - 15px);
        margin-bottom: 20px;
        min-height: 180px;
    }
    .seikyudx-introduction-flow-arrow-right {
        display: none;
    }
    .seikyudx-introduction-flow-container {
        padding: 40px 20px;
    }
}

/* スマホ版 (768px以下) */
@media (max-width: 768px) {
    .seikyudx-introduction-flow-steps {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .seikyudx-introduction-flow-step-item {
        width: 100%;
        max-width: 350px;
        padding: 15px;
        min-height: 150px;
    }
    .seikyudx-introduction-flow-arrow-right {
        background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 25"><polygon points="25,25 0,0 50,0" fill="%23fccf00"/></svg>');
        width: 40px;
        height: 20px;
        margin: 5px 0;
    }
    .seikyudx-introduction-flow-container {
        padding: 20px 10px;
    }
}
/* introduction-flowエリアここまで */

/* seikyudx-key-featuresエリアここから */
.seikyudx-key-features-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 50px 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #333333;
    text-align: center;
}

/* PC版 (3カラム) */
.seikyudx-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 960px; /* 任意で調整してください */
  margin: 0 auto;
}

.seikyudx-feature-item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 20px 10px;
  border: 1px solid #333;
  background-color: #fff;
  text-align: center;
  height: 200px; /* 画像の高さに合わせて調整 */
  align-items: center;
}

.seikyudx-feature-item img {
  width: 200px;
  height: 100px;
  margin-bottom: 10px;
  object-fit: contain;
}

.seikyudx-feature-item p {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  margin: 0;
}

/* スマホ版 (2カラム) */
@media (max-width: 767px) {
  .seikyudx-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .seikyudx-feature-item {
    height: 180px; /* 任意で調整してください */
    padding: 15px 5px;
    align-items: center;
  }
  
  .seikyudx-feature-item img {
    width: 120px;
    height: 80px;
    margin-bottom: 5px;
    object-fit: contain;
  }
  
  .seikyudx-feature-item p {
    font-size: 14px;
  }
}

/* seikyudx-key-featuresエリアここまで */



/* フォーム固定 右側 */
/* 固定フォーム全体 */
.side-form {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px; 
    height: 100vh;
    background-color: #fff; 
    box-shadow: -3px 0 5px rgba(0,0,0,0.1);
    z-index: 1000;
    overflow-y: auto; 
    border-left: 3px solid #fccf00;
    transition: right 0.5s ease-in-out;
}

/* 固定フォーム スクロールした時に付与する表示用 */
.side-form.is-active {
    right: 0; 
}

/* フォームコンテンツ */
.side-form-inner {
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center; 
    min-height: 100vh;
    box-sizing: border-box;
}

.side-form-material {
    max-width: 80%;
    margin: -20px auto 40px auto;
    box-shadow: 1px 2px 6px rgba(0, 0, 0, 0.2);
}


/* 固定フォーム メインコンテンツがフォームに被らないようにする設定 */
@media (min-width: 1406px) {
    .Web-Basic.Page.Page-205097790469 {
      margin-right: 0; 
      transition: margin-right 0.5s ease-in-out;
    }
  
    body.is-active .Web-Basic.Page.Page-205097790469  {
      margin-right: 400px;
    }
}

/* 固定フォーム モバイル時は固定を解除・非表示 */
@media (max-width: 1406px) {
    .side-form {
      position: static; /* 通常の配置に戻す */
      width: 100%;
      height: auto;
      border-left: none;
      border-top: 4px solid #fccf00;
    }
    body {
        margin-right: 0;
    }
}


/* コストシュミレーター */
.simulation-area {
  padding: 125px 20px 100px;
}

@media (max-width: 768px) {
  .simulation-area {
    padding: 75x 20px 50px;
  }
}
  
.sim-area {
        max-width: 1400px;
        margin: 0 auto;
        font-family: sans-serif;
        color: #333;
    }
    .sim-header {
        margin-bottom: 50px;
    }
    .sim-title-sub {
        color: #333;
        font-size: clamp(15px, 2.4vw, 24px);
        font-weight: bold;
    }
    .sim-head {
        text-align: center;
        margin-bottom: 30px;
    }
    .sim-head h1 {
        font-size: 1.8rem;
        font-weight: 800;
        margin: 0 0 10px 0;
    }
    .sim-grid {
        display: grid;
        grid-template-columns: 350px 1fr;
        gap: 30px;
    }
    @media (max-width: 1024px) {
        .sim-grid {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
    }
    .sim-card {
        background: #fff;
        box-shadow: 1px 2px 6px 0px rgba(0, 0, 0, 0.2);
        border-radius: 16px;
        padding: 20px;
        margin-bottom: 20px;
    }
    .sim-card2 {
        background: #fff;
        box-shadow: 1px 2px 6px 0px rgba(0, 0, 0, 0.2);
        border-radius: 16px;
        padding: 30px;
        margin-bottom: 20px;
    }
    @media (max-width: 714px) {
        .sim-card2 {
            padding: 30px 20px;
        }
    }
    .sim-card.center {
        text-align: center;
    }
    .sim-title {
        font-size: 1.1rem;
        font-weight: 700;
        border-bottom: 1px solid #eee;
        padding-bottom: 10px;
        margin-bottom: 25px;
        display: flex;
        align-items: center;
    }
    .sim-title::before {
        content: "";
        width: 6px;
        height: 20px;
        background: #FCCF00;
        margin-right: 10px;
    }
    .in-box {
        margin-bottom: 35px;
    }
    .flex-j {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
    }
    .in-num {
        width: 80px;
        text-align: right;
        font-size: 1.2rem;
        font-weight: 700;
        border: none;
        outline: none;
        background: transparent;
    }
    .in-range {
        width: 100%;
        height: 8px;
        background: #eaeff3;
        border-radius: 5px;
        appearance: none;
        cursor: pointer;
        margin-top: 10px;
    }
    .in-range::-webkit-slider-thumb {
        appearance: none;
        width: 18px;
        height: 18px;
        background: #FCCF00;
        border-radius: 50%;
    }
    .res-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
        margin-bottom: 20px;
    }
    @media (max-width: 714px) {
        .res-grid {
            display: flex;
            flex-direction: column;
        }
    }
    .res-val {
        font-size: 40px;
        font-weight: 800;
        margin: 10px 0 0;
        color: #fc490d;
    }
    .res-val.small {
        color: #333333;
        font-weight: 700;
        line-height: 1.0;
    }
    .chart-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 40px;
    }
    @media (max-width: 714px) {
        .chart-container {
            display: flex;
            flex-direction: column;
            text-align: center;
            gap: 60px;
        }
    }
    .chart-box {
        height: 250px;
        position: relative;
        margin: 20px;
    }
    .text-muted {
        color: #333;
        font-size: 16px;
        font-weight: 700;
    }
    .text-muted2 {
        color: #333;
        font-size: 24px;
    }
    .anno {
        font-size: 12px;
        color: #333;
    }
    .flex-center {
      display: flex;
      align-items: baseline;   /* 文字の下端を合わせる */
      gap: 2px;     /* 項目間の隙間 */
}
    .unit-small {
      font-size: 24px; /* 親文字（数値）の60%の大きさに設定 */
}



.seikyudx-features-item-body2 {
  text-align: left;
  display: flex;
  flex-direction: column;
  height: 100%;
  margin-bottom: 10px;
}

.seikyudx-about-trial-content2 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  margin: 50px auto;
  border-radius: 10px;
  background: linear-gradient(135deg, #ffffff 70%, #fccf00 70%);
  box-shadow: 1px 2px 6px 0px rgba(0, 0, 0, 0.2);
  width: 100%;
  padding: 60px 40px;
}

.seikyudx-about-description {
  font-size: clamp(15px, 2.4vw, 22px);
}

.seikyudx-about-trial-list {
  font-size: clamp(15px, 2.4vw, 22px);
}

@media (max-width: 1148px) {
    .seikyudx-about-trial-content2 {
       flex-direction: column;
       gap: 20px;
    }
}

@media (max-width: 517px) {
    .seikyudx-about-trial-content2 {
        padding: 60px 20px;
    }
}

.emphasis {
  color: #fccf00;
}


.cta-button {
    background-color: #333;
    border-radius: 10px;
    border: 3px solid #333;
    color: #fff;
    font-size: clamp(15px, 2.4vw, 22px);
    display: inline-block;
    font-weight: 700;
    padding: 15px 30px;
}

.cta-button:hover {
    background-color: #fff;
    color: #333;
}

@media (max-width: 411px) {
  .cta-button {
    padding: 15px 15px;
  }
    .cta-button {
    border: 2px solid #333;
  }
}

.cta-badge {
    background-color: #fccf00; /* 無料バッジの黄色 */
    color: #333;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 0.8rem;
    font-weight: 800;
    margin-right: 10px;
}

.contact-button {
    background-color: #333;
    color: #fff;
    border: 2px solid #333;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.trial-cta {
    position: relative; /* バッジを絶対配置するための基点 */
    display: inline-block; /* 幅をコンテンツに合わせる */
    margin: 30px auto 0; /* 必要に応じて中央寄せ */
}

@media (max-width: 1148px) {
  .trial-cta {
    margin: 20px auto;
  }
}



/* 質問エリア */
/* セクション全体 */
.faq-section-question {
  background-color: #fff;
  padding: 0px 20px 80px;
  color: #333;
  text-align: center;
}

.faq-list-question-hayabarai {
  max-width: 900px;
  margin: 0 auto;
}

/* 質問項目 */
.faq-item-question-hayabarai {
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.faq-question-question-hayabarai {
  width: 100%;
  border: none;
  text-align: left;
  padding: 25px 20px;
  font-size: clamp(15px, 2.4vw, 22px);
  font-weight: 500;
  position: relative;
  transition: background-color 0.3s ease;
}

/* 質問項目 アイコン（＋） */
.faq-question-question-hayabarai .icon {
  position: absolute;
  right: 20px;
  font-size: 22px;
  transition: transform 0.3s ease;
}

.faq-question-question-hayabarai.active .icon {
  transform: rotate(180deg);
}

/* 質問項目 回答 */
.faq-question-question-hayabarai:hover {
  background-color: #fff;
}

.faq-question-question-hayabarai.active {
  background-color: #fccf00;
}

  
.faq-answer-question-hayabarai {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s ease, padding 0.3s ease, opacity 0.4s ease;
  background-color: #fccf00;
  line-height: 1.8;
  text-align: left;
  font-size: clamp(15px, 2.4vw, 22px);
  font-weight: 500;
}

.faq-answer-question-hayabarai.show {
  padding: 25px;
  opacity: 1;
}

.faq-answer-question-hayabarai p {
  margin-bottom: 50px;
}

.icon-tick-hayabarai2 {
  margin: 0.1em 1em 0 0;
  color: #333;
}




@media (max-width: 768px) {
  .faq-section-question-hayabarai {
    padding: 40px 15px;
  }

  .heading-hayabarai {
    margin-bottom: 30px;
  }

  .faq-question-question-hayabarai {
    padding: 20px 15px;
    padding-right: 45px;
  }

  .faq-question-question-hayabarai .icon {
    font-size: 20px;
    right: 15px;
  }

  .faq-answer-question-hayabarai {
    padding: 0 15px;
  }

  .faq-answer-question-hayabarai.show {
    padding: 20px 15px;
  }

  .faq-list-question-hayabarai {
    max-width: 100%;
  }
}


.line {
   background: linear-gradient(transparent 60%, #fccf00 60%);
}

.source {
  margin: 20px auto;
  color: #888888;
}