@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 .swiper-slide{
    height: 100vh;
    min-height: 700px;
    background: #fff;
    overflow: hidden;
}
.home-hero-slider .swiper-slide::after{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: .3;
    content: "";
    z-index: 1;
}
.home-hero-slider .swiper-slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media screen and (max-width:575px){
    .home-hero-slider .swiper-slide{
        height: 100vh;
        height: 100svh;
        min-height: 540px;
    }
}
@media print{
    .home-hero-slider .swiper-slide{
        height: 700px;
    }
}
/*  home-hero-slider-image
------------------------------------------------------------------*/
.home-hero-slider-image{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    opacity: 0;
    animation: homeHeroSlide 1s ease-out forwards;
}
@keyframes homeHeroSlide {
    from{
        opacity: 0;
        transform: scale(1.1);
    }
    to{
        opacity: 1;
        transform: scale(1);
    }
}
/*  home-hero-detail
------------------------------------------------------------------*/
.home-hero-detail{
    position: absolute;
    left: 4vw;
    bottom: 8vh;
    z-index: 2;
}
@media screen and (max-width:991px){
    .home-hero-detail{

    }
}
@media print{
    .home-hero-detail{
        bottom: 50px;
        left: 50px;
    }
}
/*  home-hero-title
------------------------------------------------------------------*/
.home-hero-title{
    margin-bottom: .5em;
    font-size: 5.625rem;
    font-weight: bold;
    color: #fff;
    line-height: 1.3333;
}
.home-hero-title .wrap{
    display: block;
    width: fit-content;
    overflow: hidden;
}
.home-hero-title .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:1399px){
    .home-hero-title{
        font-size: 6.5vw;
    }
}
@media screen and (max-width:991px){
    .home-hero-title{
        font-size: 8.5vw;
    }
}
@media screen and (max-width:575px){
    .home-hero-title{
        font-size: 10vw;
    }
}
/*  home-hero-text
------------------------------------------------------------------*/
.home-hero-text{
    opacity: 0;
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    animation: homeHeroTitle .8s forwards .4s ease-out;
}
@keyframes homeHeroTitle {
    from{
        opacity: 0;
    }
    to{
        opacity: 1;
    }
}
@media screen and (max-width:1399px){
    .home-hero-text{
        font-size: 1.7vw;
    }
}
@media screen and (max-width:991px){
    .home-hero-text{
        font-size: 2.5vw;
    }
}
@media screen and (max-width:767px){
    .home-hero-text{
        font-size: 3.75vw;
    }
}


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

