@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
　- js-module.css       GSAP等のアニメーション用のモジュールをまとめたCSS

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



/*/////////////////////////////////////////////////////////////////
  index.html
/////////////////////////////////////////////////////////////////*/

/*------------------------------------------------------------------
  home-top
------------------------------------------------------------------*/

/*  home-top
------------------------------------------------------------------*/
.home-top{
    position: relative;
    background: url(../images/home/hero-bg.jpg) no-repeat top center / 100%;
    z-index: 1;
}
@media screen and (max-width:1199px){
    .home-top{
        background: url(../images/home/hero-bg-sp.jpg) no-repeat top center / 100%;
    }
}
/*------------------------------------------------------------------
  home-hero
------------------------------------------------------------------*/

/*  home-hero
------------------------------------------------------------------*/
.home-hero{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 3.125vw;
    padding: 13.5vw 3.125vw 150px;
    z-index: 1;
}
@media screen and (max-width:1199px){
    .home-hero{
        display: block;
        padding: 60px 6vw;
    }
}
/*  home-hero-detail
------------------------------------------------------------------*/
@media screen and (max-width:1199px){
    .home-hero-detail{
        padding: 10vw 0;
    }
}
@media screen and (max-width:575px){
    .home-hero-detail{
        padding: 14vw 0;
    }
}

/*  home-hero-title
------------------------------------------------------------------*/
.home-hero-title{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    row-gap: .25em;
    margin-bottom: .5em;
    font-size: clamp(60px, 5.73vw, 110px);
    font-weight: bold;
    line-height: 1.25;
    font-feature-settings: "palt";
    letter-spacing: .05em;
    white-space: nowrap;
}
.home-hero-title span{
    display: block;
}
@media screen and (max-width:1199px){
    .home-hero-title{
        font-size: 10.6vw;
    }
}

/*  home-hero-caption
------------------------------------------------------------------*/
.home-hero-caption{
    font-size: clamp(1rem, 1.25vw, 1.5rem);
}
@media screen and (max-width:1199px){
    .home-hero-caption{
        font-size: max(2.5vw,.75rem);
    }
}

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

