@charset "UTF-8";
/*====================================================================================================

　CSS構成

　//絶対に変更しないCSS
　- reset.css           全てのブラウザ固有CSSをリセットするCSS。基本触らないこと。
　- bootstrap.min.css   Bootstrapコンポーネントを利用するためのCSS。基本触らないこと。

　//基本的には変更しないCSS
　- base.css            基本の文字設定や、Webフォントの読み込みなど。基本触らなくてもOK。

　//メインで利用しているCSS
　- common.css          ヘッダー、フッター、下層ページのタイトルなど、共通ページレイアウトを記載したCSS
　- stlye.css           各ページ固有のレイアウトを記載したCSS

　//補助的に利用しているCSS
　- module.css          見出しやリスト、テーブルなど、共通利用できるパーツをまとめたCSS
　- utility.css         マージンやパディング、文字サイズや文字色など、補助的に利用できるCSS

====================================================================================================*/




/*/////////////////////////////////////////////////////////////////
  index.html
/////////////////////////////////////////////////////////////////*/

/*------------------------------------------------------------------
  home-hero
------------------------------------------------------------------*/

/*  home-hero
------------------------------------------------------------------*/
.home-hero{
    position: relative;
    background: var(--primary-color);
    padding-top: 80px;
    overflow: hidden;
    z-index: 1;
}
.home-hero::after{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30px;
    background: #fff;
    content: "";
    z-index: -1;
}
@media screen and (max-width:575px){
    .home-hero::after{
        height: 20px;
    }
}

/*  home-hero-inner
------------------------------------------------------------------*/
.home-hero-inner{
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    column-gap: 50px;
    z-index: 2;
}
@media screen and (max-width:991px){
    .home-hero-inner{
        flex-direction: column;
        align-items: center;
        width: fit-content;
        margin: 0 auto;
        padding-top: 70px;
    }
}

/*  home-hero-detail
------------------------------------------------------------------*/
.home-hero-detail{
    position: relative;
    flex-shrink: 0;
    padding-top: 36px;
    z-index: 3;
}
@media screen and (max-width:991px){
    .home-hero-detail{
        position: static;
        padding-top: 0;
    }
}

/*  home-hero-title
------------------------------------------------------------------*/
.home-hero-title{
    margin-bottom: 33px;
    text-align: center;
}
@media screen and (max-width:991px){
    .home-hero-title{
        position: absolute;
        top: 0;
        right: 0;
        width: min(58%,260px);
        z-index: 2;
    }
}

/*  home-hero-support
------------------------------------------------------------------*/
.home-hero-support{
    display: flex;
    align-items: center;
    column-gap: 15px;
    max-width: 439px;
    padding: 20px 20px 20px 22px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .5);
    box-shadow: 3px 3px 0 rgba(255, 153, 0, 0.25);
}
.home-hero-support .badge{
    flex-shrink: 0;
    width: 129px;
}
.home-hero-support .title{
    font-size: 21px;
    font-weight: 900;
    color: #000;
    line-height: 2;
}
.home-hero-support .text{
    font-size: 14px;
    font-weight: 700;
    color: #000;
    line-height: 1.5;
}
@media screen and (max-width:991px){
    .home-hero-support{
        display: none;
    }
}

/*  home-hero-image
------------------------------------------------------------------*/
.home-hero-image{
    position: relative;
    width: 470px;
    max-width: 100%;
    z-index: 2;
}
@media screen and (max-width:575px){
    .home-hero-image{
        width: 320px;
    }
}

/*  home-hero-airplane
------------------------------------------------------------------*/
.home-hero-airplane{
    position: absolute;
    top: 120px;
    left: 50%;
    width: 72px;
    animation: AirplaneFly 20s linear infinite;
    z-index: 1;
}
.home-hero-airplane img{
    width: 100%;
    height: auto;
}
@keyframes AirplaneFly {
    0%{ transform: translate(0, 0);}
    100%{ transform: translate(-600px, -240px);}
}
@media screen and (max-width:991px){
    .home-hero-airplane{
        top: 180px;
        left: 80%;
    }
}
@media screen and (max-width:575px){
    .home-hero-airplane{
        top: 120px;
    }
}

/*  home-hero-cloud
------------------------------------------------------------------*/
.home-hero-cloud{
    position: absolute;
    z-index: 0;
}
.home-hero-cloud.cloud01{
    top: 0;
    left: 40%;
    width: 48px;
    animation: CloudLoop 100s linear infinite;
}
.home-hero-cloud.cloud02{
    top: 120px;
    left: 90%;
    width: 81px;
    animation: CloudLoop 180s linear infinite;
}
@keyframes CloudLoop {
    0%{ transform: translateX(0); }
    100%{ transform: translateX(-110vw); }
}
@media screen and (max-width:991px){
    .home-hero-cloud.cloud01{
        top: -30px;
        left: 20%;
        animation-duration: 60s;
    }
    .home-hero-cloud.cloud02{
        top: 220px;
        animation-duration: 100s;
    }
}
@media screen and (max-width:575px){
    .home-hero-cloud.cloud02{
        top: 160px;
        left: 80%;
        animation-duration: 100s;
    }
}

/*------------------------------------------------------------------
  home-nav
------------------------------------------------------------------*/

/*  home-nav
------------------------------------------------------------------*/
.home-nav{
    padding: 40px 0;
    background: #fff;
}
@media screen and (max-width:575px){
    .home-nav{
        padding: 20px 0 30px;
    }
}

/*  home-nav-list
------------------------------------------------------------------*/
.home-nav-list{
    display: grid;
    grid-template-columns: repeat(6,1fr);
    gap: 16px;
}
@media screen and (max-width:991px){
    .home-nav-list{
        grid-template-columns: repeat(3,1fr);
        gap: 10px;
    }
}
/*  home-nav-list-item
------------------------------------------------------------------*/
.home-nav-list-item{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    row-gap: 6px;
    height: 96px;
    padding: 12px 5px;
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    background: #fff;
    text-decoration: none;
    transition: .3s ease-out;
}
.home-nav-list-item::after{
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    border-style: solid;
    border-width: 6px 5px 0 5px;
    border-color: var(--primary-color) transparent transparent transparent;
    content: "";
}
.home-nav-list-item .icon{
    width: 28px;
    height: 28px;
    line-height: 1;
}
.home-nav-list-item .icon img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.home-nav-list-item .text{
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
}
/* ホバー時動作 */
@media (hover:hover) {
    .home-nav-list-item:hover{
        background: var(--primary-light-color);
    }
}
@media (hover:none) {
    .home-nav-list-item:active{
        background: var(--primary-light-color);
    }
}
@media screen and (max-width:575px){
    .home-nav-list-item .icon{
        width: 22px;
        height: 22px;
    }
}

/*------------------------------------------------------------------
  home-check
------------------------------------------------------------------*/

/*  home-check
------------------------------------------------------------------*/
.home-check{
    padding: 80px 0;
    border-radius: 30px 30px 0 0;
    background: var(--primary-light-color);
}
@media screen and (max-width:575px){
    .home-check{
        padding: 40px 0;
    }
}

/*  home-check-list
------------------------------------------------------------------*/
.home-check-list{
    counter-reset: check;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 840px;
    margin: 0 auto;
}
@media screen and (max-width:767px){
    .home-check-list{
        flex-direction: column;
        align-items: center;
    }
}

