@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;
    overflow: hidden;
    z-index: 1;
}
/*  home-hero-video
------------------------------------------------------------------*/
.home-hero-video{
    filter: brightness(.6);
    height: calc(100vh - 100px);
}
.home-hero-video video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media screen and (max-width:1399px){
    .home-hero-video{
        height: calc(100vh - 80px);
    }
}
@media screen and (max-width:991px){
    .home-hero-video{
        height: auto;
        aspect-ratio: 1 / 1;
    }
}
@media screen and (max-width:575px){
    .home-hero-video{
        height: 100vh;
        height: 100svh;
        aspect-ratio: initial;
    }
}
/*  home-hero-detail
------------------------------------------------------------------*/
.home-hero-detail{
    position: absolute;
    left: 3vw;
    bottom: 6vh;
    z-index: 2;
}
@media screen and (max-width:991px){
    .home-hero-detail{
        left: 30px;
        bottom: 50px;
    }
}
@media screen and (max-width:767px){
    .home-hero-detail{
        left: 0;
        bottom: 50%;
        transform: translateY(50%);
        width: 100%;
    }
}
/*  home-hero-catch
------------------------------------------------------------------*/
.home-hero-catch{
    margin-bottom: .25em;
    font-family: var(--en-font);
    font-size: 120px;
    font-weight: bold;
    color: #fff;
    line-height: 1;
}
.home-hero-catch .wrap{
    display: block;
    overflow: hidden;
}
.home-hero-catch .inner{
    display: block;
    transform: translateY(100%);
    animation: homeHeroTitleEn .5s forwards .4s ease-out;
}
@keyframes homeHeroTitleEn {
    from{
        transform: translateY(100%);
    }
    to{
        transform: translateY(0);
    }
}
@media screen and (max-width:991px){
    .home-hero-catch{
        font-size: 11vw;
    }
}
@media screen and (max-width:767px){
    .home-hero-catch{
        font-size: 12vw;
        text-align: center;
    }
}
@media screen and (max-width:575px){
    .home-hero-catch{
        font-size: 14vw;
    }
}
/*  home-hero-title
------------------------------------------------------------------*/
.home-hero-title{
    font-size: 1.25rem;
    color: #fff;
    line-height: 1.7;
}
@media screen and (max-width:991px){
    .home-hero-title{
        font-size: 2vw;
    }
}
@media screen and (max-width:767px){
    .home-hero-title{
        font-size: .875rem;
        text-align: center;
    }
}
/*  home-hero-scroll
------------------------------------------------------------------*/
.home-hero-scroll{
    position: absolute;
    bottom: 0;
    right: 4vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 15px;
    line-height: 1;
    z-index: 1;
}
.home-hero-scroll .text{
    font-family: var(--en-font);
    font-size: 12px;
    font-weight: bold;
    color: #fff;
    writing-mode: vertical-lr;
}
.home-hero-scroll .line{
    position: relative;
    width: 1px;
    height: 200px;
    background: #ccc;
    overflow: hidden;
    z-index: 1;
}
.home-hero-scroll .line .point{
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
    z-index: 1;
    animation: scrollPoint 1.5s ease-out infinite;
}
@keyframes scrollPoint {
    0%{
        top: -50px;
    }
    70%{
        top: 100%;
    }
    100%{
        top: 100%;
    }
}
@media screen and (max-width:991px){
    .home-hero-scroll .line{
        height: 180px;
    }
    .home-hero-scroll .line .point{
        height: 72px;
    }
}
@media screen and (max-width:767px){
    .home-hero-scroll{
        right: 50%;
        transform: translateX(50%);
    }
    .home-hero-scroll .text{
        font-size: 12px;
        writing-mode: horizontal-tb;
    }
    .home-hero-scroll .line{
        height: 150px;
    }
    .home-hero-scroll .line .point{
        height: 60px;
    }
}
@media screen and (max-width:575px){
    .home-hero-scroll .line{
        height: 130px;
    }
    .home-hero-scroll .line .point{
        height: 52px;
    }
}