/*  home-about
------------------------------------------------------------------*/
.home-about{
    position: relative;
    background: url(../images/home/about-bg.jpg) no-repeat center / cover;
    padding-right: 6vw;
    z-index: 2;
}
@media screen and (max-width:991px){
    .home-about{
        padding: 100px 0 80px;
    }
}
@media screen and (max-width:767px){
    .home-about{
        padding: 80px 0 60px;
    }
}
/*  home-about-container
------------------------------------------------------------------*/
.home-about-container{
    display: flex;
    align-items: center;
    margin-left: auto;
}
@media screen and (max-width:991px){
    .home-about-container{
        display: block;
        margin: 0;
    }
}
/*  home-about-detail
------------------------------------------------------------------*/
.home-about-detail{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 1;
    padding: 0 6vw;
}
@media screen and (max-width:991px){
    .home-about-detail{
        margin-bottom: 50px;
    }
}
/*  home-about-detail-inner
------------------------------------------------------------------*/
.home-about-detail-inner{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
/*  home-about-title
------------------------------------------------------------------*/
.home-about-title{
    margin-bottom: 0.5em;
    font-size: clamp(3.25rem,3.125vw,3.75rem);
    font-weight: bold;
    color: #fff;
    line-height: 1.5;
    white-space: nowrap;
}
@media screen and (max-width:1399px){
    .home-about-title{
        font-size: 3rem;
    }
}
@media screen and (max-width:1199px){
    .home-about-title{
        font-size: 2.75rem;
    }
}
@media screen and (max-width:991px){
    .home-about-title{
        text-align: center;
    }
}
@media screen and (max-width:575px){
    .home-about-title{
        margin-bottom: 1em;
        font-size: 8vw;
    }
}
/*  home-about-text
------------------------------------------------------------------*/
.home-about-text{
    margin-bottom: 40px;
    font-size: clamp(1rem,.9375vw,1.125rem);
    color: #fff;
    line-height: 2.5;
}
@media screen and (max-width:1399px){
    .home-about-text br{
        display: none;
    }
}
@media screen and (max-width:991px){
    .home-about-text{
        font-size: .875rem;
    }
}
@media screen and (max-width:575px){
    .home-about-text{
        
    }
}
/*  home-about-sliders
------------------------------------------------------------------*/
.home-about-sliders{
    display: flex;
    align-items: flex-start;
    column-gap: 30px;
    height: clamp(850px,55vw,1060px);
    overflow: hidden;
}
@media screen and (max-width:1399px){
    .home-about-sliders{
        height: 750px;
        column-gap: 16px;
    }
}
@media screen and (max-width:991px){
    .home-about-sliders{
        flex-direction: column;
        row-gap: 16px;
        height: auto;
    }
}
/*  home-about-slider
------------------------------------------------------------------*/
.home-about-slider01,
.home-about-slider02{
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 30px;
}
.home-about-slider01{
    position: relative;
    animation: homeAboutSlider1 40s linear infinite;
    will-change: transform;
}
.home-about-slider02{
    position: relative;
    animation: homeAboutSlider2 40s linear infinite;
    will-change: transform;
}
.home-about-slider01 .inner,
.home-about-slider02 .inner{
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 30px;
}
.home-about-slider01 img,
.home-about-slider02 img{
    display: block;
    width: 100%;
    height: auto;
}
@keyframes homeAboutSlider1 {
    from { transform: translateY(0%); }
    to   { transform: translateY(calc(-50% - 15px)); }
}
@keyframes homeAboutSlider2 {
    from { transform: translateY(calc(-50% - 15px)); }
    to   { transform: translateY(0%); }
}
@media screen and (max-width:1399px){
    .home-about-slider01,
    .home-about-slider02{
        row-gap: 16px;
    }
    .home-about-slider01 .inner,
    .home-about-slider02 .inner{
        row-gap: 16px;
    }
}
@media screen and (max-width:991px){
    .home-about-slider01,
    .home-about-slider02{
        display: flex;
        column-gap: 16px;
    }
    .home-about-slider01 .inner,
    .home-about-slider02 .inner{
        display: flex;
        column-gap: 16px;
    }
    .home-about-slider01 figure,
    .home-about-slider02 figure{
        width: 200px;
    }
    @keyframes homeAboutSlider1 {
        from { transform: translateX(0%); }
        to   { transform: translateX(calc(-50% - 15px)); }
    }
    @keyframes homeAboutSlider2 {
        from { transform: translateX(calc(-50% - 15px)); }
        to   { transform: translateX(0%); }
    }
}
@media screen and (max-width:575px){
    .home-about-slider01 figure,
    .home-about-slider02 figure{
        width: 150px;
    }
}

/*------------------------------------------------------------------
  home-works
------------------------------------------------------------------*/

/*  home-works
------------------------------------------------------------------*/
.home-works{
    position: relative;
    padding: 160px 0 100px;
    background: url(../images/home/works-bg.jpg) no-repeat top center / 100%;
    overflow: hidden;
    z-index: 1;
}
@media screen and (max-width:1399px){
    .home-works{
        padding: 120px 0 80px;
    }
}
@media screen and (max-width:991px){
    .home-works{
        padding: 80px 0 60px;
        background: url(../images/home/works-bg-sp.jpg) no-repeat top center / 100%;
    }
}
/*  home-works-slider
------------------------------------------------------------------*/
.home-works-slider{
    position: relative;
    padding: 30px 0 60px;
    margin-bottom: 60px;
    z-index: 1;
}
.home-works-slider .swiper-slide{
    position: relative;
    z-index: 1;
}
.home-works-slider .swiper-button-next,
.home-works-slider .swiper-button-prev{
    position: absolute;
    top: 36%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    font-size: 20px;
    color: #fff;
    cursor: pointer;
    transition: .2s ease-out;
    z-index: 2;
}
.home-works-slider .swiper-button-next.swiper-button-disabled,
.home-works-slider .swiper-button-prev.swiper-button-disabled{
    background: #aaa;
    color: #666;
    opacity: 1;
    pointer-events: none;
}
.home-works-slider .swiper-button-next::after,
.home-works-slider .swiper-button-prev::after{
    display: none;
}
.home-works-slider .swiper-button-next{ right: -30px;}
.home-works-slider .swiper-button-prev{ left: -30px;}

.home-works-slider .swiper-scrollbar-drag{
    background: var(--primary-color);
}
.home-works-slider .swiper-button-next:hover,
.home-works-slider .swiper-button-prev:hover{
    background: var(--accent-color);
}
.home-works-slider .swiper-button-next:active,
.home-works-slider .swiper-button-prev:active{
    transform: scale(.9);
}
@media screen and (max-width:1399px){
    .home-works-slider .swiper-button-next,
    .home-works-slider .swiper-button-prev{
        width: 60px;
        height: 60px;
        font-size: 16px;
    }
}
@media screen and (max-width:767px){
    .home-works-slider{
        padding: 8px 0 40px;
        margin-bottom: 40px;
    }
    .home-works-slider .swiper-button-next,
    .home-works-slider .swiper-button-prev{
        width: 48px;
        height: 48px;
        font-size: 12px;
    }
    .home-works-slider .swiper-button-next{ right: -16px;}
    .home-works-slider .swiper-button-prev{ left: -16px;}
}

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

/*  home-feature
------------------------------------------------------------------*/
.home-feature{
    position: relative;
    padding: 130px 0;
    background: linear-gradient(0,#023d99 0%, #1d95da 100%);
    overflow: hidden;
    z-index: 1;
}
@media screen and (max-width:1399px){
    .home-feature{
        padding: 100px 0;
    }
}
@media screen and (max-width:767px){
    .home-feature{
        padding: 80px 0;
    }
}
/*  home-feature-treat
------------------------------------------------------------------*/
.home-feature-treat01,
.home-feature-treat02{
    display: flex;
    column-gap: 60px;
    overflow: hidden;
}
.home-feature-treat01{
    position: absolute;
    top: 0;
    left: 0;
    animation: homeFeatureTreat1 30s linear infinite;
    will-change: transform;
    z-index: -1;
}
.home-feature-treat02{
    position: absolute;
    bottom: 0;
    right: 0;
    animation: homeFeatureTreat2 30s linear infinite;
    will-change: transform;
    z-index: -1;
}
.home-feature-treat01 .one,
.home-feature-treat01 .two,
.home-feature-treat02 .one,
.home-feature-treat02 .two{
    width: 1622px;
    flex-shrink: 0;
}
@keyframes homeFeatureTreat1 {
    from { transform: translateX(0%); }
    to   { transform: translateX(calc(-50% - 30px)); }
}
@keyframes homeFeatureTreat2 {
    from { transform: translateX(0%); }
    to   { transform: translateX(calc(50% - 30px)); }
}
@media screen and (max-width:1399px){
    .home-feature-treat01 .one,
    .home-feature-treat01 .two,
    .home-feature-treat02 .one,
    .home-feature-treat02 .two{
        width: 1400px;
    }
}
@media screen and (max-width:991px){
    .home-feature-treat01 .one,
    .home-feature-treat01 .two,
    .home-feature-treat02 .one,
    .home-feature-treat02 .two{
        width: 1200px;
    }
}
@media screen and (max-width:767px){
    .home-feature-treat01 .one,
    .home-feature-treat01 .two,
    .home-feature-treat02 .one,
    .home-feature-treat02 .two{
        width: 900px;
    }
}
/*  home-feature-wrapper
------------------------------------------------------------------*/
.home-feature-wrapper{
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    column-gap: 60px;
}
@media screen and (max-width:1600px){
    .home-feature-wrapper{
        column-gap: 40px;
    }
}
@media screen and (max-width:1199px){
    .home-feature-wrapper{
        flex-direction: column;
        align-items: initial;
    }
}
/*  home-feature-title
------------------------------------------------------------------*/
.home-feature-title{
    font-size: 4.5rem;
    font-weight: bold;
    color: #fff;
    writing-mode: vertical-rl;
    line-height: 1.7;
}
.home-feature-title span{
    display: block;
}
.home-feature-title span:nth-of-type(2){
    margin-top: 3.5em;
}
@media screen and (max-width:1600px){
    .home-feature-title{
        font-size: 3.75rem;
    }
}
@media screen and (max-width:1199px){
    .home-feature-title{
        margin-bottom: 1.25em;
        font-size: 3rem;
        line-height: 1.5;
        writing-mode: horizontal-tb;
        text-align: center;
    }
    .home-feature-title span{
        display: inline;
    }
    .home-feature-title span:nth-of-type(2){
        margin-top: 0;
    }
}
@media screen and (max-width:991px){
    .home-feature-title{
        font-size: 2.5rem;
    }
}
@media screen and (max-width:767px){
    .home-feature-title{
        font-size: 2rem;
    }
    .home-feature-title span{
        display: block;
    }
}
/*  home-feature-detail
------------------------------------------------------------------*/
.home-feature-detail{
    flex: 1;
}
/*  home-feature-list
------------------------------------------------------------------*/
.home-feature-list{
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: repeat(3,auto);
    grid-template-columns: repeat(2,1fr);
    column-gap: 80px;
    row-gap: 40px;
}
@media screen and (max-width:1600px){
    .home-feature-list{
        column-gap: 30px;
    }
}
@media screen and (max-width:991px){
    .home-feature-list{
        grid-auto-flow: initial;
        grid-template-rows:initial;
        grid-template-columns: 1fr;
    }
}
@media screen and (max-width:767px){
    .home-feature-list{
        row-gap: 20px;
    }
}
/*  home-feature-list-item
------------------------------------------------------------------*/
.home-feature-list-item{
    padding-bottom: 40px;
    border-bottom: 1px solid #62a4e0;
}
@media screen and (max-width:767px){
    .home-feature-list-item{
        padding-bottom: 20px;
    }
}
/*  home-feature-list-item-title
------------------------------------------------------------------*/
.home-feature-list-item-title{
    display: flex;
    align-items: flex-end;
    column-gap: 20px;
    margin-bottom: 20px;
}
.home-feature-list-item-title .num{
    font-family: var(--en-font);
    font-size: 4.5rem;
    font-weight: bold;
    font-style: italic;
    color: #fff;
    line-height: .8;
}
.home-feature-list-item-title .caption{
    margin-bottom: 8px;
    font-family: var(--en-font);
    font-size: .75rem;
    color: #84bfe1;
    line-height: 1;
}
.home-feature-list-item-title .title{
    font-size: 1.75rem;
    font-weight: bold;
    color: #fff;
    line-height: 1.2;
}
@media screen and (max-width:1600px){
    .home-feature-list-item-title .num{
        font-size: 4rem;
    }
    .home-feature-list-item-title .title{
        font-size: 1.5rem;
    }
}
@media screen and (max-width:767px){
    .home-feature-list-item-title{
        column-gap: 12px;
        margin-bottom: 8px;
    }
    .home-feature-list-item-title .num{
        font-size: 3.5rem;
    }
    .home-feature-list-item-title .caption{
        margin-bottom: 4px;
        font-size: .625rem;
    }
    .home-feature-list-item-title .title{
        font-size: 1.25rem;
    }
}
/*  home-feature-list-item-text
------------------------------------------------------------------*/
.home-feature-list-item-text{
    font-size: 1.125rem;
    color: #fff;
}
@media screen and (max-width:1600px){
    .home-feature-list-item-text{
        font-size: 1rem;
    }
}
@media screen and (max-width:767px){
    .home-feature-list-item-text{
        font-size: .875rem;
    }
}

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

/*  home-links
------------------------------------------------------------------*/
.home-links{
    position: relative;
    padding: 120px 0;
    background: linear-gradient(0,#b1caf1 0%, #e2e9f3 100%);
    overflow: hidden;
    z-index: 1;
}
@media screen and (max-width:1399px){
    .home-links{
        padding: 100px 0;
    }
}
@media screen and (max-width:991px){
    .home-links{
        padding: 80px 0;
    }
}
@media screen and (max-width:767px){
    .home-links{
        padding: 60px 0;
    }
}
/*  home-links-list
------------------------------------------------------------------*/
.home-links-list{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
}
@media screen and (max-width:1600px){
    .home-links-list{
        grid-template-columns: repeat(3,1fr);
    }
}
@media screen and (max-width:1399px){
    .home-links-list{
        gap: 20px;
    }
}
@media screen and (max-width:1199px){
    .home-links-list{
        grid-template-columns: repeat(2,1fr);
    }
}
@media screen and (max-width:767px){
    .home-links-list{
        grid-template-columns: 1fr;
        gap: 10px;
    }
}
/*  home-links-list-item
------------------------------------------------------------------*/
.home-links-list-item{
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 30px 20px 20px 24px;
    background: #fff;
    border-radius: 10px 50px 10px 10px;
    border: 1px solid transparent;
    transition: .2s ease-out;
}
.home-links-list-item .icon{
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}
.home-links-list-item .icon img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.home-links-list-item .title{
    margin-bottom: 16px;
    font-size: 1.125rem;
    font-weight: bold;
    line-height: 1.5;
}
.home-links-list-item .body{
    display: flex;
    align-items: flex-end;
    column-gap: 20px;
    margin-top: auto;
}
.home-links-list-item .text{
    flex: 1;
    color: #4d546f;
    line-height: 1.7;
}
.home-links-list-item .arrow{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1px solid var(--black-color);
    border-radius: 50%;
    transition: .2s ease-out;
}
@media (hover:hover) {
    .home-links-list-item:hover{
        background: var(--accent-light-color);
        border: 1px solid var(--accent-color);
    }
    .home-links-list-item:hover .arrow{
        background: var(--accent-color);
        border-color: var(--accent-color);
        transform: scale(.9);
        color: #fff;
    }
}
@media screen and (max-width:991px){
    .home-links-list-item .icon{
        width: 60px;
        height: 60px;
    }
    .home-links-list-item .title{
        margin-bottom: 4px;
        font-size: 1rem;
    }
    .home-links-list-item .arrow{
        width: 32px;
        height: 32px;
        font-size: 10px;
    }
}
@media screen and (max-width:767px){
    .home-links-list-item{
        display: grid;
        grid-template-columns: auto 1fr;
        column-gap: 12px;
        padding: 20px;
        border-radius: 10px;
    }
    .home-links-list-item .icon{
        grid-row: 1 / 3;
        width: 40px;
        height: 40px;
        margin-bottom: 0;
    }
    .home-links-list-item .title{
        margin-bottom: 4px;
        font-size: 1rem;
    }
    .home-links-list-item .arrow{
        display: none;
    }
}

/*/////////////////////////////////////////////////////////////////
  cms.html
/////////////////////////////////////////////////////////////////*/

/*  cms-about-box
------------------------------------------------------------------*/
.cms-about-box > .title{
    padding: .75em 1em;
    background: var(--primary-color);
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
    line-height: 1.5;
    text-align: center;
}
.cms-about-box > .body{
    padding: 40px;
    background: var(--primary-light-color);
}
@media screen and (max-width:1199px){
    .cms-about-box > .title{
        font-size: 1.75rem;
    }
}
@media screen and (max-width:991px){
    .cms-about-box > .title{
        font-size: 1.5rem;
    }
    .cms-about-box > .body{
        padding: 30px;
    }
}
@media screen and (max-width:767px){
    .cms-about-box > .title{
        font-size: 1.25rem;
    }
    .cms-about-box > .body{
        padding: 20px 16px;
    }
}
/*  cms-about-box-list
------------------------------------------------------------------*/
.cms-about-box-list{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
}
@media screen and (max-width:1399px){
    .cms-about-box-list{
        gap: 10px;
    }
}
@media screen and (max-width:991px){
    .cms-about-box-list{
        grid-template-columns: repeat(2,1fr);
        gap: 20px;
    }
}
@media screen and (max-width:575px){
    .cms-about-box-list{
        grid-template-columns: 1fr;
    }
}
/*  cms-about-box-list-item
------------------------------------------------------------------*/
.cms-about-box-list-item{
    padding: 30px;
    background: #fff;
}
.cms-about-box-list-item > .icon{
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}
.cms-about-box-list-item > .icon > img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.cms-about-box-list-item > .title{
    margin-bottom: .5em;
    font-size: 1.25rem;
    font-weight: bold;
    text-align: center;
    line-height: 1.5;
}
.cms-about-box-list-item > .comment{
    line-height: 1.7;
}
@media screen and (max-width:1399px){
    .cms-about-box-list-item{
        padding: 30px 20px;
    }
    .cms-about-box-list-item > .title{
        font-size: 1.125rem;
    }
    .cms-about-box-list-item > .comment{
        font-size: .875rem;
    }
}
/*  cms-point
------------------------------------------------------------------*/
.cms-point{
    display: grid;
    grid-template-columns: 600px 1fr;
    gap: 80px;
}
@media screen and (max-width:1699px){
    .cms-point{
        grid-template-columns: 540px 1fr;
        gap: 60px;
    }
}
@media screen and (max-width:1399px){
    .cms-point{
        grid-template-columns: 1fr;
        row-gap: 40px;
    }
}
/*  cms-point-head
------------------------------------------------------------------*/
.cms-point-head > .title{
    margin-bottom: 1em;
    font-size: 3.75rem;
    font-weight: bold;
    line-height: 1.5;
    font-feature-settings: "palt";
}
@media screen and (max-width:1699px){
    .cms-point-head > .title{
        font-size: 3.5rem;
    }
}
@media screen and (max-width:1399px){
    .cms-point-head > .icon{
        text-align: center;
    }
    .cms-point-head > .title{
        text-align: center;
    }
}
@media screen and (max-width:767px){
    .cms-point-head > .title{
        font-size: 3.25rem;
    }
}
@media screen and (max-width:575px){
    .cms-point-head > .icon{
        width: 60vw;
        margin: 0 auto;
    }
    .cms-point-head > .title{
        font-size: 8vw;
    }
}
/*  cms-point-body
------------------------------------------------------------------*/
.cms-point-body{
    overflow: hidden;
}
/*  cms-point-list
------------------------------------------------------------------*/
.cms-point-list{
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 24px;
}
@media screen and (max-width:991px){
    .cms-point-list{
        row-gap: 12px;
    }
}
/*  cms-point-list-item
------------------------------------------------------------------*/
.cms-point-list-item{
    padding: 30px;
    border: 1px solid var(--primary-color);
    background: var(--primary-light-color);
}
.cms-point-list-item > .title{
    padding-bottom: .5em;
    margin-bottom: .5em;
    border-bottom: 1px solid #b9bbc6;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1.5;
}
@media screen and (max-width:1199px){
    .cms-point-list-item > .title{
        font-size: 1.375rem;
    }
}
@media screen and (max-width:991px){
    .cms-point-list-item{
        padding: 24px 20px;
    }
    .cms-point-list-item > .title{
        font-size: 1.25rem;
    }
}
@media screen and (max-width:575px){
    .cms-point-list-item > .title{
        font-size: 1.125rem;
    }
}
/*  cms-feature-list
------------------------------------------------------------------*/
.cms-feature-list{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 30px;
}
@media screen and (max-width:1599px){
    .cms-feature-list{
        gap: 20px;
    }
}
@media screen and (max-width:1199px){
    .cms-feature-list{
        grid-template-columns: 1fr;
    }
}
/*  cms-feature-list-item
------------------------------------------------------------------*/
.cms-feature-list-item{
    position: relative;
    padding: 50px 60px;
    background: #fff;
    z-index: 1;
}
@media screen and (max-width:1599px){
    .cms-feature-list-item{
        padding: 50px 40px;
    }
}
@media screen and (max-width:1399px){
    .cms-feature-list-item{
        padding: 40px 30px;
    }
}
@media screen and (max-width:575px){
    .cms-feature-list-item{
        padding: 30px 20px;
    }
}
/*  cms-feature-list-item-head
------------------------------------------------------------------*/
.cms-feature-list-item-head{
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 20px;
    border-bottom: 1px solid #ccc;
}
.cms-feature-list-item-head > .caption{
    font-family: var(--en-font);
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--accent-color);
    line-height: 1;
}
.cms-feature-list-item-head > .title{
    font-size: 2rem;
    font-weight: bold;
    line-height: 1.5;
}
@media screen and (max-width:1399px){
    .cms-feature-list-item-head > .caption{
        font-size: 1rem;
    }
    .cms-feature-list-item-head > .title{
        font-size: 1.75rem;
    }
}
@media screen and (max-width:575px){
    .cms-feature-list-item-head > .title{
        font-size: 1.5rem;
    }
    .cms-feature-list-item-head{
        padding-bottom: 8px;
        margin-bottom: 12px;
    }
}
/*  cms-feature-point
------------------------------------------------------------------*/
.cms-feature-point{
    display: grid;
    grid-template-columns:1fr;
    gap: 20px;
}
.cms-feature-point > li{
    position: relative;
    padding-left: 84px;
    line-height: 1.5;
    font-weight: bold;
}
.cms-feature-point > li > .point{
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 24px;
    padding: 0 8px 0 12px;
    background: var(--primary-color);
    font-family: var(--en-font);
    font-size: .75rem;
    font-weight: bold;
    color: #fff;
    line-height: 1;
}
.cms-feature-point > li > .point::after{
    position: absolute;
    top: 0;
    left: 100%;
    width: 10px;
    height: 24px;
    border-left: 10px solid var(--primary-color);
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    content: "";
    z-index: 1;
}
@media screen and (max-width:1399px){
    .cms-feature-point{
        gap: 16px;
    }
    .cms-feature-point > li{
        font-size: .875rem;
    }
}
@media screen and (max-width:991px){
    .cms-feature-point{
        gap: 20px;
    }
    .cms-feature-point > li{
        padding-left: 0;
    }
    .cms-feature-point > li > .point{
        position: relative;
        top: initial;
        transform: initial;
        margin-bottom: 4px;
    }
    .cms-feature-point > li > .point::after{        
        display: none;
    }
}



/*/////////////////////////////////////////////////////////////////
  column01.html
/////////////////////////////////////////////////////////////////*/

/*  column01-point-head
------------------------------------------------------------------*/
.column01-point-head > .title{
    margin-bottom: 1em;
    font-size: 3.75rem;
    font-weight: bold;
    line-height: 1.5;
    font-feature-settings: "palt";
}
@media screen and (max-width:1599px){
    .column01-point-head > .title{
        font-size: 3rem;
    }
}
@media screen and (max-width:1399px){
    .column01-point-head > .icon{
        text-align: center;
    }
    .column01-point-head > .title{
        text-align: center;
    }
}
@media screen and (max-width:991px){
    .column01-point-head > .title{
        font-size: 2.5rem;
        line-height: 1.3;
    }
}
@media screen and (max-width:575px){
    .column01-point-head > .icon{
        width: 60vw;
        margin: 0 auto 10px;
    }
    .column01-point-head > .title{
        font-size: 9.5vw;
    }
}

/*/////////////////////////////////////////////////////////////////
  designer.html
/////////////////////////////////////////////////////////////////*/

/*  designer-category-list
------------------------------------------------------------------*/
.designer-category-list{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}
@media screen and (max-width:1199px){
    .designer-category-list{
        grid-template-columns: repeat(2,1fr);
        gap: 12px;
    }
}
@media screen and (max-width:767px){
    .designer-category-list{
        grid-template-columns: 1fr;
        gap: 8px;
    }
}
/*  designer-category-card
------------------------------------------------------------------*/
.designer-category-card{
    position: relative;
    display: flex;
    align-items: center;
    column-gap: 20px;
    padding: 12px;
    border: 1px solid #5c6368;
    border-radius: 4px;
    transition: .2s ease-out;
    z-index: 1;
}
.designer-category-card .selected{
    position: absolute;
    top: 8px;
    right: 0;
    padding: 4px 8px;
    background: var(--primary-color);
    font-size: .75rem;
    color: #fff;
    opacity: 0;
    visibility: hidden;
    line-height: 1;
    z-index: 1;
}
.designer-category-card .image{
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    overflow: hidden;
}
.designer-category-card .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.designer-category-card .name{
    margin-bottom: 4px;
    font-size: 1rem;
    font-weight: bold;
    line-height: 1.5;
}
.designer-category-card .text{
    font-size: .875rem;
    line-height: 1.5;
}
/* 選択中: SDK が選択中リンクに付与する aria-current="page" で発火（旧 .active は Laravel 時代の名残・現在は未使用） */
.designer-category-card.active,
.designer-category-card[aria-current="page"]{
    background: var(--primary-light-color);
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(19, 59, 165, .3);
    pointer-events: none;
}
.designer-category-card.active .selected,
.designer-category-card[aria-current="page"] .selected{
    opacity: 1;
    visibility: visible;
}
/* ホバー時動作 */
@media (hover:hover) {
    .designer-category-card:hover{
        background: var(--primary-light-color);
        border-color: var(--primary-color);
        box-shadow: 0 0 10px rgba(19, 59, 165, .3);
    }
}
@media (hover:none) {
    .designer-category-card:active{
        background: var(--primary-light-color);
        border-color: var(--primary-color);
        box-shadow: 0 0 10px rgba(19, 59, 165, .3);
    }
}
@media screen and (max-width:767px){
    .designer-category-card{
        padding: 8px;
        column-gap: 12px;
    }
    .designer-category-card .selected{
        top: 4px;
        font-size: .625rem;
    }
    .designer-category-card .image{
        width: 60px;
        height: 60px;
    }
    .designer-category-card .name{
        margin-bottom: 0;
        font-size: .875rem;
    }
    .designer-category-card .text{
        font-size: .75rem;
    }
}
/*  designer-contents
------------------------------------------------------------------*/
.designer-contents .head{
    display: flex;
    align-items: center;
    column-gap: 30px;
    margin-bottom: 40px;
}
.designer-contents .image{
    flex-shrink: 0;
    width: 160px;
    height: 160px;
    overflow: hidden;
}
.designer-contents .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.designer-contents .name{
    margin-bottom: 20px;
    font-size: 2rem;
    font-weight: bold;
    line-height: 1;
}
.designer-contents .text{
    font-size: 1rem;
    line-height: 1.7;
}
.designer-contents .interview{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 30px;
}
.designer-contents .interview dt{
    padding: .5em 1em;
    margin-bottom: 8px;
    border-left: 4px solid var(--primary-color);
    background: var(--primary-light-color);
    font-size: 1rem;
    line-height: 1.5;
}
.designer-contents .interview dd{
    font-size: .875rem;
    line-height: 1.7;
}
@media screen and (max-width:1199px){
    .designer-contents .image{
        width: 120px;
        height: 120px;
    }
    .designer-contents .name{
        margin-bottom: 12px;
        font-size: 1.5rem;
    }
}
@media screen and (max-width:991px){
    .designer-contents .interview{
        grid-template-columns: 1fr;
    }
}
@media screen and (max-width:767px){
    .designer-contents .head{
        column-gap: 12px;
        margin-bottom: 20px;
    }
    .designer-contents .image{
        width: 80px;
        height: 80px;
    }
    .designer-contents .name{
        margin-bottom: 8px;
        font-size: 1.25rem;
    }
    .designer-contents .text{
        font-size: .875rem;
    }
    .designer-contents .interview dt{
        font-size: .875rem;
    }
}
/*  designer-activity-list
------------------------------------------------------------------*/
.designer-activity-list{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    column-gap: 30px;
    row-gap: 40px;
}
@media screen and (max-width:1399px){
    .designer-activity-list{
        column-gap: 20px;
        row-gap: 30px;
    }
}
@media screen and (max-width:1199px){
    .designer-activity-list{
        grid-template-columns: repeat(3,1fr);
    }
}
@media screen and (max-width:767px){
    .designer-activity-list{
        grid-template-columns: repeat(2,1fr);
    }
}
@media screen and (max-width:575px){
    .designer-activity-list{
        column-gap: 10px;
    }
}
/*  designer-activity-card
------------------------------------------------------------------*/
.designer-activity-card{
    display: block;
}
.designer-activity-card .image{
    aspect-ratio: 16 / 9;
    margin-bottom: 12px;
    overflow: hidden;
}
.designer-activity-card .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .2s ease-out;
}
.designer-activity-card .title{
    line-height: 1.7;
    transition: .2s ease-out;
}
/* ホバー時動作 */
@media (hover:hover) {
    .designer-activity-card:hover .image img{
        transform: scale(1.1);
        filter: brightness(.6);
    }
    .designer-activity-card:hover .title{
        color: var(--primary-color);
    }
}
@media screen and (max-width:1399px){
    .designer-activity-card .title{
        font-size: .875rem;
    }
}
@media screen and (max-width:767px){
    .designer-activity-card .image{
        margin-bottom: 8px;
    }
    .designer-activity-card .title{
        font-size: .75rem;
    }
}

/*/////////////////////////////////////////////////////////////////
  works.html
/////////////////////////////////////////////////////////////////*/

/*  works-card
------------------------------------------------------------------*/
.works-card{
    display: block;
}
.works-card .image{
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 960 / 551;
    margin-bottom: 24px;
    transition: .3s ease-out;
    background: url(../images/common/works-laptop.png) no-repeat center / cover;
    z-index: 1;
}
.works-card .image .inner{
    position: absolute;
    top: 5%;
    left: 11%;
    width: 78%;
    height: 86%;
    z-index: 1;
}
.works-card .image .inner img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.works-card .category{
    width: fit-content;
    padding: .4em 1em;
    margin-bottom: 12px;
    background: var(--primary-light-color);
    border-radius: 4px;
    font-size: .875rem;
    color: var(--primary-color);
    line-height: 1;
}
.works-card .title{
    font-size: 1.25rem;
    font-weight: bold;
    line-height: 1.4;
}
.works-card:hover .image{
    opacity: .7;
}
@media screen and (max-width:1399px){
    .works-card .category{
        margin-bottom: 8px;
        font-size: .75rem;
    }
    .works-card .title{
        font-size: 1.125rem;
    }
}
@media screen and (max-width:1199px){
    .works-card .category{
        font-size: .75rem;
    }
    .works-card .title{
        font-size: 1rem;
    }
}
@media screen and (max-width:575px){
    .works-card .image{
        margin-bottom: 12px;
    }
    .works-card .category{
        font-size: .625rem;
    }
    .works-card .title{
        font-size: .875rem;
    }
}
/*  works-category-box
------------------------------------------------------------------*/
.works-category-box{
    padding: 30px;
    background: #efefef;
}
@media screen and (max-width:575px){
    .works-category-box{
        padding: 20px 16px;
    }
}
/*  works-category-group
------------------------------------------------------------------*/
.works-category-group{
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 28px;
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid #ccc;
    line-height: 1.5;
}
.works-category-group > div{
    display: grid;
    grid-template-columns: 6em 1fr;
}
.works-category-group dt{
    padding-top: .5em;
}
@media screen and (max-width:991px){
    .works-category-group{
        row-gap: 20px;
    }
}
@media screen and (max-width:767px){
    .works-category-group{
        row-gap: 12px;
        padding-bottom: 16px;
        margin-bottom: 16px;
    }
    .works-category-group dt{
        padding-top: .6em;
    }
}
/*  works-category-selected
------------------------------------------------------------------*/
.works-category-selected{
    display: none;
}
@media screen and (max-width:767px){
    .works-category-selected{
        position: relative;
        display: flex;
        align-items: center;
        height: 3.25em;
        padding: 0 1em;
        background: #fff;
        border: 1px solid #ccc;
        border-radius: 4px;
        font-size: .75rem;
        cursor: pointer;
        z-index: 1;
    }
    .works-category-selected::after{
        position: absolute;
        top: 50%;
        right: .5em;
        transform: translateY(-50%);
        content: "\f107";
        font-family: "Font Awesome 6 Free";
        font-weight: bold;
    }
    .works-category-selected.open::after{
        content: "\f106";
    }
}
/*  works-category-list
------------------------------------------------------------------*/
.works-category-list{
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
@media screen and (max-width:767px){
    .works-category-list{
        display: none;
        border: 1px solid #ccc;
    }
}
/*  works-category-btn
------------------------------------------------------------------*/
.works-category-btn{
    display: inline-block;
    padding: 1em 2em;
    background: #fff;
    border-radius: 2em;
    font-size: .875rem;
    line-height: 1;
    transition: .2s ease-out;
}
/* アクティブ表示: SDK が選択中リンクに付与する aria-current="page" で発火（旧 .active は Laravel 時代の名残・現在は未使用）。カテゴリー軸・業種軸とも同クラスのため両方に効く */
.works-category-btn.active,
.works-category-btn[aria-current="page"]{
    background: var(--primary-color);
    color: #fff;
}
/* 「すべて」(reset) も選択中(aria-current="page")のときだけ青ハイライト＝カテゴリー/業種ボタンと挙動を統一。
   非選択時は通常の白ボタンに戻る（旧 Laravel 時代の「常時黒 var(--black-color)」は廃止） */
.works-category-btn:hover{
    background: var(--accent-color);
    color: #fff;
}
@media screen and (max-width:991px){
    .works-category-btn{
        font-size: .75rem;
    }
}
@media screen and (max-width:767px){
    .works-category-btn{
        display: flex;
        align-items: center;
        height: 3.25em;
        padding: 0 1em;
        border-bottom: 1px solid #ccc;
        border-radius: 0;
    }
}
/*  works-category-reset
------------------------------------------------------------------*/
.works-category-reset{
    display: inline-block;
    padding: 1em 2em;
    background: var(--black-color);
    border-radius: 2em;
    font-size: .875rem;
    color: #fff;
    line-height: 1;
    transition: .2s ease-out;
}
.works-category-reset:hover{
    background: var(--accent-color);
}
@media screen and (max-width:991px){
    .works-category-reset{
        font-size: .75rem;
    }
}
/*  works-container
------------------------------------------------------------------*/
.works-container{
    max-width: 1120px;
    padding: 0 60px;
    margin: 0 auto;
}
@media screen and (max-width:991px){
    .works-container{
        padding: 0 6vw;
    }
}

/*  works-detail-head
------------------------------------------------------------------*/
.works-detail-head{
    display: flex;
    align-items: center;
    column-gap: 12px;
    margin-bottom: 12px;
}
.works-detail-head .new{
    color: var(--red-color);
    line-height: 1;
}
.works-detail-head .date{
    color: #5c6368;
    line-height: 1;
}
.works-detail-head .category{
    display: inline-block;
    padding: .4em 1.25em;
    border: 1px solid var(--primary-color);
    border-radius: 2em;
    font-size: .75rem;
    color: var(--primary-color);
    line-height: 1;
}
@media screen and (max-width:575px){
    .works-detail-head{
        column-gap: 8px;
        margin-bottom: 4px;
    }
    .works-detail-head .date{
        font-size: .75rem;
    }
    .works-detail-head .category{
        font-size: .75rem;
    }
}
/*  works-detail-slider
------------------------------------------------------------------*/
.works-detail-slider{
    position: relative;
    margin-bottom: 10px;
    overflow: hidden;
    z-index: 1;
}
.works-detail-slider .swiper-slide{
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    background: #efefef;
}
.works-detail-slider .swiper-slide img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
/*  works-detail-thumb-slider
------------------------------------------------------------------*/
.works-detail-thumb-slider{
    position: relative;
    margin-bottom: 40px;
    overflow: hidden;
    z-index: 1;
}
.works-detail-thumb-slider .swiper-wrapper{
    justify-content: center;
}
.works-detail-thumb-slider .swiper-slide{
    width: 80px;
    aspect-ratio: 1 / 1;
    filter: brightness(0.3);
    cursor: pointer;
}
.works-detail-thumb-slider .swiper-slide.swiper-slide-thumb-active{
    filter: brightness(1);
}
.works-detail-thumb-slider .swiper-slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/*  works-detail-slider-button
------------------------------------------------------------------*/
.works-detail-slider-button-prev,
.works-detail-slider-button-next{
    position: absolute;
    top: 50%;
    width: 36px;
    aspect-ratio: 1 / 1;
    background: var(--primary-color);
    border-radius: 50%;
    transform: translateY(-50%);
    color: #fff;
    transition: .2s ease-out;
    cursor: pointer;
    z-index: 2;
}
.works-detail-slider-button-prev.swiper-button-disabled,
.works-detail-slider-button-next.swiper-button-disabled{
    background: #ccc;
    color: #777;
    pointer-events: none;
}
.works-detail-slider-button-prev{
    left: 4px;
}
.works-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;
}
.works-detail-slider-button-next{
    right: 4px;
}
.works-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) {
    .works-detail-slider-button-prev:hover,
    .works-detail-slider-button-next:hover,
    .works-detail-slider-button-prev:active,
    .works-detail-slider-button-next:active{
        background: var(--accent-color);
        border-color: var(--accent-color);
        color: #fff;
    }
    .works-detail-slider-button-prev:active,
    .works-detail-slider-button-next:active{
        transform: scale(0.8) translateY(-50%);
    }
}
@media (hover:none) {
    .works-detail-slider-button-prev:active,
    .works-detail-slider-button-next:active{
        background: var(--accent-color);
        border-color: var(--accent-color);
        color: #fff;
        transform: scale(0.8) translateY(-50%);
    }
}


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