/*  home-check-list-item
------------------------------------------------------------------*/
.home-check-list-item{
    counter-increment: check;
    display: flex;
    flex-direction: column;
    width: calc(50% - 10px);
    max-width: 100%;
    padding: 40px 45px;
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    background: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.6;
}
.home-check-list-item.wide{
    width: 100%;
}
.home-check-list-item > .title{
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 8px;
    margin-bottom: 25px;
    font-size: 16px;
    font-weight: 900;
    line-height: 1.6;
}
.home-check-list-item > .title .badge{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 60px;
    height: 53px;
    padding-top: 8px;
    background: url(../images/check-badge.png) no-repeat center / contain;
    font-family: var(--en-font);
    font-size: 10px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -.3px;
}
.home-check-list-item > .title .badge::after{
    font-size: 16px;
    letter-spacing: -.5px;
    content: counter(check, decimal-leading-zero);
}
.home-check-list-item > .title .main{
    padding-bottom: 4px;
    border-bottom: 3px dotted var(--primary-color);
}
.home-check-list-item .lead{
    margin-bottom: 15px;
    color: var(--accent-color);
    font-size: 20px;
    font-weight: 900;
    line-height: 1.1;
    text-align: center;
}
.home-check-list-item > .image{
    width: 198px;
    margin: 20px auto 40px;
}
@media screen and (max-width:991px){
    .home-check-list-item{
        padding: 30px 25px;
    }
    .home-check-list-item > .title{
        margin: 0 -20px 25px;
    }
}
@media screen and (max-width:767px){
    .home-check-list-item,
    .home-check-list-item.wide{
        width: 100%;
        max-width: 410px;
    }
    .home-check-list-item > .title{
        margin: 0 -20px 25px;
    }
}

/*  home-check-comment
------------------------------------------------------------------*/
.home-check-comment{
    position: relative;
    margin-top: auto;
    padding-bottom: 24px;
}
.home-check-comment .bubble{
    position: relative;
    width: 97%;
    padding: 14px 20px;
    border-radius: 10px;
    background: var(--primary-color);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.6;
}
.home-check-comment .bubble::before{
    position: absolute;
    top: 100%;
    right: 100px;
    border-style: solid;
    border-width: 10px 0 0 20px;
    border-color: var(--primary-color) transparent transparent transparent;
    content: "";
}
.home-check-comment .illust{
    position: absolute;
    right: 0px;
    bottom: 0;
    width: 68px;
}
@media screen and (max-width:991px){
    .home-check-comment .bubble{
        padding: 14px 15px;
    }
}

/*  home-check-point
------------------------------------------------------------------*/
.home-check-point{
    position: relative;
    margin-top: 20px;
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    background: #fff;
    overflow: visible;
}
.home-check-point .title{
    padding: 0 14px;
    border-radius: 8px 8px 0 0;
    background: var(--primary-color);
    font-size: 16px;
    font-weight: 900;
    line-height: 28px;
}
.home-check-point .contents{
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
}
.home-check-point .contents:nth-of-type(even){
    background: #fff3b5;
}
.home-check-point .contents:last-of-type{
    border-radius: 0 0 8px 8px;
}
.home-check-point .illust{
    position: absolute;
    top: -25px;
    right: 12px;
    width: 56px;
}

/*  home-check-sim-row
------------------------------------------------------------------*/
.home-check-sim-row{
    display: flex;
    justify-content: center;
    gap: 24px;
}
@media screen and (max-width:767px){
    .home-check-sim-row{
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
}

/*  home-check-sim-card
------------------------------------------------------------------*/
.home-check-sim-card{
    width: 368px;
    max-width: 100%;
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    background: #fff;
    overflow: hidden;
}
.home-check-sim-card > .title{
    display: flex;
    align-items: center;
    column-gap: 10px;
    height: 40px;
    padding: 0 26px;
    background: var(--primary-color);
}
.home-check-sim-card > .title .name{
    font-size: 20px;
    font-weight: 900;
}
.home-check-sim-card > .title .name.small{
    font-size: 18px;
}
.home-check-sim-card > .title .caption{
    font-size: 14px;
    font-weight: 700;
}
.home-check-sim-card > .head{
    display: flex;
    align-items: center;
    column-gap: 15px;
    padding: 20px 26px;
    background: var(--primary-light-color);
}
.home-check-sim-card > .head .image{
    flex-shrink: 0;
    width: 66px;
    text-align: center;
}
.home-check-sim-card > .head .image img{
    width: auto;
    max-height: 81px;
}
.home-check-sim-card > .body{
    padding: 15px 26px;
}
@media screen and (max-width:991px){
    .home-check-sim-card > .title{
        padding: 0 20px;
    }
    .home-check-sim-card > .head{
        padding: 15px 20px;
    }
    .home-check-sim-card > .body{
        padding: 15px 20px ;
    }
}
/*  home-check-sim-card
------------------------------------------------------------------*/
.home-check-sim-card-merit{
    margin-bottom: 10px;
}
.home-check-sim-card-merit:last-of-type{
    margin-bottom: 0;
}
.home-check-sim-card-merit > .title{
    margin-bottom: 3px;
    color: var(--accent-color);
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 1.6px;
}
.home-check-sim-card-merit > .list > li{
    position: relative;
    padding-left: 19px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.6;
}
.home-check-sim-card-merit > .list > li::before{
    position: absolute;
    top: 6px;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent-color);
    content: "";
}

/*------------------------------------------------------------------
  home-basic
------------------------------------------------------------------*/

/*  home-basic
------------------------------------------------------------------*/
.home-basic{
    padding: 80px 0 64px;
    background: #fff;
    overflow: hidden;
}
@media screen and (max-width:575px){
    .home-basic{
        padding: 40px 0;
    }
}

/*  home-basic-slider
------------------------------------------------------------------*/
.home-basic-slider{
    max-width: 1040px;
    margin: 0 auto 30px;
}
.home-basic-slider .swiper-wrapper{
    justify-content: center;
    gap: 50px;
}
.home-basic-slider .swiper-wrapper > li{
    width: auto;
}
@media screen and (max-width:991px){
    .home-basic-slider .swiper-wrapper{
        gap: initial;
        justify-content: initial;
    }
}

/*  home-basic-slider-image
------------------------------------------------------------------*/
.home-basic-slider-image{
    height: 130px;
}
.home-basic-slider-image img{
    width: auto;
    height: 100%;
}

/*  home-basic-method
------------------------------------------------------------------*/
.home-basic-method{
    max-width: 600px;
    margin: 0 auto;
}
@media screen and (max-width:575px){
    .home-basic-method{
        max-width: 340px;
    }
}

/*  home-basic-method-box
------------------------------------------------------------------*/
.home-basic-method-box{
    padding: 40px;
    border: 5px solid var(--primary-color);
    border-radius: 15px 15px 0 0;
    background: #fff;
}
@media screen and (max-width:575px){
    .home-basic-method-box{
        padding: 25px 14px 14px;
        border-radius: 10px 10px 0 0;
    }
}

/*  home-basic-method-title
------------------------------------------------------------------*/
.home-basic-method-title{
    margin-bottom: 30px;
    font-size: 30px;
    font-weight: 900;
    line-height: 1.4;
    text-align: center;
}
.home-basic-method-title span{
    background: linear-gradient(transparent 65%, var(--primary-color) 0);
}
@media screen and (max-width:575px){
    .home-basic-method-title{
        margin-bottom: 20px;
        font-size: 20px;
    }
}

