@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

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

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

/*  hero
------------------------------------------------------------------*/
#hero{
    position: relative;
    padding: 180px 30px;
    background: url(../images/hero-bg.png) no-repeat top center / contain;
    text-align: center;
    z-index: 1;
}
@media screen and (max-width:1399px){
    #hero{
        padding: 160px 30px;
    }
}
@media screen and (max-width:991px){
    #hero{
        padding: 100px 3vw 60px;
    }
}

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

/*  about
------------------------------------------------------------------*/
#about{
    position: relative;
    margin-bottom: 100px;
    z-index: 2;
}
#about::after{
    position: absolute;
    top: -10vw;
    left: 0;
    width: 100%;
    aspect-ratio: 1920 / 624;
    background: url(../images/about-bg.png) no-repeat center / cover;
    content: "";
    z-index: -1;
}
@media screen and (max-width:1399px){
    #about{
        margin-bottom: 80px;
    }
}
@media screen and (max-width:991px){
    #about{
        margin-bottom: 60px;
    }
}

/*  about-wrapper
------------------------------------------------------------------*/
.about-wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 30px;
}
@media screen and (max-width:767px){
    .about-wrapper{
        flex-direction: column;
        row-gap: 10px;
    }
}

/*  about-detail
------------------------------------------------------------------*/
.about-detail{
    flex-shrink: 0;
}
@media screen and (max-width:991px){
    .about-detail{
        width: 50%;
    }
}
@media screen and (max-width:767px){
    .about-detail{
        width: 100%;
    }
}

/*  about-image
------------------------------------------------------------------*/
@media screen and (max-width:767px){
    .about-image{
        max-width: 360px;
    }
}

/*  about-title
------------------------------------------------------------------*/
.about-title{
    margin-bottom: 1em;
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1.5;
}
@media screen and (max-width:1399px){
    .about-title{
        font-size: 2.25rem;
    }
}
@media screen and (max-width:1199px){
    .about-title{
        font-size: 2rem;
    }
}
@media screen and (max-width:991px){
    .about-title{
        font-size: 1.5rem;
    }
}
@media screen and (max-width:991px){
    .about-title{
        font-size: 1.25rem;
        text-align: center;
    }
}

/*  about-text
------------------------------------------------------------------*/
.about-text{
    font-size: 1.25rem;
    line-height: 2.5;
}
@media screen and (max-width:1399px){
    .about-text{
        font-size: 1.125rem;
    }
}
@media screen and (max-width:1199px){
    .about-text{
        font-size: 1rem;
    }
}
@media screen and (max-width:991px){
    .about-text{
        font-size: .875rem;
        line-height: 1.75;
    }
}

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

/*  service
------------------------------------------------------------------*/
#service{
    position: relative;
    padding: 120px 0;
    background: linear-gradient(0deg,#fbd4bc 0%, #fea4a4 100%);
    z-index: 1;
}
@media screen and (max-width:1399px){
    #service{
        padding: 100px 0;
    }
}
@media screen and (max-width:991px){
    #service{
        padding: 80px 0;
    }
}
@media screen and (max-width:767px){
    #service{
        padding: 60px 0;
    }
}

/*  service-treat
------------------------------------------------------------------*/
[class^="service-treat"]{
    position: absolute;
    top: 0;
    transform: translateY(-50%);
    z-index: 2;
}
.service-treat01{
    left: 5vw;
}
.service-treat02{
    right: 5vw;
}
@media screen and (max-width:1399px){
    [class^="service-treat"]{
        width: 150px;
    }
}
@media screen and (max-width:991px){
    [class^="service-treat"]{
        width: 120px;
    }
}
@media screen and (max-width:575px){
    [class^="service-treat"]{
        width: 20vw;
    }
    .service-treat01{
        left: 2vw;
    }
    .service-treat02{
        right: 2vw;
    }
}

