@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-slider
------------------------------------------------------------------*/
.home-hero-slider{
    position: relative;
    z-index: 1;
}
/*  home-hero-image
------------------------------------------------------------------*/
.home-hero-image{
    background: #fff;
}
.home-hero-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: homeHeroImage 1s forwards ease-out;
}
@keyframes homeHeroImage {
    from{
        opacity: 0;
        transform: scale(1.1);
    }
    to{
        opacity: 1;
        transform: scale(1);
    }
}
@media screen and (max-width:1199px){
    .home-hero-image{
        aspect-ratio: 5 / 3;
    }
}
@media screen and (max-width:575px){
    .home-hero-image{
        aspect-ratio: initial;
        height: calc(100vh - 52px);
        height: calc(100svh - 52px);
    }
}
/*  home-hero-detail
------------------------------------------------------------------*/
.home-hero-detail{
    position: absolute;
    bottom: 5vw;
    left: 5vw;
    z-index: 2;
}
@media screen and (max-width:1199px){
    .home-hero-detail{
        bottom: 7vw;
        left: 7vw;
    }
}
@media screen and (max-width:575px){
    .home-hero-detail{
        bottom: 7%;
        left: 5vw;
    }
}
/*  home-hero-catch
------------------------------------------------------------------*/
.home-hero-catch{
    margin-bottom: .4em;
    font-size: 4.6875vw;
    font-weight: bold;
    line-height: 1.33;
    text-shadow: 0 0 .15em rgba(255,255,255,1),0 0 .15em rgba(255,255,255,1);
}
.home-hero-catch [class^="strong"]{
    font-size: 1.11em;
}
.home-hero-catch .strong1{ color: var(--red-color);}
.home-hero-catch .strong2{ color: var(--blue-color);}
.home-hero-catch .strong3{ color: var(--green-color);}
@media screen and (max-width:1199px){
    .home-hero-catch{
        font-size: 7vw;
    }
}
@media screen and (max-width:575px){
    .home-hero-catch{
        font-size: 14vw;
    }
}
/*  home-hero-title
------------------------------------------------------------------*/
.home-hero-title{
    font-size: max(1.25vw,1.125rem);
    font-weight: bold;
    line-height: 1;
}
@media screen and (max-width:1199px){
    .home-hero-title{
        font-size: max(2.5vw,1rem);
    }
}
@media screen and (max-width:575px){
    .home-hero-title{
        font-size: max(4vw,.875rem);
    }
}

/*------------------------------------------------------------------
  home-lead
------------------------------------------------------------------*/

/*  home-lead
------------------------------------------------------------------*/
.home-lead{
    position: relative;
    padding: 8vw 0;
    background: url(../images/home/lead-bg.jpg) no-repeat top center / cover;
    z-index: 2;
}
@media screen and (max-width:1199px){
    .home-lead{
        padding: 100px 0 60px;
    }
}
@media screen and (max-width:767px){
    .home-lead{
        padding: 60px 0 ;
    }
}
/*  home-lead-title
------------------------------------------------------------------*/
.home-lead-title{
    margin-bottom: 1.25em;
    font-size: min(3.5vw,3.75rem);
    font-weight: bold;
    line-height: 1.8;
}
@media screen and (max-width:1199px){
    .home-lead-title{
        margin-bottom: .5em;
        font-size: 2.5rem;
        text-align: center;
    }
}
@media screen and (max-width:767px){
    .home-lead-title{
        font-size: 2rem;
    }
}
/*  home-lead-text
------------------------------------------------------------------*/
.home-lead-text{
    width: min(36vw,620px);
    margin-left: auto;
    font-size: clamp(1rem,1vw,1.125rem);
    line-height: 2.5;
}
@media screen and (max-width:1199px){
    .home-lead-text{
        width: 100%;
        margin-bottom: 20px;
    }
}
@media screen and (max-width:767px){
    .home-lead-text{
        font-size: .875rem;
        line-height: 2;
    }
}
/*  home-lead-image
------------------------------------------------------------------*/
.home-lead-image{
    position: absolute;
    top: 7vw;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: -1;
}
.home-lead-image img{
    display: inline-block;
    width: min(40vw,689px);
    height: auto;
}
@media screen and (max-width:1199px){
    .home-lead-image{
        position: relative;
        top: initial;
    }
    .home-lead-image img{
        display: inline-block;
        width: auto;
        max-width: 100%;
        height: auto;
    }
}
/*  home-lead-treat
------------------------------------------------------------------*/
.home-lead-treat-1,
.home-lead-treat-2{
    position: absolute;
    z-index: -1;
}
.home-lead-treat-1{
    top: 4vw;
    right: 6vw;
}
.home-lead-treat-2{
    bottom: 4vw;
    left: 6vw;
}
@media screen and (max-width:1199px){
    .home-lead-treat-1{
        top: 40px;
        right: 4vw;
        width: 12vw;
    }
    .home-lead-treat-2{
        top: 30px;
        bottom: initial;
        left: 4vw;
        width: 12vw;
    }
}
@media screen and (max-width:575px){
    .home-lead-treat-1,
    .home-lead-treat-2{
        display: none;
    }
}

