@charset "UTF-8";

/* =========================================================
  Reset / Base
  - ブラウザ差異を吸収するための初期化
  - 全体に共通するベーススタイル
========================================================= */

*{
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
  margin: 0;
  padding: 0;
}

html {
  line-height: 1.75;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  scroll-behavior: smooth;
  overflow: auto;
  height: 100%;
  margin: 0;
  overscroll-behavior: none;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: #333;
  overflow: hidden;
}

header,
footer,
main,
aside,
figure {
  display: block;
}

a img {
  border-width: 0;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

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

main {
  display: block;
}

p {
  margin: 0;
}

h1, h2, h3, h4 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

button {
  background-color: transparent;
  appearance: none;
  -webkit-appearance: none;
  background: none;
  border: 0;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

a:hover {
  text-decoration: none;
}

/*--------------------------------------------------Utility（表示制御用）----------------------------------------*/
@media all and (min-width: 481px) {
  .u-view-sp {
    display: none;
  }
}

.fix-contact {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 22px 0 0;
  width: 100%;
  margin: auto;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
}
.fix-contact.is-active {
  opacity: 1;
  visibility: visible;
}
.kv-hdg-l1-visual {
  padding: 0;
}

.fix-contact .kv-contents-btn {
  margin-top: 0px;
  padding-bottom: 20px;
  display: inline-flex;
  width: 100%;
  justify-content: center;
}

@media all and (min-width: 601px) {
  .fix-contact {
    padding: 32px 0 0;
    border-radius: 40px 40px 0 0;
  }
  .kv-hdg-l1-visual {
    padding: 0;
  }
  .fix-contact .kv-contents-btn {
    padding-bottom: 20px;
  }
}

.js-toggle-content {
  display: none;
}

.l-footer-txt {
  color: #888;
  font-size: 12px;
  text-align: right;
  padding: 0 16px;
  margin-bottom: 24px;
}

.l-footer-cr {
  border-top: 1px solid #c7c7c7;
  color: #888;
  font-size: 12px;
  text-align: center;
  padding: 24px 16px 150px;
}

@media all and (min-width: 481px) {
  .l-footer-txt {
    max-width: 1440px;
    margin: 0 auto 76px;
    padding: 0 20px;
  }
  .l-footer-cr {
    color: #888;
    font-size: 12px;
    text-align: center;
    padding: 24px 16px 130px;
  }
}

/*--------------------------------------------------header----------------------------------------*/
.l-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  background-color: #fff;
  box-shadow: 0px 0px 32px 0px rgba(119, 119, 119, .3);
  z-index: 10;
  min-height: 60px;
}

.u-inner {
  width: 100%;
  padding: 0 16px;
}

.l-header-logo {
  display: block;
  width: 209px;
}

@media all and (min-width: 481px) {
  .l-header {
    min-height: 100px;
    border-radius: 0 0 16px 16px;
  }

  .u-inner {
    max-width: 936px;
    margin: auto;
  }

  .l-header-logo {
    width: 306px;
  }
}

/*------ .kv -------*/
.kv {
  position: relative;
  background-color: #EBE7E1;
}

.kv::before {
  content: "";
  position: absolute;
  left: 50%;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
  transform: translateX(-50%);
  pointer-events: none;
}

@media all and (max-width: 600px) {
  .kv::before {
    background-image: url(/ad/031/term2/img/kv_deco_sp.png);
    background-position: center top;
  }
}

.kv::after {
  display: none;
}

@media all and (min-width: 601px) {
  .kv::before,
  .kv::after {
    content: "";
    position: absolute;
    top: 0;
    width: 50%;
    min-width: 960px;
    height: 248px;
    pointer-events: none;
    transition: all 1s ease-out;
  }

  .kv::before {
  background: url(/ad/031/term2/img/kv_deco_left_pc.png) left bottom no-repeat;
  right: 50%;
  transform: translateX(0);
  left: unset;
}

.kv::after {
  display: block;
  background: url(/ad/031/term2/img/kv_deco_right_pc.png) right bottom no-repeat;
  left: 50%;
}

.kv.js-fadein::before,
.kv.js-fadein::after {
    opacity: 0;
}
.kv.js-fadein.is-visible::before,
.kv.js-fadein.is-visible::after {
    opacity: 1;
}
.kv.js-fadein::before {
    right: 100%;
}
.kv.js-fadein.is-visible::before {
    right: 50%;
}
.kv.js-fadein::after {
    left: 100%;
}
.kv.js-fadein.is-visible::after {
    left: 50%;
}
}

@media all and (max-width: 900px) and (min-width: 601px) {
  .kv::after {
    transform: translateX(-100px);
  }

  .kv::before{
    transform: translateX(100px);
  }
}

.kv-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0 22px;
}

.kv-inner::before,
.kv-inner::after {
  content: "";
  position: absolute;
  width: 50%;
  min-width: 208px;
  height: 22px;
  bottom: 0;
}
.kv-inner::before {
  background: url(/ad/031/term2/img/content_bg_deco_left_sp.svg) left bottom no-repeat;
  right: 50%;
}
.kv-inner::after {
  background: url(/ad/031/term2/img/content_bg_deco_right_sp.svg) right bottom no-repeat;
  left: 50%;
}

