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

　CSS構成

　//絶対に変更しないCSS
　- reset.css           全てのブラウザ固有CSSをリセットするCSS。基本触らないこと。
　- bootstrap.min.css   Bootstrapコンポーネントを利用するためのCSS。基本触らないこと。
　- all.min.css         Font Awesome を利用するための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-top: 100px;
    padding-bottom: 20px;
    background: linear-gradient(0deg,#ffffff 0%, #f4f0d9 100%);
    overflow: hidden;
    z-index: 1;
}
.home-hero::before{
    position: absolute;
    bottom: 68px;
    left: 0;
    width: 100%;
    height: 56px;
    background: url(../images/common/treat-wave-primary.png) no-repeat center top / 100% 100%;
    content: "";
    z-index: -1;
}
.home-hero::after{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 68px;
    background: var(--primary-color);
    content: "";
    z-index: -1;
}
@media screen and (max-width:1199px){
    .home-hero{
        padding-top: 80px;
        padding-bottom: 50px;
    }
    .home-hero::before{
        position: absolute;
        bottom: -2px;
        height: auto;
        aspect-ratio: 1920 / 56;
    }
    .home-hero::after{
        display: none;
    }
}
/*  home-hero-inner
------------------------------------------------------------------*/
.home-hero-inner{
    display: flex;
    align-items: flex-end;
    justify-content: center;
    column-gap: 70px;
}
@media screen and (max-width:1199px){
    .home-hero-inner{
        flex-direction: column-reverse;
        align-items: center;
        row-gap: 20px;
    }
}

/*  home-hero-detail
------------------------------------------------------------------*/
.home-hero-detail{
    position: relative;
    flex-shrink: 0;
    z-index: 1;
}
@media screen and (max-width:1399px){
    .home-hero-detail{
        flex-shrink: initial;
    }
}

/*  home-hero-catch
------------------------------------------------------------------*/
.home-hero-catch{
    margin-bottom: 50px;
}
.home-hero-catch .pc,
.home-hero-catch .sp{
    max-width: 100%;
    height: auto;
}
.home-hero-catch .sp{
    display: none;
}
@media screen and (max-width:1399px){
    .home-hero-catch{
        margin-bottom: 40px;
    }
}
@media screen and (max-width:1199px){
    .home-hero-catch{
        padding: 0 20px;
        margin-bottom: 20px;
    }
    .home-hero-catch .pc{
        display: none;
    }
    .home-hero-catch .sp{
        display: inline;
    }
}

/*  home-hero-title
------------------------------------------------------------------*/
.home-hero-title{
    margin-bottom: 70px;
    font-weight: bold;
    line-height: 1.5;
}
@media screen and (max-width:1399px){
    .home-hero-title{
        margin-bottom: 40px;
    }
}
@media screen and (max-width:1199px){
    .home-hero-title{
        margin-bottom: 30px;
        text-align: center;
    }
}
@media screen and (max-width:575px){
    .home-hero-title{
        margin-bottom: 20px;
        font-size: .75rem;
    }
}