/*  news-list
------------------------------------------------------------------*/
.news-list{
    margin-bottom: 40px;
}
.news-list > li{
    position: relative;
    z-index: 1;
}
/*  news-list-item
------------------------------------------------------------------*/
.news-list-item{
    position: relative;
    display: flex;
    align-items: center;
    column-gap: 40px;
    padding: 16px 4px;
    border-bottom: 1px solid #b9bbc6;
    transition: .4s ease-out;
}
.news-list-item::before{
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--accent-light-color);
    opacity: 0;
    content: "";
    transition: .4s ease-out;
    z-index: -1;
}
.news-list-item::after{
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid var(--black-color);
    border-radius: 50%;
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-size: 10px;
    font-weight: bold;
    transition: .4s ease-out;
    z-index: 1;
}
.news-list-item .date{
    color: #4d546f;
    line-height: 1;
}
.news-list-item .category{
    width: 150px;
    padding: .5em 1em;
    background: #fff;
    border: 1px solid var(--primary-color);
    border-radius: 2em;
    font-size: .75rem;
    color: var(--primary-color);
    line-height: 1;
    text-align: center;
}
.news-list-item .title{
    flex: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    padding-right: 50px;
    overflow: hidden;
    line-height: 1.4;
}
/* ホバー時動作 */
@media (hover:hover){
    .news-list-item:hover{
        padding-left: 15px;
        border-color: var(--accent-color);
    }
    .news-list-item:hover::before{
        width: 100%;
        opacity: 1;
    }
    .news-list-item:hover::after{
        transform: translateY(-50%) scale(0.8);
        background: var(--accent-color);
        border-color: var(--accent-color);
        color: #fff;
    }
}
@media (hover:none){
    .news-list-item:active{
        padding-left: 15px;
    }
    .news-list-item:active::before{
        width: 100%;
        opacity: 1;
    }
    .news-list-item:active::after{
        transform: translateY(-50%) scale(0.8);
        background: var(--accent-color);
        color: #fff;
    }
}
@media screen and (max-width:1399px){
    .news-list-item{
        column-gap: 20px;
    }
}
@media screen and (max-width:991px){
    .news-list-item{
        flex-wrap: wrap;
        column-gap: 12px;
    }
    .news-list-item .title{
        flex: initial;
        width: 100%;
        margin-top: 8px;
    }
    .news-list-item .date{
        font-size: .75rem;
    }
    .news-list-item .category{
        width: initial;
        padding: .25em 1em;
        font-size: .625rem;
    }
}
@media screen and (max-width:767px){
    .news-list-item::after{
        display: none;
    }
    .news-list-item .title{
        padding-right: 0;
    }
}