@media all and (min-width: 601px) {

.kv-inner::before,
.kv-inner::after {
  content: "";
  position: absolute;
  width: 50%;
  min-width: 960px;
  height: 65px;
  bottom: 0;
}
.kv-inner::before {
  background: url(/ad/031/term2/img/content_bg_deco_left_pc.svg) left bottom no-repeat;
  right: 50%;
}
.kv-inner::after {
  background: url(/ad/031/term2/img/content_bg_deco_right_pc.svg) right bottom no-repeat;
  left: 50%;
}
}

.kv-hdg-l1 {
  position: relative;
  margin-top: 40px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  overflow: hidden;
  justify-content: center;
  z-index: 2;
}

.kv-hdg-l1-visual {
  position: relative;
  z-index: 3;
}

.kv-hdg-l1-visual + .kv-hdg-l1-visual {
  padding-top: 16px;
}

.kv-hdg-l1-box {
  flex-direction: column;
}

@media all and (min-width: 601px) {
  .kv-hdg-l1 {
    margin-top: 0;
    gap: 24px;
    padding: 0 20px;
  }

  .kv-hdg-l1-visual + .kv-hdg-l1-visual {
    padding-top: 20px;
  }
}

.kv-ttl {
  text-align: center;
  padding: 0 18px 32px;
  position: relative;
}

.kv-ttl::before {
  background: url(/ad/031/term2/img/content_bg_deco_left_sp.svg) left bottom no-repeat;
  right: 50%;
  }

.kv-ttl::after {
background: url(/ad/031/term2/img/content_bg_deco_right_sp.svg) right bottom no-repeat;
left: 50%;
}

@media all and (min-width: 601px) {
  .kv-ttl::before {
  background: url(/ad/031/term2/img/content_bg_deco_left_pc.svg) left bottom no-repeat;
  right: 50%;
  }
  .kv-ttl::after {
  background: url(/ad/031/term2/img/content_bg_deco_right_pc.svg) right bottom no-repeat;
  left: 50%;
  }
}

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

@media all and (min-width: 601px) {
  .kv-inner {
    gap: 40px;
    padding: 32px 0 0;
  }

  .kv-ttl-img {
    width: auto;
    padding: 0 40px;
  }
}

/*------ effect -------*/
.kv.js-fadein .kv-hdg-l1::before,
.kv.js-fadein .kv-hdg-l1::after {
  opacity: 0;
}

.kv.js-fadein.is-visible .kv-hdg-l1::before,
.kv.js-fadein.is-visible .kv-hdg-l1::after {
  opacity: 1;
}

.kv.js-fadein .kv-hdg-l1::before {
  right: 100%;
}

.kv.js-fadein.is-visible .kv-hdg-l1::before {
  right: 67%;
}

.kv.js-fadein .kv-hdg-l1::after {
  left: 100%;
}

.kv.js-fadein.is-visible .kv-hdg-l1::after {
  left: 68%;
}

.kv.js-fadein .kv-hdg-l1-visual {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease 0.3s, transform 0.6s ease 0.3s;
}

.kv.js-fadein.is-visible .kv-hdg-l1-visual {
  opacity: 1;
  transform: translateY(0);
}

.kv.js-fadein .kv-actions {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.6s ease 0.3s, transform 0.6s ease 0.3s;
}

.kv.js-fadein.is-visible .kv-actions {
  opacity: 1;
  transform: scale(1);
}

.kv.js-fadein .kv-actions a {
  transition: transform 0.3s ease;
}

.kv.js-fadein .kv-ttl {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease 0.5s, transform 0.6s ease 0.5s;
}

.kv.js-fadein.is-visible .kv-ttl {
  opacity: 1;
  transform: translateY(0);
}

/*------------------------------------------------.kv-area----------------------------------------*/

.hdg-l1 {
  position: relative;
  margin-top: 40px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  overflow: hidden;
  justify-content: center;
}

@media all and (min-width: 481px) {
  .hdg-l1 {
    margin-top: 0;
    padding: 32px 270px 0;
    gap: 24px;
  }

  .hdg-l1::before,
  .hdg-l1::after {
    content: "";
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    pointer-events: none;
  }

  .hdg-l1::before {
    background-image: url(/ad/031/term2/img/kv_deco_left_pc.png);
    right: 67%;
  }

  .hdg-l1::after {
    background-image: url(/ad/031/term2/img/kv_deco_right_pc.png);
    left: 68%;
  }
}

.kv-area .kv-hdg-l1-visual {
  position: relative;
  z-index: 1;
}

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

.kv-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.btn-catch-type01,
.btn-catch-type02 {
  position: relative;
  display: flex;
  width: fit-content;
  
  align-self: center;
  margin: 0 auto;
}

.btn-catch-type01 {
  max-width: 326px;
}