/*  home-basic-method-list
------------------------------------------------------------------*/
.home-basic-method-list{
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 15px;
}
.home-basic-method-list-item{
    display: flex;
    flex-direction: column;
    width: 146px;
    height: 188px;
    border: 1.5px solid #d9d9d9;
    border-radius: 5px;
    background: #fff;
    overflow: hidden;
}
.home-basic-method-list-item .name{
    height: 39px;
    background: #d9d9d9;
    font-size: 21px;
    font-weight: 700;
    line-height: 39px;
    text-align: center;
}
.home-basic-method-list-item .image{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 62px;
    margin: 8px 0;
}
.home-basic-method-list-item .image img{
    width: auto;
    max-height: 55px;
}
.home-basic-method-list-item .spec{
    display: grid;
    grid-template-columns: auto auto;
    justify-content: center;
    padding-bottom: 12px;
    font-size: 15px;
    font-weight: 900;
    line-height: 1.3;
}
.home-basic-method-list-item .spec dt{
    text-align: right;
}
.home-basic-method-list-item .spec dd{
    text-align: left;
}
.home-basic-method-list-item .spec .mark{
    margin-right: 3px;
    color: var(--accent-color);
}
.home-basic-method-list-item .spec .marker{
    background: linear-gradient(transparent 80%, var(--primary-color) 0);
}
.home-basic-method-list-item.recommend{
    width: 175px;
    height: 225px;
    border: 5px solid var(--primary-color);
}
.home-basic-method-list-item.recommend .name{
    height: 42px;
    background: var(--primary-color);
    font-size: 25px;
    font-weight: 900;
    line-height: 42px;
}
.home-basic-method-list-item.recommend .image{
    height: 78px;
}
.home-basic-method-list-item.recommend .image img{
    max-height: 70px;
}
.home-basic-method-list-item.recommend .spec{
    font-size: 18px;
}
@media screen and (max-width:575px){
    .home-basic-method-list{
        gap: 10px;
    }
    .home-basic-method-list-item{
        width: 97px;
        height: 125px;
        border-width: 1px;
    }
    .home-basic-method-list-item .name{
        height: 26px;
        font-size: 14px;
        line-height: 26px;
    }
    .home-basic-method-list-item .image{
        height: 38px;
        margin: 5px 0;
    }
    .home-basic-method-list-item .image img{
        max-height: 34px;
    }
    .home-basic-method-list-item .spec{
        padding-bottom: 8px;
        font-size: 10px;
    }
    .home-basic-method-list-item.recommend{
        width: 97px;
        height: 125px;
        border-width: 3px;
    }
    .home-basic-method-list-item.recommend .name{
        height: 26px;
        font-size: 14px;
        line-height: 26px;
    }
    .home-basic-method-list-item.recommend .image{
        height: 38px;
    }
    .home-basic-method-list-item.recommend .image img{
        max-height: 34px;
    }
    .home-basic-method-list-item.recommend .spec{
        font-size: 10px;
    }
}

/*  home-basic-method-attention
------------------------------------------------------------------*/
.home-basic-method-attention{
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    column-gap: 24px;
    padding: 8px 30px 0;
    border-radius: 0 0 10px 10px;
    background: var(--primary-color);
}
.home-basic-method-attention .illust{
    position: relative;
    margin-bottom: -7px;
    width: 96px;
    flex-shrink: 0;
}
.home-basic-method-attention .bubble{
    position: relative;
    padding: 10px 20px;
    border: 1px solid #333;
    border-radius: 10px;
    background: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.75;
}
.home-basic-method-attention .bubble::before{
    position: absolute;
    top: 50%;
    left: -15px;
    border-style: solid;
    border-width: 10px 15px 0 0;
    border-color: transparent #333 transparent transparent;
    transform: translateY(-50%);
    content: "";
    z-index: 1;
}
.home-basic-method-attention .bubble::after{
    position: absolute;
    top: calc(50% - 1px);
    left: -12px;
    border-style: solid;
    border-width: 10px 15px 0 0;
    border-color: transparent #fff transparent transparent;
    transform: translateY(-50%);
    content: "";
    z-index: 2;
}
@media screen and (max-width:575px){
    .home-basic-method-attention{
        padding: 8px 15px 0;
        column-gap: 12px;
    }
    .home-basic-method-attention .illust{
        width: 70px;
    }
    .home-basic-method-attention .bubble{
        padding: 10px 0 10px 8px;
        font-size: 12px;
        line-height: 1.3;
    }
}

/*------------------------------------------------------------------
  home-reason
------------------------------------------------------------------*/

/*  home-reason
------------------------------------------------------------------*/
.home-reason{
    padding: 80px 0;
    background: var(--primary-color);
    border-radius: 50px;
    overflow: hidden;
}
@media screen and (max-width:575px){
    .home-reason{
        padding: 30px 0 40px;
    }
}

/*  home-reason-slider
------------------------------------------------------------------*/
.home-reason-slider{
    position: relative;
    overflow: hidden;
}
.home-reason-slider .swiper-wrapper{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 10px;
    margin-bottom: 16px;
}
.home-reason-slider-button-prev,
.home-reason-slider-button-next{
    display: none;
}
.home-reason-slider-pagination{
    display: none;
    justify-content: center;
}
.home-reason-slider-pagination .swiper-pagination-bullet{
    width: 10px;
    height: 10px;
    background: #fff;
    border: 1px solid transparent;
    opacity: 1;
}
.home-reason-slider-pagination .swiper-pagination-bullet-active{
    background: transparent;
    border: 1px solid #fff;
}
@media screen and (max-width:991px){
    .home-reason-slider{
        margin-left: -10px;
        margin-right: -10px;
        padding-left: 10px;
        padding-right: 10px;
    }
    .home-reason-slider .swiper-wrapper{
        display: flex;
        gap: initial;
    }
    .home-reason-slider .swiper-slide{
        width: 340px;
        height: auto;
    }
    .home-reason-slider-button-prev,
    .home-reason-slider-button-next{
        position: absolute;
        top: 50%;
        display: block;
        width: 24px;
        height: 24px;
        border-radius: 50%;
        background: var(--text-color);
        transform: translateY(-50%);
        cursor: pointer;
        z-index: 10;
    }
    .home-reason-slider-button-prev{ left: 0; }
    .home-reason-slider-button-next{ right: 0; }
    .home-reason-slider-button-prev::after,
    .home-reason-slider-button-next::after{
        position: absolute;
        top: 50%;
        left: 50%;
        width: 7px;
        height: 7px;
        border-top: 2px solid #fff;
        border-right: 2px solid #fff;
        content: "";
    }
    .home-reason-slider-button-prev::after{
        transform: translate(-30%, -50%) rotate(-135deg);
    }
    .home-reason-slider-button-next::after{
        transform: translate(-70%, -50%) rotate(45deg);
    }
    .home-reason-slider-pagination{
        display: flex;
    }
}
@media screen and (max-width:575px){
    .home-reason-slider .swiper-slide{
        width: 100%;
    }
}


/*  home-reason-list-item
------------------------------------------------------------------*/
.home-reason-list-item{
    position: relative;
    height: 100%;
    padding: 25px 20px;
    z-index: 1;
}
.home-reason-list-item::before{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background: #fff;
    content: "";
    z-index: -1;
}
.home-reason-list-item .image{
    width: auto;
    height: 80px;
    margin-bottom: 15px;
}
.home-reason-list-item .image img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.home-reason-list-item .title{
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 4px dotted var(--primary-color);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
}
.home-reason-list-item .text{
    font-size: 16px;
    font-weight: 700;
    line-height: 1.75;
}
@media screen and (max-width:991px){
    .home-reason-list-item{
        padding: 50px 20px 25px;
        border-radius: 0 10px 10px 0;
        overflow: hidden;
    }
    .home-reason-list-item::before{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url(../images/reason-bg.svg) no-repeat top center / 100%;
    }
    .home-reason-list-item::after{
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 50%;
        border-radius: 10px;
        background: #fff;
        content: "";
        z-index: -1;
    }
}