/*  news-detail
------------------------------------------------------------------*/
.news-detail{
    display: flex;
    align-items: center;
    column-gap: 20px;
    margin-bottom: 12px;
}
.news-detail .date{
    font-family: var(--en-font);
    color: #999;
    line-height: 1;
}
.news-detail .new{
    font-family: var(--en-font);
    color: var(--primary-color);
    line-height: 1;
}

/*  news-image
------------------------------------------------------------------*/
.news-image{
    aspect-ratio: 16 / 9;
    margin-bottom: 50px;
}
.news-image img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
/*  news-container
------------------------------------------------------------------*/
.news-container{
    max-width: 1120px;
    padding: 0 60px;
    margin: 0 auto;
}
@media screen and (max-width:991px){
    .news-container{
        padding: 0 6vw;
    }
}

/*  news-detail-head
------------------------------------------------------------------*/
.news-detail-head{
    display: flex;
    align-items: center;
    column-gap: 12px;
    margin-bottom: 12px;
}
.news-detail-head .new{
    color: var(--red-color);
    line-height: 1;
}
.news-detail-head .date{
    color: #5c6368;
    line-height: 1;
}
.news-detail-head .category{
    display: inline-block;
    padding: .4em 1.25em;
    border: 1px solid var(--primary-color);
    border-radius: 2em;
    font-size: .75rem;
    color: var(--primary-color);
    line-height: 1;
}
@media screen and (max-width:575px){
    .news-detail-head{
        column-gap: 8px;
        margin-bottom: 4px;
    }
    .news-detail-head .date{
        font-size: .75rem;
    }
    .news-detail-head .category{
        font-size: .75rem;
    }
}
/*  news-detail-slider
------------------------------------------------------------------*/
.news-detail-slider{
    position: relative;
    margin-bottom: 10px;
    overflow: hidden;
    z-index: 1;
}
.news-detail-slider .swiper-slide a{
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    background: #efefef;
}
.news-detail-slider .swiper-slide img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
/*  news-detail-thumb-slider
------------------------------------------------------------------*/
.news-detail-thumb-slider{
    position: relative;
    margin-bottom: 40px;
    overflow: hidden;
    z-index: 1;
}
.news-detail-thumb-slider .swiper-wrapper{
    justify-content: center;
}
.news-detail-thumb-slider .swiper-slide{
    width: 80px;
    aspect-ratio: 1 / 1;
    filter: brightness(0.3);
    cursor: pointer;
}
.news-detail-thumb-slider .swiper-slide.swiper-slide-thumb-active{
    filter: brightness(1);
}
.news-detail-thumb-slider .swiper-slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/*  news-detail-slider-button
------------------------------------------------------------------*/
.news-detail-slider-button-prev,
.news-detail-slider-button-next{
    position: absolute;
    top: 50%;
    width: 36px;
    aspect-ratio: 1 / 1;
    background: var(--primary-color);
    border-radius: 50%;
    transform: translateY(-50%);
    color: #fff;
    transition: .2s ease-out;
    cursor: pointer;
    z-index: 2;
}
.news-detail-slider-button-prev.swiper-button-disabled,
.news-detail-slider-button-next.swiper-button-disabled{
    background: #ccc;
    color: #777;
    pointer-events: none;
}
.news-detail-slider-button-prev{
    left: 4px;
}
.news-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;
}
.news-detail-slider-button-next{
    right: 4px;
}
.news-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) {
    .news-detail-slider-button-prev:hover,
    .news-detail-slider-button-next:hover,
    .news-detail-slider-button-prev:active,
    .news-detail-slider-button-next:active{
        background: var(--accent-color);
        border-color: var(--accent-color);
        color: #fff;
    }
    .news-detail-slider-button-prev:active,
    .news-detail-slider-button-next:active{
        transform: scale(0.8) translateY(-50%);
    }
}
@media (hover:none) {
    .news-detail-slider-button-prev:active,
    .news-detail-slider-button-next:active{
        background: var(--accent-color);
        border-color: var(--accent-color);
        color: #fff;
        transform: scale(0.8) translateY(-50%);
    }
}