/*  service-text
------------------------------------------------------------------*/
.service-text{
    margin-bottom: 60px;
    font-size: 1.125rem;
    line-height: 2.25;
    text-align: center;
}
@media screen and (max-width:1399px){
    .service-text{
        font-size: 1rem;
    }
}
@media screen and (max-width:991px){
    .service-text{
        font-size: .875rem;
    }
}
@media screen and (max-width:767px){
    .service-text{
        margin-bottom: 30px;
        text-align: left;
        line-height: 1.75;
    }
}

/*  service-list
------------------------------------------------------------------*/
.service-list{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}
@media screen and (max-width:1399px){
    .service-list{
        gap: 20px;
    }
}
@media screen and (max-width:1199px){
    .service-list{
        grid-template-columns: repeat(2,1fr);
    }
}
@media screen and (max-width:575px){
    .service-list{
        grid-template-columns: 1fr;
    }
}

/*  service-list-item
------------------------------------------------------------------*/
.service-list-item{
    padding: 30px 20px 20px;
    background: #fff;
    border-radius: 20px;
}
.service-list-item .icon{
    width: 100px;
    aspect-ratio: 1 / 1;
    margin: 0 auto 20px;
}
.service-list-item .icon img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.service-list-item .title{
    margin-bottom: .5em;
    font-size: 1.25rem;
    font-weight: bold;
    text-align: center;
    line-height: 1.5;
}
@media screen and (max-width:1399px){
    .service-list-item .icon{
        width: 80px;
    }
    .service-list-item .title{
        font-size: 1.125rem;
    }
}
@media screen and (max-width:575px){
    .service-list-item{
        padding: 24px 20px 20px;
        border-radius: 10px;
    }
}

/*------------------------------------------------------------------
  office
------------------------------------------------------------------*/

/*  office
------------------------------------------------------------------*/
#office{
    position: relative;
    padding: 120px 0;
    z-index: 1;
}
@media screen and (max-width:1399px){
    #office{
        padding: 100px 0;
    }
}
@media screen and (max-width:991px){
    #office{
        padding: 80px 0;
    }
}
@media screen and (max-width:767px){
    #office{
        padding: 60px 0;
    }
}

/*  office-wrapper
------------------------------------------------------------------*/
.office-wrapper{
    display: flex;
    justify-content: space-between;
    column-gap: 60px;
    margin-bottom: 100px;
}
@media screen and (max-width:1199px){
    .office-wrapper{
        margin-bottom: 80px;
    }
}
@media screen and (max-width:991px){
    .office-wrapper{
        column-gap: 30px;
        margin-bottom: 60px;
    }
}
@media screen and (max-width:767px){
    .office-wrapper{
        flex-direction: column;
        row-gap: 30px;
        margin-bottom: 40px;
    }
}

/*  office-detail
------------------------------------------------------------------*/
.office-detail{
    flex-shrink: 0;
}
@media screen and (max-width:1199px){
    .office-detail{
        width: 400px;
    }
}
@media screen and (max-width:991px){
    .office-detail{
        width: 340px;
    }
}
@media screen and (max-width:767px){
    .office-detail{
        width: 100%;
    }
}

/*  office-map
------------------------------------------------------------------*/
.office-map{
    width: 720px;
}
.office-map iframe{
    width: 100%;
    height: 100%;
}
@media screen and (max-width:767px){
    .office-map{
        width: 100%;
        aspect-ratio: 4 / 3;
    }
}

/*  office-table
------------------------------------------------------------------*/
.office-table{
    width: 100%;
    margin-bottom: 40px;
    line-height: 1.5;
}
.office-table > tbody > tr > th,
.office-table > tbody > tr > td{
    padding: 1em;
    vertical-align: middle;
}
.office-table > tbody > tr > th{
    border-bottom: 1px solid var(--primary-color);
    white-space: nowrap;
}
.office-table > tbody > tr > td{
    border-bottom: 1px solid #b4969a;
}
@media screen and (max-width:767px){
    .office-table{
        margin-bottom: 20px;
    }
}