/*------------------------------------------------------------------
  home-style
------------------------------------------------------------------*/

/*  home-style
------------------------------------------------------------------*/
.home-style{
    padding: 64px 0 80px;
    background: #fff;
}
@media screen and (max-width:575px){
    .home-style{
        padding: 40px 0;
    }
}

/*  home-style-list
------------------------------------------------------------------*/
.home-style-list{
    display: flex;
    justify-content: center;
    gap: 10px;
}
@media screen and (max-width:991px){
    .home-style-list{
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
}

/*  home-style-list-item
------------------------------------------------------------------*/
.home-style-list-item{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    row-gap: 15px;
    width: 340px;
    padding-top: 35px;
    margin-top: 20px;
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    background: #fff;
}
.home-style-list-item > .name{
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0 28px;
    border-radius: 20px;
    background: var(--primary-color);
    font-size: 18px;
    font-weight: 900;
    line-height: 40px;
    text-align: center;
    white-space: nowrap;
}
.home-style-list-item .image{
    width: 300px;
}
.home-style-list-item .check li{
    position: relative;
    padding-left: 28px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.75;
}
.home-style-list-item .check li::before{
    position: absolute;
    top: 3px;
    left: 0;
    width: 23px;
    height: 23px;
    background: url(../images/icon-check01.svg) no-repeat center / contain;
    content: "";
}
.home-style-list-item .recommend{
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 4px;
}
.home-style-list-item .recommend-btn{
    position: relative;
    top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 270px;
    height: 70px;
    transition: .2s ease-in-out;
    z-index: 1;
}
.home-style-list-item .recommend-btn::before{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    border: 1px solid var(--text-color);
    border-radius: 50px;
    content: "";
    z-index: -1;
}
.home-style-list-item .recommend-btn::after{
    position: absolute;
    top: 5px;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-color);
    border: 1px solid var(--text-color);
    border-radius: 50px;
    content: "";
    transition: .2s ease-in-out;
    z-index: -2;
}
.home-style-list-item .recommend-btn .caption{
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
}
.home-style-list-item .recommend-btn .name{
    font-size: 24px;
    font-weight: 900;
    line-height: 1.3;
}
.home-style-list-item .recommend .plus{
    margin-top: 4px;
    font-size: 24px;
    font-weight: 900;
    line-height: 1;
}
.home-style-list-item .comment{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 15px;
    width: 100%;
    padding: 6px 12px;
    border-radius: 0 0 8px 8px;
    background: var(--primary-color);
}
.home-style-list-item .comment .illust{
    flex-shrink: 0;
}
.home-style-list-item .comment .bubble{
    position: relative;
    padding: 10px;
    background: #fff;
    border: 2px solid #333;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    z-index: 1;
}
.home-style-list-item .comment .bubble.right::before{
    position: absolute;
    top: 20px;
    left: -12px;
    border-width: 0 0 10px 12px;
    border-color: transparent #333 #333 transparent;
    content: "";
    z-index: 1;
}
.home-style-list-item .comment .bubble.right::after{
    position: absolute;
    top: 18px;
    left: -7px;
    border-width: 0 0 10px 12px;
    border-color: transparent #fff #fff transparent;
    content: "";
    z-index: 2;
}
.home-style-list-item .comment .bubble.left::before{
    position: absolute;
    top: 20px;
    right: -12px;
    border-width: 10px 0 0 12px;
    border-color: transparent transparent #333 #333;
    content: "";
    z-index: 1;
}
.home-style-list-item .comment .bubble.left::after{
    position: absolute;
    top: 18px;
    right: -7px;
    border-width: 10px 0 0 12px;
    border-color: transparent transparent #fff #fff;
    content: "";
    z-index: 2;
}
.home-style-list-item .comment .bubble .strong{
    font-size: 14px;
    color: var(--accent-color);
}
@media (hover:hover) {
    .home-style-list-item .recommend-btn:hover{
        top: 5px;
    }
    .home-style-list-item .recommend-btn:hover::after{
        top: 0;
    }
}
@media (hover:none) {
    .home-style-list-item .recommend-btn:active{
        top: 5px;
    }
    .home-style-list-item .recommend-btn:active::after{
        top: 0;
    }
}
@media screen and (max-width:575px){
    .home-style-list-item .image{
        max-width: 300px;
        width: calc(100% - 40px);
    }
}

/*------------------------------------------------------------------
  home-line
------------------------------------------------------------------*/

/*  home-line
------------------------------------------------------------------*/
.home-line{
    padding: 0 0 80px;
    background: #fff;
}
@media screen and (max-width:575px){
    .home-line{
        padding: 0 0 40px;
    }
}

/*  home-line-box
------------------------------------------------------------------*/
.home-line-box{
    max-width: 1040px;
    margin: 0 auto;
    padding: 10px 12px 12px;
    border-radius: 14px;
    background: var(--line-color);
}
@media screen and (max-width:575px){
    .home-line-box{
        max-width: 340px;
        padding: 8px;
        border-radius: 10px;
    }
}

/*  home-line-head
------------------------------------------------------------------*/
.home-line-head{
    width: 381px;
    margin: 12px auto 18px;
}
@media screen and (max-width:575px){
    .home-line-head{
        width: 272px;
        margin: 8px auto 12px;
    }
}

/*  home-line-row
------------------------------------------------------------------*/
.home-line-row{
    display: flex;
    justify-content: center;
    gap: 12px;
}
@media screen and (max-width:767px){
    .home-line-row{
        flex-direction: column;
        align-items: center;
    }
}

/*  home-line-contact
------------------------------------------------------------------*/
.home-line-contact{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 483px;
    max-width: 100%;
    padding: 20px 20px 12px;
    border-radius: 10px;
    background: #fff;
    text-align: center;
}
.home-line-contact .head{
    width: 300px;
    max-width: 100%;
    margin-bottom: 8px;
}
.home-line-contact .text{
    margin-bottom: 12px;
    font-size: 20px;
    font-weight: 900;
    line-height: 1.4;
}
.home-line-contact .btn-line{
    position: relative;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
    width: 100%;
    max-width: 372px;
    height: 56px;
    margin-bottom: 8px;
    border: 1.5px solid var(--text-color);
    border-radius: 28px;
    background: var(--line-color);
    box-shadow: 0 6px 0 #000;
    color: #fff;
    font-size: 20px;
    font-weight: 900;
    text-decoration: none;
    transition: .2s ease-out;
}
.home-line-contact .btn-line .icon{
    display: block;
    width: 28px;
    height: 28px;
    line-height: 1;
}
.home-line-contact .btn-line .icon img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.home-line-contact .id{
    font-size: 14px;
    font-weight: 500;
}
/* ホバー時動作 */
@media (hover:hover) {
    .home-line-contact .btn-line:hover{
        top: 6px;
        box-shadow: 0 0 0 #000;
    }
}
@media (hover:none) {
    .home-line-contact .btn-line:active{
        top: 6px;
        box-shadow: 0 0 0 #000;
    }
}
@media screen and (max-width:575px){
    .home-line-contact{
        padding: 18px 15px 15px;
    }
    .home-line-contact .head{
        width: 214px;
    }
    .home-line-contact .text{
        font-size: 14px;
    }
    .home-line-contact .btn-line{
        width: 266px;
        height: 40px;
        border-radius: 20px;
        box-shadow: 0 5px 0 rgba(61, 61, 61, .25);
    }
    .home-line-contact .btn-line::before{
        width: 24px;
        height: 24px;
        font-size: 8px;
        border-radius: 6px;
    }
    .home-line-contact .id{
        margin-top: 10px;
        font-size: 10px;
    }
}