.btn-catch-type02 {
  max-width: 480px;
}

.btn-catch-type01 picture,
.btn-catch-type02 picture {
  position: relative;
  display: block;
}

.btn-catch-img {
  display: block;
  height: auto;
  transition: opacity 0.3s ease;
}

.btn-catch-img--hover {
  display: none;
}

@media all and (min-width: 481px) {

  .btn-catch-img--hover {
    position: absolute;
    top: 0;
    display: block;
    left: 0;
    width: 100%;
    height: auto;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .btn-catch-type01:hover .btn-catch-img,
  .btn-catch-type02:hover .btn-catch-img {
    opacity: 0;
  }
  
  .btn-catch-type01:hover .btn-catch-img--hover,
  .btn-catch-type02:hover .btn-catch-img--hover {
    opacity: 1;
  }

  .kv-catch {
    padding-bottom: 40px;
  }

  .kv-hdg-l1-img {
    max-width: 260px;
  }

  .kv-actions {
    gap: 20px;
  }
}

.kv-content {
  background:#27564B;
  top: -1px;
  position: relative;
  text-align: center;
}

.kv-content-inner {
  padding: 8px 16px 24px;
  position: relative;
  display: inline-block;
  max-width: 936px;
}

.kv-content-inner > .text-nomal-type01 {
  padding-top: 0;
}

.kv-text {
  color: #fff;
  padding-top: 16px;
}

.kv-text .lead {
  font-weight: bold;
}

@media all and (min-width: 481px) {
  .kv-content-inner {
    padding: 8px 18px 40px;
  }

  .kv-text {
    padding-top: 24px;
  }

  .kv-text .lead {
    font-size: 20px;
  }
}

.kv-content::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  top: -10px;
  left: 0;
  right: 0;
  margin: 0 auto;
  border-top: solid 26px #EBE7E1;
  border-left: solid 18px transparent;
  border-right: solid 18px transparent;
}

.kv-media {
  padding-top: 18px;
  justify-content: center;
  display: flex;
}

.kv-media + .kv-media {
  margin-top: 16px;
  padding-top: 0;
}

@media all and (min-width: 481px) {

  .kv-media + .kv-media {
    margin-top: 24px;
  }
}