/*------------------------------------------------------------------
  home-feature
------------------------------------------------------------------*/

/*  home-feature
------------------------------------------------------------------*/
.home-feature{
    position: relative;
    padding: 150px 0;
    background: var(--primary-color);
    z-index: 1;
}
@media screen and (max-width:1399px){
    .home-feature{
        padding: 120px 0;
    }
}
@media screen and (max-width:991px){
    .home-feature{
        padding: 80px 0;
    }
}
/*  home-feature-list
------------------------------------------------------------------*/
.home-feature-list{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    column-gap: 30px;
    margin-top: 100px;
}
@media screen and (max-width:1399px){
    .home-feature-list{
        column-gap: 16px;
    }
}
@media screen and (max-width:991px){
    .home-feature-list{
        grid-template-columns: repeat(2,1fr);
        row-gap: 60px;
        max-width: 600px;
        margin: 80px auto 0;
    }
}
@media screen and (max-width:575px){
    .home-feature-list{
        column-gap: 8px;
        row-gap: 40px;
        margin-top: 60px;
    }
}
/*  home-feature-card
------------------------------------------------------------------*/
.home-feature-card{
    position: relative;
    padding: 40px 20px 32px;
    background: #fff;
    z-index: 1;
}
.home-feature-card .icon{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    aspect-ratio: 1 / 1;
    margin: 0 auto 28px;
}
.home-feature-card .num{
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(-80%);
    width: 100%;
    font-family: var(--en-font);
    font-size: 2.25rem;
    font-weight: bold;
    color: var(--accent-color);
    text-align: center;
    line-height: 0.8;
}
.home-feature-card .num span{
    font-size: 1.66em;
}
.home-feature-card .icon img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.home-feature-card .title{
    margin-bottom: .75em;
    font-size: 1.25rem;
    font-weight: bold;
    text-align: center;
    line-height: 1.5;
}
.home-feature-card .text{
    text-align: center;
    line-height: 1.6;
}
@media screen and (max-width:1399px){
    .home-feature-card{
        padding: 32px 12px 24px;
    }
    .home-feature-card .num{
        font-size: 2rem;
    }
    .home-feature-card .icon{
        width: 80px;
        margin-bottom: 20px;
    }
    .home-feature-card .text{
        font-size: .875rem;
    }
}
@media screen and (max-width:575px){
    .home-feature-card{
        padding: 24px 8px 18px;
    }
    .home-feature-card .icon{
        width: 48px;
        margin-bottom: 16px;
    }
    .home-feature-card .num{
        font-size: 1.5rem;
    }
    .home-feature-card .title{
        font-size: 1rem;
    }
    .home-feature-card .text{
        font-size: .8125rem;
    }
}

/*------------------------------------------------------------------
  home-business
------------------------------------------------------------------*/