/*  home-line-add
------------------------------------------------------------------*/
.home-line-add{
    width: 521px;
    max-width: 100%;
    border-radius: 10px;
    background: #fff;
    overflow: hidden;
}
.home-line-add .title{
    height: 55px;
    background: var(--line-color);
    border: 2px solid #fff;
    border-radius: 10px 10px 0 0;
    color: #fff;
    font-size: 22px;
    font-weight: 900;
    line-height: 55px;
    text-align: center;
}
.home-line-add .image{
    width: 429px;
    max-width: calc(100% - 40px);
    margin: 25px auto;
}
@media screen and (max-width:991px){
    .home-line-add{
        display: none;
    }
}

/*------------------------------------------------------------------
  home-timeline
------------------------------------------------------------------*/

/*  home-timeline
------------------------------------------------------------------*/
.home-timeline{
    border-radius: 40px 40px 0 0;
    background: var(--primary-color);
}
@media screen and (max-width:575px){
    .home-timeline{
        border-radius: 50px 50px 0 0;
    }
}

/*  home-timeline-head
------------------------------------------------------------------*/
.home-timeline-head{
    padding: 64px 15px 0;
}
.home-timeline-head .title-outline{
    margin-bottom: 40px;
}
@media screen and (max-width:575px){
    .home-timeline-head{
        padding: 40px 15px 0;
    }
    .home-timeline-head .title-outline{
        margin-bottom: 25px;
    }
}

/*  home-timeline-tab
------------------------------------------------------------------*/
.home-timeline-tab{
    display: flex;
    justify-content: center;
}
.home-timeline-tab-item{
    padding: 16px 0;
    width: 188px;
    border: 3px solid var(--primary-color);
    border-radius: 12px 12px 0 0;
    background: #fff;
    font-size: 18px;
    font-weight: 900;
    text-align: center;
    line-height: 1;
    cursor: pointer;
    transition: .3s ease-out;
}
.home-timeline-tab-item + .home-timeline-tab-item{
    margin-left: -3px;
}
.home-timeline-tab-item.active{
    background: var(--primary-light-color);
    pointer-events: none;
    border-bottom: transparent;
}
/* ホバー時動作 */
@media (hover:hover) {
    .home-timeline-tab-item:hover{
        background: var(--primary-light-color);
    }
}
@media (hover:none) {
    .home-timeline-tab-item:active{
        background: var(--primary-light-color);
    }
}
@media screen and (max-width:575px){
    .home-timeline-tab-item{
        width: 150px;
        padding: 12px 0;
        border-radius: 10px 10px 0 0;
        font-size: 16px;
    }
}

/*  home-timeline-body
------------------------------------------------------------------*/
.home-timeline-body{
    padding: 40px 0 110px;
    background: var(--primary-light-color);
}
@media screen and (max-width:575px){
    .home-timeline-body{
        padding: 30px 0 100px;
    }
}

/*  home-timeline-lead
------------------------------------------------------------------*/
.home-timeline-lead{
    margin-bottom: 40px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.75;
    text-align: center;
}
@media screen and (max-width:575px){
    .home-timeline-lead{
        margin-bottom: 30px;
        text-align: left;
    }
}

/*  home-timeline-list
------------------------------------------------------------------*/
.home-timeline-list{
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}
@media screen and (max-width:991px){
    .home-timeline-list{
        flex-direction: column;
        align-items: center;
    }
}

/*  home-timeline-list-item
------------------------------------------------------------------*/
.home-timeline-list-item{
    position: relative;
    display: flex;
    flex-direction: column;
    row-gap: 15px;
    width: 340px;
    margin-top: 20px;
    padding: 40px 15px 25px;
    background: #fff;
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    z-index: 1;
}
.home-timeline-list-item .title{
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 167px;
    height: 40px;
    border-radius: 20px;
    background: var(--primary-color);
    font-size: 18px;
    font-weight: 900;
    text-align: center;
}
.home-timeline-list-item .image{
    text-align: center;
}
.home-timeline-list-item .step{
    counter-reset: step;
    margin: 0 auto;
}
.home-timeline-list-item .step li{
    position: relative;
    padding-left: 28px;
    counter-increment: step;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.75;
}
.home-timeline-list-item .step li::before{
    position: absolute;
    top: 3px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 23px;
    height: 23px;
    border-radius: 50%;
    background: var(--accent-color);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    content: counter(step);
}
.home-timeline-list-item .step small{
    display: block;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.6;
}
.home-timeline-list-item .btn-support{
    position: relative;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 266px;
    height: 40px;
    margin: 0 auto;
    color: var(--text-color);
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
    transition: .2s ease-out;
    z-index: 1;
}
.home-timeline-list-item .btn-support::before{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid var(--text-color);
    border-radius: 20px;
    background: #fff;
    content: "";
    z-index: -1;
}
.home-timeline-list-item .btn-support::after{
    position: absolute;
    top: 4px;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid var(--text-color);
    border-radius: 20px;
    background: var(--accent-color);
    transition: .2s ease-out;
    content: "";
    z-index: -2;
}
.home-timeline-list-item .btn-support .arrow{
    position: absolute;
    top: 50%;
    right: 14px;
    width: 17px;
    height: 17px;
    line-height: 1;
    transform: translateY(-50%);
}
.home-timeline-list-item .btn-support .arrow img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
/* ホバー時動作 */
@media (hover:hover) {
    .home-timeline-list-item .btn-support:hover{
        top: 4px;
    }
    .home-timeline-list-item .btn-support:hover::after{
        top: 0;
    }
}
@media (hover:none) {
    .home-timeline-list-item .btn-support:active{
        top: 4px;
    }
    .home-timeline-list-item .btn-support:active::after{
        top: 0;
    }
}
@media screen and (max-width:991px){    
    .home-timeline-list-item:not(:last-of-type){
        background: transparent;
        border-color: transparent;
        padding-bottom: 70px;
    }
    .home-timeline-list-item:not(:last-of-type)::before{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        clip-path: polygon(0 0, 100% 0, 100% calc(100% - 40px), 50% 100%, 0 calc(100% - 40px));
        padding: 30px 30px calc(40px + 30px) 30px; /* 矢印高さ + 通常padding */
        background: var(--primary-color);
        content: "";
        z-index: -2;
    }
    .home-timeline-list-item:not(:last-of-type)::after{
        position: absolute;
        top: 2px;
        left: 2px;
        width: calc(100% - 4px);
        height: calc(100% - 4px);
        clip-path: polygon(0 0, 100% 0, 100% calc(100% - 40px), 50% 100%, 0 calc(100% - 40px));
        padding: 30px 30px calc(40px + 30px) 30px; /* 矢印高さ + 通常padding */
        background: #fff;
        content: "";
        z-index: -1;
    }
    
}