/*/////////////////////////////////////////////////////////////////
  voice.html
/////////////////////////////////////////////////////////////////*/

/*  voice-card
------------------------------------------------------------------*/
.voice-card{
    display: block;
}
.voice-card .image{
    aspect-ratio: 16 / 9;
    margin-bottom: 12px;
    overflow: hidden;
}
.voice-card .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .2s ease-out;
}
.voice-card .title{
    margin-bottom: .5em;
    font-size: 1.25rem;
    font-weight: bold;
    line-height: 1.5;
    transition: .2s ease-out;
}
.voice-card .company{
    margin-bottom: .5em;
    font-size: .875rem;
    color: #4d546f;
    line-height: 1.2;
    transition: .2s ease-out;
}
.voice-card .category{
    font-size: .75rem;
    color: var(--primary-color);
    line-height: 1.2;
    transition: .2s ease-out;
}
@media (hover:hover) {
    .voice-card:hover .image img{
        transform: scale(1.1);
        filter: brightness(.5);
    }
    .voice-card:hover .title,
    .voice-card:hover .company,
    .voice-card:hover .category{
        color: var(--accent-color);
    }
}
@media (hover:none) {
    .voice-card:active .image img{
        transform: scale(1.1);
        filter: brightness(.5);
    }
    .voice-card:active .title,
    .voice-card:active .company,
    .voice-card:active .category{
        color: var(--accent-color);
    }
}
@media screen and (max-width:1199px){
    .voice-card .title{
        font-size: 1.125rem;
    }
}

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