/*------------------------------------------------------------------
  home-information
------------------------------------------------------------------*/

/*  home-information
------------------------------------------------------------------*/
.home-information{
    position: relative;
    margin-bottom: 100px;
    z-index: 2;
}
@media screen and (max-width:1199px){
    .home-information{
        margin-bottom: 80px;
    }
}
@media screen and (max-width:767px){
    .home-information{
        margin-bottom: 60px;
    }
}
/*  home-information-wrapper
------------------------------------------------------------------*/
.home-information-wrapper{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    column-gap: 30px;
}
@media screen and (max-width:1399px){
    .home-information-wrapper{
        flex-direction: column;
        align-items: initial;
        justify-content: initial;
        row-gap: 10px;
    }
}
/*  home-information-titlearea
------------------------------------------------------------------*/
.home-information-titlearea{
    flex-shrink: 0;
    width: 320px;
}
@media screen and (max-width:1399px){
    .home-information-titlearea{
        width: 100%;
    }
}
/*  home-information-contents
------------------------------------------------------------------*/
.home-information-contents{
    display: none;
    width: 1000px;
}
.home-information-contents.is-show{
    display: block;
}
@media screen and (max-width:1399px){
    .home-information-contents{
        width: 100%;
    }
}
/*  home-information-category-list
------------------------------------------------------------------*/
.home-information-category-list{
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
@media screen and (max-width:1199px){
    .home-information-category-list{
        gap: 4px;
    }
}
@media screen and (max-width:575px){
    .home-information-category-list{
        display: grid;
        grid-template-columns: repeat(2,1fr);
    }
}
/*  home-information-category-btn
------------------------------------------------------------------*/
.home-information-category-btn{
    display: block;
    padding: .5em 1.25em;
    background: #e0e0e0;
    border-radius: 2em;
    font-size: .875rem;
    color: #777;
    text-align: center;
    line-height: 1;
    transition: .2s ease-out;
}
.home-information-category-btn.active{
    background: var(--blue-color);
    color: #fff;
}
/* ホバー時動作 */
@media (hover:hover) {    
    .home-information-category-btn:hover{
        background: var(--blue-color);
        color: #fff;
    }
}
@media (hover:none) {    
    .home-information-category-btn:active{
        background: var(--blue-color);
        color: #fff;
    }
}
@media screen and (max-width:1199px){
    .home-information-category-btn{
        font-size: .75rem;
    }
}
@media screen and (max-width:575px){
    .home-information-category-btn{
        padding: 1em;
    }
}

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

/*  home-service-list
------------------------------------------------------------------*/
.home-service-list{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 40px;
    margin-left: -10px;
    margin-right: -10px;
    margin-bottom: 60px;
}
.home-service-list > li{
    width: 20%;
    padding-left: 10px;
    padding-right: 10px;
}
@media screen and (max-width:1399px){
    .home-service-list > li{
        width: 33%;
    }
}
@media screen and (max-width:767px){
    .home-service-list > li{
        width: 50%;
    }
}
@media screen and (max-width:575px){
    .home-service-list{
        row-gap: 24px;
        margin-left: -4px;
        margin-right: -4px;
    }
    .home-service-list > li{
        padding-left: 4px;
        padding-right: 4px;
    }
}
/*  home-service-card
------------------------------------------------------------------*/
.home-service-card{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #fff;
    padding: 16px 8px 32px;
    border-radius: 20px;
    transition: .4s ease-out;
}
.home-service-card .image{
    height: 90px;
    margin-bottom: 8px;
}
.home-service-card .image img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.home-service-card .title{
    font-size: 1.125rem;
    font-weight: bold;
    text-align: center;
    line-height: 1.2;
    transition: .2s ease-out;
}
.home-service-card .arrow{
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%,50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--red-color);
    border-radius: 50%;
    color: #fff;
    transition: .2s ease-out;
    z-index: 1;
}
/* ホバー時動作 */
@media (hover:hover) {
    .home-service-card:hover{
        box-shadow: 0 0 12px rgba(255, 18, 57, .4);
        color: var(--red-color);
    }
    .home-service-card:hover .arrow{
        transform: translate(-50%,50%) scale(.8);
    }
}
@media (hover:none) {
    .home-service-card:active{
        box-shadow: 0 0 12px rgba(255, 18, 57, .4);
        color: var(--red-color);
    }
    .home-service-card:active .arrow{
        transform: translate(-50%,50%) scale(.8);
    }
}
@media screen and (max-width:575px){
    .home-service-card{
        padding: 12px 4px 24px;
        border-radius: 10px;
    }
    .home-service-card .image{
        height: 60px;
    }
    .home-service-card .title{
        font-size: .875rem;
    }
    .home-service-card .arrow{
        width: 28px;
        height: 28px;
        font-size: 10px;
    }
}

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