/*  home-about
------------------------------------------------------------------*/
.home-about{
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
    z-index: 1;
}
@media screen and (max-width:991px){
    .home-about{
        padding: 80px 0 60px;
    }
}
@media screen and (max-width:767px){
    .home-about{
        padding: 60px 0;
    }
}
/*  home-about-treat
------------------------------------------------------------------*/
.home-about-treat{
    position: absolute;
    top: 80px;
    left: -30px;
    width: 0;
    height: 136px;
    background: linear-gradient(90deg,#fad126 0%, #ff544f 100%);
    transform: skewX(-20deg);
    transition: .4s ease-out;
    z-index: -1;
}
.home-about-treat.is-active{
    width: 95%;
}
@media screen and (max-width:1399px){
    .home-about-treat{
        height: 130px;
    }
}
@media screen and (max-width:1199px){
    .home-about-treat{
        height: 124px;
    }
}
@media screen and (max-width:991px){
    .home-about-treat{
        top: 50px;
        height: 100px;
    }
}
@media screen and (max-width:767px){
    .home-about-treat{
        display: none;
    }
}
/*  home-about-container
------------------------------------------------------------------*/
.home-about-container{
    max-width: 1720px;
    padding: 0 60px;
    margin: 0 auto;
}
@media screen and (max-width:991px){
    .home-about-container{
        padding: 0 30px;
    }
}
@media screen and (max-width:767px){
    .home-about-container{
        padding: 0 6vw;
    }
}
/*  home-about-inner
------------------------------------------------------------------*/
.home-about-inner{
    display: flex;
    column-gap: 60px;
    justify-content: space-between;
}
@media screen and (max-width:991px){
    .home-about-inner{
        column-gap: 30px;
    }
}
@media screen and (max-width:767px){
    .home-about-inner{
        display: block;
    }
}
/*  home-about-detail
------------------------------------------------------------------*/
.home-about-detail{
    flex-shrink: 0;
    width: 600px;
}
@media screen and (max-width:1399px){
    .home-about-detail{
        width: 500px;
    }
}
@media screen and (max-width:1199px){
    .home-about-detail{
        width: 450px;
    }
}
@media screen and (max-width:991px){
    .home-about-detail{
        width: 400px;
    }
}
@media screen and (max-width:767px){
    .home-about-detail{
        width: 100%;
        margin-bottom: 40px;
    }
}
/*  home-about-caption
------------------------------------------------------------------*/
.home-about-caption{
    margin-bottom: 80px;
    font-family: var(--en-font);
    font-size: 4.5rem;
    font-weight: bold;
    font-style: italic;
    color: #fff;
    line-height: .8;
}
@media screen and (max-width:1399px){
    .home-about-caption{
        font-size: 4rem;
    }
}
@media screen and (max-width:1199px){
    .home-about-caption{
        margin-bottom: 70px;
        font-size: 3.5rem;
    }
}
@media screen and (max-width:991px){
    .home-about-caption{
        margin-bottom: 50px;
        font-size: 3rem;
    }
}
@media screen and (max-width:767px){
    .home-about-caption{
        margin-bottom: 30px;
        background: linear-gradient(0deg,#fad126 0%, #ff544f 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-size: 4rem;
        font-style: normal;
        text-align: center;
    }
}
@media screen and (max-width:575px){
    .home-about-caption{
        font-size: 3.5rem;
    }
}
/*  home-about-title
------------------------------------------------------------------*/
.home-about-title{
    margin-bottom: 48px;
    font-size: 3rem;
    font-weight: bold;
    line-height: 1.5;
}
@media screen and (max-width:1399px){
    .home-about-title{
        margin-bottom: 40px;
        font-size: 2.5rem;
    }
}
@media screen and (max-width:1199px){
    .home-about-title{
        margin-bottom: 36px;
        font-size: 2.25rem;
    }
}
@media screen and (max-width:991px){
    .home-about-title{
        margin-bottom: 32px;
        font-size: 2rem;
    }
}
@media screen and (max-width:767px){
    .home-about-title{
        text-align: center;
    }
}
@media screen and (max-width:575px){
    .home-about-title{
        margin-bottom: 24px;
        font-size: 1.5rem;
    }
}
/*  home-about-text
------------------------------------------------------------------*/
.home-about-text{
    margin-bottom: 60px;
    font-size: 1.125rem;
}
@media screen and (max-width:1399px){
    .home-about-text{
        margin-bottom: 50px;
        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{
        margin-bottom: 30px;
    }
}
/*  home-about-image
------------------------------------------------------------------*/
.home-about-image{
    margin-right: calc(50% - 50vw);
    overflow: hidden;
}
.home-about-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media screen and (max-width:767px){
    .home-about-image{
        aspect-ratio: 16 / 9;
        margin-right: initial;
    }
}


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

/*  home-feature
------------------------------------------------------------------*/
.home-feature{
    position: relative;
    padding: 120px 0 200px;
    background: #332a26;
    z-index: 1;
}
@media screen and (max-width:1399px){
    .home-feature{
        padding: 100px 0 160px;
    }
}
@media screen and (max-width:991px){
    .home-feature{
        padding: 80px 0 120px;
    }
}
@media screen and (max-width:575px){
    .home-feature{
        padding: 60px 0 100px;
    }
}
/*  home-feature-list
------------------------------------------------------------------*/
.home-feature-list{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    column-gap: 60px;
}
@media screen and (max-width:1199px){
    .home-feature-list{
        column-gap: 36px;
    }
}
@media screen and (max-width:991px){
    .home-feature-list{
        grid-template-columns: 1fr;
        row-gap: 30px;
    }
}
@media screen and (max-width:575px){
    .home-feature-list{
        row-gap: 40px;
    }
}
/*  home-feature-list-item
------------------------------------------------------------------*/
.home-feature-list-item{
    padding: 0 40px;
}
.home-feature-list-item .icon{
    margin-bottom: 30px;
    text-align: center;
}
.home-feature-list-item .title{
    margin-bottom: 30px;
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    line-height: 1.5;
    text-align: center;
}
.home-feature-list-item .text{
    text-align: justify;
    color: #fff;
}
@media screen and (max-width:1599px){
    .home-feature-list-item{
        padding: 0 20px;
    }
}
@media screen and (max-width:1399px){
    .home-feature-list-item{
        padding: 0;
    }
    .home-feature-list-item .title{
        font-size: 1.375rem;
    }
    .home-feature-list-item .text{
        font-size: .9125rem;
    }
}
@media screen and (max-width:1199px){
    .home-feature-list-item .title{
        font-size: 1.25rem;
    }
    .home-feature-list-item .text{
        font-size: .875rem;
    }
}
@media screen and (max-width:991px){
    .home-feature-list-item{
        display: grid;
        grid-template-columns: 80px 1fr;
        column-gap: 20px;
        padding-bottom: 30px;
        border-bottom: 1px dashed #7d6864;
    }
    .home-feature-list-item .icon{
        margin-bottom: 0;
    }
    .home-feature-list-item .title{
        margin-bottom: 8px;
        font-size: 1.125rem;
        text-align: left;
    }
}
@media screen and (max-width:575px){
    .home-feature-list-item{
        display: block;
        padding-bottom: 0;
        border-bottom: initial;
    }
    .home-feature-list-item .icon{
        width: 160px;
        margin: 0 auto 20px;
    }
    .home-feature-list-item .title{
        margin-bottom: 20px;
        font-size: 1.25rem;
        text-align: center;
    }
}
/*  home-feature-treat
------------------------------------------------------------------*/
.home-feature-treat{
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    width: 100%;
    overflow: hidden;
    z-index: -1;
}
.home-feature-treat .one,
.home-feature-treat .two{
    flex-shrink: 0;
    padding-left: 60px;
    line-height: 1;
}
.home-feature-treat .one{
    animation: homeFeatureLoop1 60s -30s linear infinite;
}
.home-feature-treat .two{
    animation: homeFeatureLoop2 60s linear infinite;
}
@keyframes homeFeatureLoop1 {
    from{
        transform: translateX(100%);
    }
    to{
        transform: translateX(-100%);
    }
}
@keyframes homeFeatureLoop2 {
    from{
        transform: translateX(0%);
    }
    to{
        transform: translateX(-200%);
    }
}
@media screen and (max-width:1399px){
    .home-feature-treat .one,
    .home-feature-treat .two{
        width: 2000px;
        padding-left: 40px;
    }
}
@media screen and (max-width:991px){
    .home-feature-treat .one,
    .home-feature-treat .two{
        width: 1500px;
        padding-left: 30px;
    }
}
@media screen and (max-width:575px){
    .home-feature-treat .one,
    .home-feature-treat .two{
        width: 1200px;
        padding-left: 20px;
    }
}

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

/*  home-service
------------------------------------------------------------------*/
.home-service{
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    z-index: 1;
}
@media screen and (max-width:1399px){
    .home-service{
        padding: 100px 0;
    }
}
@media screen and (max-width:991px){
    .home-service{
        padding: 80px 0;
    }
}
@media screen and (max-width:767px){
    .home-service{
        padding: 60px 0;
    }
}
/*  home-service-inner
------------------------------------------------------------------*/
.home-service-inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 60px;
}
@media screen and (max-width:991px){
    .home-service-inner{
        column-gap: 40px;
    }
}
@media screen and (max-width:767px){
    .home-service-inner{
        flex-direction: column;
        row-gap: 30px;
    }
}
/*  home-service-detail
------------------------------------------------------------------*/
.home-service-detail{
    flex-shrink: 0;
    width: 520px;
}
@media screen and (max-width:1399px){
    .home-service-detail{
        width: 380px;
    }
}
@media screen and (max-width:991px){
    .home-service-detail{
        width: 320px;
    }
}
@media screen and (max-width:767px){
    .home-service-detail{
        width: 100%;
    }
}
/*  home-service-text
------------------------------------------------------------------*/
.home-service-text{
    margin-bottom: 50px;
    font-size: 1.125rem;
    text-align: justify;
}
@media screen and (max-width:1399px){
    .home-service-text{
        margin-bottom: 40px;
        font-size: 1rem;
    }
}
@media screen and (max-width:991px){
    .home-service-text{
        margin-bottom: 30px;
        font-size: .875rem;
    }
}
@media screen and (max-width:767px){
    .home-service-text{
        margin-bottom: 0;
    }
}
/*  home-service-list
------------------------------------------------------------------*/
.home-service-list{
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 12px;
    width: 660px;
}
@media screen and (max-width:767px){
    .home-service-list{
        grid-template-columns: repeat(2,1fr);
        gap: 8px;
        width: 100%;
    }
}
@media screen and (max-width:575px){
    .home-service-list{
        grid-template-columns: 1fr;
    }
}
/*  home-service-list-item
------------------------------------------------------------------*/
.home-service-list-item{
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    column-gap: 20px;
    padding: .75em 1.25em;
    background: var(--black-color);
    transition: .2s ease-out;
    font-size: 1.25rem;
    color: #fff;
    z-index: 1;
}
.home-service-list-item::after{
    position: absolute;
    top: 50%;
    right: 1em;
    transform: translateY(-50%);
    transition: .2s ease-out;
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: bold;
    color: var(--primary-color);
    z-index: 1;
}
/* ホバー時動作 */
@media (hover:hover) {
    .home-service-list-item:hover{
        background: #ac3b03;
    }
    .home-service-list-item:hover::after{
        right: .5em;
        color: #fff;
    }
}
@media (hover:none) {
    .home-service-list-item:active{
        background: #ac3b03;
    }
    .home-service-list-item:active::after{
        right: .5em;
        color: #fff;
    }
}
@media screen and (max-width:1399px){
    .home-service-list-item{
        grid-template-columns: 52px 1fr;
        font-size: 1.125rem;
    }
}
@media screen and (max-width:991px){
    .home-service-list-item{
        grid-template-columns: 48px 1fr;
        font-size: 1rem;
    }
}
@media screen and (max-width:767px){
    .home-service-list-item{
        padding: .75em 2em .75em .5em;
        grid-template-columns: 32px 1fr;
        column-gap: 8px;
        font-size: .875rem;
    }
    .home-service-list-item::after{
        font-size: 12px;
    }
}

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

/*  home-topics
------------------------------------------------------------------*/
.home-topics{
    position: relative;
    padding: 100px 0;
    background: #efefef;
    z-index: 2;
}
@media screen and (max-width:1199px){
    .home-topics{
        padding: 80px 0;
    }
}
@media screen and (max-width:767px){
    .home-topics{
        padding: 60px 0;
    }
}
/*  home-topics-wrapper
------------------------------------------------------------------*/
.home-topics-wrapper{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    column-gap: 60px;
}
@media screen and (max-width:1199px){
    .home-topics-wrapper{
        flex-direction: column;
        align-items: initial;
        justify-content: initial;
        row-gap: 10px;
    }
}
/*  home-topics-titlearea
------------------------------------------------------------------*/
.home-topics-titlearea{
    flex-shrink: 0;
}
@media screen and (max-width:1199px){
    .home-topics-titlearea{
        width: 100%;
    }
}
/*  home-topics-contents
------------------------------------------------------------------*/
.home-topics-contents{
    width: 1000px;
}
@media screen and (max-width:1399px){
    .home-topics-contents{
        width: 100%;
    }
}
/*  home-topics-category-list
------------------------------------------------------------------*/
.home-topics-category-list{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 10px;
    margin-bottom: 30px;
}
@media screen and (max-width:767px){
    .home-topics-category-list{
        grid-template-columns: repeat(2,1fr);
        gap: 8px;
    }
}
/*  home-topics-category-btn
------------------------------------------------------------------*/
.home-topics-category-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 3.5em;
    padding: 0 1em;
    background: #bbb;
    font-size: .875rem;
    color: #777;
    text-align: center;
    line-height: 1.2;
    transition: .2s ease-out;
}
.home-topics-category-btn.active{
    background: var(--primary-color);
    color: #fff;
}
/* ホバー時動作 */
@media (hover:hover) {    
    .home-topics-category-btn:hover{
        background: var(--primary-color);
        color: #fff;
    }
}
@media (hover:none) {    
    .home-topics-category-btn:active{
        background: var(--primary-color);
        color: #fff;
    }
}
@media screen and (max-width:991px){
    .home-topics-category-btn{
        font-size: .75rem;
    }
}
/*  home-topics-list
------------------------------------------------------------------*/
.home-topics-list{
    display: none;
}
.home-topics-list.is-show{
    display: block;
    border-top: 1px solid #999;
}
/*  home-topics-list-item
------------------------------------------------------------------*/
.home-topics-list-item{
    position: relative;
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px 10px;
    border-bottom: 1px solid #999;
    z-index: 1;
}
.home-topics-list-item .image img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: .2s ease-out;
}
.home-topics-list-item .body{
    flex: 1;
}
.home-topics-list-item .detail{
    display: flex;
    align-items: center;
    column-gap: 20px;
    margin-bottom: 8px;
}
.home-topics-list-item .new{
    color: var(--red-color);
    line-height: 1;
}
.home-topics-list-item .date{
    color: #666;
    line-height: 1;
}
.home-topics-list-item .category{
    padding: .4em 1em;
    background: var(--primary-color);
    font-size: .75rem;
    color: #fff;
    line-height: 1;
}
.home-topics-list-item .title{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    line-height: 1.4;
    transition: .2s ease-out;
}
.home-topics-list-item .arrow{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    font-size: 10px;
    color: #fff;
    line-height: 1;
    transition: .2s ease-out;
    z-index: 1;
}
.home-topics-list-item .arrow::after{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black-color);
    border-radius: 50%;
    content: "";
    transition: .2s ease-out;
    z-index: -1;
}
/* ホバー時動作 */
@media (hover:hover) {
    a.home-topics-list-item:hover .title{
        color: var(--primary-color);
    }
    a.home-topics-list-item:hover .arrow{
        color:#fff;
    }
    a.home-topics-list-item:hover .arrow::after{
        transform: scale(0.9);
        background: var(--primary-color);
        border-color: var(--primary-color);
    }
}
@media (hover:none) {
    a.home-topics-list-item:active .title{
        color: var(--primary-color);
    }
    a.home-topics-list-item:active .arrow{
        color:#fff;
    }
    a.home-topics-list-item:active .arrow::after{
        transform: scale(0.9);
        background: var(--primary-color);
        border-color: var(--primary-color);
    }
}
@media screen and (max-width:991px){
    .home-topics-list-item{
        padding: 20px 10px;
    }
    .home-topics-list-item .detail{
        column-gap: 12px;
    }
    .home-topics-list-item .new{
        font-size: .875rem;
    }
    .home-topics-list-item .date{
        font-size: .875rem;
    }
    .home-topics-list-item .category{
        padding: .25em 1em;
        font-size: .75rem;
    }
}
@media screen and (max-width:575px){
    .home-topics-list-item{
        column-gap: 12px;
    }
    .home-topics-list-item .detail{
        column-gap: 8px;
    }
    .home-topics-list-item .new{
        font-size: .75rem;
    }
    .home-topics-list-item .date{
        font-size: .75rem;
    }
    .home-topics-list-item .category{
        padding: .25em 1em;
        font-size: .625rem;
    }
    .home-topics-list-item .title{
        -webkit-line-clamp: 3;
        font-size: .8125rem;
    }
    .home-topics-list-item .arrow{
        display: none;
    }
}


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