.kv-media.js-fadein {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.kv-media.js-fadein.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.kv-media.js-zoomin,
.content-media.js-zoomin {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.kv-media.js-zoomin.is-visible,
.content-media.js-zoomin.is-visible {
  opacity: 1;
  transform: scale(1);
} 

.kv-contents-btn {
  margin-top: 33px;
  padding: 16px 16px 54px;
  background: rgba(255, 255, 255, 0.90);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  text-align: center;
}
@media all and (min-width: 601px) {
  .kv-contents-btn {
    gap: 24px;
    margin: 0 auto;
    padding: 8px 97px 100px;
  }
}

/*------------------------------------------------.content----------------------------------------*/
.content-bg-01 {
  background-color: #EBE7E1;
  position: relative;
}

.content-bg-01 > .content-inner {
  padding: 40px 16px 80px;
}

.content-bg-02 {
  background-color: #fff;
}

.content-bg-02:has(.content-toggle-box) .content-inner {
  padding: 40px 16px 80px;
}

@media all and (min-width: 481px) {
  .content-bg-01 > .content-inner {
    padding: 80px 16px 120px;
  }
  .content-bg-02:has(.content-toggle-box) .content-inner {
    padding: 80px 16px 120px;
  }
}

.content-bg-03 {
  background-color: #DEE8E5;
  position: relative;
}

.content-bg-03:has(+ .content-bg-05) .content-inner {
  padding-bottom: 0;
}

.content-bg-04 {
  background-color: #27564B;
}

.text-nomal-type02 {
  margin-top: 16px;
  text-align: center;
}

.content-btn {
  display: inline-flex;
  justify-content: center;
  width: 100%;
}

.content-btn.js-fadein {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.content-btn.js-fadein.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.content-media {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

@media all and (min-width: 481px) {
  .content-media {
    margin-top: 40px;
  }
}

.content-media.content-media-cta {
  z-index: 1;
  position: relative;
  top: 0;
}

@media all and (max-width: 481px) and (min-width: 426px) {
  .content-media.content-media-cta {
    top: 0;
  }
}

@media all and (max-width: 425px) {
  .content-media.content-media-cta {
    top: -2px;
  }
}

.content-media.img-catch-text {
  width: 312px;
  height: auto;
  max-width: 100%;
  margin: 0 auto;
}

@media all and (min-width: 481px) {
  .content-media.img-catch-text {
    width: auto;
    }
}

.content-media.js-slidein {
  opacity: 0;
  transform: translateY(30px);
  transition:
  opacity 0.6s ease,
  transform 0.6s ease;
}
  
.content-media.js-slidein.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.content-box {
  background-color: #27564B;
  padding: 24px 16px 40px;
  z-index: 0;
  position: relative;
  top: -13px;
  border-radius: 10px;
}

.layout-grid > .layout-grid-col:first-child {
  align-items: end;
}

@media all and (min-width: 481px) {
  .content-box {
    top: -17px;
    padding-block: 40px 80px;
  }

  .layout-grid-col:nth-child(2) {
    align-items: flex-start;
  }
}

.content-inner {
  padding: 40px 16px;
}

.content-inner-02 {
  padding: 36px 16px 0;
  position: relative;
}

.content-inner-03 {
  padding: 24px 20px;
}

.content-inner > :first-child ,
.content-inner-02 > :first-child,
.content-inner-03 > :first-child {
    margin-top: 0;
}

@media all and (min-width: 481px) {
  .content-inner {
    max-width: 936px;
    margin: 0 auto;
    padding: 80px 10px;
  }

  .content-inner-03 {
    padding: 40px 20px 80px;
    max-width: 1120px;
    margin: 0 auto;
  }
}

.hdg-l2 {
  position: relative;
  display: flex;
  justify-content: center;
  padding-bottom: 14px;
  font-weight: bold;
  font-size: 24px;
  line-height: 1.5;
  text-align: center;
}

.hdg-l2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 72px;
  height: 6px;
  background-image: url(/ad/031/term2/img/content_img_deco02_sp.svg);
  background-repeat: no-repeat;
}

.content-inner .hdg-l2 + * {
  margin-top: 24px;
}

@media all and (min-width: 481px) {
  .hdg-l2 {
    font-size: 40px;
    padding-bottom: 24px;
  }

  .hdg-l2::after {
    width: 112px;
    height: 8px;
    background-image: url(/ad/031/term2/img/content_img_deco02_pc.svg);
  }

  .content-inner .hdg-l2 + * {
    margin-top: 40px;
  }
}

.hdg-l2.js-fadein {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.hdg-l2.js-fadein.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/*------------------------------------------------.toggle-reason----------------------------------------*/

.toggle-reason-list {
  margin-top: 24px;
}

.toggle-reason-item {
  position: relative;
  background: #fff;
  border-radius: 10px;
  border-bottom: 4px solid #27564B;
  padding: 16px 16px;
  min-height: 108px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.toggle-reason-item-ttl {
  background-color: transparent;
}

.toggle-reason-item:hover .toggle-reason-item-ttl-txt:before {
  opacity: 0.7;
}

@media all and (min-width: 481px) {
  .toggle-reason-item {
    border-bottom: 6px solid #27564B;
  }
}

.toggle-reason-item+.toggle-reason-item {
  margin-top: 16px;
}

.toggle-reason-item:nth-child(1) .toggle-reason-item-ttl::before {
  content: "";
  background: url(/ad/031/term2/img/toggle_img01_sp.png);
  background-size: contain;
  background-repeat: no-repeat;
}

.toggle-reason-item:nth-child(2) .toggle-reason-item-ttl::before {
  content: "";
  background: url(/ad/031/term2/img/toggle_img02_sp.png);
  background-size: contain;
  background-repeat: no-repeat;
}

.toggle-reason-item:nth-child(3) .toggle-reason-item-ttl::before {
  content: "";
  background: url(/ad/031/term2/img/toggle_img03_sp.png);
  background-size: contain;
  background-repeat: no-repeat;
}

.toggle-reason-item-ttl {
  display: flex;
  align-items: center;
  font-weight: bold;
  position: relative;
  cursor: pointer;
  padding-left: 16%;
}

.toggle-reason-item-ttl::before {
  content: "";
  position: absolute;
  left: -16px;
  aspect-ratio: 52 / 76;
  max-width: 52px;
  width: 100%;
}

.toggle-reason-item-ttl-txt:before, 
.toggle-reason-item-ttl-txt:after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 32px;
  height: 32px;
  transform: translateY(-50%) rotate(0deg);
  transition: transform .3s ease, opacity .2s ease;
}

.toggle-reason-item-ttl-txt:before {
  background: url(/ad/031/term2/img/toggle_icon01_open_sp.png)
  no-repeat center;
  opacity: 1;
}

.toggle-reason-item-ttl-txt:after {
  background: url(/ad/031/term2/img/toggle_icon01_close_sp.png)
  no-repeat center;
  opacity: 0;
}

.toggle-reason-item-ttl.is-active {
  padding: 10px 0;
  padding-left: 16%;
}

.toggle-reason-item-ttl.is-active:hover .toggle-reason-item-ttl-txt:after {
  opacity: 0.7;
}

@media (min-width: 481px) {
  .toggle-reason-item-ttl.is-active {
    padding-left: 12%;
  }
}

.toggle-reason-item-ttl.is-active
.toggle-reason-item-ttl-txt::before {
  transform: translateY(-50%) rotate(180deg);
  opacity: 0;
}

.toggle-reason-item-ttl.is-active
.toggle-reason-item-ttl-txt::after {
  transform: translateY(-50%) rotate(180deg);
  opacity: 1;
}

.toggle-reason-item-ttl-txt {
  padding-right: 45px;
  flex: 1;
  position: relative;
}

.toggle-reason-item-content {
  border-top: 2px solid #DEE8E5;
  margin-top: 16px;
  padding: 8px 0 16px;
}

.toggle-reason-item-txt {
  margin-top: 16px;
  font-size: 16px;
}

.toggle-reason-item.js-fadein,
.toggle-plan-item.js-fadein,
.content-toggle-box.js-fadein {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.toggle-reason-item.js-fadein.is-visible,
.toggle-plan-item.js-fadein.is-visible,
.content-toggle-box.js-fadein.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.toggle-reason-item.js-fadein:nth-child(1),
.toggle-plan-item.js-fadein:nth-child(1) {
  transition-delay: 0s;
}

.toggle-reason-item.js-fadein:nth-child(2),
.toggle-plan-item.js-fadein:nth-child(2),
.content-toggle-box.js-fadein:nth-child(2) {
  transition-delay: 0.2s;
}

.toggle-reason-item.js-fadein:nth-child(3),
.toggle-plan-item.js-fadein:nth-child(3),
.content-toggle-box.js-fadein:nth-child(3) {
  transition-delay: 0.4s;
}

  @media (min-width: 481px) {
  .toggle-reason-item::before {
    content: "";
    position: absolute;
    max-width: 77px;
    aspect-ratio: 77 / 120;
    top: 0;
    width: 10%;
    left: 24px;
    background-repeat: no-repeat;
    background-size: contain;
  }

  .toggle-reason-item:nth-of-type(1)::before {
    background-image: url(/ad/031/term2/img/toggle_img01_pc.png);
  }

  .toggle-reason-item:nth-of-type(2)::before {
    background-image: url(/ad/031/term2/img/toggle_img02_pc.png);
  }

  .toggle-reason-item:nth-of-type(3)::before {
    background-image: url(/ad/031/term2/img/toggle_img03_pc.png);
  }

  .toggle-reason-item-ttl:nth-of-type(1)::before {
    display: none;
  }
  
  .toggle-reason-item-ttl:nth-of-type(2)::before {
    display: none;
  }
  
  .toggle-reason-item-ttl:nth-of-type(3)::before {
    display: none;
  }

  .toggle-reason-item-ttl-txt:before, 
  .toggle-reason-item-ttl-txt:after {
    width: 64px;
    height: 64px;
  }

  .toggle-reason-item-ttl-txt:before {
    background: url(/ad/031/term2/img/toggle_icon01_open_pc.png)
    no-repeat center;
    opacity: 1;
  }
  
  .toggle-reason-item-ttl-txt:after {
    background: url(/ad/031/term2/img/toggle_icon01_close_pc.png)
    no-repeat center;
    opacity: 0;
  }

  .toggle-reason-item-ttl-txt {
    padding-right: 70px;
  }

  .toggle-reason-item-ttl {
    padding-left: 12%;
  }
  .toggle-reason {
    padding: 80px 0;
  }
  .toggle-reason-list {
    margin: 40px auto 0;
    width: 100%;
    max-width: 896px;
  }
  .toggle-reason-item {
    padding: 24px;
  }
  .toggle-reason-item+.toggle-reason-item {
    margin-top: 26px;
  }
  }

  .list-ranking {
    padding-top: 16px;
    counter-reset: rank;
  }
   
  .list-ranking li::before {
    counter-increment: rank;
    content: counter(rank) "位";
  }

  @media all and (min-width: 481px) {
    .list-ranking {
      padding-top: 24px;
    }
  }

/*------------------------------------------------.plan-example (定期型保険のプラン例)----------------------------------------*/

.content-bg-03 .toggle-reason-item {
  background: #fff;
  border-radius: 10px;
  padding: 0;
  border-bottom: none;
  overflow: hidden;
  position: relative;
}

.content-bg-03 .toggle-reason-item + .toggle-reason-item {
  margin-top: 16px;
}

.content-bg-03 .toggle-reason-item-ttl {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 16px;
  padding-bottom: 60px;
  position: relative;
  cursor: pointer;
  flex-wrap: wrap;
  gap: 12px;
}

@media all and (min-width: 481px) {
  .content-bg-03 .toggle-reason-item-ttl {
    flex-direction: row;
  }
}

.content-bg-03 .toggle-reason-item-ttl-txt {
  flex: 1;
  padding-right: 0;
  min-width: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #333;
  position: relative;
}

.content-bg-03 .toggle-reason-item-ttl-txt img {
  max-width: 100%;
  height: auto;
  display: block;
}

.content-bg-03 .toggle-reason-item-content {
  border-top: none;
  margin-top: 0;
  padding: 16px;
  background-color: #fff;
}

@media all and (min-width: 481px) {
  .content-bg-03 .toggle-reason-item-ttl {
    padding: 24px;
    padding-bottom: 70px;
  }
  
  .content-bg-03 .toggle-reason-item-ttl-txt {
    font-size: 16px;
  }
  
  .content-bg-03 .toggle-reason-item-content {
    padding: 24px;
  }
}

/*------------------------------------------------.toggle-plan----------------------------------------*/

.toggle-plan-item-ttl-box {
  background: #27564B;
  text-align: center;
  color: #fff;
  padding: 12px;
  border-radius: 0 0 10px 10px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: none;
  width: 100%;
  border-bottom: 4px solid #5A8A7E;
}

@media all and (min-width: 481px) {
  .toggle-plan-item-ttl-box {
    border-bottom: 6px solid #5A8A7E;
  }
}

.toggle-plan-item-ttl-text {
  position: relative;
  padding-right: 36px;
}

.toggle-plan-item-ttl-text::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 24px;
  height: 24px;
  background: url(/ad/031/term2/img/toggle_icon02_open.png) no-repeat center;
  transform: translateY(-50%) rotate(0deg);
  transition: transform .35s ease, background-image .2s ease;
}

.toggle-plan-item-ttl-box.is-active
.toggle-plan-item-ttl-text::after {
  background-image: url(/ad/031/term2/img/toggle_icon02_close.png);
}

.toggle-plan-item-ttl-text::before {
  content: attr(data-open);
}

.toggle-plan-item-ttl-box.is-active
.toggle-plan-item-ttl-text::before {
  content: attr(data-close);
}

.toggle-plan-item-ttl-box-content {
  padding: 16px;
  display: block;
}

.toggle-plan-item-ttl-box-content > .layout-grid {
  padding-top: 0;
}

.toggle-plan-list {
  margin-top: 24px;
}

.toggle-plan-item {
  background: #fff;
  border-radius: 10px;
  border-bottom: 4px solid #27564B;
  padding: 16px 16px;
}
.toggle-plan-item+.toggle-plan-item {
  margin-top: 16px;
}
.toggle-plan-item-ttl {
  display: flex;
  align-items: center;
  font-weight: bold;
  position: relative;
  cursor: pointer;
}

.toggle-plan-item-ttl-img01 {
  flex-grow: 1;
}

.toggle-plan-item-ttl-img02 {
  width: auto;
  max-width: 100%;
  height: auto;
}

.toggle-plan-item-ttl-img02 img {
  width: 100%;
  height: auto;
  display: block;
}


.toggle-plan-item-ttl.is-active .toggle-plan-item-ttl-box::after {
  -webkit-transform: translate(-50%, -50%) rotate(0deg);
  transform: translate(-50%, -50%) rotate(0deg)
}

.toggle-plan-item-ttl.is-active:after {
  -webkit-transform: translate(0%, -50%) rotate(180deg);
  transform: translate(0%, -50%) rotate(180deg)
}

.toggle-plan-item-ttl--txt {
  padding-right: 45px;
  flex: 1;
}
@media all and (min-width: 481px) {
  .toggle-plan-item-ttl--txt {
      padding-right: 70px;
  }
}
.toggle-plan-item-content {
  display: flex;
  flex-direction: column-reverse;
}
@media all and (min-width: 481px) {
  .toggle-plan {
    padding: 80px 0;
  }
  .toggle-plan-list {
    margin: 24px auto 0;
    width: 100%;
    max-width: 896px;
  }
  .toggle-plan-item {
    padding: 24px;
  }
  .toggle-plan-item+.toggle-plan-item {
    margin-top: 16px;
  }
}

.box-plan-type01, 
.box-plan-type02 {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

.box-plan-type01 {
  background-color: #FFF8E6;
}

.box-plan-type02 {
  background-color: #F4F7EA;
}

.box-plan-inner {
  padding: 16px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

@media all and (min-width: 481px) {
  .box-plan-inner {
    padding: 24px;
    }
}

.txt-lead-plan-type01 {
  color: #E1A602;
  font-size: 20px;
  font-weight: bold;
}

.txt-lead-plan-type02 {
  color: #77A922;
  font-size: 20px;
  font-weight: bold;
}

@media all and (min-width: 481px) {
  .txt-lead-plan-type01 {
    font-size: 18px;
  }
  
  .txt-lead-plan-type02 {
    font-size: 18px;
  }
}

.plan-txt {
  font-weight: bold;
  text-align: right;
  font-size: 18px;
  margin-top: auto;
  margin-bottom: 0;
}

.plan-txt-price {
  font-family: Barlow;
}

.box-plan-type01 > .box-plan-inner > .plan-txt {
  border-top: 2px solid #E1A602;
}

.box-plan-type02 > .box-plan-inner > .plan-txt {
  border-top: 2px solid #77A922;
}
.text-large {
  font-size: 40px;
}

/*------------------------------------------------.plan-example (定期型保険のプラン例)----------------------------------------*/

.content-bg-03 .toggle-plan-list {
  margin-top: 24px;
}

@media all and (min-width: 481px) {
  .content-bg-03 .toggle-plan-list {
    margin-top: 40px;
  }
}

.content-bg-03 .toggle-plan-item {
  background: #fff;
  border-radius: 10px;
  padding: 0;
  border-bottom: none;
  overflow: hidden;
  position: relative;
}

.content-bg-03 .toggle-plan-item + .toggle-plan-item {
  margin-top: 16px;
}

@media all and (min-width: 481px) {
  .content-bg-03 .toggle-plan-item + .toggle-plan-item {
    margin-top: 26px;
  }
}


.content-bg-03 .toggle-plan-item-ttl {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 16px;
  position: relative;
  cursor: pointer;
  flex-wrap: wrap;
  gap: 16px;
}

@media all and (min-width: 481px) {
  .content-bg-03 .toggle-plan-item-ttl {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0;
  }
}

@media all and (min-width: 481px) {
  .content-bg-03 .toggle-plan-item-ttl {
    padding: 24px;
  }
}

/*------------------------------------------------.list-note----------------------------------------*/

.list-note {
  padding-top: 24px;
  font-size: 16px;
  color: #757575;
}

.toggle-reason-item-content > .list-note {
  padding-top: 16px;
}

@media all and (min-width: 481px) {
  .list-note {
    padding-top: 36px;
    }

  .toggle-reason-item-content > .list-note {
    padding-top: 24px;
    }
}

.list-note > .type-01,
.list-note > .type-01 * {
  color: #c00;
}

.list-note > li {
  position: relative;
  padding-left: 16px;
  list-style: none;
}

@media all and (min-width: 481px) {
  .list-note > li {
    padding-left: 20px;
  }
}

.list-note > li + li {
  margin-top: 4px;
}

.note-mark {
  position: absolute;
  left: 0;
  top: 0;
  white-space: nowrap;
}

.list-note > li > a {
  text-decoration: underline;
}

.list-note > li > a:hover {
  opacity: 0.7;
  text-decoration: none;
}

.list-nomal {
  margin-top: 16px;
  line-height: 1.75;
}

.list-nomal > li {
  position: relative;
  margin-bottom: 4px;
  padding-left: 12px;
}

.list-nomal > li:last-child {
  margin-bottom: 0;
}

.list-nomal > li::before {
  position: absolute;
  top: 14px;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 4px;
  background-color: #333;
  content: '';
}

.list-nomal:has(+ .plan-txt) {
  padding-bottom: 16px;
}

/*------------------------------------------------.link-nomal----------------------------------------*/
.link-nomal {
  margin-top: 24px;
}

.link-nomal>.link-nomal-item a {
  position: relative;
  display: inline-block;
  padding-left: 32px;
  background-color: rgba(0, 0, 0, 0);
  text-decoration: underline;
  line-height: 1.7;
}

.link-nomal>.link-nomal-item a::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 6px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #27564B;
  border-right: 2px solid #27564B;
  transform: rotate(45deg) translate3d(0, 0, 0);
}

.link-nomal>.link-nomal-item a::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  background-color: #DEE8E5;
  border-radius: 24px;
  top: 2px;
  left: 0;
}

.link-nomal>.link-nomal-item a:hover {
  text-decoration: none;
}

.link-nomal>.link-nomal-item a:hover .link-nomal-text {
  opacity: 0.7;
}

.link-nomal-text {
  transition: opacity 0.2s ease;
}

/*------------------------------------------------.content-bg-05----------------------------------------*/
.content-bg-01:has(+ .content-bg-05),
.content-bg-03:has(+ .content-bg-05) {
  position: relative;
}

.content-bg-01:has(+ .content-bg-05)::before,
.content-bg-01:has(+ .content-bg-05)::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 50%;
  height: 65px;
}

.content-bg-03:has(+ .content-bg-05)::before,
.content-bg-03:has(+ .content-bg-05)::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 50%;
  height: 65px;
  z-index: 1;
}

.content-bg-01:has(+ .content-bg-05)::before,
.content-bg-03:has(+ .content-bg-05)::before {
  background: url(/ad/031/term2/img/content_bg_deco_left_sp.svg) left bottom no-repeat;
  right: 50%;
}

.content-bg-01:has(+ .content-bg-05)::after,
.content-bg-03:has(+ .content-bg-05)::after {
  background: url(/ad/031/term2/img/content_bg_deco_right_sp.svg) right bottom no-repeat;
  left: 50%;
}

@media all and (min-width: 481px) {

.content-bg-01:has(+ .content-bg-05)::before,
.content-bg-01:has(+ .content-bg-05)::after,
.content-bg-03:has(+ .content-bg-05)::before,
.content-bg-03:has(+ .content-bg-05)::after {
  min-width: 960px;
}

  .content-bg-01:has(+ .content-bg-05)::before,
  .content-bg-03:has(+ .content-bg-05)::before {
    background: url(/ad/031/term2/img/content_bg_deco_left_pc.svg) left bottom no-repeat;
  }
  
  .content-bg-01:has(+ .content-bg-05)::after,
  .content-bg-03:has(+ .content-bg-05)::after {
    background: url(/ad/031/term2/img/content_bg_deco_right_pc.svg) right bottom no-repeat;
  }
}

.content-bg-05 {
  position: relative;
  background-color: #27564b;
  top: -1px;
}

.content-bg-05 > .content-inner {
  padding: 20px 16px 40px;
}

@media all and (min-width: 481px) {
  .content-bg-05 > .content-inner {
    padding: 40px 20px 80px;
  }
}

.text-lead-type01 {
  text-align: center;
  font-weight: bold;
  color: #fff;
  font-size: 24px;
}

@media all and (min-width: 481px) {
  .text-lead-type01 {
    font-size: 40px;
  }
} 

.text-lead-type03 {
  text-align: center;
  font-weight: bold;
  color: #27564B;
  font-size: 20px;
}

.text-line {
  position: relative;
  display: inline-block;
  z-index: 0;
}

.text-line::after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  z-index: -1;
  height: 8px;
  background-color: #ffed61;
  bottom: 5px;
}

@media all and (min-width: 481px) {
  .text-lead-type03 {
    font-size: 32px;
  }

  .text-line::after {
    height: 11px;
    bottom: 10px;
  }
}

.text-nomal-type01 {
  text-align: center;
  color: #fff;
  padding-top: 16px;
}

.text-lead-type01.js-fadein,
.text-nomal-type02.js-fadein,
.content-media.js-fadein {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.text-lead-type01.js-fadein.is-visible,
.text-nomal-type02.js-fadein.is-visible,
.content-media.js-fadein.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.content-img {
  position: absolute;
  top: -23px;
  left: calc(50% - 65px);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 130px;
}

.content-media.content-img + .content-media {
  margin-top: 0;
}

 @media all and (min-width: 481px) {
  .content-img {
    left: calc(50% - 95px);
    max-width: 190px;
    top: -35px;
  }

  .text-nomal-type01 + .kv-media {
    padding-top: 12px;
  }
}

.text-nomal-type01.js-fadein {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
}

.text-nomal-type01.js-fadein.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.layout-grid[data-col-wide='2'] {
  display: grid;
}

.layout-grid.js-zoomin {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.layout-grid.js-zoomin.is-visible {
  opacity: 1;
  transform: scale(1);
}

.layout-grid+.layout-grid {
  margin-top: 32px;
}

.layout-grid {
  padding-top: 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media all and (min-width: 481px) {
  .layout-grid[data-col-wide='2'] {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
  gap: 24px;
  }
  
  .layout-grid+.layout-grid {
    margin-top: 0;
  }
  
  .layout-grid {
    padding-top: 40px;
    display: grid;
    grid-template-columns: 1fr;
  }

  .layout-grid-col {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
}

.content-toggle-box {
  background-color: #DEE8E5;
  border-radius: 16px;
  padding: 16px;
  margin-top: 10px;
  border-bottom: 6px solid #27564B;
}

@media all and (min-width: 481px) {
  .content-toggle-box {
    margin-top: 24px;
    border-radius: 10px;
    }
}

.content-toggle-ttl {
  position: relative;
  font-size: 20px;
  font-weight: bold;
  width: 100%;
  display: flex;
  text-align: left;
  cursor: pointer;
  color: #333333;
  padding-left: 52px;
  padding-right: 40px;
}
.content-toggle-ttl:before {
  content: "";
  background: url(/ad/031/term2/img/content_icon_toggle.png) no-repeat 0 0;
  background-size: contain;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0%, -50%);
  transform: translate(0%, -50%)
}

.content-toggle-ttl::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 32px;
  height: 32px;
  background: url(/ad/031/term2/img/toggle_icon03_open_sp.png) no-repeat center;
  transform: translateY(-50%) rotate(0deg);
  transition: transform .35s ease, background-image .2s ease;
}

.content-toggle-ttl.is-active:after {
  background-image: url(/ad/031/term2/img/toggle_icon03_close_sp.png);
  transform: translateY(-50%) rotate(180deg);
}

@media all and (min-width: 481px) {
  .content-toggle-ttl::after {
    width: 48px;
    height: 48px;
    background: url(/ad/031/term2/img/toggle_icon03_open_pc.png) no-repeat center;
  }
  
  .content-toggle-ttl.is-active:after {
    background-image: url(/ad/031/term2/img/toggle_icon03_close_pc.png);
  }
}

.content-toggle-answer {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 2px solid #fff;
}

.content-toggle-answer > .list-note {
  padding-top: 16px;
}

.content-toggle-txt {
  width: 100%;
  color: #333;
}

@media all and (min-width: 481px) {
  .content-toggle-box {
    width: 100%;
    max-width: 936px;
    margin: auto;
    padding: 28px 24px;
    margin-top: 40px;
  }
  .content-toggle-box + .content-toggle-box {
    margin-top: 18px;
  }
  .content-toggle-ttl {
    padding-left: 52px;
    padding-right: 45px;
  }
  .content-toggle-answer {
    margin-top: 28px;
    margin-bottom: 12px;
    padding-top: 24px;
  }

  .content-toggle-answer > .list-note {
    padding-top: 24px;
  }
  .content-toggle-txt {
    font-size: 16px;
  }
}

.sp-break {
  display: block;
}

@media all and (min-width: 481px) {
  .sp-break {
    display: inline;
  }

  .pc-text-right {
    text-align: right;
  }
}