/*  home-about-wrapper
------------------------------------------------------------------*/
.home-about-wrapper{
    display: flex;
    justify-content: space-between;
    column-gap: 60px;
}
@media screen and (max-width:1399px){
    .home-about-wrapper{
        column-gap: 30px;
    }
}
@media screen and (max-width:1199px){
    .home-about-wrapper{
        flex-direction: column;
        row-gap: 8vw;
    }
}
@media screen and (max-width:575px){
    
}
/*  home-about-detail
------------------------------------------------------------------*/
.home-about-detail{
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-shrink: 0;
    width: 700px;
    padding: 30px 0;
}
@media screen and (max-width:1399px){
    .home-about-detail{
        width: 560px;
        padding: 10px 0;
    }
}
@media screen and (max-width:1199px){
    .home-about-detail{
        width: 100%;
        padding: 0;
    }
}
@media screen and (max-width:575px){
    
}
/*  home-about-map
------------------------------------------------------------------*/
.home-about-map{
    height: 320px;
    margin-bottom: 30px;
    border-radius: 20px;
    overflow: hidden;
}
.home-about-map iframe{
    width: 100%;
    height: 100%;
}
@media screen and (max-width:575px){
    .home-about-map{
        height: auto;
        aspect-ratio: 4 / 3;
    }
}
/*  home-about-image
------------------------------------------------------------------*/
.home-about-image{
    width: 800px;
}
@media screen and (max-width:1199px){
    .home-about-image{
        width: 100%;
        text-align: center;
    }
}


/*/////////////////////////////////////////////////////////////////
  information.html
/////////////////////////////////////////////////////////////////*/