/*  home-hero-btn-list
------------------------------------------------------------------*/
.home-hero-btn-list{
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 20px;
}
@media screen and (max-width:1199px){
    .home-hero-btn-list{
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        column-gap: 10px;
        row-gap: 10px;
    }
}
/*  home-hero-btn
------------------------------------------------------------------*/
.home-hero-btn{
    position: relative;
    display: flex;
    align-items: center;
    width: 300px;
    height: 60px;
    padding: .5em 2em .5em 1.5em;
    background: var(--primary-color);
    border-radius: 30px;
    border: 1px solid #fff;
    font-weight: bold;
    color: #fff;
    line-height: 1.2;
    transition: .2s ease-out;
    z-index: 1;
}
.home-hero-btn::after{
    position: absolute;
    top: 50%;
    right: 1em;
    transform: translateY(-50%);
    content: "\f138";
    font-family: "Font Awesome 6 Free";
    font-weight: bold;
    transition: .2s ease-out;
    z-index: 1;
}
.home-hero-btn.accent{
    background: var(--accent-color);
    border-color: transparent;
    color: var(--black-color);
}
/* ホバー時動作 */
@media (hover:hover) {
    .home-hero-btn:hover{ background: var(--primary-bright-color); color: #fff;}
    .home-hero-btn:hover::after{ right: .25em;}
}
@media (hover:none) {
    .home-hero-btn:active{ background: var(--primary-bright-color); color: #fff;}
    .home-hero-btn:active::after{ right: .25em;}
}
@media screen and (max-width:1199px){
    .home-hero-btn{
        justify-content: center;
        padding: .5em 2em;
        text-align: center;
    }
}
@media screen and (max-width:991px){
    .home-hero-btn{
        height: 52px;
    }
}


/*  home-hero-image
------------------------------------------------------------------*/
.home-hero-image{
    position: relative;
    z-index: 1;
}
.home-hero-image .image{
    max-width: 960px;
    height: 640px;
    border-radius: 50px;
    overflow: hidden;
}
.home-hero-image .image > img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.home-hero-image .treat01{
    position: absolute;
    top: -20px;
    left: -20px;
    z-index: 1;
}
.home-hero-image .treat02{
    position: absolute;
    bottom: -20px;
    right: -20px;
    z-index: 1;
}
@media screen and (max-width:1399px){
    .home-hero-image .image{
        height: 540px;
    }
}
@media screen and (max-width:1199px){
    .home-hero-image .image{
        height: auto;
    }
}
@media screen and (max-width:767px){
    .home-hero-image .image{
        border-radius: 30px;
    }
    .home-hero-image .treat01{
        top: -10px;
        left: -10px;
        width: 25%;
    }
    .home-hero-image .treat02{
        bottom: -10px;
        right: -10px;
        width: 25%;
    }
}

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

/*  home-about
------------------------------------------------------------------*/
.home-about{
    padding: 100px 0;
    background: var(--primary-color);
}
@media screen and (max-width:767px){
    .home-about{
        padding: 30px 0 60px;
    }
}
/*  home-about-inner
------------------------------------------------------------------*/
.home-about-inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 40px;
}
@media screen and (max-width:991px){
    .home-about-inner{
        column-gap: 0;
    }
}
@media screen and (max-width:767px){
    .home-about-inner{
        flex-direction: column-reverse;
        row-gap: 20px;
    }
}
/*  home-about-detail
------------------------------------------------------------------*/
.home-about-detail{
    flex-shrink: 0;
}
/*  home-about-title
------------------------------------------------------------------*/
.home-about-title{
    margin-bottom: 70px;
    font-size: 3rem;
    font-weight: bold;
    color: #fff;
    line-height: 1.5;
}
.home-about-title small{
    font-size: max(.5em, .75rem);
}
@media screen and (max-width:1399px){
    .home-about-title{
        margin-bottom: 60px;
        font-size: 2.5rem;
    }
}
@media screen and (max-width:991px){
    .home-about-title{
        margin-bottom: 30px;
        font-size: 2rem;
    }
}
@media screen and (max-width:767px){
    .home-about-title{
        text-align: center;
    }
}
/*  home-about-text
------------------------------------------------------------------*/
.home-about-text{
    margin-bottom: 80px;
    font-size: 1.25rem;
    color: #fff;
    line-height: 2.4;
}
@media screen and (max-width:1399px){
    .home-about-text{
        margin-bottom: 70px;
        font-size: 1rem;
    }
}
@media screen and (max-width:991px){
    .home-about-text{
        margin-bottom: 40px;
        font-size: .875rem;
    }
}
@media screen and (max-width:767px){
    .home-about-text{
        line-height: 2;
    }
}
/*  home-about-image
------------------------------------------------------------------*/
@media screen and (max-width:767px){
    .home-about-image{
        width: 240px;
    }
}

/*------------------------------------------------------------------
  home-news
------------------------------------------------------------------*/

/*  home-news
------------------------------------------------------------------*/
.home-news{
    padding: 100px 0;
}
@media screen and (max-width:991px){
    .home-news{
        padding: 60px 0;
    }
}
/*  home-news-inner
------------------------------------------------------------------*/
.home-news-inner{
    display: flex;
    justify-content: space-between;
    column-gap: 60px;
}
@media screen and (max-width:991px){
    .home-news-inner{
        flex-direction: column;
        margin-bottom: 40px;
    }
}
/*  home-news-detail
------------------------------------------------------------------*/
.home-news-detail{
    flex-shrink: 0;
}
@media screen and (max-width:991px){
    .home-news-detail{
        text-align: center;
    }
}
/*  home-news-btn
------------------------------------------------------------------*/
.home-news-btn{
    position: relative;
    display: block;
    width: 130px;
    padding: .75em 1.5em;
    background: var(--primary-color);
    border-radius: 2em;
    font-size: .875rem;
    font-weight: bold;
    color: #fff;
    line-height: 1;
    transition: .2s ease-out;
}
.home-news-btn::after{
    position: absolute;
    top: 50%;
    right: 1em;
    transform: translateY(-50%);
    content: "\f138";
    font-family: "Font Awesome 6 Free";
    font-weight: bold;
    transition: .2s ease-out;
}
/* ホバー時動作 */
@media (hover:hover) {
    .home-news-btn:hover{
        background: var(--primary-bright-color);
    }
    .home-news-btn:hover::after{
        right: .5em;
    }
}
@media (hover:none) {
    .home-news-btn:active{
        background: var(--primary-bright-color);
    }
    .home-news-btn:active::after{
        right: .5em;
    }
}
@media screen and (max-width:991px){
    .home-news-btn{
        display: none;
    }
}

/*  home-news-list
------------------------------------------------------------------*/
.home-news-list{
    width: 1000px;
    border-top: 1px solid #ccc;
}
@media screen and (max-width:991px){
    .home-news-list{
        width: 100%;
    }
}

/*  home-news-list-item
------------------------------------------------------------------*/
.home-news-list-item{
    position: relative;
    display: block;
    padding: 24px 32px 24px 12px;
    border-bottom: 1px solid #aca39c;
    transition: .4s ease-out;
    z-index: 1;
}
.home-news-list-item::before{
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--primary-light-color);
    opacity: 0;
    transition: .4s ease-out;
    content: "";
    z-index: -1;
}
a.home-news-list-item::after{
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    content: "\f138";
    font-family: "Font Awesome 6 Free";
    font-weight: bold;
    color: var(--primary-color);
    transition: .4s ease-out;
    z-index: 1;
}
.home-news-list-item .head{
    display: flex;
    align-items: center;
    column-gap: 16px;
}
.home-news-list-item .new{
    font-size: .875rem;
    color: var(--red-color);
}
.home-news-list-item .date{
    font-size: .875rem;
    color: #837c77;
    line-height: 1;
}
.home-news-list-item .category{
    font-size: .875rem;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1;
}
.home-news-list-item .title{
    font-weight: bold;
    line-height: 1.5;
}
/* ホバー時動作 */
@media (hover:hover) {
    a.home-news-list-item:hover::before{
        width: 100%;
        opacity: 1;
    }
    a.home-news-list-item:hover::after{
        right: 0;
    }
}
@media (hover:none) {
    a.home-news-list-item:active::before{
        width: 100%;
        opacity: 1;
    }
    a.home-news-list-item:active::after{
        right: 0;
    }
}
@media screen and (max-width:991px){
    .home-news-list-item{
        padding: 12px 32px 12px 8px;
    }
    .home-news-list-item .head{
        column-gap: 10px;
    }
    .home-news-list-item .new{
        font-size: .75rem;
    }
    .home-news-list-item .date{
        font-size: .75rem;
    }
    .home-news-list-item .category{
        font-size: .75rem;
    }
}

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