/*  home-business
------------------------------------------------------------------*/
.home-business{
    position: relative;
    padding: 200px 0;
    background: var(--black-color);
    z-index: 1;
}
@media screen and (max-width:1399px){
    .home-business{
        padding: 150px 0;
    }
}
@media screen and (max-width:1199px){
    .home-business{
        padding: 120px 0;
    }
}
@media screen and (max-width:991px){
    .home-business{
        padding: 100px 0;
    }
}
@media screen and (max-width:767px){
    .home-business{
        padding: 80px 0;
    }
}
/*  home-business-head
------------------------------------------------------------------*/
.home-business-head{
    display: flex;
    justify-content: space-between;
    column-gap: 60px;
    margin-bottom: 80px;
}
@media screen and (max-width:991px){
    .home-business-head{
        flex-direction: column;
        margin-bottom: 60px;
    }
}
@media screen and (max-width:767px){
    .home-business-head{
        margin-bottom: 40px;
    }
}
/*  home-business-title
------------------------------------------------------------------*/
.home-business-title{
    flex-shrink: 0;
}
/*  home-business-detail
------------------------------------------------------------------*/
.home-business-detail{
    width: 830px;
}
@media screen and (max-width:991px){
    .home-business-detail{
        width: 100%;
    }
}
/*  home-business-list
------------------------------------------------------------------*/
.home-business-list{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    column-gap: 60px;
}
@media screen and (max-width:1399px){
    .home-business-list{
        column-gap: 30px;
    }
}
@media screen and (max-width:991px){
    .home-business-list{
        grid-template-columns: 1fr;
        row-gap: 80px;
        max-width: 600px;
        margin: 0 auto;
    }
}
@media screen and (max-width:575px){
    .home-business-list{
        row-gap: 60px;
    }
}
/*  home-business-card
------------------------------------------------------------------*/
.home-business-card{
    position: relative;
    display: block;
    z-index: 1;
}
.home-business-card .image{
    overflow: hidden;
}
.home-business-card .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(.6);
    transition: .2s ease-out;
}
.home-business-card .body{
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translateY(70%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 20px;
    width: 100%;
    padding: 0 10px;
    z-index: 2;
}
.home-business-card .body .title{
    font-size: 3.75rem;
    font-weight: bold;
}
.home-business-card .body .title .en{
    font-family: var(--en-font);
    color: #fff;
    line-height: 1;
}
.home-business-card .body .title .jp{
    font-size: max(.3333em,.875rem);
    color: var(--accent-color);
    line-height: 1.5;
}
.home-business-card .body .arrow{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 80px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: linear-gradient(90deg,#4c9540 0%, #115344 100%);
    font-size: 16px;
    color: #fff;
    transition: .2s ease-out;
}
/* ホバー時動作 */
@media (hover:hover) {
    .home-business-card:hover .image img{
        transform: scale(1.1);
        filter: brightness(.4);
    }
    .home-business-card:hover .body .arrow{
        transform: scale(.8);
        filter: brightness(1.2);
    }
}
@media (hover:none) {
    .home-business-card:active .head .image img{
        transform: scale(1.1);
        filter: brightness(.4);
    }
    .home-business-card:active .body .arrow{
        transform: scale(.8);
        filter: brightness(1.2);
    }
}
@media screen and (max-width:1399px){
    .home-business-card .body .title{
        font-size: 3rem;
    }
    .home-business-card .body .arrow{
        width: 60px;
        font-size: 12px;
    }
}
@media screen and (max-width:575px){
    .home-business-card .body{
        padding: 0 4px 0 8px;
    }
    .home-business-card .body .title{
        font-size: 2.25rem;
    }
    .home-business-card .body .arrow{
        width: 48px;
        font-size: 10px;
    }
}

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

/*  home-links
------------------------------------------------------------------*/
.home-links{
    display: grid;
    grid-template-columns: repeat(2,1fr);
}
@media screen and (max-width:575px){
    .home-links{
        grid-template-columns: 1fr;
    }     
}
/*  home-links-item
------------------------------------------------------------------*/
.home-links-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 450px;
    background: var(--primary-color);
    text-align: center;
    transition: .2s ease-out;
}
.home-links-item.sub{
    background: var(--sub-color);
}
.home-links-item .title{
    margin-bottom: .4em;
    font-size: 90px;
    font-weight: bold;
}
.home-links-item .title .en{
    margin-bottom: .1em;
    font-family: var(--en-font);
    font-feature-settings: "palt";
    line-height: 1;
}
.home-links-item .title .jp{
    font-size: max(.26666em,.875rem);
    color: var(--accent-color);
    line-height: 1.5;
}
.home-links-item .arrow{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 80px;
    aspect-ratio: 1 / 1;
    margin: 0 auto;
    border-radius: 50%;
    background: linear-gradient(90deg,#4c9540 0%, #115344 100%);
    font-size: 16px;
    color: #fff;
    transition: .2s ease-out;
}
/* ホバー時動作 */
@media (hover:hover) {
    .home-links-item:hover{
        filter: brightness(1.4);
    }
    .home-links-item:hover .arrow{
        transform: scale(.8);
    }
}
@media (hover:none) {
    .home-links-item:active{
        filter: brightness(1.4);
    }
    .home-links-item:active .arrow{
        transform: scale(.8);
    }
}
@media screen and (max-width:1399px){
    .home-links-item{
        height: 320px;
    }
    .home-links-item .title{
        font-size: 72px;
    }
    .home-links-item .arrow{
        width: 64px;
        font-size: 14px;
    }
}
@media screen and (max-width:991px){
    .home-links-item{
        height: 280px;
    }
    .home-links-item .title{
        font-size: 64px;
    }
    .home-links-item .arrow{
        width: 52px;
        font-size: 12px;
    }
}
@media screen and (max-width:767px){
    .home-links-item{
        height: 240px;
    }
    .home-links-item .title{
        font-size: 56px;
    }
    .home-links-item .arrow{
        width: 48px;
        font-size: 10px;
    }
}
@media screen and (max-width:575px){
    .home-links-item{
        flex-direction: row;
        justify-content: space-between;
        height: initial;
        padding: 30px 20px;
        text-align: left;
    }
    .home-links-item .title{
        margin-bottom: 0;
        font-size: 40px;
    }
    .home-links-item .arrow{
        width: 48px;
        margin: 0;
        font-size: 10px;
    }
}

/*------------------------------------------------------------------
  home-topics
------------------------------------------------------------------*/

/*  home-topics
------------------------------------------------------------------*/
.home-topics{
    position: relative;
    padding: 150px 0;
    background: #efefef;
    overflow: hidden;
    z-index: 1;
}
@media screen and (max-width:1399px){
    .home-topics{
        padding: 120px 0;
    }
}
@media screen and (max-width:991px){
    .home-topics{
        padding: 100px 0;
    }
}
@media screen and (max-width:767px){
    .home-topics{
        padding: 80px 0;
    }
}
/*  home-topics-wrapper
------------------------------------------------------------------*/
.home-topics-wrapper{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    column-gap: 60px;
}
@media screen and (max-width:1199px){
    .home-topics-wrapper{
        flex-direction: column;
        justify-content: initial;
        align-items: initial;
        margin-bottom: 40px;
    }
}
/*  home-topics-titlearea
------------------------------------------------------------------*/
.home-topics-titlearea{
    flex-shrink: 0;
}
/* home-topics-list
------------------------------------------------------------------*/
.home-topics-list{
    width: 100%;
    max-width: 1000px;
    max-height: 500px;
    overflow-y: auto;
}
.home-topics-list::-webkit-scrollbar{
    width: 5px;
}
.home-topics-list::-webkit-scrollbar-track{
    background: #ccc;
}
.home-topics-list::-webkit-scrollbar-thumb{
    background: var(--black-color);
}
/* home-topics-list-item
------------------------------------------------------------------*/
.home-topics-list-item{
    position: relative;
    display: block;
    padding: 1.5em 4em 1.5em 0;
    border-bottom: 1px solid #ccc;
    transition: .2s ease-out;
    z-index: 1;
}
.home-topics-list-item::after{
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg,#74c267 0%, #308270 100%);
    opacity: 0;
    content: "";
    transition: .4s ease-out;
    z-index: -1;
}
.home-topics-list-item .detail{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 20px;
    row-gap: 8px;
    margin-bottom: 8px;
}
.home-topics-list-item .new{
    font-size: .875rem;
    color: var(--red-color);
    line-height: 1;
}
.home-topics-list-item .date{
    font-size: .875rem;
    color: #555;
    line-height: 1;
}
.home-topics-list-item .category{
    padding: .3em 1em .35em;
    font-size: .75rem;
    line-height: 1;
}
.home-topics-list-item .title{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    line-height: 1.5;
    transition: .2s ease-out;
}
.home-topics-list-item .arrow{
    position: absolute;
    top: 50%;
    right: .5em;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3em;
    aspect-ratio: 1 / 1;
    background: #fff;
    border-radius: 50%;
    border: 1px solid var(--black-color);
    transition: .2s ease-out;
    z-index: 1;
}
.home-topics-list-item .arrow i{
    font-size: 12px;
}
/* ホバー時動作 */
@media (hover:hover) {
    a.home-topics-list-item:hover{
        padding: 1.5em 4em 1.5em 1em;
    }
    a.home-topics-list-item:hover::after{
        width: 100%;
        opacity: 1;
    }
    a.home-topics-list-item:hover .date{
        color: #fff;
    }
    a.home-topics-list-item:hover .title{
        color: #fff;
    }
    a.home-topics-list-item:hover .arrow{
        transform: translateY(-50%) scale(.8);
        background: var(--accent-color);
        border-color: var(--accent-color);
        color: #fff;
    }
}
@media (hover:none) {
    a.home-topics-list-item:active{
        padding: 1.5em 4em 1.5em 1em;
    }
    a.home-topics-list-item:active::after{
        width: 100%;
        opacity: 1;
    }
    a.home-topics-list-item:active .time{
        color: #fff;
    }
    a.home-topics-list-item:active .title{
        color: #fff;
    }
    a.home-topics-list-item:active .arrow{
        transform: translateY(-50%) scale(.8);
        background: var(--accent-color);
        border-color: var(--accent-color);
    }
}
@media screen and (max-width:991px){
    .home-topics-list-item .detail{
        column-gap: 8px;
    }
    .home-topics-list-item .new{
        font-size: .75rem;
    }
    .home-topics-list-item .date{
        font-size: .75rem;
    }
}
@media screen and (max-width:575px){
    .home-topics-list-item{
        padding: 1.5em 0;
    }
    .home-topics-list-item .title{
        -webkit-line-clamp: 2;
    }
    .home-topics-list-item .arrow{
        display: none;
    }
    /* ホバー時動作 */
    @media (hover:hover) {
        a.home-topics-list-item:hover{
            padding: 1.5em 1em;
        }
    }
    @media (hover:none) {
        a.home-topics-list-item:active{
            padding: 1.5em 1em;
        }
    }
}

/*------------------------------------------------------------------
  home-map
------------------------------------------------------------------*/

/*  home-map
------------------------------------------------------------------*/
.home-map{
    height: 450px;
}
.home-map iframe{
    width: 100%;
    height: 100%;
}
@media screen and (max-width:1399px){
    .home-map{
        height: 360px;
    }
}
@media screen and (max-width:767px){
    .home-map{
        height: auto;
        aspect-ratio: 4 / 3;
    }
}

/*/////////////////////////////////////////////////////////////////
  topics.html
/////////////////////////////////////////////////////////////////*/


/*  topics-detail
------------------------------------------------------------------*/
.topics-detail{
    display: flex;
    align-items: center;
    column-gap: 12px;
    margin-bottom: 12px;
}
.topics-detail .new{
    font-size: .875rem;
    color: var(--red-color);
    line-height: 1;
}
.topics-detail .date{
    font-size: .875rem;
    color: #666;
    line-height: 1;
}
.topics-detail .category{
    display: inline-block;
    padding: .3em 1em .35em;
    font-size: .75rem;
    line-height: 1;
}
@media screen and (max-width:575px){
    .topics-detail{
        column-gap: 8px;
    }
    .topics-detail .date{
        font-size: .75rem;
    }
}
/*  topics-list
------------------------------------------------------------------*/
.topics-list{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    column-gap: 20px;
    row-gap: 30px;
    margin-bottom: 30px;
}
@media screen and (max-width:991px){
    .topics-list{
        column-gap: 12px;
        row-gap: 20px;
    }
}
@media screen and (max-width:767px){
    .topics-list{
        grid-template-columns: repeat(2,1fr);
    }
}
@media screen and (max-width:575px){
    .topics-list{
        column-gap: 8px;
    }
}
/*  topics-card
------------------------------------------------------------------*/
.topics-card{
    display: block;
}
.topics-card .image{
    margin-bottom: 12px;
    aspect-ratio: 3 / 2;
    overflow: hidden;
}
.topics-card .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .2s ease-out;
}
.topics-card .text{
    text-align: center;
    line-height: 1.5;
    transition: .2s ease-out;
}
/* ホバー時動作 */
@media (hover:hover) {
    .topics-card:hover .image img{
        transform: scale(1.1);
        filter: brightness(.6);
    }
    .topics-card:hover .text{
        color: var(--accent-color);
    }
}
@media (hover:none) {
    .topics-card:active .image img{
        transform: scale(1.1);
        filter: brightness(.6);
    }
    .topics-card:active .text{
        color: var(--accent-color);
    }
}
@media screen and (max-width:575px){
    .topics-card .image{
        margin-bottom: 8px;
    }
    .topics-card .text{
        font-size: .75rem;
    }
}

/*/////////////////////////////////////////////////////////////////
  construction.html
/////////////////////////////////////////////////////////////////*/

/*  work-list
------------------------------------------------------------------*/
.work-list{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    column-gap: 20px;
    row-gap: 40px;
}
@media screen and (max-width:991px){
    .work-list{
        column-gap: 12px;
        row-gap: 30px;
    }
}
@media screen and (max-width:767px){
    .work-list{
        grid-template-columns: repeat(2,1fr);
    }
}
@media screen and (max-width:575px){
    .work-list{
        column-gap: 8px;
        row-gap: 24px;
    }
}
/*  work-card
------------------------------------------------------------------*/
.work-card{
    display: block;
}
.work-card .image{
    margin-bottom: 12px;
    aspect-ratio: 3 / 2;
    overflow: hidden;
}
.work-card .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .2s ease-out;
}
.work-card .text{
    text-align: center;
    line-height: 1.5;
    transition: .2s ease-out;
}
/* ホバー時動作 */
@media (hover:hover) {
    .work-card:hover .image img{
        transform: scale(1.1);
        filter: brightness(.6);
    }
    .work-card:hover .text{
        color: var(--accent-color);
    }
}
@media (hover:none) {
    .work-card:active .image img{
        transform: scale(1.1);
        filter: brightness(.6);
    }
    .work-card:active .text{
        color: var(--accent-color);
    }
}
@media screen and (max-width:575px){
    .work-card .image{
        margin-bottom: 8px;
    }
    .work-card .text{
        font-size: .75rem;
    }
}