/*  information-list-item
------------------------------------------------------------------*/
.information-list-item{
    position: relative;
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 12px 0;
    border-bottom: 1px solid #a7a099;
    z-index: 1;
}
.information-list-item::after{
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #f7e8e6;
    opacity: 0;
    transition: .4s ease-out;
    content: "";
    z-index: -1;
}
.information-list-item .image{
    width: 120px;
    aspect-ratio: 3 / 2;
    flex-shrink: 0;
    background: #ccc;
    overflow: hidden;
}
.information-list-item .image img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: .2s ease-out;
}
.information-list-item .body{
    flex: 1;
}
.information-list-item .detail{
    display: flex;
    align-items: center;
    column-gap: 20px;
    margin-bottom: 8px;
}
.information-list-item .new{
    color: var(--red-color);
    line-height: 1;
}
.information-list-item .date{
    color: #4b4540;
    line-height: 1;
}
.information-list-item .category{
    padding: .4em 1.5em;
    background: #fff;
    border: 1px solid var(--blue-color);
    border-radius: 2em;
    font-size: .75rem;
    color: var(--blue-color);
    line-height: 1;
}
.information-list-item .title{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    line-height: 1.4;
    transition: .2s ease-out;
}
.information-list-item .arrow{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    font-size: 10px;
    color: #4b4540;
    line-height: 1;
    transition: .2s ease-out;
    z-index: 1;
}
.information-list-item .arrow::after{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    border: 1px solid #4b4540;
    border-radius: 50%;
    content: "";
    transition: .2s ease-out;
    z-index: -1;
}
/* ホバー時動作 */
@media (hover:hover) {
    a.information-list-item:hover::after{
        width: 100%;
        opacity: 1;
    }
    a.information-list-item:hover .image img{
        transform: scale(1.1);
        filter: brightness(.5);
    }
    a.information-list-item:hover .title{
        color: var(--red-color);
    }
    a.information-list-item:hover .arrow{
        color:#fff;
    }
    a.information-list-item:hover .arrow::after{
        transform: scale(0.9);
        background: var(--red-color);
        border-color: var(--red-color);
    }
}
@media (hover:none) {
    a.information-list-item:active::after{
        width: 100%;
        opacity: 1;
    }
    a.information-list-item:active .image img{
        transform: scale(1.1);
        filter: brightness(.5);
    }
    a.information-list-item:active .title{
        color: var(--red-color);
    }
    a.information-list-item:active .arrow{
        color:#fff;
    }
    a.information-list-item:active .arrow::after{
        transform: scale(0.9);
        background: var(--red-color);
        border-color: var(--red-color);
    }
}
@media screen and (max-width:575px){
    .information-list-item{
        align-items: flex-start;
        column-gap: 12px;
    }
    .information-list-item .image{
        width: 48px;
        aspect-ratio: 1 / 1;
    }
    .information-list-item .detail{
        column-gap: 8px;
        margin-bottom: 4px;
    }
    .information-list-item .new{
        font-size: .75rem;
    }
    .information-list-item .date{
        font-size: .75rem;
    }
    .information-list-item .category{
        padding: .25em 1em;
        font-size: .625rem;
    }
    .information-list-item .title{
        -webkit-line-clamp: 3;
        font-size: .8125rem;
    }
    .information-list-item .arrow{
        display: none;
    }
}
/*  information-section
------------------------------------------------------------------*/
.information-section{
    padding: 60px 0;
    overflow: hidden;
}
@media screen and (max-width:991px){
    .information-section{
        padding: 40px 0;
    }
}

/*  information-container
------------------------------------------------------------------*/
.information-container{
    max-width: 1120px;
    padding: 0 60px;
    margin: 0 auto;
}
@media screen and (max-width:991px){
    .information-container{
        padding: 0 6vw;
    }
}

/*  information-detail-head
------------------------------------------------------------------*/
.information-detail-head{
    display: flex;
    align-items: center;
    column-gap: 12px;
    margin-bottom: 12px;
}
.information-detail-head .new{
    color: var(--red-color);
    line-height: 1;
}
.information-detail-head .date{
    color: #5c6368;
    line-height: 1;
}
.information-detail-head .category{
    display: inline-block;
    padding: .4em 1.25em;
    border: 1px solid var(--blue-color);
    border-radius: 2em;
    font-size: .75rem;
    color: var(--blue-color);
    line-height: 1;
}
@media screen and (max-width:575px){
    .information-detail-head{
        column-gap: 8px;
        margin-bottom: 4px;
    }
    .information-detail-head .date{
        font-size: .75rem;
    }
    .information-detail-head .category{
        font-size: .75rem;
    }
}
/*  information-detail-slider
------------------------------------------------------------------*/
.information-detail-slider{
    position: relative;
    margin-bottom: 10px;
    overflow: hidden;
    z-index: 1;
}
.information-detail-slider .swiper-slide a{
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    background: #efefef;
}
.information-detail-slider .swiper-slide img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
/*  information-detail-thumb-slider
------------------------------------------------------------------*/
.information-detail-thumb-slider{
    position: relative;
    margin-bottom: 40px;
    overflow: hidden;
    z-index: 1;
}
.information-detail-thumb-slider .swiper-wrapper{
    justify-content: center;
}
.information-detail-thumb-slider .swiper-slide{
    width: 80px;
    aspect-ratio: 1 / 1;
    filter: brightness(0.3);
    cursor: pointer;
}
.information-detail-thumb-slider .swiper-slide.swiper-slide-thumb-active{
    filter: brightness(1);
}
.information-detail-thumb-slider .swiper-slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/*  information-detail-slider-button
------------------------------------------------------------------*/
.information-detail-slider-button-prev,
.information-detail-slider-button-next{
    position: absolute;
    top: 50%;
    width: 36px;
    aspect-ratio: 1 / 1;
    background: var(--green-color);
    border-radius: 50%;
    transform: translateY(-50%);
    color: #fff;
    transition: .2s ease-out;
    cursor: pointer;
    z-index: 2;
}
.information-detail-slider-button-prev.swiper-button-disabled,
.information-detail-slider-button-next.swiper-button-disabled{
    background: #ccc;
    color: #777;
    pointer-events: none;
}
.information-detail-slider-button-prev{
    left: 4px;
}
.information-detail-slider-button-prev::after{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    content: "\f104";
    font-family: "Font Awesome 6 Free";
    font-size: 0.75rem;
    font-weight: bold;
}
.information-detail-slider-button-next{
    right: 4px;
}
.information-detail-slider-button-next::after{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-size: 0.75rem;
    font-weight: bold;
}
/* ホバー時動作 */
@media (hover:hover) {
    .information-detail-slider-button-prev:hover,
    .information-detail-slider-button-next:hover,
    .information-detail-slider-button-prev:active,
    .information-detail-slider-button-next:active{
        background: var(--red-color);
        border-color: var(--red-color);
        color: #fff;
    }
    .information-detail-slider-button-prev:active,
    .information-detail-slider-button-next:active{
        transform: scale(0.8) translateY(-50%);
    }
}
@media (hover:none) {
    .information-detail-slider-button-prev:active,
    .information-detail-slider-button-next:active{
        background: var(--red-color);
        border-color: var(--red-color);
        color: #fff;
        transform: scale(0.8) translateY(-50%);
    }
}