/*  home-service
------------------------------------------------------------------*/
.home-service{
    padding: 100px 0;
    background: var(--primary-color);
}
@media screen and (max-width:991px){
    .home-service{
        padding: 60px 0;
    }
}
/*  home-service-inner
------------------------------------------------------------------*/
.home-service-inner{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 60px;
}
@media screen and (max-width:1399px){
    .home-service-inner{
        gap: 30px;
    }
}
@media screen and (max-width:1199px){
    .home-service-inner{
        grid-template-columns: 1fr;
        max-width: 700px;
        margin: 0 auto;
    }
}
/*  home-service-contents
------------------------------------------------------------------*/
.home-service-contents{
    display: flex;
    flex-direction: column;
    padding: 48px 40px 32px;
    background: #fff;
    border-radius: 20px;
}
@media screen and (max-width:767px){
    .home-service-contents{
        padding: 32px 20px;
    }
}
/*  home-service-contents-caption
------------------------------------------------------------------*/
.home-service-contents-caption{
    font-size: 1rem;
    font-weight: bold;
    color: var(--primary-color);
    text-align: center;
    line-height: 1.5;
}
@media screen and (max-width:767px){
    .home-service-contents-caption{
        font-size: .875rem;
    }
}
/*  home-service-contents-title
------------------------------------------------------------------*/
.home-service-contents-title{
    margin-bottom: 20px;
    font-size: 1.75rem;
    font-weight: bold;
    text-align: center;
    line-height: 1.5;
}
@media screen and (max-width:767px){
    .home-service-contents-title{
        font-size: 1.5rem;
    }
}
/*  home-service-contents-image
------------------------------------------------------------------*/
.home-service-contents-image{
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
}
/*  home-service-contents-text
------------------------------------------------------------------*/
.home-service-contents-text{
    margin-bottom: 20px;
    font-size: .875rem;
    text-align: justify;
}
/*  home-service-contents-address
------------------------------------------------------------------*/
.home-service-contents-address{
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 20px;
    margin-top: auto;
    margin-bottom: 30px;
}
.home-service-contents-address .address{
    font-size: 1rem;
    font-weight: bold;
    line-height: 1.5;
}
.home-service-contents-address .map{
    padding: .75em 2em;
    background: var(--accent-color);
    border-radius: 2em;
    font-size: .875rem;
    font-weight: bold;
    text-align: center;
    line-height: 1.5;
    transition: .2s ease-out;
}
.home-service-contents-address .map::before{
    display: inline-block;
    margin-right: 8px;
    content: "\f3c5";
    font-family: "Font Awesome 6 Free";
    font-weight: bold;
}
/* ホバー時動作 */
@media (hover:hover) {
    .home-service-contents-address .map:hover{ background: var(--primary-bright-color); color: #fff;}
}
@media (hover:none) {
    .home-service-contents-address .map:active{ background: var(--primary-bright-color); color: #fff;}
}
@media screen and (max-width:767px){
    .home-service-contents-address{
        flex-direction: column;
        row-gap: 12px;
        padding: 12px;
        margin-bottom: 16px;
        background: var(--primary-light-color);
        border-radius: 8px;
        text-align: center;
    }
}
/*  home-service-contents-contact
------------------------------------------------------------------*/
.home-service-contents-contact{
    position: relative;
    padding: 15px 20px 15px 100px;
    border-radius: 8px;
    background: #ede1c0;
    margin-bottom: 24px;
    z-index: 1;
}
.home-service-contents-contact .image{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 90px;
    aspect-ratio: 90 / 124;
}
.home-service-contents-contact .image img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom center;
}
.home-service-contents-contact .comment{
    position: relative;
    padding: .5em 1em;
    margin-bottom: 10px;
    background: #fff;
    border-radius: 8px;
    font-weight: bold;
    text-align: center;
    line-height: 1.2;
    z-index: 1;
}
.home-service-contents-contact .comment::after{
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-100%, -50%);
    width: 12px;
    height: 12px;
    border-width: 6px 12px 6px 0;
    border-color: transparent #fff transparent transparent;
    content: "";
    z-index: 1;
}
.home-service-contents-contact .tel{
    display: flex;
    align-items: flex-end;
    column-gap: 16px;
}
.home-service-contents-contact .tel .num{
    flex-shrink: 0;
    font-size: 1.875rem;
    font-weight: bold;
    line-height: 1;
}
.home-service-contents-contact .tel .time{
    font-size: .75rem;
    font-weight: bold;
    line-height: 1.4;
}
@media screen and (max-width:575px){
    .home-service-contents-contact{
        padding: 12px;
    }
    .home-service-contents-contact .image{
        top: -10px;
        width: 50px;
    }
    .home-service-contents-contact .comment{
        font-size: .75rem;
        margin-left: 50px;
    }
    .home-service-contents-contact .tel{
        flex-direction: column;
        align-items: center;
        row-gap: 8px;
        text-align: center;
    }
}
/*  home-service-contents-btn
------------------------------------------------------------------*/
.home-service-contents-btn{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 250px;
    height: 3.5em;
    padding: 0 2em;
    background: var(--primary-color);
    border-radius: 2em;
    font-weight: bold;
    color: #fff;
    text-align: center;
    line-height: 1.2;
    transition: .2s ease-out;
    z-index: 1;
}
.home-service-contents-btn::after{
    position: absolute;
    top: 50%;
    right:  1em;
    transform: translateY(-50%);
    content: "\f138";
    font-family: "Font Awesome 6 Free";
    font-weight: bold;
    transition: .2s ease-out;
    z-index: 1;
}
/* ホバー時動作 */
@media (hover:hover) {
    .home-service-contents-btn:hover{ background: var(--primary-bright-color); color: #fff;}
    .home-service-contents-btn:hover::after{ right: .25em;}
}
@media (hover:none) {
    .home-service-contents-btn:active{ background: var(--primary-bright-color); color: #fff;}
    .home-service-contents-btn:active::after{ right: .25em;}
}

/*/////////////////////////////////////////////////////////////////
  care.html
/////////////////////////////////////////////////////////////////*/

/*  care-service-box
------------------------------------------------------------------*/
.care-service-box{
    padding: 60px 40px;
    background: #fff;
    border-radius: 20px;
}
@media screen and (max-width:1399px){
    .care-service-box{
        padding: 50px 30px;
    }
}
@media screen and (max-width:767px){
    .care-service-box{
        padding: 30px 20px;
    }
}
/*  care-service-list
------------------------------------------------------------------*/
.care-service-list{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 10px;
}
@media screen and (max-width:575px){
    .care-service-list{
        grid-template-columns: repeat(2,1fr);
    }
}
/*  care-service-list-item
------------------------------------------------------------------*/
.care-service-list-item{
    padding: 24px 20px;
    background: var(--light-color);
    border-radius: 10px;
}
.care-service-list-item .image{
    max-width: 120px;
    aspect-ratio: 1 / 1;
    margin: 0 auto 16px;
}
.care-service-list-item .image img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.care-service-list-item .title{
    font-size: 1.125rem;
    font-weight: bold;
    line-height: 1.2;
    text-align: center;
}
@media screen and (max-width:1399px){
    .care-service-list-item .title{
        font-size: 1rem;
    }
}
@media screen and (max-width:767px){
    .care-service-list-item{
        padding: 20px 12px;
    }
    .care-service-list-item .image{
        max-width: 80px;
    }
    .care-service-list-item .title{
        font-size: .875rem;
    }
}

/*/////////////////////////////////////////////////////////////////
  care-management.html
/////////////////////////////////////////////////////////////////*/

/*  care-management-service-list
------------------------------------------------------------------*/
.care-management-service-list{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 10px;
}
@media screen and (max-width:991px){
    .care-management-service-list{
        grid-template-columns: repeat(2,1fr);
    }
}
@media screen and (max-width:575px){
    .care-management-service-list{
        gap: 4px;
    }
}
/*  care-management-service-list-item
------------------------------------------------------------------*/
.care-management-service-list-item{
    display: flex;
    align-items: center;
    column-gap: 12px;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
}
.care-management-service-list-item .image{
    max-width: 40px;
    aspect-ratio: 1 / 1;
    line-height: 1;
}
.care-management-service-list-item .image img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.care-management-service-list-item .title{
    font-weight: bold;
    line-height: 1.2;
}
@media screen and (max-width:991px){
    .care-management-service-list-item{
        padding: 12px;
        column-gap: 8px;
    }
    .care-management-service-list-item .image{
        width: 32px;
    }
}
@media screen and (max-width:575px){
    .care-management-service-list-item{
        padding: 8px;
        column-gap: 4px;
        border-radius: 4px;
    }
    .care-management-service-list-item .image{
        width: 20px;
    }
    .care-management-service-list-item .title{
        font-size: .75rem;
    }
}
/*  care-management-flow
------------------------------------------------------------------*/
.care-management-flow{
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 20px;
}
/*  care-management-flow-item
------------------------------------------------------------------*/
.care-management-flow-item{
    display: flex;
    column-gap: 20px;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
}
.care-management-flow-item .head{
    width: 280px;
    flex-shrink: 0;
}
.care-management-flow-item .body{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.care-management-flow-item .num{
    margin-bottom: 8px;
    font-size: .875rem;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1;
}
.care-management-flow-item .title{
    font-size: 1.25rem;
    font-weight: bold;
    line-height: 1.2;
}
.care-management-flow-item .text{
    line-height: 1.7;
}
@media screen and (max-width:767px){
    .care-management-flow-item{
        flex-direction: column;
        padding: 24px 20px;
    }
    .care-management-flow-item .head{
        width: 100%;
        margin-bottom: 10px;
        padding-bottom: 10px;
        border-bottom: 1px dashed #aca39c;
    }
    .care-management-flow-item .num{
        margin-bottom: 4px;
        font-size: .75rem;
    }
    .care-management-flow-item .title{
        font-size: 1.125rem;
    }
}

/*/////////////////////////////////////////////////////////////////
  news.html
/////////////////////////////////////////////////////////////////*/

/*  news-list
------------------------------------------------------------------*/
.news-list{
    border-top: 1px dashed #aca39c;
    margin-bottom: 60px;
}
@media screen and (max-width:991px){
    .news-list{
        margin-bottom: 40px;
    }
}

/*  news-list-item
------------------------------------------------------------------*/
.news-list-item{
    position: relative;
    display: block;
    padding: 30px 0;
    border-bottom: 1px dashed #aca39c;
    transition: .4s ease-out;
    z-index: 1;
}
.news-list-item .head{
    display: flex;
    align-items: center;
    column-gap: 16px;
    margin-bottom: 8px;
}
.news-list-item .new{
    color: var(--red-color);
}
.news-list-item .date{
    color: #837c77;
    line-height: 1;
}
.news-list-item .category{
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1;
}
.news-list-item .title{   
    font-size: 1.125rem; 
    font-weight: bold;
    line-height: 1.5;
}
@media screen and (max-width:575px){
    .news-list-item{
        padding: 24px 0;
    }
    .news-list-item .head{
        column-gap: 10px;
    }
    .news-list-item .new{
        font-size: .75rem;
    }
    .news-list-item .date{
        font-size: .75rem;
    }
    .news-list-item .category{
        font-size: .75rem;
    }
    .news-list-item .title{   
        font-size: 1rem; 
    }
}


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

/*  company-map
------------------------------------------------------------------*/
.company-map{
    height: 400px;
    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;
    }
}


/*/////////////////////////////////////////////////////////////////
  entry.html
/////////////////////////////////////////////////////////////////*/

/*  contact-tel-box
------------------------------------------------------------------*/
.contact-tel-box{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 30px 16px;
    background: #fff;
    text-align: center;
}
.contact-tel-box .title{
    margin-bottom: 16px;
    font-size: 1.25rem;
    font-weight: bold;
    line-height: 1;
}
.contact-tel-box .num{
    display: grid;
    grid-template-columns: repeat(2,auto);
    align-items: baseline;
    justify-content: center;
    column-gap: 10px;
    row-gap: 4px;
    margin-bottom: 16px;
    font-family: var(--en-font);
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1;
}
.contact-tel-box .num dt{
    font-size: 1.25rem;
}
.contact-tel-box .num dd{
    font-size: 1.75rem;
}
.contact-tel-box .time{
    font-size: .875rem;
    line-height: 1;
}
@media screen and (max-width:575px){
    .contact-tel-box .title{
        font-size: 1.125rem;
    }
    .contact-tel-box .num dd{
        font-size: 1.5rem;
    }
    .contact-tel-box .time{
        font-size: .75rem;
    }
}