/*  home-timeline-parent
------------------------------------------------------------------*/
.home-timeline-parent{
    position: relative;
    display: flex;
    padding: 20px 15px 15px;
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    background: #fff;
}
.home-timeline-parent .body{
    flex-shrink: 1;
    width: 480px;
}
.home-timeline-parent .title{
    padding-bottom: 14px;
    margin-bottom: 14px;
    border-bottom: 3px dotted var(--primary-color);
    font-size: 18px;
    font-weight: 900;
    line-height: 1.2;
    text-align: center;
}
.home-timeline-parent .text{
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.6;
    text-align: center;
}
.home-timeline-parent .box{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 20px;
    background: var(--primary-color);
    border-radius: 10px;
}
.home-timeline-parent .list > li{
    position: relative;
    padding-left: 10px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.6;
}
.home-timeline-parent .list > li::before{
    position: absolute;
    top: 0;
    left: 0;
    content: "・";
}
.home-timeline-parent .image{
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    text-align: center;
}
@media screen and (max-width:991px){
    .home-timeline-parent{
        width: 100%;
        max-width: 340px;
        margin: 0 auto;
    }
    .home-timeline-parent .image{
        display: none;
    }
    .home-timeline-parent .body{
        width: 100%;
    }
    .home-timeline-parent .box{
        width: 100%;
        padding: 16px 12px;
        border-radius: 5px;
    }
}

/*------------------------------------------------------------------
  home-support
------------------------------------------------------------------*/

/*  home-support
------------------------------------------------------------------*/
.home-support{
    position: relative;
    padding: 24px 0 64px;
    background: var(--primary-color);
    z-index: 2;
}
.home-support::after{
    position: absolute;
    top: -40px;
    left: 0;
    width: 100%;
    height: 40px;
    border-radius: 40px 40px 0 0;
    content: "";
    background: var(--primary-color);
}
.home-support .title-outline{
    margin-bottom: 40px;
}
@media screen and (max-width:575px){
    .home-support{
        padding: 0 0 40px;
    }
    .home-support .title-outline{
        margin-bottom: 20px;
    }
}

/*  home-support-list
------------------------------------------------------------------*/
.home-support-list{
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 20px;
}

/*  home-support-list-item
------------------------------------------------------------------*/
.home-support-list-item{
    width: 840px;
    max-width: 100%;
    padding: 40px;
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    background: #fff;
}
.home-support-list-item .head{
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 40px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px dotted var(--primary-color);
}
.home-support-list-item .head .image{
    flex-shrink: 0;
    width: 148px;
}
.home-support-list-item .head .title{
    font-size: 20px;
    font-weight: 900;
    line-height: 1.5;
}
.home-support-list-item .text{
    max-width: 560px;
    margin: 0 auto;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.75;
}
@media screen and (max-width:575px){
    .home-support-list-item{
        width: 340px;
        padding: 20px 25px;
    }
    .home-support-list-item .head{
        column-gap: 20px;
    }
    .home-support-list-item .head .image{
        width: 74px;
    }
}

/*  home-support-banner
------------------------------------------------------------------*/
.home-support-banner{
    position: relative;
    display: flex;
    align-items: center;
    column-gap: 15px;
    max-width: 505px;
    min-height: 160px;
    margin: 15px auto 0;
    padding: 20px;
    border: 3px solid var(--line-color);
    border-radius: 5px;
    background: #fff;
    overflow: hidden;
    transition: .2s ease-out;
    z-index: 1;
}
.home-support-banner::before{
    position: absolute;
    top: -5px;
    left: -5px;
    width: 138px;
    height: 88px;
    background: url(../images/anshin-support-bg.png) no-repeat center / contain;
    content: "";
    z-index: -1;
}
.home-support-banner::after{
    position: absolute;
    bottom: -5px;
    right: -5px;
    transform: rotate(180deg);
    width: 138px;
    height: 88px;
    background: url(../images/anshin-support-bg.png) no-repeat center / contain;
    content: "";
    z-index: -1;
}
.home-support-banner .arrow{
    position: absolute;
    top: 50%;
    right: 17px;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    line-height: 1;
    transition: .2s ease-out;
    z-index: 1;
}
.home-support-banner .arrow img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.home-support-banner .badge{
    flex-shrink: 0;
    width: 131px;
    z-index: 1;
}
.home-support-banner .body{
    z-index: 1;
}
.home-support-banner .body .title{
    font-size: 30px;
    font-weight: 900;
    line-height: 1.5;
}
.home-support-banner .body .title small{
    font-size: 22px;
}
.home-support-banner .body .text{
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
}
@media (hover:hover) {
    .home-support-banner:hover{
        background: var(--line-light-color);
    }
    .home-support-banner:hover .arrow{
        right: 4px;
    }    
}
@media (hover:none) {
    .home-support-banner:active{
        background: var(--line-light-color);
    }
    .home-support-banner:active .arrow{
        right: 10px;
    }    
}
@media screen and (max-width:575px){
    .home-support-banner{
        flex-direction: column;
        row-gap: 5px;
        min-height: 166px;
        padding: 15px;
    }
    .home-support-banner .badge{
        width: 85px;
    }
    .home-support-banner .body .title{
        font-size: 22px;
        text-align: center;
    }
    .home-support-banner .body .text{
        font-size: 13px;
        text-align: center;
    }
    .home-support-banner .arrow{
        right: 8px;
        width: 12px;
        height: 12px;
    }
}

/*------------------------------------------------------------------
  home-links
------------------------------------------------------------------*/

/*  home-links
------------------------------------------------------------------*/
.home-links{
    padding: 55px 0;
    background: #fff;
}
@media screen and (max-width:575px){
    .home-links{
        padding: 30px 0 80px;
    }
}

/*  home-links-list
------------------------------------------------------------------*/
.home-links-list{
    display: flex;
    justify-content: center;
    gap: 16px;
}
.home-links-list li{
    width: 160px;
}
.home-links-list-item{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 6px;
    height: 80px;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    background: #fff;
    text-decoration: none;
    overflow: hidden;
    transition: .3s ease-out;
}
.home-links-list-item::before{
    position: absolute;
    right: 4px;
    bottom: 4px;
    border-style: solid;
    border-width: 0 0 12px 12px;
    border-color: transparent transparent var(--primary-color) transparent;
    content: "";
}
.home-links-list-item .icon{
    display: flex;
    align-items: center;
    height: 18px;
    line-height: 1;
}
.home-links-list-item .icon img{
    width: auto;
    max-height: 18px;
}
.home-links-list-item .text{
    color: var(--text-color);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
}
/* ホバー時動作 */
@media (hover:hover) {
    .home-links-list-item:hover{
        background: var(--primary-light-color);
    }
}
@media (hover:none) {
    .home-links-list-item:active{
        background: var(--primary-light-color);
    }
}


/*/////////////////////////////////////////////////////////////////
  faq.html / info.html 共通
/////////////////////////////////////////////////////////////////*/

/*------------------------------------------------------------------
  faq-nav
------------------------------------------------------------------*/

/*  faq-nav
------------------------------------------------------------------*/
.faq-nav{
    padding: 10px 15px 40px;
    background: #fff;
}

/*  faq-nav-list
------------------------------------------------------------------*/
.faq-nav-list{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: 800px;
    margin: 0 auto;
}
.faq-nav-list li{
    width: calc(25% - 9px);
}
.faq-nav-list-item{
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 8px;
    height: 100%;
    padding: 8px;
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    background: #fff;
    text-decoration: none;
    transition: .3s ease-out;
}
.faq-nav-list-item .icon{
    flex-shrink: 0;
    display: flex;
    align-items: center;
    height: 16px;
}
.faq-nav-list-item .icon img{
    width: auto;
    max-height: 16px;
}
.faq-nav-list-item .text{
    color: var(--text-color);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
}
/* ホバー時動作 */
@media (hover:hover) {
    .faq-nav-list-item:hover{
        background: var(--primary-light-color);
    }
}
@media (hover:none) {
    .faq-nav-list-item:active{
        background: var(--primary-light-color);
    }
}
@media screen and (max-width:767px){
    .faq-nav-list li{
        width: calc(50% - 6px);
    }
}