/*  work-flow
------------------------------------------------------------------*/
.work-flow{
    overflow: hidden;
}
@media screen and (max-width:575px){
    .work-flow{
        margin-left: -4vw;
    }
}
/*  work-flow-item
------------------------------------------------------------------*/
.work-flow-item{
    position: relative;
    padding-left: 120px;
    padding-bottom: 40px;
    z-index: 1;
}
.work-flow-item::after{
    position: absolute;
    top: 0;
    left: 44px;
    width: 2px;
    height: 100%;
    background: var(--primary-color);
    content: "";
    z-index: -1;
}
.work-flow-item:last-of-type{
    padding-bottom: 10px;
}
.work-flow-item:last-of-type::after{
    display: none;
}
.work-flow-item .num{
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    aspect-ratio: 1 / 1;
    background: var(--primary-color);
    border-radius: 50%;
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    letter-spacing: 0;
    line-height: 1;
    z-index: 1;
}
.work-flow-item .title{
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid #ccc;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.5;
}
.work-flow-item .text{
    line-height: 1.7;
}
@media screen and (max-width:1399px){
    .work-flow-item{
        padding-left: 100px;
        padding-bottom: 36px;
    }
    .work-flow-item::after{
        left: 39px;
    }
    .work-flow-item .num{
        width: 80px;
        font-size: 20px;
    }
    .work-flow-item .title{
        font-size: 1.375rem;
    }
}
@media screen and (max-width:991px){
    .work-flow-item{
        padding-left: 90px;
        padding-bottom: 30px;
    }
    .work-flow-item::after{
        left: 35px;
    }
    .work-flow-item .num{
        width: 72px;
        font-size: 18px;
    }
    .work-flow-item .title{
        font-size: 1.25rem;
    }
}
@media screen and (max-width:575px){
    .work-flow-item{
        padding-left: 52px;
        padding-bottom: 20px;
    }
    .work-flow-item::after{
        left: 21px;
        width: 1px;
    }
    .work-flow-item .num{
        width: 42px;
        font-size: 12px;
    }
    .work-flow-item .title{
        padding-bottom: 8px;
        margin-bottom: 8px;
        font-size: 1.125rem;
    }
}

