@charset "utf-8";

/* stylelint-disable selector-class-pattern, plugin/no-unsupported-browser-features */

:root {
  --main-width: 570px;
  --blank-half-width: calc((100% - var(--main-width)) / 2);
  --color-primary: #8fb130;
  --color-accent: #dc624e;
  --color-orange: #f8860d;
  --color-dark: #27564b;
  --color-text: #333;
}

body {
  padding: 0;
  margin: 0;
  font-family:
    'Noto Sans JP',
    -apple-system,
    BlinkMacSystemFont,
    'Helvetica Neue',
    'Segoe UI',
    'Hiragino Sans',
    Meiryo,
    sans-serif;
  line-height: 1.6;
  color: var(--color-text);
  background: linear-gradient(180deg, #eef1f5 38%, #e0e3ea 100%);
}

header,
.Main,
footer {
  width: 100%;
  max-width: var(--main-width);
  margin: 0 auto;
}

.Main {
  box-sizing: border-box;
  background-color: #fff;
  box-shadow: 0 0 10px rgb(0, 0, 0, 0.1);
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

.u-sp {
  display: block;
}

.u-pc {
  display: none;
}

/* .Header */

.Header {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: var(--main-width);
  height: 60px;
  padding-left: 15px;
  margin: 0 auto;
  background-color: #fff;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  box-shadow: 0 0 16px 0 #7777774d;
}

.Header__logo {
  max-width: 205px;
}

@media (width <= 959.98px) {
  .Header.u-sp {
    display: flex;
  }
}

@media (width >= 960px) {
  .Header.u-sp {
    display: none;
  }
}

/* END: .Header */

/* .Fixed-logo */

.Fixed-logo {
  display: none;
}

@media (width >= 960px) {
  .Fixed-logo {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    display: block;
  }
}

/* END: .Fixed-logo */

@media (width >= 768px) {
  .u-sp {
    display: none;
  }

  .u-pc {
    display: block;
  }
}

/* ヒーローセクション */
.Hero {
  padding: 0 16px 32px;
  text-align: center;
  background-color: #ade3a5;
}

.Hero__img-wrap {
  max-width: none;
  margin: 0 -16px 8px;
}

.Hero__img-wrap img {
  display: block;
  width: 100%;
  height: auto;
}

/* 「保険契約の成立で」テキストスタイル */
.Hero__note-ttl {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  margin: 16px 0 8px;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.25;
  color: var(--color-accent);
}

.Hero__note-ttl::before,
.Hero__note-ttl::after {
  display: inline-block;
  width: 6px;
  height: 16px;
  content: '';
  border-left: 2px solid var(--color-accent);
}

.Hero__note-ttl::before {
  transform: rotate(-15deg);
}

.Hero__note-ttl::after {
  transform: rotate(15deg);
}

/* 景品カード（共通および個別スタイル） */
.Prize-card-catalog,
.Prize-card-ice {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  height: 131px;
  max-height: 131px;
  margin: 0 0 8px;
  overflow: hidden;
  text-align: left;
  background-color: #fff;
  border-radius: 8px;
  transform: translateZ(0);
}

.Prize-card-catalog__group,
.Prize-card-ice__group {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}

.Prize-card-catalog__group {
  padding: 18.5px 16px;
}

.Prize-card-ice__group {
  padding: 12px 16px;
}

.Prize-card-catalog__badge,
.Prize-card-ice__badge {
  position: absolute;
  left: 16px;
  z-index: 3;
  box-sizing: border-box;
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  width: 72px;
  height: 20px;
  padding: 0;
  line-height: 1;
  color: #fff;
  border-radius: 4px;
}

.Prize-card-catalog__badge {
  top: 26px;
  background-color: #dc624e;
}

.Prize-card-ice__badge {
  top: 15px;
  background-color: #27564b;
}

.Prize-card-catalog__badge::after,
.Prize-card-ice__badge::after {
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 0;
  content: '';
  border-style: solid;
  border-width: 4px 4px 0;
  transform: translateX(-50%);
}

.Prize-card-catalog__badge::after {
  border-color: #dc624e transparent transparent;
}

.Prize-card-ice__badge::after {
  border-color: #27564b transparent transparent;
}

.Prize-card-catalog__num,
.Prize-card-ice__num {
  font-family: 'DIN 2014', Arial, sans-serif;
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.04em;
}

.Prize-card-catalog__unit,
.Prize-card-ice__unit {
  margin-left: 2px;
  font-size: 12px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.04em;
}

.Prize-card-catalog__info,
.Prize-card-ice__info {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  margin-top: 22px;
}

.Prize-card-catalog__ttl,
.Prize-card-ice__ttl {
  margin: 0;
  font-size: 18px;
  font-weight: 900;
  line-height: 25px;
  color: #333;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.Prize-card-catalog__ttl-sub {
  font-size: 14px;
  font-weight: 900;
  vertical-align: baseline;
}

.Prize-card-ice__ttl-sub {
  margin: 0 0 2px;
  font-size: 14px;
  font-weight: bold;
  color: #333;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.Prize-card-catalog__visual,
.Prize-card-ice__visual {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
  margin-left: 8px;
}

.Prize-card-catalog__visual {
  height: 89px;
}

.Prize-card-ice__visual {
  height: 106px;
}

.Prize-card-catalog__img,
.Prize-card-ice__img {
  display: block;
  flex-shrink: 1;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
}

.Prize-card-catalog__note {
  position: absolute;
  right: 16px;
  bottom: 8px;
  z-index: 3;
  margin: 0;
  font-size: 10px;
  font-weight: 500;
  line-height: 1;
  color: #222;
  letter-spacing: 0;
}

@media (width >= 768px) {
  .Prize-card-catalog,
  .Prize-card-ice {
    width: 100%;
    max-width: 540px;
    height: 200px;
    max-height: 200px;
    margin: 0 auto 16px;
    border-radius: 12px;
  }

  .Prize-card-catalog__group {
    padding: 28px 24.3px;
  }

  .Prize-card-ice__group {
    padding: 20px 24.3px;
  }

  .Prize-card-catalog__badge,
  .Prize-card-ice__badge {
    left: 24.3px;
    width: 109.4px;
    height: 30.4px;
    padding: 0 12.2px;
    border-radius: 6px;
  }

  .Prize-card-catalog__badge {
    top: 39.5px;
  }

  .Prize-card-ice__badge {
    top: 23px;
  }

  .Prize-card-catalog__badge::after,
  .Prize-card-ice__badge::after {
    bottom: -6px;
    border-width: 6px 6px 0;
  }

  .Prize-card-catalog__num,
  .Prize-card-ice__num {
    font-size: 30.4px;
  }

  .Prize-card-catalog__unit,
  .Prize-card-ice__unit {
    margin-left: 3px;
    font-size: 18.2px;
  }

  .Prize-card-catalog__info,
  .Prize-card-ice__info {
    margin-top: 32px;
  }

  .Prize-card-catalog__ttl,
  .Prize-card-ice__ttl {
    font-size: 27px;
    line-height: 38px;
  }

  .Prize-card-catalog__ttl-sub,
  .Prize-card-ice__ttl-sub {
    font-size: 21px;
  }

  .Prize-card-ice__ttl-sub {
    margin-bottom: 4px;
  }

  .Prize-card-catalog__visual {
    height: 135px;
    margin-left: 16px;
  }

  .Prize-card-ice__visual {
    height: 160px;
    margin-left: 16px;
  }

  .Prize-card-catalog__note {
    right: 24.3px;
    bottom: 12px;
    font-size: 15px;
  }
}

/* 見積もりCTA */
.Cta-top {
  padding: 0 16px 20px;
  margin-top: 40px;
  text-align: center;
  background-color: #ade3a5;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
}

.Cta-top__btn-lnk {
  display: block;
  width: 100%;
  max-width: 355px;
  margin: 0 auto;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.Cta__btn-lnk:hover {
  opacity: 0.9;
}

.Cta__btn-img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.Cta__note {
  margin: 10px 0 16px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  color: #222;
  text-align: center;
  letter-spacing: 0;
}

.Cta__diagnosis {
  margin-top: 16px;
}

.Cta__diagnosis-ttl {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.25;
  color: #222;
}

.Cta__diagnosis-ttl::before,
.Cta__diagnosis-ttl::after {
  display: inline-block;
  width: 1px;
  height: 16px;
  content: '';
  background-color: #222;
}

.Cta__diagnosis-ttl::before {
  transform: rotate(-17deg);
}

.Cta__diagnosis-ttl::after {
  transform: rotate(17deg);
}

/* 特長・実績 */
.Features {
  padding: 0 10px;
}

.Features__item {
  margin-bottom: 24px;
  text-align: center;
}

.Features-hero {
  position: relative;
  box-sizing: border-box;
  width: calc(100% + 20px);
  max-width: none;
  min-height: 338px;
  padding: 0;
  margin: 0 -10px 23.94px;
  text-align: center;
  background-color: #fff;
}

.Features-hero__inner {
  box-sizing: border-box;
  padding: 0 10px;
}

.Features-hero__top {
  box-sizing: border-box;
  width: calc(100% + 20px);
  padding-top: 40px;
  padding-bottom: 0;
  margin: 0 -10px;
  background-image: url(../img/bg_img_confetti.png);
  background-repeat: repeat;
  background-position: center top;
  background-size: cover;
}

.Features-hero__sub-ttl {
  margin: 0;
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
  color: #8fb130;
  letter-spacing: 0.04em;
}

.Features-hero__record {
  display: block;
  width: 266px;
  max-width: 100%;
  margin: 8px auto 0;
}

.Features-hero__record-main {
  display: flex;
  align-items: baseline;
  justify-content: center;
  color: #f8860d;
}

.Features-hero__record-lbl {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.04em;
}

.Features-hero__record-num {
  margin: 0 4px;
  font-family: 'DIN 2014', Arial, sans-serif;
  font-size: 56px;
  font-weight: bold;
  line-height: 0.85;
  letter-spacing: 0.04em;
}

.Features-hero__record-unit {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.04em;
}

.Features-hero__record-line {
  width: 100%;
  height: 3px;
  margin: 4px 0 0;
  background-color: #f8860d;
  border-radius: 2px;
}

.Features-hero__record-note {
  margin: 4px 0 0 0;
  font-size: 12px;
  line-height: 1;
  color: #222;
  text-align: right;
  letter-spacing: 0;
}

.Features-hero__manifest {
  box-sizing: border-box;
  width: 100%;
  max-width: 500px;
  margin: 16px auto 0;
}

.Features-hero__manifest-box {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  min-height: 83px;
  padding: 10px 33px;
  margin: 0 auto;
  background-color: #eeecec;
  border-radius: 8px;
}

.Features-hero__manifest-box::after {
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  z-index: 1;
  width: 100%;
  height: 20px;
  content: '';
  background-color: #eeecec;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.Features-hero__illust {
  position: absolute;
  bottom: -19px;
  z-index: 2;
  height: auto;
  vertical-align: bottom;
}

.Features-hero__illust--left {
  left: 0;
  width: 55px;
}

.Features-hero__illust--right {
  right: 0;
  width: 60px;
}

.Features-hero__manifest-ttl {
  margin: 0;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.2;
  color: #8fb130;
  text-align: center;
  letter-spacing: 0;
}

.Features-hero__manifest-txt {
  width: 100%;
  max-width: 100%;
  margin: 43px auto 0;
  font-size: 16px;
  line-height: 1.35;
  color: #333;
  text-align: left;
  letter-spacing: 0;
}

.Features__ttl {
  margin-bottom: 12px;
  font-size: 16px;
  color: #333;
}

.Features__ttl--highlight {
  color: var(--color-accent);
}

.Features__note {
  margin-top: 8px;
  font-size: 10px;
  color: #888;
  text-align: left;
}

/* キャンペーン概要 */
.Campaign {
  padding: 24px 10px;
}

@media (width >= 768px) {
  .Campaign {
    padding: 32px 16px;
  }
}

.Campaign__ttl {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 20px;
  font-weight: bold;
  color: #333;
  text-align: center;
  letter-spacing: 0;
  white-space: nowrap;
}

.Campaign__ttl::before,
.Campaign__ttl::after {
  display: block;
  width: 90px;
  max-width: 25vw;
  height: 2px;
  content: '';
  background-color: #8fb130;
  border-radius: 1px;
}

.Campaign__block {
  max-width: 500px;
  margin-right: auto;
  margin-bottom: 28px;
  margin-left: auto;
}

.Campaign__sub-ttl {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: bold;
  color: #333;
  text-align: center;
}

.Campaign__period-text {
  margin: 0;
  font-size: 14px;
  color: #333;
  text-align: center;
  letter-spacing: 0.04em;
}

.Campaign__period-text .u-num {
  font-family: 'DIN 2014', Arial, sans-serif;
  font-size: 18px;
}

.Campaign__txt {
  margin: 0 0 12px;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

.Campaign__txt--center {
  text-align: center;
}

.Campaign__txt--highlight {
  font-weight: bold;
  color: var(--color-orange, #f8860d);
}

.Campaign__winner-text {
  margin: 0;
  font-size: 24px;
  font-weight: bold;
  color: #f8860d;
  text-align: center;
}

.Campaign__txt--price {
  font-size: 24px;
  font-weight: bold;
  color: var(--color-orange, #f8860d);
}

.Campaign-box {
  position: relative;
  padding: 28px 16px 20px;
  margin: 20px 0 24px;
  text-align: center;
  background: #fff;
  border: 2px solid #333;
  border-radius: 15px;
}

.Campaign-box__badge {
  position: absolute;
  top: -16px;
  left: 50%;
  padding: 4px 20px;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  white-space: nowrap;
  background: #333;
  border-radius: 15px;
  transform: translateX(-50%);
}

.Campaign-box__txt {
  margin: 0;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  color: #333;
}

.Campaign-box__highlight {
  display: inline-block;
  margin: 6px 0;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.3;
  color: #f8860d;
}

.Campaign__goods {
  margin: 0 0 16px;
}

.Campaign__goods-ttl {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: bold;
  color: #333;
}

.Campaign__goods-list {
  padding-left: 20px;
  margin: 0;
  font-size: 12px;
  line-height: 1.8;
  color: #333;
}

.Campaign__caution {
  margin-top: 12px;
  font-size: 12px;
  line-height: 1.7;
  color: #333;
}

.Campaign__prizes {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  margin-top: 8px;
}

.Prize-card {
  position: relative;
  width: 100%;
  padding: 8px 12px;
  text-align: center;
}

@media (width >= 768px) {
  .Prize-card {
    padding: 8px 12px;
  }
}

.Prize-card__badge {
  display: inline-block;
  padding: 2px 16px;
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  background: var(--color-orange, #f8860d);
  border-radius: 50px;
}

.Prize-card__heading {
  margin: 0;
}

.Prize-card__sub-name {
  margin: 0 0 2px;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.4;
  color: var(--color-orange, #f8860d);
}

.Prize-card__name {
  margin: 0;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.4;
  color: var(--color-orange, #f8860d);
}

.Campaign__note {
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.7;
  color: #333;
}

.Campaign__note p {
  padding-left: 1em;
  margin: 0;
  text-indent: -1em;
}

.Campaign__note p:not(:first-child) {
  margin-top: 4px;
}

.Campaign__note--small {
  font-size: 12px;
}

.Campaign__txt-small {
  font-size: 12px;
  line-height: 1.7;
  color: #333;
}

.Campaign__contact-banner {
  margin-top: 16px;
  text-align: center;
}

.Campaign__contact-banner img {
  max-width: 100%;
  height: auto;
}

.Footer {
  background-color: #fff;
}

.Footer__rt {
  margin: 0 0 30px;
  font-size: 16px;
  text-align: center;
}

.Footer__copyright {
  padding: 20px 10px;
  margin-bottom: 0;
  font-size: 12px;
  line-height: 20px;
  color: #888;
  text-align: center;
  border-top: 1px solid #ccc;
}

@media (width >= 768px) {
  .Footer {
    padding-bottom: 0;
  }
}

/* END: .Footer */

/* .Fixed-plan */

.Fixed-plan {
  display: none;
}

@media (width >= 960px) {
  .Fixed-plan {
    position: fixed;
    top: 35%;
    right: calc(var(--blank-half-width) + var(--main-width));
    left: unset;
    box-sizing: border-box;
    display: block;
    width: 100%;
    max-width: min(430px, var(--blank-half-width));
    padding: 0 20px;
    text-align: center;
  }

  .Fixed-plan__lnk {
    display: block;
    width: 100%;
    text-decoration: none;
    transition: opacity 0.2s ease;
  }

  .Fixed-plan__lnk:hover {
    opacity: 0.7;
  }

  .Fixed-plan__lnk + .Fixed-plan__lnk {
    margin-top: 20px;
  }

  .Fixed-plan__lnk img {
    display: block;
    width: 90%;
    max-width: 342px;
    height: auto;
    margin: 0 auto;
    filter: drop-shadow(0 0 10px rgb(0, 0, 0, 0.35));
  }
}

@media (width >= 1900px) {
  .Fixed-plan {
    right: calc(var(--blank-half-width) + var(--main-width) + 103px);
  }
}

/* END: .Fixed-plan */

/* .Plan */

.Plan {
  padding-top: 32px;
  margin-top: 0;
  text-align: center;
}

.Plan-btn {
  display: block;
  width: 100%;
  max-width: none;
  margin: 0 auto;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.Plan-btn:hover {
  opacity: 0.7;
}

.Plan-btn:first-child {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  filter: drop-shadow(0 0 10px rgb(0, 0, 0, 0.35));
  transform: none;
}

.Plan__txt {
  margin: 10px 0 16px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  color: #222;
  text-align: center;
  letter-spacing: 0;
}

.Plan-btn__img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.Plan__mark {
  position: relative;
  max-width: max-content;
  margin: 0 auto 8px;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.25;
  color: #222;
  text-align: center;
}

.Plan__mark::before,
.Plan__mark::after {
  position: absolute;
  bottom: 4px;
  width: 1px;
  height: 16px;
  content: '';
  background: #222;
}

.Plan__mark::before {
  left: 0;
  transform: translate(-10px, 2px) rotate(-17deg);
}

.Plan__mark::after {
  right: 0;
  transform: translate(10px, 2px) rotate(17deg);
}

@media (width >= 768px) {
  .Plan-btn {
    width: 100%;
    max-width: 540px;
    margin: 0 auto;
  }

  .Plan__txt {
    font-size: 14px;
  }

  .Plan__mark {
    font-size: 20px;
  }
}

/* END: .Plan */

.Features__card-icon {
  position: absolute;
  top: 17px;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 39px;
  height: 38px;
  transform: translateX(-50%);
}

.Features__card-icon img {
  width: 39px;
  height: 38px;
  object-fit: contain;
}

/* Features Point Item */
.Features__item--point {
  position: relative;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 480px;
  padding: 0;
  margin: 40px auto 24px;
  text-align: center;
}

.Features__item--point .Features__img,
.Features__item--point .Features__note {
  box-sizing: border-box;
  width: 100%;
  max-width: none;
}

.Features__item--point .Features__img img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.Features__item--point .Features__note {
  text-align: left;
}

.Features__item--point .Features__note p {
  padding-left: 1em;
  margin: 0;
  text-indent: -1em;
}

.Features__item--point .Features__note p:not(:first-child) {
  margin-top: 4px;
}

.Features__catch {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.3;
  color: #8fb130;
}

.Features__catch-br {
  display: none;
}

@media (width <= 355px) {
  .Features__catch-br {
    display: block;
    flex-basis: 100%;
    height: 0;
  }
}

.Features__catch::before,
.Features__catch::after {
  display: inline-block;
  flex-shrink: 0;
  width: 2px;
  height: 20px;
  content: '';
  background: #8fb130;
  border-radius: 1px;
}

.Features__catch::before {
  margin-right: 8px;
  transform: rotate(-17deg);
}

.Features__catch::after {
  margin-left: 8px;
  transform: rotate(17deg);
}

.Features__main-ttl {
  position: relative;
  display: block;
  width: 100%;
  margin: 0 0 20px;
  font-size: 24px;
  font-weight: bold;
  line-height: 29px;
  color: #333;
  text-align: center;
}

.Features__main-ttl-sub {
  font-size: 20px;
}

.Features__box {
  position: relative;
  box-sizing: border-box;
  display: flex;
  gap: 32px;
  justify-content: center;
  width: 100%;
  margin: 0 auto 8px;
}

.Features__card {
  position: relative;
  box-sizing: border-box;
  width: 110px;
  height: 110px;
  background-color: rgb(173, 227, 165, 0.3);
  border-radius: 8px;
}

.Features__card-age {
  position: absolute;
  top: 21px;
  left: 0;
  display: flex;
  align-items: baseline;
  justify-content: center;
  width: 100%;
  font-weight: bold;
  line-height: 1;
  color: #8fb130;
}

.Features__card-age-num {
  font-family: 'DIN 2014', Arial, sans-serif;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.02em;
}

.Features__card-age-unit {
  margin-left: 2px;
  font-size: 18px;
  font-weight: bold;
}

.Features__card-txt {
  position: absolute;
  top: 61.5px;
  left: 0;
  box-sizing: border-box;
  width: 100%;
  padding: 0 4px;
  margin: 0;
  font-size: 16px;
  font-weight: normal;
  line-height: 1.25;
  color: #333;
  text-align: center;
}

.Features__card--02 .Features__card-txt {
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.Features__sub-note {
  position: relative;
  width: 100%;
  max-width: 252px;
  margin: 0 auto;
  font-size: 12px;
  line-height: 1;
  color: #222;
  text-align: right;
  white-space: nowrap;
}

/* オリコン特長アイテム (隔離スタイル) */
.Features__item--oricon {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  max-width: 355px;
  min-height: 341px;
  padding: 0;
  margin: 0 auto;
  text-align: center;
}

.Features__item--oricon .Features__badge {
  position: relative;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 355px;
  height: 59px;
  margin: 0 auto 12px;
  color: #fff;
  background-color: #dc624e;
  border-radius: 29.5px;
}

.Features__item--oricon .Features__badge::after {
  position: absolute;
  bottom: -9.5px;
  left: 50%;
  width: 0;
  height: 0;
  content: '';
  border-color: #dc624e transparent transparent;
  border-style: solid;
  border-width: 10px 9.1px 0;
  transform: translateX(-50%);
}

.Features__item--oricon .Features__badge-txt {
  position: relative;
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0;
}

.Features__item--oricon .Features__badge-asterisk {
  position: relative;
  top: 0.25em;
  font-size: 12px;
  font-weight: bold;
  line-height: 1;
}

.Features__item--oricon .Features__badge-num {
  margin-left: 6px;
  font-family: 'DIN 2014', Arial, sans-serif;
  font-size: 36px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0;
}

.Features__item--oricon .Features__ttl {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.45;
  color: #333;
  letter-spacing: 0;
}

.Features__item--oricon .Features__registered {
  position: relative;
  top: -0.3em;
  font-size: 12px;
  font-weight: 500;
  line-height: 0;
}

.Features__item--oricon .Features__img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0 0 16px;
}

.Features__item--oricon .Features__img img {
  display: block;
  width: 162px;
  height: 160px;
  object-fit: contain;
}

.Features__item--oricon .Features__note {
  margin: 0;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  color: #333;
  text-align: center;
  letter-spacing: 0;
}

/* ==========================================
   Cta-bottom
   ========================================== */
.Cta-bottom {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #27564b;
}

.Cta-bottom__mascot-area {
  position: relative;
  width: 100%;
  line-height: 0;
}

.Cta-bottom__mascot-img {
  display: block;
  width: 100%;
  height: auto;
}

.Cta-bottom__bottom-area {
  position: relative;
  padding: 24px 16px 0;
  text-align: center;
  background-color: #27564b;
}

.Cta-bottom__btn {
  margin-bottom: 12px;
  filter: drop-shadow(0 0 10px rgb(0, 0, 0, 0.35));
}

.Cta-bottom .Plan__txt {
  color: #fff;
}

/* ==========================================
   Planner (保険プランナー相談アコーディオン)
   ========================================== */
.Planner {
  padding: 24px 16px 32px;
  background-color: #fff;
}

@media (width <= 374.98px) {
  .Planner {
    padding: 20px 10px 24px;
  }
}

.Planner-accordion {
  box-sizing: border-box;
  width: 100%;
  max-width: none;
  padding: 10px 0;
  margin: 0 auto;
  overflow: hidden;
  background-color: #92b729;
  border-radius: 16px;
}

.Planner-accordion__header {
  position: relative;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  padding: 0 8px 0 10px;
  cursor: pointer;
  user-select: none;
}

.Planner-accordion__ttl {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 0;
  margin: 0 8px;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.3;
  color: #fff;
  text-align: center;
}

.Planner-accordion__ttl-main {
  display: block;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  white-space: nowrap;
}

.Planner-accordion__ttl-sub {
  display: block;
  margin-top: 2px;
  font-size: 20px;
  font-weight: bold;
  color: #fff377;
  white-space: nowrap;
}

@media (width <= 360px) {
  .Planner-accordion__ttl-main,
  .Planner-accordion__ttl-sub {
    white-space: normal;
  }
}

.Planner-accordion__trigger {
  position: relative;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  cursor: pointer;
  background-color: #fff;
  border-radius: 50%;
}

.Planner-accordion__trigger::before,
.Planner-accordion__trigger::after {
  position: absolute;
  content: '';
  background-color: #888;
}

.Planner-accordion__trigger::before {
  top: 50%;
  left: 50%;
  width: 12px;
  height: 3px;
  transform: translate(-50%, -50%);
}

.Planner-accordion__trigger::after {
  top: 50%;
  left: 50%;
  width: 3px;
  height: 12px;
  transform: translate(-50%, -50%);
  transition: 0.4s transform ease;
}

.Planner-accordion--show .Planner-accordion__trigger::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.Planner-accordion__body {
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-height: 0;
  padding: 0 10px;
  overflow: hidden;
  text-align: left;
  transition: 0.3s max-height ease;
}

.Planner-accordion--show .Planner-accordion__body {
  padding: 0 0 8px;
  margin: 10px 10px 0;
  border-top: 1px solid #fff;
}

.Planner-accordion__content {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 10px;
  margin-bottom: 12px;
}

.Planner-accordion__txt {
  margin: 0;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.3;
  color: #fff;
  text-align: center;
}

.Planner-accordion__visual {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  overflow: hidden;
  background-color: #f4f7ea;
  border-radius: 50%;
}

.Planner-accordion__visual-img {
  display: block;
  width: 50px;
  height: 50px;
  object-fit: cover;
}

.Planner-accordion__btn {
  box-sizing: border-box;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 42px;
  padding: 8px 12px;
  font-size: 16px;
  font-weight: bold;
  color: #92b729;
  text-align: center;
  text-decoration: none;
  background-color: #fff;
  border-radius: 10px;
  transition: opacity 0.2s ease;
}

.Planner-accordion__btn:hover {
  color: #92b729;
  text-decoration: none;
  opacity: 0.9;
}

.Planner-accordion__btn-txt {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.3;
  color: #92b729;
}

.Planner-accordion__btn-icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background-color: #92b729;
  border-radius: 50%;
}

.Planner-accordion__btn-icon-img {
  display: block;
  width: 16px;
  height: 16px;
}

/* ==========================================
   Contact (お電話でのお問い合わせ)
   ========================================== */
.Contact {
  padding: 32px 10px 33px;
  background-color: #fff;
}

.Contact__inner {
  box-sizing: border-box;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.Contact__ttl {
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.4;
  color: #333;
  text-align: center;
}

.Contact__txt {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  text-align: left;
}

.Contact__banner {
  margin-bottom: 16px;
  text-align: center;
}

.Contact__banner-img {
  display: block;
  width: 100%;
  max-width: 355px;
  height: auto;
  margin: 0 auto;
}

.Contact__info {
  padding: 0 8px;
  text-align: left;
}

.Contact__hours {
  position: relative;
  padding-left: 1em;
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.5;
  color: #333;
  text-indent: -1em;
}

.Contact__note {
  position: relative;
  padding-left: 1em;
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #333;
  text-indent: -1em;
}

.Campaign__brd {
  font-size: 16px;
  text-align: center;
}

/* .Notification */

.Notification {
  position: relative;
  right: 0;
  left: 0;
  padding: 13px 9px 9px;
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  color: #fff;
  text-align: center;
  background-color: #7b7b7b;
}

@media (width >= 768px) {
  .Notification {
    padding: 13px 0;
    font-size: 20px;
    line-height: 26px;
  }
}

/* END: .Notification */