/*/////////////////////////////////////////////////////////////////
  about.html
/////////////////////////////////////////////////////////////////*/

/*  about-map
------------------------------------------------------------------*/
.about-map{
    height: 360px;
    margin-bottom: 30px;
    border-radius: 20px;
    overflow: hidden;
}
.about-map iframe{
    width: 100%;
    height: 100%;
}
@media screen and (max-width:575px){
    .about-map{
        height: auto;
        aspect-ratio: 4 / 3;
    }
}
/*  staff-list
------------------------------------------------------------------*/
.staff-list{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}
@media screen and (max-width:1199px){
    .staff-list{
        gap: 20px;
    }
}
@media screen and (max-width:991px){
    .staff-list{
        gap: 12px;
    }
}
@media screen and (max-width:767px){
    .staff-list{
        grid-template-columns: repeat(2,1fr);
    }
}
@media screen and (max-width:575px){
    .staff-list{
        grid-template-columns: 1fr;
    }
}
/*  staff-card
------------------------------------------------------------------*/
.staff-card{
    padding: 30px;
    background: #fff;
    border-radius: 20px;
}
.staff-card .image{
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
}
.staff-card .name{
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    line-height: 1;
}
.staff-card .comment{
    line-height: 1.8;
}
@media screen and (max-width:1199px){
    .staff-card{
        padding: 30px 20px 20px;
    }
    .staff-card .image{
        width: 120px;
        height: 120px;
    }
    .staff-card .name{
        font-size: 1.25rem;
    }
}
/*  about-recruit
------------------------------------------------------------------*/
.about-recruit{
    padding: 100px 0;
    background: url(../images/about/recruit-bg.jpg) no-repeat center / cover;
}
@media screen and (max-width:1199px){
    .about-recruit{
        padding: 80px 0;
    }
}
@media screen and (max-width:767px){
    .about-recruit{
        padding: 60px 0;
    }
}


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

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

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

/*  contact-tel-box
------------------------------------------------------------------*/
.contact-tel-box{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 40px 20px;
    background: var(--light-color);
    border-radius: 20px;
    text-align: center;
}
.contact-tel-box .num{
    font-size: 3.5rem;
    color: var(--green-color);
    font-weight: bold;
    text-align: center;
    line-height: 1;
}
@media screen and (max-width:991px){
    .contact-tel-box .num{
        font-size: 3rem;
    }
}
@media screen and (max-width:575px){
    .contact-tel-box{
        padding: 30px 16px;
        border-radius: 10px;
    }
    .contact-tel-box .num{
        font-size: 2.5rem;
    }
}
.grecaptcha-badge {
    bottom: 80px !important;
}