/*  qa-area
------------------------------------------------------------------*/
.qa-area{
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 20px;
}
/*  qa-item
------------------------------------------------------------------*/
.qa-item dt{
    --toggle: "＋";
    position: relative;
    padding: 1em 2.5em;
    background: #e0e0e0;
    border: 1px solid #e0e0e0;
    font-weight: bold;
    line-height: 1.7;
    cursor: pointer;
    z-index: 1;
}
.qa-item dt::before{
    position: absolute;
    top: .25em;
    left: .5em;
    content: "Q";
    font-size: 1.5em;
    color: var(--accent-color);
    z-index: 1;
}
.qa-item dt::after{
    position: absolute;
    top: .35em;
    right: .5em;
    content: var(--toggle);
    font-size: 1.5em;
    z-index: 1;
}
.qa-item dd{
    position: relative;
    display: none;
    padding: 1em;
    border: 1px solid #e0e0e0;
    line-height: 1.7;
    z-index: 1;
}

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

/*  company-map
------------------------------------------------------------------*/
.company-map{
    height: 360px;
    margin-bottom: 20px;
}
.company-map iframe{
    width: 100%;
    height: 100%;
}
@media screen and (max-width:767px){
    .company-map{
        height: auto;
        aspect-ratio: 4 / 3;
    }
}
/*  company-access-box
------------------------------------------------------------------*/
.company-access-box{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    column-gap: 30px;
    row-gap: 20px;
    padding: 30px;
    background: #fff;
}
@media screen and (max-width:767px) {
    .company-access-box{
        flex-direction: column;
        justify-content: center;
        padding: 30px 12px;
        text-align: center;
    }
}

