@charset "UTF-8";
.round-button {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  border: 2px solid #1d2362;
  border-radius: 50px;
  color: #1d2362;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  line-break: normal;
}
.round-button:hover {
  background-color: #1d2362;
  color: #fff100;
}
.round-button.primary.invoice {
  background-color: #eb6ea5;
  color: #ffffff;
}
.round-button.primary.invoice:hover {
  background-color: #ffffff;
  color: #eb6ea5;
}
.round-button.secondary {
  background-color: #1d2362;
  color: #fff;
  border: 0;
}
.round-button.secondary:hover {
  background-color: #ffffff;
  color: #1d2362;
  border: 2px solid #1d2362;
}


/* =======スマホ・PC表示切替======= */
.is-sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .is-pc {
    display: none;
  }
  .is-sp {
    display: inline;
  }
}

/* 端末フレーム（共通） */
.app-screen {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: min(300px, 90vw);
  height: 100%;
  overflow: hidden;
  margin: 0 auto 24px;
  color: #333;
  font-size: 24px;
  background: #fff;
  border: 3px solid #5c5c5c;
  border-radius: 36px;
  box-shadow: 0 6px 6px rgba(0, 0, 0, 0.1);
}
.app-screen::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 24px;
  background: #000;
  border-radius: 12px;
}
.app-screen::after {
  content: "";
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 6px;
  background: #000;
  border-radius: 3px;
  opacity: 0.8;
}

.dialog-title {
  position: absolute;
  top: 40px;
  left: 50%;
  z-index: 10;
  width: 80%;
  margin: 0;
  transform: translateX(-50%);
}

@media (min-height: 850px) {
  .app-screen {
    height: min(600px, 80vh);
  }
}
@media (max-height: 850px) {
  .app-screen {
    width: min(210px, 90vh);
    height: 400px;
    margin-bottom: 12px;
  }
  .app-screen::before {
    width: 72px;
    height: 12px;
  }
  .dialog-title {
    top: 32px;
    font-size: 12px;
  }
}

/* コンテンツ領域（共通） */
.app-content {
  min-height: 0;
  margin-top: 88px;
}
@media (max-height: 850px) {
  .app-content {
    margin-top: 48px;
  }
}

/* 汎用テキスト */
.text1 {
  margin: 6px 12px 24px;
  text-align: left;
  color: #333;
  font-size: 14px;
  font-weight: 600;
}
@media (max-height: 850px) {
  .text1 {
    margin: 6px 12px 12px;
    font-size: 10px;
  }
}

.text2 {
  margin: 16px 12px;
  text-align: left;
  color: #333;
  font-size: 13px;
  font-weight: 500;
}
@media (max-height: 850px) {
  .text2 {
    margin: 18px 12px;
    font-size: 8px;
  }
}

.text-small-strong {
  margin-bottom: 8px;
  color: #333;
  font-size: 9px;
  font-weight: 600;
}

/* 共通リスト */
.list {
  overflow: hidden;
  margin: 0 0 12px;
  padding: 0;
  list-style: none;
  border-radius: 12px;
}
.list li {
  padding: 12px 14px;
  line-height: 1.15;
  background: #fff;
  border-bottom: 1px solid #f0f2f5;
}
.list li:last-child {
  border-bottom: none;
}
.list li:hover {
  background: #f8fafc;
}

