main {
  margin-top: 90px;
}

@media print,
screen and (max-width: 768px) {
  main {
    margin-top: 40px;
  }
}
.c-header-logo {
  width: 13.66vw;
  max-width: 164px;
  margin-right: 10px;
}

@media print,
screen and (max-width: 768px) {
    .c-header {
        padding: 11px 16px;
    }

    .c-header-logo {
      width: 164px;
    }
}

.c-header-right {
    align-items: center;
    display: flex;
    width: 100%;
}

.c-header-right .c-sidebar {
    margin-left: 30px;
}

@media print,
screen and (max-width: 768px) {
    .c-header-right .c-sidebar {
        margin-left: auto;
    }
}

.c-header-right .c-btn {
    max-width: none;
    width: auto;
}

.c-header .c-target-date {
    margin-left: auto;
}

@media print,
screen and (max-width: 768px) {
    .c-header .c-target-date {
        display: none;
    }
}

.c-header-radio {
    margin: 32px 0 46px;
    position: relative;
}

.c-header-radio::after {
    background: linear-gradient(to top right, rgba(0, 0, 0, 0) 50%, #0000008a 50.5%) no-repeat 0 0/50% 100%, linear-gradient(to top left, rgba(255, 255, 255, 0) 50%, #0000008a 50.5%) no-repeat 100% 100%/50% 100%;
    content: "";
    height: 8px;
    left: 50%;
    position: absolute;
    top: 107%;
    transform: translate(-50%, 0);
    width: 12px;
}

.c-header-radio label:not(:last-child) {
    margin-bottom: 16px;
}

.c-header-notice {
    font-size: 14px;
}

.c-header-notice-message {
    margin-top: 10px;
    margin-bottom: 10px;
}

.c-header-notice-message span {
    display: block;
    color: red;
    font-size: 16px;
}

.c-header-check {
    display: flex;
    align-items: center;
}

.c-header-check input {
    appearance: auto;
    margin-right: 5px;
}

.c-header-submit .c-btn:first-child {
    margin-bottom: 16px;
}

.c-header-submit .c-btn-secandary {
    background: #BDBDBD;
}

.c-header-submit .c-btn-secandary.is-active {
    background: #2697AC;
}

.c-header-submit .c-btn-tertiary {
    border: 1px solid #BDBDBD;
    color: #BDBDBD;
}

.c-header-submit .c-btn-tertiary.is-active {
    border: 1px solid #2697AC;
    background: #c2eaf2;
    color: #000;
}

.c-header-submit a {
    text-decoration-line: none;
}

.c-txt-wrapper {
  width: 100%;
  box-sizing: border-box;
  max-width: 948px;
  margin: 0px auto 20px;
  padding: 0 24px;
  text-align: center;
}

.c-txt-company {
  display: flex;
  justify-content: space-between;
  max-width: 800px;
  margin: 0 auto;
}

.c-txt-wrapper p {
  font-size: 10px;
  font-weight: 500;
  line-height: 1.5;
  color: #707070;
  padding-top: 11px;
}

@media (max-width: 768px) {
  .c-txt-wrapper {
    padding: 0rem 1.5rem;
    margin: 0px auto 10px;
  }

  .c-txt-wrapper .c-txt-company {
    display: flex;
    flex-flow: column;
    margin-top: 10px;
  }

  .c-txt-company p {
   padding-top: 0;
  }
}

.c-sidebar-contents,
.c-sidebar-overlay {
    transition: all 0.3s;
    visibility: hidden;
}

.c-sidebar-overlay {
    background-color: rgba(0, 0, 0, 0.45);
    height: 100vh;
    left: 0;
    opacity: 0;
    position: fixed;
    top: 0;
    width: 100vw;
    z-index: 800;
}

.c-sidebar-contents {
    background-color: #fff;
    height: 100vh;
    max-width: 360px;
    padding: 16px 24px;
    position: fixed;
    right: -100%;
    top: 50%;
    transform: translate(0, -50%);
    width: 100%;
    z-index: 900;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
}

@media print,
screen and (max-width: 768px) {
    .c-sidebar-contents {
        max-width: 100%;
    }
}

.c-sidebar-contents p {
    font-size: 16px;
}

.c-sidebar.is-active .c-sidebar-contents,
.c-sidebar.is-active .c-sidebar-overlay {
    transition: all 0.3s;
    visibility: visible;
}

.c-sidebar.is-active .c-sidebar-contents {
    right: 0;
}

.c-sidebar.is-active .c-sidebar-overlay {
    opacity: 1;
}

.c-sidebar-close-btn {
    height: 22px;
    margin-bottom: 16px;
    position: relative;
    width: 22px;
}

.c-sidebar-close-btn::before,
.c-sidebar-close-btn::after {
    background-color: #000;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    top: 8px;
    width: 100%;
}

.c-sidebar-close-btn::after {
    transform: rotate(45deg);
}

.c-sidebar-close-btn::before {
    transform: rotate(-45deg);
}

.c-sidebar-contents .checker span {
    display: block;
    margin-top: 25px;
}

.c-sidebar-contents .checker input {
    overflow: hidden;
    border-radius: 15px;
    border: 1px solid #d8d8d8;
    height: 44px;
    padding-left: 15px;
    width: 95%;
}

.c-sidebar-contents .checker input::placeholder {
    color: #bbb;
}

.c-sidebar-contents .checker button {
    color: #fff;
    display: block;
    min-width: 140px;
    outline: none;
    padding: 5px 32px;
    text-align: center;
    background: linear-gradient(to right bottom, #00d054, #007630);
    border: solid 4px #fff;
    border-radius: 100px;
    font-size: 18px;
    box-shadow: 10px 10px 10px rgb(0 0 0 / 30%);
    text-decoration: none;
    margin: 20px auto;
}

.c-sidebar-contents .checker .error {
    color: red;
    margin-top: 20px;
    text-align: center;
}

.c-sidebar-contents .check-result {
    display: none;
}

.c-sidebar-contents .check-result.ok .head {
    text-align: center;
}

.c-sidebar-contents .check-result.ok .head span {
    font-size: 24px;
    font-weight: bold;
    background: -webkit-linear-gradient(0deg, #00D7FF, #BC68FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.c-sidebar-contents .check-result.ok .head span::after {
    content: "";
    display: block;
    height: 2px;
    background: linear-gradient(0deg, #00D7FF, #BC68FF);
}

.c-sidebar-contents .check-result.ng .head {
    text-align: center;
}

.c-sidebar-contents .check-result.ng .head span {
    background-image: linear-gradient(180deg, transparent 30%, #fff134 0);
    background-position: -100% 0.5em;
    background-repeat: repeat-x;
    background-size: 200% 1em;
    font-size: 22px;
    font-weight: 700;
}

.c-target-date {
    color: #212121;
    font-size: clamp(15.5px, 1.3vw, 16px);
}

@media print,
screen and (max-width: 768px) {
    .c-target-date {
        font-size: 14px
    }
}

.c-target-date-date {
    color: #747474;
    display: block;
    font-size: 14px;
}

@media print,
screen and (max-width: 768px) {
    .c-target-date-date {
        font-size: 12px;
    }
}

.c-target-date-line {
    background-image: linear-gradient(to right, transparent 50%, #fff134 50%);
    background-position: -100% .5em;
    background-repeat: repeat-x;
    background-size: 200% 1em;
    font-weight: bold;
    padding: 0 2px;
}

.c-btn-wrap {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

@media print,
screen and (max-width: 768px) {
    .c-btn-wrap {
        position: fixed;
        bottom: 10px;
        left: 0;
        right: 0;
        padding: 0 3vw;
    }
}

.c-btn {
    background: linear-gradient(to right bottom, #2697AC, #6E4093);
    border: none;
    border-radius: 4px;
    color: #FFF;
    display: block;
    font-size: clamp(12px, 1.3vw, 16px);
    max-width: 96px;
    outline: none;
    /* padding: 7px 45px; */
    text-align: center;
    width: 100%;
    /* min-width: 290px; */
    /* padding: 0.5em 3em; */
    padding: 7.6px clamp(20px, 3.83vw, 46px);
}

.c-btn.wide-plan {
    background: #006270;
    width: 24.16vw;
    max-width: 290px;
}

.c-btn.simple-plan {
    background: #01C8E8;
    width: 24.16vw;
    max-width: 290px;
}

@media print,
screen and (max-width: 768px) {
    .c-btn {
        min-width: 140px;
        padding: 1vw;
    }
}

.c-radio {
    display: none;
}

.c-btn.advertise-model-btn {
    display: none;
    text-decoration: none;
}

.c-radio-label {
    border: 1px solid #979797;
    border-radius: 4px;
    box-sizing: border-box;
    color: #333;
    cursor: pointer;
    display: inline-block;
    font-size: 16px;
    padding: 14px 43px;
    position: relative;
    width: 100%;
}

@media print,
screen and (max-width: 768px) {
    .c-radio-label {
        padding: 22px 43px;
    }
}

.c-radio-label::before {
    background: #fff;
    border: 1px solid #979797;
    border-radius: 50%;
    content: '';
    display: block;
    height: 16px;
    left: 13px;
    margin-top: -8px;
    position: absolute;
    top: 50%;
    width: 16px;
}

.c-radio-label::after {
    background: #2697AC;
    border-radius: 50%;
    content: '';
    display: block;
    height: 10px;
    left: 16px;
    margin-top: -4px;
    opacity: 0;
    position: absolute;
    top: 49%;
    width: 10px;
}

.c-radio:checked+.c-radio-label {
    border: 2px solid #2697AC;
}

.c-radio:checked+.c-radio-label::before {
    border-color: #2697AC;
}

.c-radio:checked+.c-radio-label::after {
    opacity: 1;
}

@media print,
screen and (max-width: 768px) {
    p.js-sidebar-close.c-sidebar-close-btn {
        margin-top: 22px;
    }
}

.btn-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0 1vw;
    width: 24.16vw;
    max-width: 290px;
}

.top-text {
    font-size: clamp(calc(23/1920 * 1200px), calc(23/1920 * 100vw), 23px);
    font-weight: 400;
    white-space: nowrap;
    position: relative;
}

.top-text::before,
.top-text::after {
    content: "";
    position: absolute;
    width: 1px;
    height: 21px;
    background: #3F51B5;
    transform: translateY(-50%);
}

.top-text::before {
    left: -25px;
    transform: rotate(-30deg);
}

.top-text::after {
    right: -25px;
    transform: rotate(30deg);
}

.btn-container .top-text:not(.has-text)::before,
.btn-container .top-text:not(.has-text)::after {
    content: none;
}

.btn-container .top-text {
    font-weight: bold;
}

@media screen and (max-width: 768px) {
    .sp-only {
        display: block;
    }
}

@media screen and (min-width: 769px) {
    .sp-only {
        display: none;
    }
}

.mv {
    position: relative;
}

.mv .mv_photo img {
    width: 100%;
}

.mv .example_img {
    position: absolute;
    z-index: 1;
    bottom: 4.06%;
    right: 8.7%;
    width: 21.98%;
}

@media (max-width: 768px) {
    .mv .example_img {
        width: 41.98%;
    }
}

/* セクションタイトル */
.section_title {
    font-size: 4rem;
    text-align: center;
    font-weight: 700;
  }

  @media (max-width: 768px) {
    .section_title {
      font-size: 2rem;
    }
  }
  /* 下線タイトル */
.underline {
    position: relative;
    padding-bottom: 4.8rem;
  }

  @media (max-width: 768px) {
    .underline {
      padding-bottom: 2rem;
    }
  }

  .underline:after {
    position: absolute;
    content: "";
    background: #222222;
    height: 7px;
    border-radius: 10px;
    width: 9.2rem;
    left: 50%;
    right: 50%;
    transform: translateY(-50%) translateX(-50%);
    bottom: 0;
  }

  @media (max-width: 768px) {
    .underline:after {
      height: 3px;
      width: 5.4rem;
    }
  }
  .plan .red {
    font-size: 2rem;
    font-weight: 500;
    text-align: center;
    margin: 2rem auto 3.7rem;
  }
  .plan .plan_text-bottom {
    text-align: center;
    margin-top: 2.2rem;
    font-size: 2rem;
  }

  @media (max-width: 768px) {
    .plan .plan_text-bottom {
      font-size: 1.6rem;
      margin-top: 4.2rem;
    }
  }

  .plan .plan_text-bottom small {
    font-size: 1.5rem;
    display: block;
    margin-top: 2rem;
  }

  @media (max-width: 768px) {
    .plan .plan_text-bottom small {
      font-size: 1.2rem;
      margin-top: 1rem;
    }
  }

  .plan .plan_text-bottom .marker-y {
    margin: 6.3rem auto 4.3rem;
    font-size: 4rem;
    display: inline-block;
  }


.small-attention {
    text-align: center;
    font-size: 1.8rem;
    position: relative;
    z-index: 1;
}

.support1 {
    padding: 9.8rem 2rem 0;
}

.support-text {
    background: linear-gradient(to right, #00d7ff, #bc68ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-align: center;
    font-size: 20.25px;
    font-weight: 600;
    line-height: 1.4;
}

@media print,
screen and (max-width: 768px) {
    .support-text {
        font-size: 18.22px;
        line-height: 1.5;
    }
}

.small-attention {
    display: block;
    text-align: center;
    font-size: 14px;
    margin-top: 2rem;
    position: relative;
    padding: 0 24px;
    z-index: 1;
}

@media (max-width: 768px) {
    .small-attention {
      font-size: 14px;
      margin-top: 1rem;
    }
}

.plan_text-bottom {
  text-align: center;
  margin-bottom: 30px;
  font-size: 17px;
}

@media (max-width: 768px) {
  .plan_text-bottom {
    font-size: 17px;
      margin-top: 1rem;
  }
}

.small-attention-bottom {
  font-size: 14px;
}

.picture {
    max-width: 106.3rem;
    width: 100%;
    margin: 2rem auto 0;
    display: block;
}

.support2 {
    padding: 0rem 2rem 0;
}

ul.support_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    list-style: none;
    max-width: 100%;
    /* 幅を100%に設定して、親要素の幅に依存する */
    margin: 7rem auto 0;
}

ul.support_list li {
    display: flex;
    /* Flexboxを有効化 */
    align-items: center;
    /* 中央揃えにする */
    justify-content: flex-start;
    /* 左端から配置 */
    width: 32.43%;
    /* 幅指定 */
    height: 15.3rem;
    /* 高さ指定 */
    padding: 4.6rem 0 4.6rem 2rem;
    /* パディング指定 */
    border: solid 3px #333333;
    /* ボーダー指定 */
    margin-right: 1.21%;
    /* 右マージン */
    margin-bottom: 2.4rem;
    /* 下マージン */
    box-sizing: border-box;
    /* パディングとボーダーを幅に含める */
}

ul.support_list li:nth-child(3n) {
    margin-right: 0;
}

ul.support_list li img {
    width: 20%;
    /* 画像の幅を自動調整 */
    height: 100%;
    /* 画像の高さをリストアイテムに合わせる */
    margin-right: 1.1rem;
    /* 画像とテキストの間隔 */
}

ul.support_list li p {
    flex-grow: 1;
    /* テキストを可能な限り広げる */
    font-size: 3rem;
    /* フォントサイズ */
    line-height: 3rem;
    /* 行の高さ */
}

ul.support_list li p small {
    display: block;
    font-size: 1.4rem;
    line-height: normal;
}

@media (max-width: 768px) {
    ul.support_list {
        flex-direction: column;
        background: #fff;
        box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.16);
        max-width: 100%;
        padding: 2.4rem;
        border-radius: 17px;
        margin-top: 3rem;
    }

    ul.support_list li {
        flex-direction: row;
        width: 100%;
        height: auto;
        padding: 1rem;
        border: none;
    }

    ul.support_list li img {
        width: 3.3rem;
    }

    ul.support_list li p {
        font-size: 1.4rem;
    }

    ul.support_list li p small {
        font-size: 1rem;
        position: absolute;
    }
}

.custom-text {
    display: block;
    background: linear-gradient(to right, #00d7ff, #bc68ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.4;
    padding: 2rem;
}

@media print,
screen and (max-width: 768px) {
    .custom-text {
        font-size: 20px;
        line-height: 1.5;
    }
}

.custom-text .pc-text {
    display: block;
}

.custom-text .sp-text {
    display: none;
}

@media (max-width: 768px) {
    .custom-text .pc-text {
        display: none;
    }

    .custom-text .sp-text {
        display: block;
    }
}

@media screen and (min-width: 769px) {
    .br-sp {
        display: none;
    }
}

.faq {
    margin-top: 13rem;
    position: relative;
    padding-bottom: 6.5rem;
}

@media (max-width: 768px) {
    .faq {
        padding: 0 1rem;
        margin-top: 5rem;
    }
}

.faq .faq_width {
    max-width: 122rem;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 768px) {
    .faq .faq_width {
        width: 100%;
        padding: 0;
    }
}

.faq .faq_width .section_title {
    font-size: 3.8rem;
    font-weight: 700;
    margin-bottom: 7.7rem;
}

@media (max-width: 768px) {
    .faq .faq_width .section_title {
        font-size: 2.4rem;
        margin-bottom: 2.7rem;
    }
}

.faq .faq_width .faq_wrapper {
    padding: 2.5rem 1rem;
    background: #fff;
    border: 1px solid #707070;
    box-shadow: 0px 4px 1px rgba(0, 229, 255, 0.4);
    border-radius: 19px;
    margin-bottom: 3.6rem;
}

@media (max-width: 768px) {
    .faq .faq_width .faq_wrapper {
        padding: 1.3rem 0;
        border-radius: 9px;
        margin-bottom: 1.6rem;
    }
}

.faq .faq_width .faq_wrapper .question {
    display: flex;
    align-items: center;
    position: relative;
    transition: 0.3s;
    cursor: pointer;
    padding-left: 2.4rem;
}

@media (max-width: 768px) {
    .faq .faq_width .faq_wrapper .question {
        align-items: flex-start;
    }
}

.faq .faq_width .faq_wrapper .question:before {
    content: "";
    position: absolute;
    width: 11px;
    height: 2px;
    background: #707070;
    right: 5.9rem;
    bottom: 50%;
    top: 50%;
    transform: rotate(40deg);
}

@media (max-width: 768px) {
    .faq .faq_width .faq_wrapper .question:before {
        width: 10px;
        height: 1px;
        right: 2.5rem;
    }
}

.faq .faq_width .faq_wrapper .question:after {
    content: "";
    position: absolute;
    width: 11px;
    height: 2px;
    background: #707070;
    right: 5.1rem;
    bottom: 50%;
    top: 50%;
    transform: rotate(-40deg);
}

@media (max-width: 768px) {
    .faq .faq_width .faq_wrapper .question:after {
        width: 10px;
        height: 1px;
        right: 1.7rem;
    }
}

.faq .faq_width .faq_wrapper .question .icon_q {
    width: 2.7rem;
}

@media (max-width: 768px) {
    .faq .faq_width .faq_wrapper .question .icon_q {
        width: 1.3rem;
        padding-top: 0.7rem;
    }
}

.faq .faq_width .faq_wrapper .question .question_title {
    font-size: 2.3rem;
    font-weight: 700;
    margin-left: 1.5rem;
    font-weight: 500;
    padding-right: 5rem;
    font-feature-settings: "palt";
    letter-spacing: 0.01em;
}

@media (max-width: 768px) {
    .faq .faq_width .faq_wrapper .question .question_title {
        font-size: 1.4rem;
        padding-right: 4rem;
    }
}

.faq .faq_width .faq_wrapper .question.open:before {
    transform: rotate(140deg);
}

.faq .faq_width .faq_wrapper .question.open:after {
    transform: rotate(-140deg);
}

.faq .faq_width .faq_wrapper .answer {
    display: none;
    padding-top: 1.8rem;
}

.faq .faq_width .faq_wrapper .answer .answer_flex {
    display: block;
}

@media (max-width: 768px) {
    .faq .faq_width .faq_wrapper .answer .answer_flex {
        align-items: flex-start;
    }
}

.faq .faq_width .faq_wrapper .answer .icon_a {
    width: 8rem;
}

@media (max-width: 768px) {
    .faq .faq_width .faq_wrapper .answer .icon_a {
        width: 7.7rem;
    }
}

.faq .faq_width .faq_wrapper .answer p {
    font-size: 2.3rem;
    line-height: 2;
    padding: 1rem 3rem;
}

@media (max-width: 768px) {
    .faq .faq_width .faq_wrapper .answer p {
        font-size: 1.4rem;
        padding: 0rem 2rem;
    }
}

.faq .table_container {
    padding: 20px;
    border-radius: 10px;
}

.faq .answer_flex p {
    font-size: 2.3rem;
    line-height: 2;
    padding: 1rem 3rem;
}

@media (max-width: 768px) {
    .faq .answer_flex p {
        font-size: 1.4rem;
        padding: 0rem 2rem;
    }
}

.faq .faq_link {
    text-align: center;
    font-size: 2rem;
    margin-top: 9.5rem;
}

@media (max-width: 768px) {
    .faq .faq_link {
        font-size: 1.2rem;
        margin-top: 4rem;
    }
}

.faq .faq_link a {
    text-decoration: underline;
}

.faq .faq_number {
    font-size: 1.8rem;
    text-align: right;
    margin-top: 15.7rem;
    padding-right: 10.7rem;
}

@media (max-width: 768px) {
    .faq .faq_number {
        font-size: 1rem;
        padding-right: 0;
        margin-top: 5.7rem;
        margin-bottom: 1rem;
    }
}

.faq .agency_wrapper {
    font-size: 2rem;
    margin-bottom: 4rem;
    padding-top: 8rem;
    max-width: 122rem;
    margin: 0 auto;
}

.faq .agency_wrapper div {
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .faq .agency_wrapper {
        font-size: 1.2rem;
        padding-top: 3rem;
    }
}

.special-feature-title {
    font-size: 4.1rem;
    font-weight: 700;
    align-items: flex-end;
    justify-content: center;
    line-height: 1.4;
    padding-top: 5.8rem;
    margin-bottom: 4rem;
    /* 追加: 下の枠との距離を調整 */
}

.flex {
    display: flex;
}

.special-feature-title img {
    margin-right: 6.6rem;
}

.section_text {
    margin-top: 7.1rem;
}

.section_text {
    font-size: 3rem;
    text-align: center;
    line-height: 2;
}

.section_text small {
    font-size: 1.8rem;
}

@media (max-width: 768px) {
    .special-feature-title {
        font-size: 2rem;
        flex-direction: row;
        align-items: center;
        padding-top: 3rem;
        padding-left: 10%;
        /* 左右の余白を追加 */
        padding-right: 10%;
        /* 左右の余白を追加 */
        margin-bottom: 2rem;
        /* 追加: SP版での下の枠との距離を調整 */

    }

    .special-feature-title img {
        margin-right: 2rem;
        width: 2.2rem;
        /* デフォルトのSP版の画像横幅 */
    }

    .section_text {
        font-size: 2rem;
        text-align: left;
        line-height: 1.5;
        margin-top: 3rem;
    }

    .section_text small {
        font-size: 1rem;
    }

    .section_text:not(:has(small)) {
        margin-top: 1.5rem;
        /* smallがない場合のmargin-topを調整 */
    }
}

.pc-text {
    display: inline;
}

.sp-text {
    display: none;
}

.special-text {
    font-size: 2.5rem;
    text-align: center;
    line-height: 2;
}

.underline-effect {
    background-image: linear-gradient(to right, transparent 50%, #fff134 50%);
    background-position: -100% .5em;
    background-repeat: repeat-x;
    background-size: 200% 1em;
    font-weight: bold;
    padding: 0 2px;
}

@media (max-width: 768px) {
    .special-text {
        padding: 0 3rem;
        font-size: 1.4rem;
    }
}


.more-details {
    text-align: center;
    font-weight: bold;
    text-decoration: underline;
    font-size: 2.5rem;
    color: #2697AC;
    padding-left: 60%;
}

@media (max-width: 768px) {
    .more-details {
        font-size: 0.5em;
        padding-left: 35%;
    }

    .feature_item_list li:nth-of-type(2) .more-details {
        position: absolute;
        bottom: 1rem;
        right: 1rem;
        padding-left: 0;
    }
}

.more-details a {
    display: inline-flex;
    align-items: center;
    color: #2697AC;
    text-decoration: underline;
}

.more-details img {
    width: 24px !important;
    height: 24px !important;
    margin-right: 5px;
}

.insurance-image img {
    width: 10%;
    /* Default width for larger screens */
}

@media (max-width: 768px) {
    .insurance-image img {
        width: 30%;
        /* Smaller width for screens less than 768px */
    }
}

.insurance-box {
    margin: 0 auto;
    width: 100%;
    /* 親要素の幅を60%に設定 */
    display: flex;
    justify-content: center;
    /* Flexboxを使用して中央揃え */

}

.insurance-table {
    display: grid;
    grid-template-columns: 0.2fr 0.2fr 0.2fr;
    gap: 4px;
    width: 100%;
    justify-content: center;
    /* グリッドアイテムを中央に配置 */
}

.header,
.cell {
    padding: 8px;
    text-align: center;
    font-size: 2.4rem;
    border: none;
    border-radius: 3px;
}

.header.insurance-amount {
    grid-row: 1 / 3;
    background-color: #DCDCDC;
}

.header.insurance-fee {
    grid-column: 2 / 4;
    background-color: #d3d3d3;
    color: #000000;
}

.header.wide-plan {
    background-color: #006270;
    color: #ffffff;
}

.header.simple-plan {
    background-color: #01C8E8;
    color: #ffffff;
}

.cell.wide-plan {
    background-color: #006270;
    color: black;
}

.cell.simple-plan {
    background-color: #01C8E8;
    color:
        black;
}

@media screen and (max-width: 768px) {
    .insurance-table {
        grid-template-columns: 0.3fr 0.4fr 0.4fr;
        padding: 2%;
    }

    .header,
    .cell {
        font-size: 1.6rem;
    }
}

.about_item_wrapper {
    max-width: 126.8rem;
    margin: 5rem auto 0;
}

.about_item .about_title {
    background: #2697AC;
    color: #fff;
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 1;
    text-align: center;
    display: inline-block;
    padding: 1.4rem;
    min-width: 28rem;
    margin-top: 5rem;
}

.about_item .about_item_text {
    font-size: 2rem;
    line-height: 1.75;
    margin-top: 3.2rem;
}

/* モバイルビューでの調整 */
@media (max-width: 768px) {
    .about_item_wrapper {
        padding: 0 2rem;
        max-width: 126.8rem;
        margin: 5rem auto 0;
    }

    .about_item .about_title {
        font-size: 1.8rem;
        width: 79%;
        margin: 0 auto;
        display: block;
        padding: 1.3rem 0 0.9rem;
        margin-top: 5rem;
    }
}

@media (max-width: 768px) {
    .about_item .about_item_text {
        font-size: 1.4rem;
        margin-top: 2.2rem;
    }
}

.comparison-table-wrapper {
    max-width: 126.8rem;
    margin: 10rem auto 0;
}

@media (max-width: 768px) {
    .comparison-table-wrapper {
        margin: 3rem auto 0;
    }
}
 .table-attention-wrapper {
    max-width: 126.8rem;
    margin: 0 auto;
 }

.days_attention img {
    margin-right: 0.6rem;
    vertical-align: text-bottom;
}

.days_attention {
    text-align: center;
    text-decoration: underline;
    font-size: 2rem;
    font-weight: bold;
    color: #2697AC;
    padding-left: 40%;
}

@media (max-width: 768px) {
    .days_attention {
        font-size: 1.3rem;
        padding-left: 0%;
    }
}

.insurance-image2 {
    margin-left: -10%;
    margin-bottom: -4%;
}

.insurance-image2 img {
    width: 10%;
    /* Default width for larger screens */
}

@media (max-width: 768px) {
    .insurance-image2 img {
        width: 20%;
        /* Smaller width for screens less than 768px */
    }

    .insurance-image2 {
        margin-bottom: -7%;
    }
}

.header,
.cell {
    padding: 8px;
    text-align: center;
    font-size: 2.2rem;
    border: none;
    border-radius: 3px;
}

.header.insurance-amount {
    grid-row: 1 / 3;
    background-color: #DCDCDC;
}

.header.insurance-fee {
    grid-column: 2 / 4;
    background-color: #d3d3d3;
    color: #000000;
}

.header.wide-plan {
    background-color: #006270;
    color: #ffffff;
}

.header.simple-plan {
    background-color: #01C8E8;
    color: #ffffff;
}

.cell.wide-plan {
    background-color: #006270;
    color: black;
}

.cell.simple-plan {
    background-color: #01C8E8;
    color:
        black;
}

@media screen and (max-width: 768px) {
    .insurance-table {
        grid-template-columns: 0.3fr 0.4fr 0.4fr;
    }

    .header,
    .cell {
        font-size: 1.6rem;
    }
}

</style><style>.cell.no-border {
    border: none;
}

.header-title {
    color: black;
}

.header-title,
.list-cell {
    background-color: #F5F5F5;
}

.comparison-table {
    display: grid;
    gap: 5px;
    grid-template-columns: 1fr 1.5fr 0.3fr 0.3fr;
    text-align: center;
    border-collapse: collapse;
    margin-top: 2.0em;
}

.row.header {
    background-color: #006270;
    color: white;
}

.wide-header {
    background-color: #006270;
    color: white;
}

.simple-header {
    background-color: #01C8E8;
    color: white;
}

.row {
    display: contents;
}

.cell {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: 3px;
}

.header-title,
.wide-header,
.simple-header,
.bold {
    font-weight: bold;
}

.wide-check {
    background-color: #f5fcfd;
    color: black;
}

.simple-check {
    background-color: #f5fcfd;
    color: black;
}

.check,
.cross {
    font-size: 40px;
}

.list-cell {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    padding: 9%;
}

.comparison-table .cell.bold {
    background-color: #E9F5F7;
}

.wide-check {
    color: #006270;
}

.simple-check {
    color: #01C8E8;
}

.wide-check {
    background-color: rgba(0, 98, 123, 0.3);
    color: #006270;
}

.simple-check {
    background-color: rgba(1, 200, 232, 0.3);
    color: #01C8E8;
}

.circle {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: solid 9px #006270;
    border-radius: 50%;
    font-size: 24px;
    /* 適切なフォントサイズに調整してください */
    color: #006270;
    /* 文字色もここで調整できます */
}

.circle-simple {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: solid 9px #01C8E8;
    border-radius: 50%;
    font-size: 24px;
    color: #01C8E8;
}

@media screen and (max-width: 768px) {
    .grid-table {
        display: grid;
        grid-template-columns: 1.5fr 0.3fr 0.3fr;
        gap: 5px;
        padding: 2%;
    }

    .grid-header {
        padding: 5px;
        text-align: center;
        background-color: #f9f9f9;
        /* font-size: 3.8vw; */
        font-size: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .main-column {
        background-color: #f9f9f9;
    }

    .wide-header {
        background-color: #00627B;
    }

    .simple-header {
        background-color: #01C8E8;
        grid-column: 3;
    }

    .grid-item {
        background-color: #f9f9f9;
        padding: 10px;
        text-align: left;
        font-size: clamp(16px, 3.9vw, 20px);
    }

    .grid-header,
    .grid-item {
        border-radius: 7px;
    }

    .grid-item ul {
        padding-left: 0;
        /* 左のパディングをリセット */
        /* 「・」のスペースを確保 */
    }

    .circle {
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: solid 5px #006270;
        border-radius: 50%;
        color: #006270;
        /* 文字色もここで調整できます */
    }

    .circle-simple {
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: solid 5px #01C8E8;
        border-radius: 50%;
        color: #01C8E8;
    }

    .wide-check {
        grid-column: 2;
        /* This places the .wide-check in the second column */
        grid-row: span 2;
        /* This makes the .wide-check span two rows, as it already does */
        display: flex;
        /* This will allow you to align the .circle inside the .wide-check */
        align-items: center;
        /* This vertically centers the .circle in the .wide-check */
        justify-content: center;
        /* This horizontally centers the .circle in the .wide-check */
    }

    .simple-check {
        grid-column: 3;
        /* This places the .simple-check in the third column */
        grid-row: span 2;
        /* This makes the .simple-check span two rows */
        display: flex;
        /* This will allow you to align the .circle-simple inside the .simple-check */
        align-items: center;
        /* This vertically centers the .circle-simple in the .simple-check */
        justify-content: center;
        /* This horizontally centers the .circle-simple in the .simple-check */
    }

    .wide-check {
        background-color: rgba(0, 98, 123, 0.3);
        color: #006270;
    }

    .simple-check {
        background-color: rgba(1, 200, 232, 0.3);
        color: #01C8E8;
    }

    .list-cell {
        padding-left: 0;
        /* 左のパディングをリセット */
        list-style-type: none;
        /* デフォルトのリストスタイルを無効化 */
        padding: 12%;
    }
}

.table-attention {
    font-size: 2rem;
}

@media (max-width: 768px) {
    .table-attention {
        display: block;
        font-size: 1.4rem !important;
        line-height: 1.5 !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }
}

.micromodal {
    display: none;
}

.micromodal.is-open {
    display: block;
}

.micromodal__content {
    margin-top: 2rem;
    margin-bottom: 2rem;
    line-height: 1.5;
    color: rgba(0, 0, 0, .8);
}

.micromodal__overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.micromodal__container {
    background-color: #fff;
    padding: 10px;
    max-height: 100vh;
    border-radius: 4px;
    overflow-y: auto;
    box-sizing: border-box;
}

@media print,
screen and (max-width:767px) {
    .micromodal__container {
        width: 95vw;
    }
}

@media print,
screen and (min-width:769px) {
    .micromodal__container {
        width: 42vw;
    }
}

.micromodal__header {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    margin-bottom: 10px;
}

.micromodal__title {
    margin-top: 0;
    margin-bottom: 0;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.25;
    color: #313131;
    ;
    box-sizing: border-box;
    margin: auto;
}

.micromodal__header .micromodal__close::before {
    font-size: 1.5em;
    /* Adjust size as needed */
}

.micromodal__close {
    background: transparent;
    border: 0;
    cursor: pointer;
    padding: 5px;
    /* Add some padding for easier clicking */
    font-size: 24px;
}

.micromodal__content {
    margin-top: 2rem;
    margin-bottom: 2rem;
    line-height: 1.5;
    color: rgba(0, 0, 0, .8);
}

.micromodal__btn {
    font-size: .875rem;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: .5rem;
    padding-bottom: .5rem;
    background-color: #E6E6E6;
    color: rgba(0, 0, 0, .8);
    border-radius: .25rem;
    border-style: none;
    border-width: 0;
    cursor: pointer;
    -webkit-appearance: button;
    text-transform: none;
    overflow: visible;
    line-height: 1.15;
    margin: 0;
    will-change: transform;
    -moz-osx-font-smoothing: grayscale;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    transition: -webkit-transform .25s ease-out;
    transition: transform .25s ease-out;
    transition: transform .25s ease-out, -webkit-transform .25s ease-out;
}

.micromodal__btn:focus,
.micromodal__btn:hover {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

.micromodal__btn-primary {
    background-color: #00449E;
    color: #fff;
}

< !--modal-->.attention_title {
    font-size: 3.6rem;
}

.attention_title img {
    width: 5.3rem;
    margin-right: 1.8rem;
}

.red {
    color: #FF3636;
    font-size: 3.4rem;
    line-height: 2.2058823529;
    margin-top: 4rem;
}

.attention_text {
    font-size: 3rem;
    margin-top: 4rem;
}

.attention_box {
    border: 3px solid #f77;
    border-radius: 32px;
    text-align: center;
    padding: 4rem;
    max-width: 70%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20.4rem;
}

/* Responsive styles for attention components within about_box */
@media (max-width: 768px) {
    .attention_box {
        padding: 1.2rem 0.5rem 2rem;
        margin-top: 4rem;
        letter-spacing: 0.01em;
        font-feature-settings: "palt";
        max-width: 95%;
    }

    .attention_box .attention_title {
        font-size: 1.6rem;
    }

    .attention_box .attention_title img {
        width: 2rem;
        vertical-align: middle;
    }

    .red {
        font-size: 1.3rem;
        margin-top: 1rem;
    }

    .attention_box .attention_text {
        font-size: 1.3rem;
        margin-top: 1rem;
    }
}

faq {
    margin-top: 13rem;
    position: relative;
    padding-bottom: 6.5rem;
}

@media (max-width: 768px) {
    .faq {
        padding: 0 1rem;
        margin-top: 5rem;
    }
}

.faq .faq_width {
    max-width: 122rem;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 768px) {
    .faq .faq_width {
        width: 100%;
        padding: 0;
    }
}

.faq .faq_width .section_title {
    font-size: 3.8rem;
    font-weight: 700;
    margin-bottom: 7.7rem;
}

@media (max-width: 768px) {
    .faq .faq_width .section_title {
        font-size: 2.4rem;
        margin-bottom: 2.7rem;
    }
}

.faq .faq_width .faq_wrapper {
    padding: 2.5rem 1rem;
    background: #fff;
    border: 1px solid #707070;
    box-shadow: 0px 4px 1px rgba(0, 229, 255, 0.4);
    border-radius: 19px;
    margin-bottom: 3.6rem;
}

@media (max-width: 768px) {
    .faq .faq_width .faq_wrapper {
        padding: 1.3rem 0;
        border-radius: 9px;
        margin-bottom: 1.6rem;
    }
}

.faq .faq_width .faq_wrapper .question {
    display: flex;
    align-items: center;
    position: relative;
    transition: 0.3s;
    cursor: pointer;
    padding-left: 2.4rem;
}

@media (max-width: 768px) {
    .faq .faq_width .faq_wrapper .question {
        align-items: flex-start;
    }
}

.faq .faq_width .faq_wrapper .question:before {
    content: "";
    position: absolute;
    width: 11px;
    height: 2px;
    background: #707070;
    right: 5.9rem;
    bottom: 50%;
    top: 50%;
    transform: rotate(40deg);
}

@media (max-width: 768px) {
    .faq .faq_width .faq_wrapper .question:before {
        width: 10px;
        height: 1px;
        right: 2.5rem;
    }
}

.faq .faq_width .faq_wrapper .question:after {
    content: "";
    position: absolute;
    width: 11px;
    height: 2px;
    background: #707070;
    right: 5.1rem;
    bottom: 50%;
    top: 50%;
    transform: rotate(-40deg);
}

@media (max-width: 768px) {
    .faq .faq_width .faq_wrapper .question:after {
        width: 10px;
        height: 1px;
        right: 1.7rem;
    }
}

.faq .faq_width .faq_wrapper .question .icon_q {
    width: 2.7rem;
}

@media (max-width: 768px) {
    .faq .faq_width .faq_wrapper .question .icon_q {
        width: 1.3rem;
        padding-top: 0.7rem;
    }
}

.faq .faq_width .faq_wrapper .question .question_title {
    font-size: 2.3rem;
    font-weight: 700;
    margin-left: 1.5rem;
    font-weight: 500;
    padding-right: 5rem;
    font-feature-settings: "palt";
    letter-spacing: 0.01em;
}

@media (max-width: 768px) {
    .faq .faq_width .faq_wrapper .question .question_title {
        font-size: 1.4rem;
        padding-right: 4rem;
    }
}

.faq .faq_width .faq_wrapper .question.open:before {
    transform: rotate(140deg);
}

.faq .faq_width .faq_wrapper .question.open:after {
    transform: rotate(-140deg);
}

.faq .faq_width .faq_wrapper .answer {
    display: none;
    padding-top: 1.8rem;
}

.faq .faq_width .faq_wrapper .answer .answer_flex {
    display: block;
}

@media (max-width: 768px) {
    .faq .faq_width .faq_wrapper .answer .answer_flex {
        align-items: flex-start;
    }
}

.faq .faq_width .faq_wrapper .answer .icon_a {
    width: 8rem;
}

@media (max-width: 768px) {
    .faq .faq_width .faq_wrapper .answer .icon_a {
        width: 7.7rem;
    }
}

.faq .faq_width .faq_wrapper .answer p {
    font-size: 2.3rem;
    line-height: 2;
    padding: 1rem 3rem;
}

@media (max-width: 768px) {
    .faq .faq_width .faq_wrapper .answer p {
        font-size: 1.4rem;
        padding: 0rem 2rem;
    }
}

.faq .table_container {
    padding: 20px;
    border-radius: 10px;
}

.faq .answer_flex p {
    font-size: 2.3rem;
    line-height: 2;
    padding: 1rem 3rem;
}

@media (max-width: 768px) {
    .faq .answer_flex p {
        font-size: 1.4rem;
        padding: 0rem 2rem;
    }
}

.faq .faq_link {
    text-align: center;
    font-size: 2rem;
    margin-top: 9.5rem;
}

@media (max-width: 768px) {
    .faq .faq_link {
        font-size: 1.2rem;
        margin-top: 4rem;
    }
}

.faq .faq_link a {
    text-decoration: underline;
}

.faq .faq_number {
    font-size: 1.8rem;
    text-align: right;
    margin-top: 15.7rem;
    padding-right: 10.7rem;
}

@media (max-width: 768px) {
    .faq .faq_number {
        font-size: 1rem;
        padding-right: 0;
        margin-top: 5.7rem;
        margin-bottom: 1rem;
    }
}

.faq .agency_wrapper {
    font-size: 2rem;
    margin-bottom: 4rem;
    padding-top: 8rem;
    max-width: 122rem;
    margin: 0 auto;
}

.faq .agency_wrapper div {
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .faq .agency_wrapper {
        font-size: 1.2rem;
        padding-top: 3rem;
    }
}

.l-footer {
    background-color: #fff;
    padding: 40px 15px;
}

@media print,
screen and (max-width: 768px) {
    .l-footer {
        padding: 24px 15px
    }
}

.l-footer p {
    margin: 0 auto;
    max-width: 164px
}

@media print,
screen and (max-width: 768px) {
    .l-footer p {
        max-width: 125px
    }
}

/*footer*/
footer .footer-primary {
  background-color: #f2f3f0;
}

footer .footer-inr {
  width: 100%;
  max-width: 948px;
  margin: 0 auto;
  padding: 40px 24px 20px;
  color: #666;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 200;
}

footer .footer-txt {
  margin-top: 16px;
}

footer .footer-info {
  text-align: left;
}

footer .footer-cknum {
  text-align: right;
  margin-top: 20px;
}

footer .footer__copyrightWrap {
  background-color: #c02;
  width: 100%;
  color: #fff;
  text-align: center;
  padding: 20px 0;
}

footer .footer__copyright {
  width: 100%;
  max-width: 948px;
  margin: 0 auto;
  font-size: 14px;
}

@media (max-width: 768px) {
  footer .footer-inr {
    padding: 30px 10px 20px;
    font-size: 10px;
    line-height: 1.7;
    font-weight: 200;
  }

  footer .footer__copyright {
    font-size: 10px;
  }
}

.t-info {
  background: #FFEBEB;
}

.t-info-inr {
  max-width: 126.8rem;
  margin: 0 auto;
  text-align:left;
  padding: 25px 10px;
  line-height: 1;
  font-weight: 400;
}
.t-info-flex {
  display: flex;
  align-items: center;
}

.t-info-top {
  color: #333;
  font-size: 18px;
  padding-right: 10px;
  font-weight: bold;
}

.t-info-txt {
  padding-left: 15px;
  border-left: 1px solid #BDC1C4;
}

.t-info-ttl {
  color: #333;
  font-size: 14px;
  margin-bottom: 10px;
  font-weight: 400;
}

.t-info-sub {
  color: #333;
  font-size: 14px;
  margin-top: 0px;
  margin-bottom: 5px;
}

.t-info-date {
  color: #333;
  font-size: 14px;
  margin-bottom: 10px;
}

.t-info-list {
  color: #333;
  font-size: 14px;
  display: flex;
  flex-wrap: wrap;
  list-style-type: disc;
  line-height: 1.5;
  padding: 0 1.5rem;
  max-width: 740px;
}

.t-info-list .t-info-list-left {
  flex: 1 1 30%;
  list-style-type: disc;
}

.t-info-list .t-info-list-right {
  flex: 1 1 64%;
  list-style-type: disc;
}

.t-info-note {
  font-size: 12px;
}

@media (max-width: 822px) {
  .t-info-flex {
    display: block;
  }

  .t-info-inr {
    line-height: 1.5;
  }

  .t-info-top {
    text-align: center;
    border-bottom: 1px solid #BDC1C4;
    width: 5em;
    margin: 0 auto 10px;
    padding-right: 0;
  }

  .t-info-ttl {
    font-size: 14px;
  }

  .t-info-sub {
    font-size: 14px;
  }

  .t-info-date {
    font-size: 14px;
  }

  .t-info-list {
    font-size: 14px;
  }

  .t-info-txt {
    padding-left: 0px;
    border-left: 0px solid #BDC1C4;
  }

  .t-info-list {
    display: block;
  }
}