/*  voice-detail-category
------------------------------------------------------------------*/
.voice-detail-category{
    margin-bottom: 30px;
    font-size: .875rem;
    color: var(--primary-color);
    line-height: 1;
}
@media screen and (max-width:575px){
    .voice-detail-category{
        font-size: .75rem;
    }
}

/*  voice-detail-company
------------------------------------------------------------------*/
.voice-detail-company{
    margin-bottom: 1em;
    color: #5c6368;
    line-height: 1;
}
/*  voice-detail-slider
------------------------------------------------------------------*/
.voice-detail-slider{
    position: relative;
    margin-bottom: 10px;
    overflow: hidden;
    z-index: 1;
}
.voice-detail-slider .swiper-slide{
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    background: #efefef;
}
.voice-detail-slider .swiper-slide img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
/*  voice-detail-thumb-slider
------------------------------------------------------------------*/
.voice-detail-thumb-slider{
    position: relative;
    margin-bottom: 40px;
    overflow: hidden;
    z-index: 1;
}
.voice-detail-thumb-slider .swiper-wrapper{
    justify-content: center;
}
.voice-detail-thumb-slider .swiper-slide{
    width: 80px;
    aspect-ratio: 1 / 1;
    filter: brightness(0.3);
    cursor: pointer;
}
.voice-detail-thumb-slider .swiper-slide.swiper-slide-thumb-active{
    filter: brightness(1);
}
.voice-detail-thumb-slider .swiper-slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/*  voice-detail-slider-button
------------------------------------------------------------------*/
.voice-detail-slider-button-prev,
.voice-detail-slider-button-next{
    position: absolute;
    top: 50%;
    width: 36px;
    aspect-ratio: 1 / 1;
    background: var(--primary-color);
    border-radius: 50%;
    transform: translateY(-50%);
    color: #fff;
    transition: .2s ease-out;
    cursor: pointer;
    z-index: 2;
}
.voice-detail-slider-button-prev.swiper-button-disabled,
.voice-detail-slider-button-next.swiper-button-disabled{
    background: #ccc;
    color: #777;
    pointer-events: none;
}
.voice-detail-slider-button-prev{
    left: 4px;
}
.voice-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;
}
.voice-detail-slider-button-next{
    right: 4px;
}
.voice-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) {
    .voice-detail-slider-button-prev:hover,
    .voice-detail-slider-button-next:hover,
    .voice-detail-slider-button-prev:active,
    .voice-detail-slider-button-next:active{
        background: var(--accent-color);
        border-color: var(--accent-color);
        color: #fff;
    }
    .voice-detail-slider-button-prev:active,
    .voice-detail-slider-button-next:active{
        transform: scale(0.8) translateY(-50%);
    }
}
@media (hover:none) {
    .voice-detail-slider-button-prev:active,
    .voice-detail-slider-button-next:active{
        background: var(--accent-color);
        border-color: var(--accent-color);
        color: #fff;
        transform: scale(0.8) translateY(-50%);
    }
}
/*  voice-manager-box
------------------------------------------------------------------*/
.voice-manager-box{
    display: flex;
    column-gap: 30px;
    padding: 30px;
    margin-bottom: 40px;
    background: #efefef;
}
.voice-manager-box .image{
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}
.voice-manager-box .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.voice-manager-box .body{
    flex: 1;
}
@media screen and (max-width:767px){
    .voice-manager-box{
        column-gap: 20px;
    }
    .voice-manager-box .image{
        width: 80px;
        height: 80px;
    }
}
@media screen and (max-width:575px){
    .voice-manager-box{
        flex-direction: column;
        align-items: center;
        row-gap: 20px;
        padding: 24px 16px 20px;
    }
    .voice-manager-box .image{
        width: 80px;
        height: 80px;
    }
    .voice-manager-box .image{
        width: 120px;
        height: 120px;
    }
}

/*/////////////////////////////////////////////////////////////////
  price.html
/////////////////////////////////////////////////////////////////*/

/*  price-plan
------------------------------------------------------------------*/
.price-plan{
    display: grid;
    grid-template-columns: 660px 1fr;
    gap: 60px;
}
@media screen and (max-width:1599px){
    .price-plan{
        grid-template-columns: 540px 1fr;
    }
}
@media screen and (max-width:1199px){
    .price-plan{
        grid-template-columns: 1fr;
        row-gap: 40px;
    }
}
/*  price-plan-detail
------------------------------------------------------------------*/
.price-plan-detail{
    
}
/*  price-plan-title
------------------------------------------------------------------*/
.price-plan-title{
    margin-bottom: 20px;
    font-weight: bold;
}
.price-plan-title .sub{
    margin-bottom: .25em;
    font-size: 1.5rem;
    line-height: 1.5;
}
.price-plan-title .main{
    font-size: 3rem;
    color: var(--primary-color);
    line-height: 1.2;
}
@media screen and (max-width:1599px){
    .price-plan-title .sub{
        font-size: 1.25rem;
    }
    .price-plan-title .main{
        font-size: 2.5rem;
    }
}
@media screen and (max-width:1199px){
    .price-plan-title {
        text-align: center;
    }
}
@media screen and (max-width:575px){
    .price-plan-title .sub{
        font-size: 1rem;
    }
    .price-plan-title .main{
        font-size: 2rem;
    }
}
/*  price-plan-price
------------------------------------------------------------------*/
.price-plan-price{
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: baseline;
    column-gap: 20px;
    row-gap: 20px;
    margin-bottom: 30px;
}
.price-plan-price dt,
.price-plan-price dd{
    line-height: 1;
}
.price-plan-price dd{
    font-weight: bold;
    font-feature-settings: "palt";
}
.price-plan-price dd.work{
    font-size: 1.25em;
}
.price-plan-price dd .num{
    font-size: 2em;
    color: var(--red-color);
}
@media screen and (max-width:1399px){
    .price-plan-price dt,
    .price-plan-price dd{
        font-size: .875rem;
    }
}
@media screen and (max-width:1199px){
    .price-plan-price{
        width: fit-content;
        margin: 0 auto 30px;
        column-gap: 10px;
    }
    .price-plan-price dd{
        text-align: right;
    }
    .price-plan-price dd.work{
        font-size: 1.125em;
    }
}
@media screen and (max-width:575px){
    .price-plan-price dt,
    .price-plan-price dd{
        font-size: .75rem;
    }
}
/*  price-plan-caption
------------------------------------------------------------------*/
.price-plan-caption{
    display: grid;
    grid-template-columns: auto 1fr auto 1fr;
    align-items: baseline;
    row-gap: 2px;
}
.price-plan-caption dt,
.price-plan-caption dd{
    line-height: 1;
    padding: 1em;
}
.price-plan-caption dt{
    background: var(--primary-color);
    color: #fff;
}
.price-plan-caption dd{
    background: var(--primary-light-color);
}
@media screen and (max-width:1399px){
    .price-plan-caption{
        grid-template-columns: auto 1fr;
    }
    .price-plan-caption dt,
    .price-plan-caption dd{
        font-size: .875rem;
    }
}
@media screen and (max-width:1199px){
    .price-plan-caption{
        grid-template-columns: auto 1fr auto 1fr;
    }
}
@media screen and (max-width:575px){
    .price-plan-caption{
        grid-template-columns: auto 1fr;
    }
}
/*  price-plan-boxes
------------------------------------------------------------------*/
.price-plan-boxes{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    column-gap: 20px;
}
@media screen and (max-width:1399px){
    .price-plan-boxes{
        grid-template-columns: 1fr;
        row-gap: 20px;
    }
}
@media screen and (max-width:1199px){
    .price-plan-boxes{
        grid-template-columns: repeat(2,1fr);
    }
}
@media screen and (max-width:767px){
    .price-plan-boxes{
        grid-template-columns: 1fr;
    }
}
/*  price-plan-box
------------------------------------------------------------------*/
.price-plan-box{
    --box-color: var(--primary-color);
    border: 2px solid var(--box-color);
    border-radius: 20px;
    overflow: hidden;
}
.price-plan-box.red{
    --box-color: var(--red-color);
}
.price-plan-box .title{
    padding: .5em 1em;
    background: var(--box-color);
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    line-height: 1.2;
    text-align: center;
}
.price-plan-box .body{
    padding: 30px;
}
.price-plan-box .list{
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 12px;
    margin-bottom: auto;
}
.price-plan-box .list > li{
    position: relative;
    padding-left: 1.5em;
    line-height: 1.5;
}
.price-plan-box .list > li::before{
    position: absolute;
    top: 0.05em;
    left: 0;
    display: block;
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: bold;
    color: #14ee9a;
}
@media screen and (max-width:1399px){
    .price-plan-box{
        border-radius: 10px;
    }
    .price-plan-box .title{
        font-size: 1.25rem;
    }
    .price-plan-box .body{
        padding: 20px;
    }
    .price-plan-box .list{
        display: grid;
        grid-template-columns: repeat(2,1fr);
        gap: 12px;
        font-size: .875rem;
    }
}
@media screen and (max-width:1199px){
    .price-plan-box .list{
        grid-template-columns: 1fr;
    }
}
@media screen and (max-width:575px){
    .price-plan-box .title{
        font-size: 1rem;
    }
}

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