/* 画像ユーティリティ */
.img2,
.img2-1,
.img3,
.img4 {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.img2 {
  border-radius: 4px;
}

.img2-1 {
  border-radius: 4px;
  width: 82%;
  margin: 0 auto;
}

.img3 {
  margin-bottom: 16px;
}

.img4 {
  border-radius: 4px;
  margin-top: 54px;
}

@media (max-height: 850px) {
  .img2 {
    max-width: 90%;
    margin: 32px auto 0;
  }
  .img2-1 {
    width: 75%;
    margin: 0px auto 32px;
  }
  .img3 {
    max-width: 80%;
    margin-top: 60px;
  }
  .img4 {
    max-width: 90%;
    margin: 48px auto 16px;
  }
}

/* =======ファーストビュー======= */
.first_view {
  background-color: #FFFDC6;
  /* ヘッダー分の余白 */
  /* padding-top: 60px; */
}
.first_view.no_header {
  padding-top: 0px;
}
.first_view__h1 {
  position: absolute;
  top: 0;
  left: 120%;
}
.first_view__header-sp {
  width: 100%;
  background-color: #ffffff;
  display: flex;
  min-height: 100px;
  justify-content: center;
}
@media screen and (min-width: 767px) {
  .first_view__header-sp {
    display: none;
  }
}
.first_view__header-sp__image {
  -o-object-fit: contain;
     object-fit: contain;
  max-width: 400px;
  width: 100%;
}
.first_view__main {
  padding: 20px 50px 0px 50px;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .first_view__main {
    padding: 30px 0px 0px 0px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
}
.first_view__main__contents {
  position: relative;
}
@media screen and (max-width: 768px) {
  .first_view__main__contents {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.first_view__image-area {
  height: auto;
  position: relative;
  display: flex;
  justify-content: center;
}
.first_view__image-area__image {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 1216px) {
  .first_view__image-area__image {
    max-width: 1200px;
  }
}
@media screen and (max-width: 768px) {
  .first_view__image-area__image {
    max-width: 100%;
  }
}
.first_view__cta-button {
  position: absolute;
  display: flex;
  bottom: 20px;
  left: 6.3vw;
  height: 7vw;
  max-height: 100px;
}
@media screen and (max-width: 768px) {
  .first_view__cta-button {
    position: static;
    height: 15vw;
    margin: 13px 0;
  }
}
.first_view__cta-area {
  position: absolute;
  display: flex;
  gap: 10px;
  bottom: 160px;
}
@media screen and (max-width: 768px) {
  .first_view__cta-area {
    position: static;
    margin: 20px 0;
  }
}
@media screen and (min-width: 769px) and (max-width: 930px) {
  .first_view__cta-area {
    left: clamp(69px, 10vw, 73px);
  }
}
@media screen and (min-width: 931px) and (max-width: 1215px) {
  .first_view__cta-area {
    left: clamp(88px, 11vw, 120px);
  }
}
@media screen and (min-width: 1216px) and (max-width: 1500px) {
  .first_view__cta-area {
    left: clamp(80px, 12vw, 100px);
  }
}
@media screen and (min-width: 1500px) {
  .first_view__cta-area {
    left: clamp(108px, 6vw, 359px);
  }
}
.first_view__cta-area__image {
  height: 60px;
  width: auto;
}
@media screen and (max-width: 768px) {
  .first_view__cta-area__image {
    height: 11vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 930px) {
  .first_view__cta-area__image {
    height: clamp(35px, 5vw, 42px);
  }
}
@media screen and (min-width: 931px) and (max-width: 1215px) {
  .first_view__cta-area__image {
    height: clamp(42px, 4vw, 59px);
  }
}
@media screen and (min-width: 1216px) and (max-width: 1500px) {
  .first_view__cta-area__image {
    height: 58px;
  }
}
@media screen and (min-width: 1500px) {
  .first_view__cta-area__image {
    height: 67px;
  }
}
.first_view__cta-area__image.qr-code {
  margin-left: 10px;
}
@media screen and (max-width: 768px) {
  .first_view__cta-area__image.qr-code {
    display: none;
  }
}
/* =====セルフメディケーション税制とは===== */
.s-self-medication {
  padding: 80px 20px;
}

.s-sm-list {
  display: flex;
  justify-content: center; /* リスト全体を中央 */
}

.s-sm-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sm-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 12px;
  text-align: left;
}

.sm-check {
  flex-shrink: 0;
}

.sm-text {
  line-height: 1.6;
}

@media screen and (max-width: 767px) {
  .sm-description p {
    text-align: left;
  }
}


/* YouTubeショート動画埋め込み */
.youtube-shorts {
  position: relative;
  width: 100%;
  max-width: 360px;
  margin: 20px auto 0 auto;
  padding: 56.25%  0 0;
}

.youtube-shorts iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* =======モデルケース======= */
  .p-marunage .s-feature {
  color: #1f286f;
}
@media screen and (min-width: 768px) and (max-width: 1034px) {
  .p-marunage .s-feature {
    width: 100%;
    padding: 0 20px 50px 20px;
  }
}

@media screen and (max-width: 767px) {
  .p-marunage .s-feature-list {
    grid-template-columns: 1fr;
    row-gap: 20px;
    padding: 0;
  }
}
.p-marunage .s-feature-list li {
  background: #ffffff;
  border-radius: 10px;
}
.p-marunage .s-feature-list li > div {
  padding: 30px 20px;
}
@media screen and (max-width: 767px) {
  .p-marunage .s-feature-list li > div {
    padding: 15px;
  }
}
.p-marunage .s-feature-list li > div dl {
  margin-bottom: 0;
}
.p-marunage .s-feature-list li > div dl dt {
  font-size: 18px;
  line-height: 1.4;
  text-align: center;
  color: #1e2362;
  margin-top: 10px;
}
.p-marunage .s-feature-list li > div dl dd {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #1d2362;
}
.p-marunage .s-feature-list__thum {
  width: 8.58vw;
  margin: 10px auto;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-marunage .s-feature-list__thum {
    width: 100px;
  }
}

/* =====モデルケース===== */
.model-case {
  padding: 80px 20px;
  background-color: #f0f2f5;
}
@media screen and (max-width: 767px) {
  .model-case {
    padding: 20px 10px;
  }
}

.model-case_title {
  color: #1f286f !important;
}
.model-case_title::after {
  background-color: #e8e9f0 !important;
}

.model-case-result__text {
  text-align: center;
  font-size: 16px;
}

.model-case-fee__text {
  text-align: center;
}

.c-triangle__img {
  width: 24px;
  height: auto;
  display: block;
  margin: 0 auto;
}
.c-triangle {
  margin: 20px auto;
}
/* 注釈 */
.model-case_notes {
  padding: 60px 60px 0 60px;
  line-height: 1rem;
  color: #1f286f;
}


.s-inner h2 {
  text-align: center;
  font-size: 28px;
  color: #1f286f;
  margin-bottom: 20px;
  line-height: 1.5;
}

.model-case_title {
  text-align: center;
  font-size: 32px;
  color: #1f286f !important;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 20px;
}

.model-case_title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: #e8e9f0 !important;
  margin: 15px auto 0;
}

/* フィーチャーリスト */
.s-feature-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 30px;
  margin-bottom: 0;
  padding: 0 50px;
  max-width: 1100px;   /* ← 追加 */
  margin: 0 auto;     /* ← 追加 */
  list-style: none;
}

.s-feature-list li {
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.s-feature-list li:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.s-feature-list li > div {
  padding: 0;
}

/* ケースヘッダー */
.case-header {
  background: linear-gradient(135deg, #1f286f 0%, #2d3a8c 100%);
  padding: 15px;
  text-align: center;
  color: #ffffff;
}

.case-number {
  display: inline-block;
  background-color: #fff200;
  color: #1f286f;
  font-size: 13px;
  font-weight: 700;
  padding: 3px 14px;
  border-radius: 20px;
  margin-bottom: 8px;
}

.case-title {
  font-size: 15px;
  line-height: 1.5;
  font-weight: 600;
}

.case-income {
  font-size: 13px;
  font-weight: 500;
  opacity: 0.9;
}

/* ケースボディ */
.case-body {
  padding: 30px auto;
}

/* サムネイル */
.s-feature-list__thum {
  width: 100px;
  margin: 0 auto 20px;
  text-align: center;
}

.s-feature-list__thum img,
.s-feature-list__thum svg {
  width: 100%;
  height: auto;
}

/* 料金情報 */
.model-case-fee {
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 10px;
}

.fee-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
}

.fee-item:not(:last-child) {
  border-bottom: 1px solid #e9ecef;
}

.fee-label {
  font-size: 14px;
  color: #666;
  font-weight: 500;
}

.fee-amount {
  font-size: 16px;
  color: #1f286f;
  font-weight: 700;
}

/* 三角形 */
.c-triangle {
  margin: 20px auto;
  text-align: center;
}

.c-triangle svg {
  width: 24px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* 還付金結果 */
.model-case-result {
  background: #FFFDC6;
  border: none;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}

.result-badge {
  display: inline-block;
  background-color: #1f286f;
  color: #fff200;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 12px;
  margin-bottom: 12px;
}

.result-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.result-prefix {
  font-size: 16px;
  color: #333;
  font-weight: 500;
}

.result-number {
  font-size: 36px;
  color: #dc2626;
  font-weight: 700;
  line-height: 1;
}

.result-unit {
  font-size: 18px;
  color: #333;
  font-weight: 700;
}

/* 注釈 */
.model-case_notes {
  padding: 60px 60px 0 60px;
  line-height: 1.6;
  color: #1f286f;
  font-size: 13px;
}

.model-case_notes p {
  margin-bottom: 5px;
}

/* タブレット対応 */
@media screen and (min-width: 768px) and (max-width: 1034px) {
  .s-feature {
    width: 100%;
    padding: 0 20px 50px 20px;
  }

  .s-feature-list {
    padding: 0 20px;
    column-gap: 20px;
    max-width: 1100px;   /* ← 追加 */
    margin: 0 auto;     /* ← 追加 */
  }

  .case-header {
    padding: 15px;
  }

  .case-title {
    font-size: 14px;
  }

  .case-body {
    padding: 20px 15px;
  }

  .result-number {
    font-size: 30px;
  }
}

/* スマートフォン対応 */
@media screen and (max-width: 767px) {
  .s-model-case {
    padding: 60px 20px;
  }

  .s-inner h2 {
    font-size: 22px;
  }

  .model-case_title {
    font-size: 24px;
  }

  .section-description {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .case-header {
    padding: 15px;
  }

  .case-number {
    font-size: 12px;
    padding: 3px 12px;
  }

  .case-title {
    font-size: 14px;
  }

  .case-income {
    font-size: 12px;
  }

  .case-body {
    padding: 20px 15px;
  }

  .s-feature-list__thum {
    width: 80px;
    margin-bottom: 15px;
  }

  .model-case-fee {
    padding: 12px;
  }

  .fee-label {
    font-size: 13px;
  }

  .fee-amount {
    font-size: 15px;
  }

  .result-badge {
    font-size: 11px;
    padding: 3px 10px;
  }

  .result-number {
    font-size: 32px;
  }

  .result-unit {
    font-size: 16px;
  }

  .model-case_notes {
    padding: 40px 20px 0 20px;
    font-size: 12px;
  }
}

/* =======３ポイント======= */
.three-points {
  display: block;
  justify-content: center;
  gap: 78px;
  padding: 80px 20px;
  background-color: #ffffff;
}
@media screen and (max-width: 767px) {
  .three-points {
    margin: 10px 0;
    gap: 4vw;
  }
}

.three-points__title {
  font-size: 16px;
  font-weight: 600;
  color: #1e2362;
  margin-bottom: 16px;
  padding-top: 0;
  position: static;
  text-align: center;
  width: auto;
  line-height: unset;
}

.three-points__point {
  font-size: 40px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1;
  font-family: "Poppins", sans-serif;
  color: #1e2362;
}
@media screen and (max-width: 767px) {
  .three-points__point {
    font-size: 24px;
  }
}

.three-points__contents {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 32px;
  flex-direction: row;
}
@media screen and (max-width: 767px) {
  .three-points__contents {
    flex-direction: column;
    gap: 32px;
  }
}

.three-points__content {
  display: flex;
  flex-direction: column;
  align-items: center;
}


.three-points__content__text {
  font-weight: bold;
  font-size: clamp(14px, 2.5vw, 21px);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .three-points__content__text {
    font-size: 16px;
  }
} 

.three-points__content__text__highlight {
  font-size: clamp(21px, 4vw, 26px);
  margin-top: 5px;
}
.three-points__content__image {
  max-width: 200px;
  width: 15vw;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .three-points__content__image {
    width: 40vw;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
} 

.three-points__text {
  position: static;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  color: #1e2362;
  text-align: center;
  margin-bottom: 16px;
  display: block;
  background-color: unset;
}
@media screen and (min-width: 768px) {
  .three-points__text {
    font-size: 16px;
  }
}
.three-points__subtitle {
  margin-top: 40px;
}

/* =====料金プラン===== */
.price-plan {
  padding: 60px 0;
  background-color: #FFFDC6;
}
.price-plan__title {
  font-size: 16px;
  font-weight: 600;
  color: #1e2362;
  margin-bottom: 16px;
  padding-top: 0;
  position: static;
  text-align: center;
  width: auto;
  line-height: unset;
}
.price-plan__price {
  font-size: 41px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1;
  font-family: "Poppins", sans-serif;
  color: #1e2362;
}
@media screen and (min-width: 768px) {
  .price-plan__price {
    font-size: 46px;
  }
}
.price-plan__subtitle {
  position: static;
  width: 100%;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
}
.price-plan__text {
  position: static;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  color: #1e2362;
  text-align: center;
  margin-bottom: 16px;
  display: block;
  background-color: unset;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .price-plan__text {
    font-size: 16px;
  }
}

.plan-card {
  background-color: #ffffff;
  border-radius: 24px;
  overflow: visible;
  position: relative;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  padding: 64px;
  margin: 40px auto 0 auto;
}
@media screen and (max-width: 767px) {
  .plan-card {
    padding: 32px 20px 40px 20px;
    margin: 20px 10px 0 10px;
  }
}

/* おすすめバッジ */
.recommend-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.recommend-badge-inner {
  background: linear-gradient(to right, #fb923c, #f97316);
  color: #ffffff;
  padding: 0.375rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  white-space: nowrap;
}

/* プラン説明 */
.plan-description {
  text-align: center;
  font-size: 16px;
  line-height: 1.25rem;
  color: #374151;
  margin-bottom: 1.5rem;
}

/* キャンペーンバナー */
.campaign-banner-wrapper {
  text-align: center;
  margin-bottom: 1.5rem;
}

.campaign-banner {
  background: linear-gradient(to right, #1f286f, #3a4080);
  color: #fff200;
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.campaign-text {
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 700;
  margin: 0;
}

.price-section {
  text-align: center;
  margin-bottom: 1.5rem;
}

.price-label {
  font-size: 16px;
  line-height: 1rem;
  color: #6b7280;
  margin-bottom: 0.75rem;
}

.price-comparison {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 0.25rem;
}

.old-price {
  font-size: 1.875rem;
  line-height: 2.25rem;
  color: #9ca3af;
  text-decoration: line-through;
}

.arrow-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: #1f286f;
}

.new-price-wrapper {
  display: flex;
  align-items: flex-end;
}

.new-price {
  font-size: 3.75rem;
  line-height: 1;
  color: #ef4444;
  font-weight: 700;
}

.price-unit {
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: #4b5563;
  margin-left: 0.25rem;
  margin-bottom: 0.5rem;
}

.annual-price-section {
  border-top: 1px solid #e5e7eb;
  padding-top: 1rem;
  margin-bottom: 1.5rem;
}

.annual-price-inner {
  text-align: center;
}

.annual-label {
  font-size: 16px;
  line-height: 1rem;
  color: #6b7280;
  margin-bottom: 0.5rem;
}

.annual-comparison {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.annual-old-price {
  font-size: 14px;
  line-height: 1.25rem;
  color: #9ca3af;
  text-decoration: line-through;
}

.arrow-icon-small {
  width: 1rem;
  height: 1rem;
  color: #9ca3af;
}

.annual-new-price {
  font-size: 16px;
  line-height: 1.75rem;
  color: #1f286f;
  font-weight: 700;
}

/* キャンペーンリンク */
.campaign-link-wrapper {
  text-align: center;
}

.campaign-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: #1f286f;
  font-size: 16px;
  line-height: 1.25rem;
  font-weight: 700;
  text-decoration: none;
}

.campaign-link:hover {
  text-decoration: underline;
}

.link-arrow {
  width: 1rem;
  height: 1rem;
}

/* 注釈 */
.notes {
  margin: 20px 10px;
  line-height: 1rem;
  color: #1f286f;
}
@media screen and (min-width: 768px) {
  .notes {
    margin: 20px auto;
  }
  .pc-note-right {
    text-align: right;
  }
}

/* レスポンシブ対応 */
@media (max-width: 640px) {
  .plan-title h2 {
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .campaign-text {
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .campaign-banner {
    padding: 0.75rem 1.5rem;
  }

  .new-price {
    font-size: 3rem;
    line-height: 1;
  }

  .old-price {
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .price-comparison {
    gap: 0.5rem;
  }
}

/* =====税理士おすすめ（会計から流用）===== */
.marunage-recommendations {
  padding: 0;
  background-color: #ffffff;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .marunage-recommendations {
    padding: 0 8vw 30px;
  }
}
.marunage-recommendations__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  margin-bottom: 24px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .marunage-recommendations__header {
    margin-top: 24px;
    margin-bottom: 0;
  }
}
.marunage-recommendations__title {
  font-size: 32px;
  line-height: 1.3;
  font-weight: bold;
  color: #1d2362;
  margin-bottom: 0px;
  position: static;
  width: auto;
}
@media screen and (min-width: 768px) {
  .marunage-recommendations__title {
    font-size: 41px;
  }
}
@media screen and (min-width: 768px) {
  .marunage-recommendations__title--line-break {
    display: none;
  }
}
.marunage-recommendations__image {
  width: 90px;
}
@media screen and (min-width: 768px) {
  .marunage-recommendations__image {
    max-width: 300px;
    width: 20vw;
  }
}
.marunage-recommendations__pc-contents {
  display: none;
}
@media screen and (min-width: 768px) {
  .marunage-recommendations__pc-contents {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
  }
}
.marunage-recommendations__sp-contents {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media screen and (min-width: 768px) {
  .marunage-recommendations__sp-contents {
    display: none;
  }
}
.marunage-recommendations__store-links {
  display: flex;
  padding: 16px;
  gap: 10px;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
  margin-bottom: 20px;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .marunage-recommendations__store-links {
    gap: 20px;
  }
  .marunage-recommendations__store-links--left {
    flex: 1;
    text-align: end;
  }
  .marunage-recommendations__store-links--right {
    flex: 1;
    text-align: start;
  }
}
.marunage-recommendations__store-link {
  max-height: 50px;
}
@media screen and (min-width: 768px) {
  .marunage-recommendations__store-link {
    max-height: 60px;
  }
}
.marunage-recommendations__button-area {
  width: 80vw;
  max-width: 510px;
  margin-left: auto;
  margin-right: auto;
}
.marunage-recommendations__button {
  font-size: clamp(15px, 1vw, 25px);
}
.marunage-recommendations--pc-content {
  border: 3px solid #1d2361;
  border-radius: 10rem 10rem 1.1rem 1.1rem;
  background: #fff;
  min-height: 100%;
  flex: 1;
  margin-top: 32px;
  padding-bottom: 32px;
  max-width: 425px;
}
.marunage-recommendations--pc-content__inner {
  background-color: #fff200;
  border: 6px solid #fff;
  border-radius: 9.7rem 9.7rem 1rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 20px;
  margin-right: 20px;
  margin-top: 11px;
}
.marunage-recommendations--pc-content__comment {
  margin-top: 28px;
  color: #ffffff;
  font-weight: bold;
  font-size: 24px;
  line-height: 1.5;
  text-align: center;
  -webkit-text-stroke: 4px #1d2362;
  text-stroke: 4px #1d2362;
  paint-order: stroke fill;
  text-shadow: 2px 3px 1px #1d2362, 2px 4px 1px #1d2362;
  margin-bottom: 16px;
  margin-top: 20px;
}
.marunage-recommendations--pc-content__figure {
  flex-direction: column;
  display: flex;
  justify-content: center;
  align-items: center;
}
.marunage-recommendations--pc-content__image {
  margin-top: 24px;
  width: 150px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.marunage-recommendations--pc-content__name-area {
  margin-top: 12px;
  font-weight: bold;
  font-size: 18px;
  color: #1d2362;
  text-align: center;
}
.marunage-recommendations--pc-content__name {
  margin-top: 12px;
  font-weight: bold;
  font-size: 24px;
}
.marunage-recommendations--pc-content__description {
  padding: 0 16px;
  margin-top: 10px;
  margin-bottom: 16px;
  font-size: 17px;
  font-weight: bold;
  line-height: 170%;
  color: #1d2361;
  margin-bottom: 0;
  text-align: start;
}
.marunage-recommendations--pc-content__description--important {
  background-color: #fff200;
}
.marunage-recommendations--sp-content--01 {
  display: flex;
  flex-direction: row;
  gap: 10px;
  padding: 0 16px;
  justify-content: start;
}
.marunage-recommendations--sp-content--01__left {
  justify-self: start;
}
.marunage-recommendations--sp-content--01__right {
  position: relative;
  background-color: #fff;
  margin-left: 18px;
  margin-bottom: 0;
  border-radius: 16px;
  padding: 16px;
  border: 1px solid #1d2362;
}
.marunage-recommendations--sp-content--01__right:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -24px;
  margin-top: -12px;
  border: 12px solid transparent;
  border-right: 12px solid #fff;
  z-index: 2;
}
.marunage-recommendations--sp-content--01__right:after {
  content: "";
  position: absolute;
  top: 50%;
  left: -26px;
  margin-top: -13px;
  border: 13px solid transparent;
  border-right: 13px solid #1d2362;
  z-index: 1;
}
.marunage-recommendations--sp-content--02 {
  display: flex;
  flex-direction: row;
  gap: 10px;
  padding: 0 16px;
  justify-content: end;
}
.marunage-recommendations--sp-content--02__right {
  justify-self: end;
}
.marunage-recommendations--sp-content--02__left {
  position: relative;
  background-color: #fff;
  margin-right: 18px;
  margin-bottom: 0;
  border-radius: 16px;
  padding: 16px;
  border: 1px solid #1d2362;
}
.marunage-recommendations--sp-content--02__left:before {
  content: "";
  position: absolute;
  top: 50%;
  right: -24px;
  margin-top: -12px;
  border: 12px solid transparent;
  border-left: 12px solid #fff;
  z-index: 2;
}
.marunage-recommendations--sp-content--02__left:after {
  content: "";
  position: absolute;
  top: 50%;
  right: -26px;
  margin-top: -13px;
  border: 13px solid transparent;
  border-left: 13px solid #1d2362;
  z-index: 1;
}
.marunage-recommendations--sp-content__image {
  margin-top: 15px;
  min-width: 50px;
  max-width: 80px;
}
.marunage-recommendations--sp-content__name-area {
  margin-top: 8px;
  font-weight: bold;
  font-size: 10px;
  color: #1d2362;
  white-space: nowrap;
}
.marunage-recommendations--sp-content__name {
  font-size: 14px;
}
.marunage-recommendations--sp-content__description {
  color: #1d2362;
  font-size: 15px;
  font-weight: 450;
  line-height: 1.2;
  text-align: start;
  width: 65vw;
  max-width: 300px;
  margin-top: auto;
  margin-bottom: auto;
}
.marunage-recommendations--sp-content__description--important {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  border-bottom: 1px solid #1d2361;
  background-color: #fffaa1;
}


/* =====FAQ===== */
.p-marunage .s-faq {
  padding: 80px 0 !important;
  width: 980px;
  margin: 0 auto;
  background-color: #ffffff;
}
@media screen and (min-width: 768px) and (max-width: 1034px) {
  .p-marunage .s-faq {
    width: 100%;
    padding: 60px 20px 0 20px !important;
  }
}
@media screen and (max-width: 767px) {
  .p-marunage .s-faq {
    padding: 60px 20px 0 20px !important;
    width: 100%;
  }
}
.p-marunage .s-faq > .content {
  margin-top: 30px;
}
.p-marunage .s-faq > .content > dl dt {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding-top: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #1f286f;
}
.p-marunage .s-faq > .content > dl dt::before {
  top: 0.65em;
}
@media screen and (max-width: 767px) {
  .p-marunage .s-faq > .content > dl dt {
    font-size: 16px;
  }
}
.p-marunage .s-faq > .content > dl dd {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  background: #e7e9f0;
  overflow: inherit;
  max-height: inherit;
  opacity: 1;
  padding: 15px 50px;
  overflow: inherit !important;
  display: none;
  transition: none !important;
}
@media screen and (max-width: 767px) {
  .p-marunage .s-faq > .content > dl dd {
    padding: 15px;
    font-size: 14px;
  }
}
.p-marunage .s-faq > .content > dl dd .download-btn ul {
  margin-top: 15px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 15px;
}
.p-marunage .s-faq > .content > dl dd .download-btn ul li {
  height: 65px;
  width: auto;
  margin-right: 15px;
}
@media (max-width: 460px) {
  .p-marunage .s-faq > .content > dl dd .download-btn ul li {
    height: auto;
  }
}
.p-marunage .s-faq > .content > dl dd .download-btn ul li img {
  height: 100% !important;
}
@media (max-width: 460px) {
  .p-marunage .s-faq > .content > dl dd .download-btn ul li img {
    height: initial !important;
  }
}

.marunage-middle-cta-contents {
  background-color: #ffffff;
}