/*/////////////////////////////////////////////////////////////////
  faq.html
/////////////////////////////////////////////////////////////////*/

/*------------------------------------------------------------------
  faq-category
------------------------------------------------------------------*/

/*  faq-category
------------------------------------------------------------------*/
.faq-category{
    padding: 40px 0 50px;
    background: #fff;
}

/*  faq-category-title
------------------------------------------------------------------*/
.faq-category-title{
    margin-bottom: 25px;
    text-align: center;
}
.faq-category-title .badge{
    position: relative;
    display: inline-block;
    margin-bottom: 8px;
    padding: 2px 20px;
    font-size: 13px;
    font-weight: 700;
    z-index: 1;
}
.faq-category-title .badge::after{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/faq-category-title-badge.png) no-repeat center / contain;
    content: "";
    z-index: -1;
}
.faq-category-title .title{
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 16px;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
}
.faq-category-title .title .icon{
    display: flex;
    align-items: center;
    height: 28px;
}
.faq-category-title .title .icon img{
    width: auto;
    max-height: 28px;
}
@media screen and (max-width:575px){
    .faq-category-title .title{
        font-size: 20px;
    }
}

/*  faq-contents
------------------------------------------------------------------*/
.faq-contents{
    border-bottom: 2px solid var(--primary-color);
}
.faq-contents dt{
    position: relative;
    padding: 20px 60px 20px 34px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.75;
    cursor: pointer;
}
.faq-contents dt::before{
    position: absolute;
    top: 24px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--accent-color);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    content: "?";
}
.faq-contents dt::after{
    position: absolute;
    top: 26px;
    right: 15px;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
    transform: rotate(45deg);
    transition: .3s transform ease-out;
    content: "";
}
.faq-contents dt.open::after{
    transform: translateY(-30%) rotate(225deg);
}
.faq-contents dd{
    padding: 20px;
    margin-bottom: 20px;
    margin-left: 34px;
    background: var(--primary-light-color);
    border-radius: 5px;
    line-height: 1.75;
}
/* ホバー時動作 */
@media (hover:hover) {
    .faq-contents dt:hover{
        color: var(--accent-color);
    }
}
@media (hover:none) {
    .faq-contents dt:active{
        color: var(--accent-color);
    }
}
@media screen and (max-width:575px){
    .faq-contents dt{
        padding: 18px 40px 18px 30px;
        font-size: 15px;
    }
    .faq-contents dt::before{
        top: 19px;
    }
    .faq-contents dt::after{
        top: 24px;
        right: 5px;
    }
    .faq-contents dd{
        padding: 15px;
        margin-bottom: 18px;
        margin-left: 30px;
    }
}


/*/////////////////////////////////////////////////////////////////
  info.html
/////////////////////////////////////////////////////////////////*/

/*------------------------------------------------------------------
  info-title
------------------------------------------------------------------*/
.info-title{
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 15px;
    margin-bottom: 40px;
    padding-bottom: 15px;
    border-bottom: 2px dashed var(--primary-color);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
}
.info-title .icon{
    display: flex;
    align-items: center;
    height: 30px;
}
.info-title .icon img{
    width: auto;
    max-height: 30px;
}
@media screen and (max-width:575px){
    .info-title{
        font-size: 20px;
    }
}

/*------------------------------------------------------------------
  info-type
------------------------------------------------------------------*/

/*  info-type
------------------------------------------------------------------*/
.info-type{
    padding: 20px 0 50px;
    background: #fff;
}

/*  info-type-box
------------------------------------------------------------------*/
.info-type-box{
    margin-top: 25px;
    padding: 25px 30px 30px;
    border-radius: 15px;
    background: var(--primary-color);
}
@media screen and (max-width:575px){
    .info-type-box{
        padding: 20px;
    }
}
/*  info-type-title
------------------------------------------------------------------*/
.info-type-title{
    font-size: 21px;
    font-weight: 900;
    text-align: center;
}
.info-type-title strong{
    font-size: 32px;
    font-weight: 900;
    color: #fff;
    -webkit-text-stroke: 4px #333;
    paint-order: stroke fill;
}
.info-type-title small{
    font-size: 18px;
    font-weight: 900;
}
/*  info-type-table
------------------------------------------------------------------*/
.info-type-table{
    width: 100%;
    border-collapse: separate;
    border-spacing: 1px;
}
.info-type-table > thead > tr > th{
    padding: 12px 10px;
    background: #fff;
    font-size: 21px;
    font-weight: 900;
    text-align: center;
    vertical-align: middle;
    line-height: 1;
}
.info-type-table > thead > tr > th:first-of-type{
    background: transparent;
    font-size: 16px;
}
.info-type-table > thead > tr > th:nth-of-type(2){
    border-top-left-radius: 10px;
}
.info-type-table > thead > tr > th:last-of-type{
    border-top-right-radius: 10px;
}
.info-type-table > thead > tr > th .inner{
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 8px;
}
.info-type-table > thead > tr > th .icon{
    display: inline-block;
    height: 54px;
}
.info-type-table > thead > tr > th .icon img{
    width: auto;
    height: 100%;
}
.info-type-table > tbody > tr > th,
.info-type-table > tbody > tr > td{
    padding: 10px;
}
.info-type-table > tbody > tr > th{
    width: 24%;
    background: #FFF399;
    font-size: 15px;
    font-weight: 900;
    text-align: center;
    vertical-align: middle;
    line-height: 1.5;
}
.info-type-table > tbody > tr > td{
    width: 38%;
    background: #fff;
    font-size: 14px;
    vertical-align: middle;
}
.info-type-table > tbody > tr:first-of-type > th{
    border-top-left-radius: 10px;
}
.info-type-table > tbody > tr:last-of-type > th{
    border-bottom-left-radius: 10px;
}
.info-type-table > tbody > tr:last-of-type > td:last-of-type{
    border-bottom-right-radius: 10px;
}
@media screen and (max-width:575px){
    .info-type-table > thead > tr > th{
        padding: 10px 5px;
        font-size: 16px;
    }
    .info-type-table > thead > tr > th:first-of-type{
        font-size: 12px;
    }
    .info-type-table > thead > tr > th .icon{
        height: 43px;
    }
    .info-type-table > tbody > tr > th,
    .info-type-table > tbody > tr > td{
        padding: 10px 5px;
    }
    .info-type-table > tbody > tr > th{
        font-size: 12px;
    }
}
/*  info-type-check
------------------------------------------------------------------*/
.info-type-check{
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 6px;
    width: fit-content;
    margin: 0 auto;
}
.info-type-check li{
    position: relative;
    padding-left: 24px;
    font-size: 16px;
    font-weight: 900;
    line-height: 1.2;
}
.info-type-check li::before{
    position: absolute;
    top: 0;
    left: 0;
    width: 16px;
    height: 16px;
    background: url(../images/icon-check02.svg) no-repeat center / contain;
    content: "";
}
@media screen and (max-width:575px){
    .info-type-check li{
        font-size: 12px;
        padding-left: 16px;
    }
    .info-type-check li::before{
        width: 12px;
        height: 12px;
    }
}
/*  info-type-text
------------------------------------------------------------------*/
.info-type-text{
    font-size: 12px;
    font-weight: 900;
    text-align: center;
    line-height: 1.5;
}
.info-type-text > span{
    display: block;
}
.info-type-text .strong{
    position: relative;
    color: var(--accent-color);
    font-size: 22px;
    font-weight: 900;
    text-align: center;
    line-height: 1.5;
    z-index: 1;
}
.info-type-text .strong.notneed::after{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    content: url(../images/badge-not-needed.png);
    line-height: 1;
    z-index: -1;
}
.info-type-text .strong.need::after{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    content: url(../images/badge-needed.png);
    line-height: 1;
    z-index: -1;
}
.info-type-text .num{
    color: var(--accent-color);
    font-size: 15px;
    font-weight: 900;
    text-align: center;
    line-height: 1.5;
    z-index: 1;
}
.info-type-text .num > span{
    font-size: 25px;
    line-height: 1;
}
@media screen and (max-width:575px){
    .info-type-text{
        font-size: 11px;
    }
}