/*  message-wrapper
------------------------------------------------------------------*/
.message-wrapper{
    display: flex;
    column-gap: 120px;
}
@media screen and (max-width:1199px){
    .message-wrapper{
        column-gap: 80px;
    }
}
@media screen and (max-width:991px){
    .message-wrapper{
        flex-direction: column;
    }
}
/*  message-head
------------------------------------------------------------------*/
.message-head{
    flex-shrink: 0;
}
/*  message-body
------------------------------------------------------------------*/
.message-body{
    flex: 1;
}
/*  message-subtitle
------------------------------------------------------------------*/
.message-title{
    margin-bottom: 1em;
    font-size: 3.5rem;
    font-weight: bold;
    line-height: 1.5;
}
@media screen and (max-width:1399px){
    .message-title{
        font-size: 3.125rem;
    }
}
@media screen and (max-width:767px){
    .message-title{
        font-size: 2.5rem;
    }
}
@media screen and (max-width:575px){
    .message-title{
        font-size: 2.25rem;
    }
}
/*  message-text
------------------------------------------------------------------*/
.message-text{
    margin-bottom: 30px;
    font-size: 1.25rem;
    line-height: 2.5;
}
@media screen and (max-width:1399px){
    .message-text{
        font-size: 1rem;
    }
}
@media screen and (max-width:767px){
    .message-text{
        margin-bottom: 20px;
        font-size: .875rem;
        line-height: 2;
    }
}
/*  message-name
------------------------------------------------------------------*/
.message-name{
    width: fit-content;
    margin-left: auto;
}
@media screen and (max-width:575px){
    .message-name{
        width: 240px;
    }
}

/*  brand-box
------------------------------------------------------------------*/
.brand-box{
    display: flex;
    align-items: center;
    column-gap: 120px;
    padding: 60px;
    background: var(--primary-light-color);
}
@media screen and (max-width:1399px){
    .brand-box{
        column-gap: 80px;
    }
}
@media screen and (max-width:1199px){
    .brand-box{
        column-gap: 60px;
    }
}
@media screen and (max-width:991px){
    .brand-box{
        flex-direction: column-reverse;
        row-gap: 40px;
    }
}
@media screen and (max-width:767px){
    .brand-box{
        padding: 40px;
    }
}
@media screen and (max-width:575px){
    .brand-box{
        padding: 30px 24px;
    }
}
/*  brand-box-image
------------------------------------------------------------------*/
.brand-box-image{
    flex-shrink: 0;
}
@media screen and (max-width:1399px){
    .brand-box-image{
        width: 480px;
    }
}
@media screen and (max-width:1199px){
    .brand-box-image{
        width: 400px;
    }
}
@media screen and (max-width:991px){
    .brand-box-image{
        width: 100%;
    }
}
/*  company-detail-wrapper
------------------------------------------------------------------*/
.company-detail-wrapper{
    display: grid;
    grid-template-columns: 400px 1fr;
}
@media screen and (max-width:1399px){
    .company-detail-wrapper{
        grid-template-columns: 280px 1fr;
    }
}
@media screen and (max-width:1199px){
    .company-detail-wrapper{
        grid-template-columns: 160px 1fr;
    }
}
@media screen and (max-width:991px){
    .company-detail-wrapper{
        grid-template-columns: 120px 1fr;
    }
}
@media screen and (max-width:575px){
    .company-detail-wrapper{
        display: block;
    }
}
/*  company-detail-head
------------------------------------------------------------------*/
.company-detail-head{
    position: relative;
    z-index: 1;
}
.company-detail-head .en{
    position: absolute;
    top: 0;
    left: 0;
    font-family: var(--en-font);
    font-size: 280px;
    font-weight: bold;
    color: #f0f0f0;
    writing-mode: vertical-lr;
    line-height: .8;
    z-index: 1;
}
.company-detail-head .jp{
    position: absolute;
    top: 0;
    left: 0;
    font-size: 3rem;
    font-weight: bold;
    writing-mode: vertical-lr;
    line-height: 1;
    z-index: 2;
}
@media screen and (max-width:1199px){
    .company-detail-head .en{
        font-size: 160px;
    }
    .company-detail-head .jp{
        font-size: 2.25rem;
    }
}
@media screen and (max-width:991px){
    .company-detail-head .en{
        font-size: 120px;
    }
    .company-detail-head .jp{
        font-size: 2rem;
    }
}
@media screen and (max-width:575px){
    .company-detail-head .en{
        display: none;
    }
    .company-detail-head .jp{
        position: static;
        margin-bottom: 1em;
        font-size: 1.75rem;
        writing-mode: horizontal-tb;
        text-align: center;
    }
}
/*  company-detail-body
------------------------------------------------------------------*/
.company-detail-body{
    position: relative;
    z-index: 2;
}
/*  company-detail-table
------------------------------------------------------------------*/
.company-detail-table{
    width: 100%;
    line-height: 1.5;
    margin-bottom: 40px;
}
.company-detail-table > tbody > tr > th,
.company-detail-table > tbody > tr > td{
    padding: 15px;
    vertical-align: middle;
    border-bottom: 1px solid #ccc;
}
.company-detail-table > tbody > tr > th{
    color: var(--primary-color);
}
@media screen and (max-width:767px){
    .company-detail-table > tbody > tr > th,
    .company-detail-table > tbody > tr > td{
        display: block;
    }
    .company-detail-table > tbody > tr > th{
        border-bottom: initial;
        width: 100%;
        padding: 10px 0 0;
    }
    .company-detail-table > tbody > tr > td{
        padding: 5px 0 10px;
    }
}

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


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

/*  about-lead
------------------------------------------------------------------*/
.about-lead{
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 60px;
}
@media screen and (max-width:1199px){
    .about-lead{
        flex-direction: column;
        row-gap: 30px;
    }
}
/*  about-lead-detail
------------------------------------------------------------------*/
.about-lead-detail{
    flex: 1;
    max-width: 800px;
}
@media screen and (max-width:1199px){
    .about-lead-detail{
        width: 100%;
        max-width: initial;
    }
}
/*  about-lead-image
------------------------------------------------------------------*/
.about-lead-image{
    flex-shrink: 0;
    width: 600px;
}
@media screen and (max-width:1599px){
    .about-lead-image{
        width: 520px;
    }
}
@media screen and (max-width:1399px){
    .about-lead-image{
        width: 460px;
    }
}
@media screen and (max-width:1199px){
    .about-lead-image{
        display: none;
    }
}
/*  about-lead-title
------------------------------------------------------------------*/
.about-lead-title{
    margin-bottom: 1em;
    font-size: 3.5rem;
    font-weight: bold;
    line-height: 1.2;
}
.about-lead-title .sub{
    display: block;
    font-size: .6em;
    margin-bottom: .5em;
}
.about-lead-title .main{
    display: block;
    color: var(--primary-color);
}