/*  topics-category-list
------------------------------------------------------------------*/
.topics-category-list{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 10px;
}
@media screen and (max-width:767px){
    .topics-category-list{
        grid-template-columns: repeat(2,1fr);
        gap: 8px;
    }
}
/*  topics-category-btn
------------------------------------------------------------------*/
.topics-category-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 3.5em;
    padding: 0 1em;
    background: #bbb;
    font-size: .875rem;
    color: #777;
    text-align: center;
    line-height: 1.2;
    transition: .2s ease-out;
}
.topics-category-btn.active{
    background: var(--primary-color);
    color: #fff;
}
/* ホバー時動作 */
@media (hover:hover) {    
    .topics-category-btn:hover{
        background: var(--primary-color);
        color: #fff;
    }
}
@media (hover:none) {    
    .topics-category-btn:active{
        background: var(--primary-color);
        color: #fff;
    }
}
@media screen and (max-width:991px){
    .topics-category-btn{
        font-size: .75rem;
    }
}
/*  topics-contents
------------------------------------------------------------------*/
.topics-contents{
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid #a19a95;
}
.topics-contents .detail{
    display: flex;
    align-items: center;
    column-gap: 20px;
    margin-bottom: 8px;
}
.topics-contents .new{
    color: var(--red-color);
    line-height: 1;
}
.topics-contents .date{
    color: #666;
    line-height: 1;
}
.topics-contents .category{
    padding: .4em 1em;
    background: var(--primary-color);
    font-size: .75rem;
    color: #fff;
    line-height: 1;
}
.topics-contents .title{
    font-size: 1.25rem;
    font-weight: bold;
}
@media screen and (max-width:1399px){
    .topics-contents .detail{
        column-gap: 12px;
    }
    .topics-contents .new{
        font-size: .875rem;
    }
    .topics-contents .date{
        font-size: .875rem;
    }
    .topics-contents .category{
        padding: .25em 1em;
        font-size: .75rem;
    }
    .topics-contents .title{
        font-size: 1.125rem;
    }
}
@media screen and (max-width:575px){
    .topics-contents .detail{
        column-gap: 8px;
        margin-bottom: 4px;
    }
    .topics-contents .new{
        font-size: .75rem;
    }
    .topics-contents .date{
        font-size: .75rem;
    }
    .topics-contents .category{
        padding: .25em 1em;
        font-size: .625rem;
    }
    .topics-contents .title{
        font-size: 1rem;
    }
}



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

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