/*/////////////////////////////////////////////////////////////////
  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: #efefef;
    text-align: center;
}
.contact-tel-box .title{
    margin-bottom: 12px;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent-color);
    line-height: 1.4;
}
.contact-tel-box .num{
    margin-bottom: 16px;
    font-size: 1.25rem;
    font-weight: bold;
    text-align: center;
    line-height: 1;
    --letter-spacing: 0;
}
.contact-tel-box .num span{
    font-size: 2em;
    letter-spacing: 0;
}
.contact-tel-box .time{
    font-size: 0.875rem;
    line-height: 1.4;
}
@media screen and (max-width:767px){
    .contact-tel-box{
        padding: 24px 16px;
    }
    .contact-tel-box .title{
        margin-bottom: 8px;
        font-size: 1.25rem;
    }
    .contact-tel-box .num{
        font-size: 1rem;
    }
    .contact-tel-box .time{
        font-size: .75rem;
    }
}
@media screen and (max-width:575px){
    .contact-tel-box .title{
        font-size: 1.125rem;
    }
    .contact-tel-box .num{
        margin-bottom: 12px;
        font-size: .875rem;
    }
}
@media screen and (max-width:350px){
    .contact-tel-box .num{
        font-size: .875rem;
    }
    .contact-tel-box .title{
        font-size: 1.125rem;
    }
}

.form-error{
    position: relative;
    padding-left: 1.25em;
    margin-top: 5px;
    color: var(--red-color);
}
.form-error::before{
    position: absolute;
    top: 0;
    left: 0;
    content: "\f057";
    font-family: "Font Awesome 6 Free";
    font-weight: bold;
}