/*  office-box
------------------------------------------------------------------*/
.office-box{
    display: grid;
    grid-template-columns: 200px 1fr;
    column-gap: 30px;
    padding: 40px;
    background: #fff;
    border-radius: 20px;
}
@media screen and (max-width:991px){
    .office-box{
        grid-template-columns: 150px 1fr;
    }
}
@media screen and (max-width:767px){
    .office-box{
        grid-template-columns: 120px 1fr;
        column-gap: 20px;
        padding: 30px;
    }
}
@media screen and (max-width:575px){
    .office-box{
        position: relative;
        grid-template-columns: 1fr;
        padding: 24px 20px;
        border-radius: 10px;
    }
}

/*  office-box-photo
------------------------------------------------------------------*/
.office-box-photo{
    position: relative;
    z-index: 1;
}
@media screen and (max-width:575px){
    .office-box-photo{
        position: absolute;
        top: 20px;
        left: 20px;
        width: 100px;
    }
}

/*  office-box-ceo
------------------------------------------------------------------*/
.office-box-ceo{
    margin-bottom: 24px;
    line-height: 1;
}
.office-box-ceo .position{
    margin-bottom: 12px;
    font-weight: bold;
    color: var(--primary-color);
}
.office-box-ceo .name{
    margin-bottom: 12px;
    font-size: 1.5rem;
    font-weight: bold;
}
.office-box-ceo .type{
    font-size: .875rem;
    color: #624649;
}
@media screen and (max-width:991px){
    .office-box-ceo .name{
        font-size: 1.375rem;
    }
    .office-box-ceo .type{
        font-size: .75rem;
    }
}
@media screen and (max-width:575px){
    .office-box-ceo{
        padding: 10px 0;
        margin-left: 120px;
    }
    .office-box-ceo .name{
        font-size: 1.25rem;
    }
}

/*  office-box-table
------------------------------------------------------------------*/
.office-box-table{
    width: 100%;
    border-top: 1px solid #b4969a;
    line-height: 1.5;
}
.office-box-table > tbody > tr > th,
.office-box-table > tbody > tr > td{
    padding: 1em 0;
    vertical-align: top;
    border-bottom: 1px solid #b4969a;
}
.office-box-table > tbody > tr > th{
    width: 120px;
}

/*------------------------------------------------------------------
  contact
------------------------------------------------------------------*/

/*  contact
------------------------------------------------------------------*/
#contact{
    position: relative;
    margin-bottom: 100px;
    z-index: 1;
}
@media screen and (max-width:991px){
    #contact{
        margin-bottom: 80px;
    }
}
@media screen and (max-width:767px){
    #contact{
        margin-bottom: 60px;
    }
}

/*  contact-tel
------------------------------------------------------------------*/
.contact-tel{
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: .25em;
    margin-bottom: 32px;
    font-size: 3.75rem;
    font-weight: bold;
    line-height: 1;
}
.contact-tel i{
    display: block;
    margin-top: .3em;
    font-size: .7em;
    line-height: 1;
}
.contact-tel span{
    display: block;
}
@media screen and (max-width:1399px){
    .contact-tel{
        font-size: 3rem;
    }
}
@media screen and (max-width:991px){
    .contact-tel{
        margin-bottom: 28px;
        font-size: 2.5rem;
    }
}
@media screen and (max-width:767px){
    .contact-tel{
        font-size: 2.25rem;
    }
}

/*  contact-time
------------------------------------------------------------------*/
.contact-time{
    margin-bottom: 32px;
    font-size: 1.125rem;
    text-align: center;
    line-height: 1.5;
}
@media screen and (max-width:1399px){
    .contact-time{
        font-size: 1rem;
    }
}
@media screen and (max-width:991px){
    .contact-time{
        margin-bottom: 28px;
        font-size: .875rem;
    }
}

/*  contact-caption
------------------------------------------------------------------*/
.contact-caption{
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--primary-color);
    text-align: center;
}
@media screen and (max-width:1399px){
    .contact-caption{
        font-size: 1.125rem;
    }
}
@media screen and (max-width:991px){
    .contact-caption{
        font-size: 1rem;
    }
}
@media screen and (max-width:767px){
    .contact-caption{
        font-size: .875rem;
    }
}