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

　CSS構成

　//絶対に変更しないCSS
　- reset.css           全てのブラウザ固有CSSをリセットするCSS。基本触らないこと。
　- bootstrap.min.css   Bootstrapコンポーネントを利用するためのCSS。基本触らないこと。
　- all.min.css         Font Awesome を利用するためのCSS。基本触らないこと。
　- aos.css             AOSを利用するための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;
    padding: 220px 0;
    background: url(../images/home/hero-bg.jpg) no-repeat top center / 100% 100%;
    overflow: hidden;
    z-index: 1;
}
@media screen and (max-width:1399px){
    .home-hero{
        padding: 180px 0;
    }
}
@media screen and (max-width:1199px){
    .home-hero{
        padding: 100px 0;
    }
}
@media screen and (max-width:767px){
    .home-hero{
        padding: 15vw 0 60px;
    }
}
/*  home-hero-inner
------------------------------------------------------------------*/
.home-hero-inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 30px;
    margin-bottom: 60px;
}
@media screen and (max-width:1399px){
    .home-hero-inner{
        margin-bottom: 40px;
    }
}
@media screen and (max-width:991px){
    .home-hero-inner{
        flex-direction: column;
        row-gap: 30px;
        margin-bottom: 30px;
    }
}
/*  home-hero-detail
------------------------------------------------------------------*/
.home-hero-detail{
    flex-shrink: 0;
}
/*  home-hero-title
------------------------------------------------------------------*/
.home-hero-title{
    margin-bottom: 40px;
    font-size: 3rem;
    font-weight: bold;
    line-height: 1.5;
}
@media screen and (max-width:1399px){
    .home-hero-title{
        margin-bottom: 30px;
        font-size: 3.5vw;
    }
}
@media screen and (max-width:991px){
    .home-hero-title{
        font-size: min(6.5vw,3.5rem);
        text-align: center;
    }
}
@media screen and (max-width:575px){
    .home-hero-title{
        font-size: 10vw;
    }
}
/*  home-hero-text
------------------------------------------------------------------*/
.home-hero-text{
    margin-bottom: 48px;
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.7;
}
@media screen and (max-width:1399px){
    .home-hero-text{
        margin-bottom: 36px;
        font-size: max(1.4vw,1rem);
    }
}
@media screen and (max-width:991px){
    .home-hero-text{
        font-size: clamp(.875rem,2.5vw,1.5rem);
        text-align: center;
    }
}
/*  home-hero-btn
------------------------------------------------------------------*/
.home-hero-btn{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 300px;
    height: 3.5em;
    padding: 0 1em;
    background: linear-gradient(90deg,#ffa36f 0%, #ff726f 50%, #ffa36f 100%);
    background-size: 200% 100%;
    border-radius: 2em;
    font-size: 1.25rem;
    color: #fff;
    text-align: center;
    line-height: 1.2;
    transition: .2s ease-out;
    z-index: 1;
}
/* ホバー時動作 */
@media (hover:hover) {
    .home-hero-btn:hover{
        background-position: -100% 0;
    }
}
@media (hover:none) {
    .home-hero-btn:active{
        background-position: 100% 0;
    }
}
@media screen and (max-width:1399px){
    .home-hero-btn{
        width: 260px;
        font-size: 1.125rem;
    }
}
@media screen and (max-width:991px){
    .home-hero-btn{
        margin: 0 auto;
    }
}
@media screen and (max-width:575px){
    .home-hero-btn{
        width: 240px;
        font-size: 1rem;
    }
}
/*  home-hero-slider
------------------------------------------------------------------*/
.home-hero-slider{
    position: relative;
    width: 540px;
    padding-top: 20px;
    padding-right: 20px;
    z-index: 1;
}
.home-hero-slider::after{
    position: absolute;
    top: 0;
    right: 0;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    background: linear-gradient(135deg,#9ee4dd 0%, #5fbeb4 100%);
    border-radius: 4px 80px 4px 80px;
    content: "";
    content: 1;
    z-index: -1;
}
.home-hero-slider .swiper-slide{
    border-radius: 4px 80px 4px 80px;
    overflow: hidden;
}
@media screen and (max-width:1399px){
    .home-hero-slider{
        width: 44%;
    }
}
@media screen and (max-width:991px){
    .home-hero-slider{
        width: 100%;
        max-width: 800px;
        margin: 0 auto;
    }
}
@media screen and (max-width:575px){
    .home-hero-slider{
        padding-top: 10px;
        padding-right: 10px;
    }
    .home-hero-slider::after{
        width: calc(100% - 10px);
        height: calc(100% - 10px);
        border-radius: 2px 40px 2px 40px;
    }
    .home-hero-slider .swiper-slide{
        border-radius: 2px 40px 2px 40px;
    }
}
/*  home-hero-list
------------------------------------------------------------------*/
.home-hero-list{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    padding: 30px 0;
    background: #fff;
    border-radius: 4px 60px 4px 60px;
    box-shadow: 0 0 12px rgba(107, 192, 183, .2);
}
@media screen and (max-width:1199px){
    .home-hero-list{
        padding: 20px 0;
        border-radius: 2px 30px 2px 30px;
    }
}
@media screen and (max-width:767px){
    .home-hero-list{
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
}
/*  home-hero-list-item
------------------------------------------------------------------*/
.home-hero-list-item{
    padding: 0 20px;
    border-right: 1px solid #b4b4b4;
    text-align: center;
}
.home-hero-list-item:last-of-type{
    border-right: initial;
}
.home-hero-list-item .title{
    margin-bottom: .25em;
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--primary-color);
    line-height: 1.7;
}
.home-hero-list-item .title .caution{
    display: inline-block;
    margin-left: 6px;
    font-size: .75rem;
}
.home-hero-list-item .text{
    font-size: 1.125rem;
    line-height: 1.5;
}
.home-hero-list-item .area{
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 28px;
    line-height: 1.5;
}
@media screen and (max-width:1199px){
    .home-hero-list-item .title{
        font-size: 1.5rem;
    }
    .home-hero-list-item .text{
        font-size: 1rem;
    }
    .home-hero-list-item .area{
        column-gap: 16px;
        font-size: .875rem;
    }
}
@media screen and (max-width:1199px){
    .home-hero-list-item .title{
        font-size: 1.25rem;
    }
    .home-hero-list-item .text{
        font-size: .875rem;
    }
    .home-hero-list-item .area{
        column-gap: 12px;
        font-size: .75rem;
    }
}
@media screen and (max-width:767px){
    .home-hero-list-item{
        padding: 20px 0 24px;
        border-right: initial;
        border-bottom: 1px solid #ccc;
    }
    .home-hero-list-item:last-of-type{
        border-bottom: initial;
    }
    .home-hero-list-item .area{
        flex-direction: column;
        row-gap: 4px;
    }
}

/*------------------------------------------------------------------
  home-about
------------------------------------------------------------------*/

/*  home-about
------------------------------------------------------------------*/
.home-about{
    position: relative;
    background: #f2fbfa;
    z-index: 2;
}
/*  home-about-inner
------------------------------------------------------------------*/
.home-about-inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 60px;
}
@media screen and (max-width:991px){
    .home-about-inner{
        column-gap: 30px;
    }
}
@media screen and (max-width:767px){
    .home-about-inner{
        flex-direction: column;
        justify-content: initial;
        row-gap: 40px;
    }
}
/*  home-about-image
------------------------------------------------------------------*/
.home-about-image{
    margin-left: -80px;
}
@media screen and (max-width:1399px){
    .home-about-image{
        margin-left: -50px;
    }
}
@media screen and (max-width:991px){
    .home-about-image{
        margin-left: -30px;
    }
}
@media screen and (max-width:767px){
    .home-about-image{
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}
/*  home-about-detail
------------------------------------------------------------------*/
.home-about-detail{
    width: 540px;
    flex-shrink: 0;
}
@media screen and (max-width:1199px){
    .home-about-detail{
        width: 480px;
    }
}
@media screen and (max-width:991px){
    .home-about-detail{
        width: 380px;
    }
}
@media screen and (max-width:767px){
    .home-about-detail{
        width: 100%;
    }
}

/*------------------------------------------------------------------
  home-nakama
------------------------------------------------------------------*/

/*  home-probrem
------------------------------------------------------------------*/
.home-probrem{
    position: relative;
    padding-top: 180px;
    background: #f2fbfa;
    z-index: 1;
}
@media screen and (max-width:1399px){
    .home-probrem{
        padding-top: 120px;
    }
}
@media screen and (max-width:1199px){
    .home-probrem{
        padding-top: 100px;
    }
}
@media screen and (max-width:991px){
    .home-probrem{
        padding-top: 80px;
    }
}
/*  home-probrem-list
------------------------------------------------------------------*/
.home-probrem-list{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 12px;
}
.home-probrem-list > li{
    padding: 1.75em 1em;
    background: #e4f5f4;
    border-radius: 4px;
    box-shadow: 0 0 8px rgba(134, 134, 142, .1);
    font-size: 1.25rem;
    text-align: center;
}
.home-probrem-list > li:nth-of-type(2){
    border-top-right-radius: 60px;
}
.home-probrem-list > li:nth-of-type(3){
    border-bottom-left-radius: 60px;
}
@media screen and (max-width:1399px){
    .home-probrem-list > li{
        font-size: 1.125rem;
    }
}
@media screen and (max-width:1199px){
    .home-probrem-list > li{
        font-size: 1rem;
    }
    .home-probrem-list > li:nth-of-type(2){
        border-top-right-radius: 40px;
    }
    .home-probrem-list > li:nth-of-type(3){
        border-bottom-left-radius: 40px;
    }
}
@media screen and (max-width:991px){
    .home-probrem-list > li{
        font-size: .875rem;
    }
    .home-probrem-list > li:nth-of-type(2){
        border-top-right-radius: 20px;
    }
    .home-probrem-list > li:nth-of-type(3){
        border-bottom-left-radius: 20px;
    }
}
@media screen and (max-width:767px){
    .home-probrem-list{
        grid-template-columns: 1fr;
    }
    .home-probrem-list > li{
        padding: 1.25em 1em;
    }
    .home-probrem-list > li:nth-of-type(1){
        border-top-right-radius: 20px;
    }
    .home-probrem-list > li:nth-of-type(2){
        border-top-right-radius: 4px;
    }
    .home-probrem-list > li:nth-of-type(3){
        border-bottom-left-radius: 4px;
    }
    .home-probrem-list > li:nth-of-type(4){
        border-bottom-left-radius: 20px;
    }
}

/*------------------------------------------------------------------
  home-reasons
------------------------------------------------------------------*/

/*  home-reasons
------------------------------------------------------------------*/
.home-reasons{
    position: relative;
    padding: 360px 0 180px;
    background: linear-gradient(0deg, #f2faf9 0%, #6bc3ba 100%);
    z-index: 1;
}
.home-reasons::after{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: url(../images/home/reasons-bg-top.png) no-repeat top center / cover;
    content: "";
    z-index: 1;
}
@media screen and (max-width:1399px){
    .home-reasons{
        padding: 280px 0 120px;
    }
    .home-reasons::after{
        height: 160px;
    }
}
@media screen and (max-width:1199px){
    .home-reasons{
        padding: 200px 0 100px;
    }
    .home-reasons::after{
        height: 120px;
    }
}
@media screen and (max-width:575px){
    .home-reasons{
        padding: 120px 0 40px;
    }
    .home-reasons::after{
        height: 80px;
    }
}
/*  home-reasons-list
------------------------------------------------------------------*/
.home-reasons-list{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    column-gap: 40px;
}
@media screen and (max-width:1399px){
    .home-reasons-list{
        column-gap: 20px;
    }
}
@media screen and (max-width:991px){
    .home-reasons-list{
        grid-template-columns: 1fr;
        row-gap: 20px;
        max-width: 600px;
        margin: 0 auto;
    }
}
/*  home-reasons-list-item
------------------------------------------------------------------*/
.home-reasons-list-item{
    padding: 42px 40px 50px 32px;
    background: #e9f7f6;
    border-top: 8px solid #fff;
    border-left: 8px solid #fff;
    border-radius: 4px 60px 4px 60px;
}
.home-reasons-list-item .title{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 1.375rem;
    font-weight: 500;
    color: var(--primary-color);
    text-align: center;
    line-height: 1.5;
}
.home-reasons-list-item .image{
    width: 100%;
    height: 166px;
    margin-bottom: 20px;
}
.home-reasons-list-item .image img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}
.home-reasons-list-item .text{
    text-align: justify;
}
@media screen and (max-width:1399px){
    .home-reasons-list-item{
        padding: 36px 30px 40px 26px;
        border-top: 4px solid #fff;
        border-left: 4px solid #fff;
        border-radius: 4px 40px 4px 40px;
    }
    .home-reasons-list-item .title{
        font-size: 1.25rem;
    }
    .home-reasons-list-item .image{
        height: 120px;
    }
}
@media screen and (max-width:575px){
    .home-reasons-list-item{
        padding: 36px 20px 40px 16px;
    }
    .home-reasons-list-item .image{
        height: 90px;
    }
}

/*------------------------------------------------------------------
  home-service
------------------------------------------------------------------*/

/*  home-service
------------------------------------------------------------------*/
.home-service{
    position: relative;
    padding: 140px 0;
    background: url(../images/home/service-bg.jpg) no-repeat center / cover;
    overflow: hidden;
    z-index: 2;
}
@media screen and (max-width:991px){
    .home-service{
        padding: 120px 0;
    }
}
@media screen and (max-width:767px){
    .home-service{
        padding: 60px 0;
    }
}
@media screen and (max-width:575px){
    .home-service{
        padding: 20px 0 40px;
    }
}
/*  home-service-list-wrapper
------------------------------------------------------------------*/
.home-service-list-wrapper{
    position: relative;
    margin-bottom: 80px;
    z-index: -1;
}
.home-service-list-wrapper .circle1{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    aspect-ratio: 1 / 1;
    background: url(../images/home/service-circle.png) no-repeat center / cover;
    clip-path: circle();
    content: "";
    z-index: -2;
}
.home-service-list-wrapper .circle2{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-70deg);
    width: 90%;
    aspect-ratio: 1 / 1;
    background-image: conic-gradient(transparent 0deg, #f4fafb 0deg);
    clip-path: circle();
    content: "";
    z-index: -1;
}
.home-service-list-wrapper .line{
    display: none;
}
@media screen and (max-width:1399px){
    .home-service-list-wrapper .circle1{
        width: 95%;
    }
    .home-service-list-wrapper .circle2{
        width: 95%;
    }
}
@media screen and (max-width:1199px){
    .home-service-list-wrapper .circle1{
        width: 110%;
    }
    .home-service-list-wrapper .circle2{
        width: 110%;
    }
}
@media screen and (max-width:991px){
    .home-service-list-wrapper{
        margin-bottom: 60px;
    }
}
@media screen and (max-width:767px){
    .home-service-list-wrapper{
        margin-bottom: 40px;
    }
    .home-service-list-wrapper .circle1{
        display: none;
    }
    .home-service-list-wrapper .circle2{
        display: none;
    }
    .home-service-list-wrapper .line{
        position: absolute;
        top: 20px;
        left: 12px;
        display: block;
        width: 40px;
        height: calc(100% - 40px);
        background-image: linear-gradient(0deg,#ffe0df 0%, #f9dfce 100%);
        z-index: -1;
    }
}
/*  home-service-list
------------------------------------------------------------------*/
.home-service-list{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    column-gap: 30px;
    row-gap: 100px;
}
@media screen and (max-width:1399px){
    .home-service-list{
        row-gap: 90px;
    }
}
@media screen and (max-width:1199px){
    .home-service-list{
        row-gap: 80px;
    }
}
@media screen and (max-width:991px){
    .home-service-list{
        column-gap: 12px;
        row-gap: 70px;
    }
}
@media screen and (max-width:575px){
    .home-service-list{
        row-gap: 60px;
    }
}
/*  home-service-list-item
------------------------------------------------------------------*/
.home-service-list-item{
    position: relative;
    width: calc(50% - 15px);
    max-width: 560px;
    background: #fff;
    box-shadow: 0 0 12px rgba(107, 192, 183, .2);
    border-radius: 4px 20px 4px 20px;
    z-index: 1;
}
.home-service-list-item > .head{
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: flex-end;
    column-gap: 30px;
    padding: 0 40px;
    margin-top: -30px;
}
.home-service-list-item > .head > .num{
    font-family: var(--en-font);
    font-size: 80px;
    font-weight: 500;
    color: #b1e1de;
    line-height: .7;
    letter-spacing: .02em;
}
.home-service-list-item > .head > .title{
    padding: .5em 0;
    background: var(--primary-color);
    border-radius: 4px;
    font-size: 1.375rem;
    font-weight: 500;
    color: #fff;
    line-height: 1.4;
    text-align: center;
}
.home-service-list-item > .text{
    padding: 28px 20px 36px 210px;
    font-size: 1.125rem;
}
.home-service-list-item > .icon{
    position: absolute;
    z-index: 1;
}
.home-service-list-item:nth-of-type(1) > .icon{
    top: 30px;
    left: 10px;
}
.home-service-list-item:nth-of-type(2) > .icon{
    top: 50px;
    left: 30px;
}
.home-service-list-item:nth-of-type(3) > .icon{
    top: 40px;
    left: 40px;
}
.home-service-list-item:nth-of-type(4) > .icon{
    top: 50px;
    left: -10px;
}
@media screen and (max-width:1399px){
    .home-service-list-item > .head > .num{
        font-size: 72px;
    }
    .home-service-list-item > .head > .title{
        font-size: 1.25rem;
    }
    .home-service-list-item > .text{
        font-size: 1rem;
    }
}
@media screen and (max-width:1199px){
    .home-service-list-item > .head{
        column-gap: 16px;
        padding: 0 20px;
    }
    .home-service-list-item > .head > .num{
        font-size: 60px;
    }
    .home-service-list-item > .head > .title{
        font-size: 1.125rem;
    }
    .home-service-list-item > .text{
        padding: 20px 20px 30px 150px;
        font-size: 1rem;
    }
    .home-service-list-item:nth-of-type(1) > .icon{
        width: 120px;
    }
    .home-service-list-item:nth-of-type(2) > .icon{
        top: 30px;
        left: 10px;
        width: 120px;
    }
    .home-service-list-item:nth-of-type(3) > .icon{
        top: 30px;
        left: 20px;
        width: 100px;
    }
    .home-service-list-item:nth-of-type(4) > .icon{
        top: 40px;
        width: 150px;
    }
}
@media screen and (max-width:991px){
    .home-service-list-item{
        width: calc(50% - 6px);
    }
    .home-service-list-item > .head{
        column-gap: 12px;
        padding: 0 8px;
        margin-top: -20px;
    }
    .home-service-list-item > .head > .num{
        font-size: 48px;
    }
    .home-service-list-item > .head > .title{
        font-size: 1rem;
    }
    .home-service-list-item > .text{
        padding: 16px 20px 20px 120px;
        font-size: .875rem;
    }
    .home-service-list-item:nth-of-type(1) > .icon{
        width: 90px;
    }
    .home-service-list-item:nth-of-type(2) > .icon{
        left: 5px;
        width: 100px;
    }
    .home-service-list-item:nth-of-type(3) > .icon{
        top: 30px;
        left: 10px;
        width: 80px;
    }
    .home-service-list-item:nth-of-type(4) > .icon{
        top: 30px;
        width: 120px;
    }
}
@media screen and (max-width:767px){
    .home-service-list-item{
        width: 100%;
        max-width: initial;
    }
}
@media screen and (max-width:575px){
    .home-service-list-item > .head{
        column-gap: 8px;
        padding: 0 4px;
    }
    .home-service-list-item > .text{
        padding: 16px 12px 20px 100px;
    }
    .home-service-list-item:nth-of-type(1) > .icon{
        left: -5px;
    }
    .home-service-list-item:nth-of-type(2) > .icon{
        left: -10px;
    }
    .home-service-list-item:nth-of-type(3) > .icon{
        left: 0;
        width: 70px;
    }
    .home-service-list-item:nth-of-type(4) > .icon{
        left: -20px;
        width: 110px;
    }
}
/*  home-service-example
------------------------------------------------------------------*/
.home-service-example{
    max-width: 530px;
    padding: 50px 60px;
    margin: 0 auto;
    background: #fff;
    border-radius: 4px 40px 4px 40px;
    box-shadow: 0 0 12px rgba(107, 192, 183, .2);
}
@media screen and (max-width:991px){
    .home-service-example{
        max-width: 400px;
        padding: 40px 30px;
    }
}

/*------------------------------------------------------------------
  home-flow
------------------------------------------------------------------*/

/*  home-flow
------------------------------------------------------------------*/
.home-flow{
    position: relative;
    padding: 100px 0 120px;
    background: var(--primary-light-color);
    z-index: 1;
}
@media screen and (max-width:991px){
    .home-flow{
        padding: 80px 0;
    }
}
@media screen and (max-width:767px){
    .home-flow{
        padding: 60px 0;
    }
}
/*  home-flow-list
------------------------------------------------------------------*/
.home-flow-list{
    position: relative;
    display: grid;
    grid-template-columns: repeat(5,1fr);
    column-gap: 20px;
    margin-bottom: 60px;
    z-index: 1;
}
.home-flow-list::after{
    position: absolute;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 3px;
    background: var(--primary-color);
    content: "";
    z-index: -1;
}
@media screen and (max-width:1199px){
    .home-flow-list{
        column-gap: 10px;
    }
}
@media screen and (max-width:991px){
    .home-flow-list{
        grid-template-columns: 1fr;
        row-gap: 10px;
        margin-bottom: 40px;
    }
    .home-flow-list::after{
        position: absolute;
        top: 50%;
        left: 24px;
        transform: translateY(-50%);
        width: 3px;
        height: 80%;
        background: var(--primary-color);
        content: "";
        z-index: -1;
    }
}
@media screen and (max-width:575px){
    .home-flow-list::after{
        left: 19px;
    }
}
/*  home-flow-list-item
------------------------------------------------------------------*/
.home-flow-list-item .num{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin: 0 auto 24px;
    background: var(--primary-color);
    border-radius: 50%;
    font-family: var(--en-font);
    font-size: 1.125rem;
    font-weight: 500;
    color: #fafcfc;
    letter-spacing: .06em;    
}
.home-flow-list-item .body{
    padding: 40px 24px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 0 12px rgba(107, 192, 183, .2);
}
.home-flow-list-item:first-of-type .body{
    border-bottom-left-radius: 40px;
}
.home-flow-list-item:last-of-type .body{
    border-top-right-radius: 40px;
}
.home-flow-list-item .title{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1em;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--primary-color);
    text-align: center;
    line-height: 1.5;
}
.home-flow-list-item .text{
    text-align: justify;
}
@media screen and (max-width:1199px){
    .home-flow-list-item .body{
        padding: 30px 16px;
    }
    .home-flow-list-item:first-of-type .body{
        border-bottom-left-radius: 20px;
    }
    .home-flow-list-item:last-of-type .body{
        border-top-right-radius: 20px;
    }
    .home-flow-list-item .title{
        font-size: 1.125rem;
    }
    .home-flow-list-item .text{
        font-size: .875rem;
    }
}
@media screen and (max-width:991px){
    .home-flow-list-item{
        display: grid;
        grid-template-columns: auto 1fr;
        align-items: center;
        column-gap: 16px;
    }
    .home-flow-list-item .num{
        margin-bottom: 0;
    }
    .home-flow-list-item .body{
        padding: 20px;
    }
    .home-flow-list-item:first-of-type .body{
        border-bottom-left-radius: 4px;
        border-top-right-radius: 20px;
    }
    .home-flow-list-item:last-of-type .body{
        border-top-right-radius: 4px;
        border-bottom-left-radius: 20px;
    }
    .home-flow-list-item .title{
        display: block;
        margin-bottom: 4px;
        text-align: left;
    }
}
@media screen and (max-width:575px){
    .home-flow-list-item{
        column-gap: 8px;
    }
    .home-flow-list-item .num{
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    .home-flow-list-item .body{
        padding: 16px;
    }
    .home-flow-list-item:first-of-type .body{
        border-bottom-left-radius: 4px;
        border-top-right-radius: 20px;
    }
    .home-flow-list-item:last-of-type .body{
        border-top-right-radius: 4px;
        border-bottom-left-radius: 20px;
    }
    .home-flow-list-item .title{
        font-size: 1rem;
    }
}
/*  home-flow-faq
------------------------------------------------------------------*/
.home-flow-faq{
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    column-gap: 70px;
    padding: 60px 100px;
    border-radius: 4px 40px 4px 40px;
    background: linear-gradient(135deg,#5ebdb3 0%, #94dad3 100%);
    box-shadow: 0 0 12px rgba(107, 192, 183, .2);
}
.home-flow-faq .title{
    font-size: 1.75rem;
    font-weight: bold;
    color: #fff;
}
.home-flow-faq .title .en{
    display: inline-block;
    padding-bottom: .5em;
    border-bottom: 1px solid #fff;
    font-family: var(--en-font);
    font-size: max(.57em,.75rem);
    font-weight: 300;
    line-height: 1;
}
.home-flow-faq .title .jp{
    line-height: 1.5;
}
.home-flow-faq .text{
    color: #fff;
}
@media screen and (max-width:1399px){
    .home-flow-faq{
        column-gap: 50px;
        padding: 50px 60px 50px 80px;
    }
}
@media screen and (max-width:1199px){
    .home-flow-faq{
        display: flex;
        flex-direction: column;
        row-gap: 30px;
        padding: 50px 30px;
        text-align: center;
    }
}
@media screen and (max-width:991px){
    .home-flow-faq .title{
        font-size: 1.5rem;
    }
}
@media screen and (max-width:767px){
    .home-flow-faq{
        padding: 20px 20px 40px;
    }
    .home-flow-faq .title{
        font-size: 1.375rem;
    }
}
@media screen and (max-width:374px){
    .home-flow-faq .title{
        font-size: 1.25rem;
    }
}

/*/////////////////////////////////////////////////////////////////
  price.html
/////////////////////////////////////////////////////////////////*/

/*  price-box
------------------------------------------------------------------*/
.price-box{
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 20px;
    background: #fff;
    border-radius: 4px 20px 4px 20px;
    box-shadow: 0 0 12px rgba(107, 192, 183, .2);
    border: 1px solid #fff;
    transition: .2s ease-out;
}
.price-box .image{
    aspect-ratio: 3 / 2;
    margin-bottom: 20px;
    overflow: hidden;
}
.price-box .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .2s ease-out;
}
.price-box .title{
    margin-bottom: 20px;
    font-size: 1.125rem;
    font-weight: 500;
    text-align: center;
    line-height: 1.4;
    transition: .2s ease-out;
}
.price-box .view{
    width: fit-content;
    padding: .25em 2em;
    margin: auto auto 0;
    background: linear-gradient(90deg,#ffa36f 0%, #ff726f 50%, #ffa36f 100%);
    background-size: 200% 100%;
    border-radius: 2em;
    font-size: .75rem;
    color: #fff;
    text-align: center;
    letter-spacing: 0;
    transition: .2s ease-out;
}
@media (hover:hover) {
    .price-box:hover{
        box-shadow: 0 0 24px rgba(107, 192, 183, .8);
        border: 1px solid var(--primary-color);
    }
    .price-box:hover .image img{
        transform: scale(1.1);
        filter: brightness(.6);
    }
    .price-box:hover .view{
        background-position: -100% 0;
    }
}
@media screen and (max-width:991px){
    .price-box .title{
        font-size: 1rem;
    }
}
@media screen and (max-width:575px){
    .price-box{
        padding: 12px;
        border-radius: 4px 10px 4px 10px;
    }
    .price-box .image{
        margin-bottom: 12px;
    }
    .price-box .title{
        margin-bottom: 12px;
        font-size: .875rem;
    }
    .price-box .view{
        font-size: .625rem;
    }
}
/*  price-contents
------------------------------------------------------------------*/
.price-contents{
    margin-bottom: 60px;
}
@media screen and (max-width:767px){
    .price-contents{
        margin-bottom: 40px;
    }
}
/*  price-contents-case
------------------------------------------------------------------*/
.price-contents-case{
    padding: 36px 30px;
    margin-bottom: 20px;
    background: var(--primary-light-color);
    border-radius: 4px 20px 4px 20px;
    box-shadow: 0 0 12px rgba(107, 192, 183, .2);
}
@media screen and (max-width:575px){
    .price-contents-case{
        padding: 24px 16px;
    }
}
/*  price-contents-case-title
------------------------------------------------------------------*/
.price-contents-case-title{
    display: flex;
    align-items: center;
    column-gap: 20px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px dashed #8ca6a3;
}
.price-contents-case-title .en{
    padding: 1em;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 0 12px rgba(107, 192, 183, .2);
    font-family: var(--en-font);
    font-weight: bold;
    color: var(--primary-color);
    letter-spacing: 0;
}
.price-contents-case-title .jp{
    font-weight: bold;
    line-height: 1.5;
}
@media screen and (max-width:575px){
    .price-contents-case-title{
        flex-direction: column;
        align-items: flex-start;
        row-gap: 8px;
    }
    .price-contents-case-title .en{
        padding: .5em 1em;
        font-size: .75rem;
    }
}
/*  price-contents-case-total
------------------------------------------------------------------*/
.price-contents-case-total{
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1.5;
    --letter-spacing: 0;
}
@media screen and (max-width:575px){
    .price-contents-case-total{
        font-size: 1.25rem;
    }
}


/*/////////////////////////////////////////////////////////////////
  flow.html
/////////////////////////////////////////////////////////////////*/

/*  flow-list
------------------------------------------------------------------*/
.flow-list{
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 30px;
}
/*  flow-list-item
------------------------------------------------------------------*/
.flow-list-item{
    position: relative;
    display: grid;
    grid-template-columns: 80px 1fr;
    column-gap: 20px;
    padding: 30px;
    background: #ddf1ef;
    border-radius: 4px 20px 4px 20px;
    border-left: 4px solid #fff;
    border-top: 4px solid #fff;
    box-shadow: 0 0 12px rgba(107, 192, 183, .2);
}
.flow-list-item::after{
    position: absolute;
    bottom: -24px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 15px;
    border-top: 15px solid var(--primary-color);
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    content: "";
    z-index: 1;
}
.flow-list-item:last-of-type::after{
    display: none;
}
.flow-list-item .icon{
    aspect-ratio: 1 / 1;
}
.flow-list-item .icon img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
@media screen and (max-width:575px){
    .flow-list-item{
        grid-template-columns: 48px 1fr;
        column-gap: 8px;
        padding: 20px 12px 20px 8px;
    }
}


/*/////////////////////////////////////////////////////////////////
  company.html
/////////////////////////////////////////////////////////////////*/

/*  company-map
------------------------------------------------------------------*/
.company-map{
    height: 360px;
    margin-bottom: 30px;
    overflow: hidden;
}
.company-map iframe{
    width: 100%;
    height: 100%;
}
@media screen and (max-width:575px){
    .company-map{
        height: auto;
        aspect-ratio: 4 / 3;
    }
}


/*/////////////////////////////////////////////////////////////////
  contact.html
/////////////////////////////////////////////////////////////////*/

/*  contact-tel-box
------------------------------------------------------------------*/
.contact-tel-box{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 30px 20px;
    background: var(--primary-light-color);
    border-radius: 4px 20px 4px 20px;
    box-shadow: 0 0 12px rgba(107, 192, 183, .2);
    text-align: center;
}
.contact-tel-box .title{
    margin-bottom: 5px;
    font-size: 1.375rem;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1.4;
}
.contact-tel-box .num{
    margin-bottom: 5px;
    font-size: 1.25rem;
    font-weight: bold;
    text-align: center;
    line-height: 1;
}
.contact-tel-box .num span{
    font-size: 1.75em;
    letter-spacing: 0;
}
.contact-tel-box .time{
    font-size: 0.875rem;
    line-height: 1.4;
}
@media screen and (max-width:1199px){
    .contact-tel-box .num{
        font-size: 1.125rem;
    }
}
@media screen and (max-width:767px){
    .contact-tel-box{
        padding: 24px 16px;
    }
}
@media screen and (max-width:575px){
    .contact-tel-box .num{
        font-size: 1rem;
    }
    .contact-tel-box .title{
        font-size: 1.25rem;
    }
    .contact-tel-box .time{
        font-size: 0.75rem;
    }
}
@media screen and (max-width:350px){
    .contact-tel-box .num{
        font-size: .875rem;
    }
    .contact-tel-box .title{
        font-size: 1.125rem;
    }
}