/*------------------------------------------------------------------
  info-number
------------------------------------------------------------------*/

/*  info-number
------------------------------------------------------------------*/
.info-number{
    padding: 20px 0 50px;
    background: #fff;
}

/*  info-number-lead
------------------------------------------------------------------*/
.info-number-lead{
    margin-bottom: 40px;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
}
@media screen and (max-width:991px){
    .info-number-lead{
        margin-bottom: 20px;
    }
}

/*  info-number-list
------------------------------------------------------------------*/
.info-number-list{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
}
@media screen and (max-width:991px){
    .info-number-list{
        gap: 10px;
    }
}

/*  info-number-card
------------------------------------------------------------------*/
.info-number-card{
    --card-color: var(--accent-color);
    display: flex;
    flex-direction: column;
    border: 2px solid var(--card-color);
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
}
.info-number-card .head{
    padding: 8px 10px;
    background: var(--card-color);
    color: #fff;
    font-size: 18px;
    font-weight: 900;
    text-align: center;
    line-height: 1.5;
}
.info-number-card .head .caption{
    display: block;
    font-size: 12px;
    font-weight: 700;
}
.info-number-card .illust{
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 86px;
    margin: 12px 0 9px;
}
.info-number-card .illust img{
    width: auto;
    height: 100%;
}
.info-number-card .body{
    position: relative;
    padding: 12px 25px;
    margin-top: auto;
    z-index: 1;
}
.info-number-card .body::after{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--card-color);
    opacity: .3;
    content: "";
    z-index: -1;
}
.info-number-card:nth-of-type(even){
    --card-color: var(--primary-color);
}
.info-number-card:nth-of-type(even) .head{
    color: var(--text-color);
}
@media screen and (max-width:991px){
    .info-number-card .body{
        padding: 12px 10px;
    }
}
/*  info-number-feature
------------------------------------------------------------------*/
.info-number-feature{
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 8px;
    width: fit-content;
    padding-bottom: 12px;
    margin: 0 auto;
}
.info-number-feature li{
    display: flex;
    column-gap: 10px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
}
.info-number-feature .icon{
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
}
.info-number-feature .icon img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
@media screen and (max-width:991px){
.info-number-feature li{
        column-gap: 4px;
        font-size: 12px;
    }
}
/*  info-number-attention
------------------------------------------------------------------*/
.info-number-attention{
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 24px;
    padding-top: 12px;
    border-top: 2px solid var(--card-color);
}
.info-number-attention .title{
    flex-shrink: 0;
    font-size: 16px;
    font-weight: 900;
    color: var(--card-color);    
    -webkit-text-stroke: 2px #333;
    paint-order: stroke fill;
}
.info-number-attention .list{
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 24px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.5;
}
.info-number-attention .list > li{
    display: flex;
    column-gap: 8px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.5;
}
.info-number-attention .list > li .icon{
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    line-height: 1;
}
.info-number-attention .list > li .icon img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
@media screen and (max-width:991px){
    .info-number-attention{
        flex-direction: column;
        padding-top: 8px;
    }
    .info-number-attention .list{
        display: grid;
        grid-template-columns: 1fr;
        row-gap: 4px;
    }
}

/*------------------------------------------------------------------
  info-traffic
------------------------------------------------------------------*/

/*  info-traffic
------------------------------------------------------------------*/
.info-traffic{
    padding: 20px 0 50px;
    background: #fff;
}

/*  info-traffic-comment
------------------------------------------------------------------*/
.info-traffic-comment{
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 15px;
    margin-bottom: -5px;
}
.info-traffic-comment .illust{
    flex-shrink: 0;
    width: 78px;
}
.info-traffic-comment .bubble{
    position: relative;
    padding: 4px 16px;
    border: 2px solid var(--text-color);
    border-radius: 10px;
    background: #fff;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    z-index: 1;
}
.info-traffic-comment .bubble::before{
    position: absolute;
    top: 50%;
    left: -8px;
    transform: translateY(-50%);
    border-width: 5px 12px 5px 0;
    border-color: transparent #fff transparent transparent;
    content: "";
    z-index: -1;
}
.info-traffic-comment .bubble::after{
    position: absolute;
    top: 50%;
    left: -12px;
    transform: translateY(-50%);
    border-width: 5px 12px 5px 0;
    border-color: transparent #333 transparent transparent;
    content: "";
    z-index: -2;
}
.info-traffic-comment .bubble .num{
    font-size: 19px;
}
.info-traffic-comment .bubble .gb{
    font-size: 14px;
}

/*  info-traffic-box
------------------------------------------------------------------*/
.info-traffic-box{
    padding: 20px 40px 35px;
    border-radius: 15px;
    background: var(--primary-color);
}
@media screen and (max-width:767px){
    .info-traffic-box{
        padding: 25px 15px;
    }
}
/*  info-traffic-box-title
------------------------------------------------------------------*/
.info-traffic-box-title{
    width: fit-content;
    margin: 0 auto 12px;
    font-size: 21px;
    font-weight: 900;
    line-height: 1.3;
}
.info-traffic-box-title strong{
    font-size: 32px;
    font-weight: 900;
    color: #fff;
    -webkit-text-stroke: 4px #333;
    paint-order: stroke fill;
}
.info-traffic-box-title small{
    display: block;
    font-size: 10px;
    font-weight: 700;
    text-align: right;
}
/*  info-traffic-box-list
------------------------------------------------------------------*/
.info-traffic-box-list{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}
.info-traffic-box-list .sp{
    display: none;
}
@media screen and (max-width:767px){
    .info-traffic-box-list{
        gap: 10px;
    }
}
@media screen and (max-width:575px){
    .info-traffic-box-list{
        grid-template-columns: repeat(2,1fr);
        gap: 10px;
    }
    .info-traffic-box-list .pc{
        display: none;
    }
    .info-traffic-box-list .sp{
        display: block;
    }
}

/*------------------------------------------------------------------
  info-gb
------------------------------------------------------------------*/

/*  info-gb
------------------------------------------------------------------*/
.info-gb{
    padding: 20px 0 70px;
    background: #fff;
}

/*  info-gb-box
------------------------------------------------------------------*/
.info-gb-box{
    margin-top: 25px;
    padding: 30px 35px 35px;
    border-radius: 15px;
    background: var(--primary-light-color);
}
.info-gb-box-title{
    margin-bottom: 25px;
    font-size: 20px;
    font-weight: 900;
    text-align: center;
}
.info-gb-box-list{
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    max-width: 760px;
    margin: 0 auto;
}
.info-gb-box-list li{
    text-align: center;
}
@media screen and (max-width:767px){
    .info-gb-box{
        padding: 25px 15px;
    }
    .info-gb-box-title{
        font-size: 17px;
    }
}