@media screen and (max-width:1599px){
    .about-lead-title{
        font-size: 3rem;
    }
}
@media screen and (max-width:1399px){
    .about-lead-title{
        font-size: 2.5rem;
    }
}
@media screen and (max-width:767px){
    .about-lead-title{
        font-size: 9vw;
        text-align: center;
    }
    .about-lead-title .sub{
        font-size: .5em;
    }
}
/*  about-lead-text
------------------------------------------------------------------*/
.about-lead-text{
    margin-bottom: 40px;
    font-size: 1.125rem;
}
@media screen and (max-width:1599px){
    .about-lead-text{
        font-size: 1rem;
    }
}
@media screen and (max-width:575px){
    .about-lead-text{
        font-size: .875rem;
    }
}
/*  about-probrem-box
------------------------------------------------------------------*/
.about-probrem-box{
    display: grid;
    grid-template-columns: 480px 1fr;
}
@media screen and (max-width:1399px){
    .about-probrem-box{
        grid-template-columns: 400px 1fr;
    }
}
@media screen and (max-width:1199px){
    .about-probrem-box{
        grid-template-columns: 320px 1fr;
    }
}
@media screen and (max-width:991px){
    .about-probrem-box{
        grid-template-columns: 260px 1fr;
    }
}
@media screen and (max-width:767px){
    .about-probrem-box{
        grid-template-columns: 1fr;
    }
}
/*  about-probrem-box-head
------------------------------------------------------------------*/
.about-probrem-box-head{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px;
    background: var(--primary-color);
}
@media screen and (max-width:1399px){
    .about-probrem-box-head{
        padding: 40px;
    }
}
@media screen and (max-width:1199px){
    .about-probrem-box-head{
        padding: 30px;
    }
}
@media screen and (max-width:767px){
    .about-probrem-box-head{
        padding: 16px;
    }
}
/*  about-probrem-box-title
------------------------------------------------------------------*/
.about-probrem-box-title{
    font-size: 3rem;
    font-weight: bold;
    color: #fff;
    line-height: 1.5;
}
@media screen and (max-width:1399px){
    .about-probrem-box-title{
        font-size: 2.5rem;
    }
}
@media screen and (max-width:1199px){
    .about-probrem-box-title{
        font-size: 2.25rem;
    }
}
@media screen and (max-width:991px){
    .about-probrem-box-title{
        font-size: 1.75rem;
    }
}
@media screen and (max-width:767px){
    .about-probrem-box-title{
        font-size: 1.5rem;
        text-align: center;
    }
}
@media screen and (max-width:575px){
    .about-probrem-box-title{
        font-size: 1.25rem;
    }
}
/*  about-probrem-box-body
------------------------------------------------------------------*/
.about-probrem-box-body{
    padding: 40px;
    background: #efefef;
}
@media screen and (max-width:1399px){
    .about-probrem-box-body{
        padding: 40px;
    }
}
@media screen and (max-width:1199px){
    .about-probrem-box-body{
        padding: 30px;
    }
}
@media screen and (max-width:767px){
    .about-probrem-box-body{
        padding: 20px 16px;
    }
}
/*  solution-title
------------------------------------------------------------------*/
.solution-title{
    margin-bottom: 100px;
    text-align: center;
}
@media screen and (max-width:1399px){
    .solution-title{
        margin-bottom: 60px;
    }
}
@media screen and (max-width:767px){
    .solution-title{
        margin-bottom: 40px;
    }
}
@media screen and (max-width:575px){
    .solution-title{
        
    }
}
/*  solution-list
------------------------------------------------------------------*/
.solution-list{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    column-gap: 30px;
    row-gap: 60px;
}
@media screen and (max-width:1599px){
    .solution-list{
        column-gap: 20px;
        row-gap: 50px;
    }
}
@media screen and (max-width:1199px){
    .solution-list{
        grid-template-columns: repeat(2,1fr);
    }
}
@media screen and (max-width:991px){
    .solution-list{
        grid-template-columns: 1fr;
        row-gap: 30px;
    }
}
/*  solution-list-item
------------------------------------------------------------------*/
.solution-list-item{
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 80px 30px 36px;
    background: #fff;
    border-radius: 10px;
    z-index: 1;
}
.solution-list-item > .point{
    position: absolute;
    top: 0;
    left: 30px;
    transform: translateY(-30%);
    background: linear-gradient(0deg,#1dd4c5 0%, #1a5dcc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: var(--en-font);
    font-size: 110px;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1;
}
.solution-list-item > .probrem{
    margin-bottom: .25em;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1.5;
}
.solution-list-item > .title{
    padding-bottom: .75em;
    margin-bottom: .75em;
    border-bottom: 1px solid #8f96b2;
    font-size: 1.625rem;
    font-weight: bold;
    line-height: 1.5;
}
.solution-list-item > .comment{
    margin-bottom: 30px;
    color: #4d546f;
    line-height: 1.8;
}
@media screen and (max-width:1599px){
    .solution-list-item{
        padding: 70px 20px 30px;
    }
    .solution-list-item > .point{
        left: 20px;
        font-size: 90px;
    }
    .solution-list-item > .title{
        font-size: 1.5rem;
    }
}
@media screen and (max-width:1399px){
    .solution-list-item > .title{
        font-size: 1.375rem;
    }
}
@media screen and (max-width:767px){
    .solution-list-item{
        padding: 50px 20px 30px;
    }
    .solution-list-item > .point{
        font-size: 72px;
    }
    .solution-list-item > .probrem{
        font-size: .75rem;
    }
    .solution-list-item > .title{
        font-size: 1.125rem;
    }
    .solution-list-item > .comment{
        margin-bottom: 20px;
    }
}
/*  flow-list
------------------------------------------------------------------*/
.flow-list{
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}
/*  flow-list-item
------------------------------------------------------------------*/
.flow-list-item{
    position: relative;
    padding: 24px 30px 30px;
    background: #fff;
    z-index: 1;
}
.flow-list-item::after{
    position: absolute;
    top: calc(100% + 5px);
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 30px;
    border-top: 30px solid var(--accent-color);
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    content: "";
    z-index: 1;
}
.flow-list-item:last-of-type::after{
    display: none;
}
.flow-list-item > .head{
    display: flex;
    align-items: flex-end;
    column-gap: 12px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #ccc;
}
.flow-list-item > .head > .num{
    font-family: var(--en-font);
    font-size: 4rem;
    font-weight: bold;
    font-feature-settings: "palt";
    color: var(--primary-color);
    line-height: .8;
}
.flow-list-item > .head > .title{
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.5;
}
.flow-list-item > .comment{
    padding-top: 12px;
    margin-top: 12px;
    border-top: 1px solid #ccc;
    color: #4d546f;
    line-height: 1.8;
}
@media screen and (max-width:991px){
    .flow-list-item{
        padding: 20px;
    }
    .flow-list-item > .head{
        column-gap: 8px;
        padding-bottom: 12px;
        margin-bottom: 12px;
    }
    .flow-list-item > .head > .num{
        font-size: 3.5rem;
    }
    .flow-list-item > .head > .title{
        font-size: 1.25rem;
    }
}
@media screen and (max-width:767px){
    .flow-list-item{
        padding: 16px 20px 20px;
    }
    .flow-list-item > .head > .num{
        position: relative;
        top: .05em;
        display: inline-block;
        margin-bottom: 0;
        font-size: 3rem;
    }
    .flow-list-item > .head > .title{
        display: inline-block;
        font-size: 1.125rem;
    }
}

/*  faq-area
------------------------------------------------------------------*/
.faq-area{
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 20px;
}
@media screen and (max-width:767px){
    .faq-area{
        row-gap: 12px;
    }
}
/*  faq-item
------------------------------------------------------------------*/
.faq-item dt{
    --toggle: "＋";
    position: relative;
    display: flex;
    align-items: center;
    column-gap: 8px;
    padding: .75em 80px .75em 1em;
    background: var(--primary-light-color);
    font-size: 1.25rem;
    font-weight: bold;
    line-height: 1.7;
    cursor: pointer;
    z-index: 1;
}
.faq-item dt::before{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: var(--primary-color);
    border-radius: 50%;
    content: "Q";
    font-size: 12px;
    color: #fff;
    z-index: 1;
}
.faq-item dt::after{
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 100%;
    content: var(--toggle);
    z-index: 1;
}
.faq-item dd{
    position: relative;
    display: none;
    padding: 4px 20px 28px 60px;
    background: var(--primary-light-color);
    line-height: 1.8;
    z-index: 1;
}
@media screen and (max-width:1199px){
    .faq-item dt{
        font-size: 1.125rem;
    }
}
@media screen and (max-width:991px){
    .faq-item dt{
        padding-right: 72px;
        font-size: 1rem;
    }
    .faq-item dt::after{
        width: 52px;
    }
    .faq-item dd{
        padding: 4px 20px 28px 56px;
    }
}
@media screen and (max-width:767px){
    .faq-item dt{
        padding-right: 52px;
        font-size: .875rem;
    }
    .faq-item dt::after{
        width: 44px;
    }
}

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

/*  contact-tel
------------------------------------------------------------------*/
.contact-tel{
    font-family: var(--en-font);
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1;
}
.contact-tel span{
    font-size: 1.75em;
    letter-spacing: 0;
}
@media screen and (max-width:767px){
    .contact-tel{
        font-size: 1.375rem;
    }
}
@media screen and (max-width:575px){
    .contact-tel{
        font-size: 1.25rem;
    }
}
@media screen and (max-width:350px){
    .contact-tel{
        font-size: 1.125rem;
    }
}