@charset "utf-8";

@font-face{
    font-family:'Noto Sans JP';
    font-style:normal;
    font-weight:400;
    src:url(../fonts/NotoSansCJKjp/NotoSansCJKjp-Regular.woff2) format('woff2'),
        url(../fonts/NotoSansCJKjp/NotoSansCJKjp-Regular.woff) format('woff'),
        url(../fonts/NotoSansCJKjp/NotoSansCJKjp-Regular.otf) format('opentype');
}
@font-face{
    font-family:'Noto Sans JP';
    font-style:normal;
    font-weight:700;
    src:url(../fonts/NotoSansCJKjp/NotoSansCJKjp-Bold.woff2) format('woff2'),
        url(../fonts/NotoSansCJKjp/NotoSansCJKjp-Bold.woff) format('woff'),
        url(../fonts/NotoSansCJKjp/NotoSansCJKjp-Bold.otf) format('opentype');
}

/*==============================
    remの基準
==============================*/
html{
    font-size: 10px;
}
@media only screen and (max-width:1500px){
    html{
        font-size: calc((10 / 1500) * 100vw);
    }
}
@media only screen and (max-width:1215px){
    html{
        font-size: 10px;
    }
}

/*==============================
    変数設定
==============================*/
/* 幅の基準 */
:root {
    --widthBase : 192rem;
}
@media only screen and (max-width:1920px){
    :root {
        --widthBase : 100vw;
    }
}
@media only screen and (max-width:1400px){
    :root {
        --widthBase : 1400px;
    }
}
@media only screen and (max-width:1215px){
    :root {
        --widthBase : 375px;
    }
}
@media only screen and (max-width:374px){
    :root {
        --widthBase : 100vw;
    }
}

:root {

    /* 色 */
    --textColor: #000;
    --keyColor: #007465;
    --yellowColor: #FFDD00;
    --orangeColor: #FF5001;
    --lOrangeColor: #FFD7C3;
}

/*==============================
    基本設定
==============================*/
body{
    color:var(--textColor);
    font-size:var(--pcFontSize12);
    font-family:'YakuHanJP_Noto','Noto Sans JP', sans-serif;
    margin:0;
    padding:0;
    text-align:left;
    background:#fff;
    -webkit-text-size-adjust:100%;
    -webkit-tap-highlight-color:rgba(0,0,0,0.25);
    position:relative;
    word-break:break-all;
    min-width:1180px;
}
@media only screen and (max-width:1215px){
    body{
        min-width:0;
    }
}

body *, body *::before, body *::after{box-sizing:border-box;}
img{vertical-align:bottom;}
h1,h2,h3,h4,h5,h6{font-weight:normal;}
th{
    font-weight:normal;
    text-align:left;
}

/*font layout*/
.fBold{font-weight:bold;}
.fSerif{font-family:'Noto Serif Japanese', serif;}
.fGreen{color: var(--keyColor);}
.fOrange{color: var(--orangeColor);}
.fYellow{color: var(--yellowColor);}
.fMarker{background: linear-gradient(transparent 70%, var(--yellowColor) 70%);}

/*rollover*/
.ro a:hover,
a.ro:hover,
a .ro:hover,
.cursorPointer:hover{ opacity:0.8; }
.ro a,
a.ro,
a .ro,
.cursorPointer{
    transition:opacity 0.2s ease-out;
}
.cursorPointer{cursor:pointer;}
@media only screen and (max-width:1215px){
    .ro a:hover,
    a.ro:hover,
    a .ro:hover,
    .cursorPointer:hover{ opacity:1; }
}

/*rollover(brightnessによる変化)*/
.cursorPointer.brt:hover,.cursorPointer .brt:hover,
.brt a:hover,a.brt:hover,a .brt:hover{ -webkit-filter: brightness(1.1);filter: brightness(1.1); }
.cursorPointer.brt,.cursorPointer .brt,
.brt a,
a.brt,
a .brt{
    transition:filter 0.2s ease-out;
}
@media only screen and (max-width:1215px){
    .cursorPointer.brt:hover,.cursorPointer .brt:hover,
    .brt a:hover,a.brt:hover,a .brt:hover{ filter:none; }
}

/*ro無効化*/
.ro .no_ro a:hover,
.ro a.no_ro:hover,
.ro .no_ro .cursorPointer:hover,
.ro .cursorPointer.no_ro:hover{ opacity:1; }

/* 電話リンクの無効化 */
a[href^="tel:"]{
    pointer-events:none;
    cursor:default;
}
@media only screen and (max-width:1215px){
    a[href^="tel:"]{
        pointer-events:auto;
        cursor:pointer;
    }
}

a{color: inherit;text-decoration: none;}

/* container */
#container{
    overflow: hidden;
    max-width: 192rem;
    width: 100%;
    margin: 0 auto;
}

/*========================================
    レスポンシブ用(不要な場合は削除)
========================================*/
.spOnly,
.brSp,
.imgSp{
    display:none;
}
.img100{
    max-width:100%;
    height:auto;
}
.imgPcR{
    width:100%;
    height:auto;
}
@media only screen and (max-width:1215px){
    .spNone,
    .brPc,
    .imgPc{
        display:none;
    }
    .spOnly{
        display:block;
    }
    .brSp,
    .imgSp{
        display:inline;
    }
    .imgR{
        width:100%;
        height:auto;
    }
}

/*-----------------------------------------------
    wrapper
-----------------------------------------------*/
.wrapperCommon{
    max-width:calc(100% - 10rem);
    margin-inline: auto;
}
.wrapper1200{
    max-width:calc(100% - 10rem);
    width: 120rem;
    margin-inline: auto;
}
@media only screen and (max-width:1215px){
    .wrapperCommon,
    .wrapper1200{
        max-width:none;
        width: 100%;
    }
    .wrapperFit{
        width:calc(100% - 4rem);
        margin: 0 auto;
    }
}

/*-----------------------------------------------
    container
-----------------------------------------------*/
/* header */
#header{
    background-color: #fff;
    padding: 1.3rem 0;
    box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.25);
    position: relative;
    z-index: 1;
}
#header .headerWrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#header .boxRight{
    display: flex;
    align-items: center;
}
#header .tel{
    margin: 0 2rem 0 0;
}
#header .btnConsult{
    margin: 0 1rem 0 0;
}
@media only screen and (max-width:1215px){
    #header{
        padding: 1rem 0;
    }
    #header .logo img{
        width: auto;
        height: 3.1rem;
    }
    #header .boxRight{
        display: none;
    }
}

/* secHero */
.secHero{
    text-align: center;
}
.secHero .txt{
    color: #fff;
    background-color: var(--keyColor);
    font-size: 2.4rem;
    line-height: 1.5;
    letter-spacing: 0.05em;
    padding: 1.5rem 0;
    margin: 0 0 3rem;
    box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.25);
}
.secHero .txt .txtBig{
    font-size: 3.6rem;
    font-weight: bold;
}
.secHero .scrollWrapper{
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    padding: 0 0 3rem;
}
.secHero .scrollTrack{
    display: inline-block;
    vertical-align: top;
    animation: scrollLeft 40s linear infinite;
    font-size: 0;
}
.secHero .scrollList{
    display: inline-block;
    vertical-align: top;
    padding-right: 0; /* スペースなし */
    white-space: nowrap;
}
.secHero .scrollList li{
    display: inline-block;
    vertical-align: top;
    margin: 0 2rem 0 0;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.25);
}
.secHero .txtScroll{
    font-size: 1.4rem;
    line-height: 1.5;
    letter-spacing: 0.05em;
    padding: 0.5rem;
}
@keyframes scrollLeft {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}
@media only screen and (max-width:1215px){
    .secHero .txt{
        font-size: 3vw;
        margin: 0 0 1.5rem;
        box-shadow: none;
    }
    .secHero .txt .txtBig{
        font-size: 5vw;
    }
    .secHero .scrollWrapper{
        padding: 0 0 2.5rem;
    }
    .secHero .imgScroll{
        width: 14rem;
    }
    .secHero .txtScroll{
        font-size: 1.2rem;
    }
}

/* secProblem */
.secProblem{
    max-width: 103.6rem;
    text-align: center;
    padding: 0 0 1rem;
}
.secProblem .boxTit{
    background-color: var(--yellowColor);
    border-radius: 3rem 3rem 0 0;
    padding: 3rem 0 2rem;
}
.secProblem .tit{
    font-size: 3.6rem;
    line-height: 1.5;
    letter-spacing: 0.05em;
    font-weight: bold;
    margin: 0 0 1rem;
}
.secProblem .tit .txtSmall{
    font-size: 2rem;
}
.secProblem .txt{
    font-size: 1.8rem;
    line-height: 1.5;
    letter-spacing: 0.05em;
}
@media only screen and (max-width:1215px){
    .secProblem .boxTit{
        border-radius: 1rem 1rem 0 0;
        padding: 2rem 1rem 1.5rem;
    }
    .secProblem .tit{
        font-size: 2rem;
        line-height: 1.5;
        margin: 0 0 1rem;
    }
    .secProblem .tit .txtSmall{
        font-size: 1.5rem;
    }
    .secProblem .txt{
        font-size: 1.3rem;
    }
}

/* secCre */
.secCre{
    background-position: center top;
    background-size: cover;
    padding: 7rem 0 8rem;
}
.secCre.lazyloaded{
    background-image: url(../img/bgCre.jpg?250908);
}
.secCre .boxTit{
    display: flex;
    justify-content: center;
    margin: 0 0 4rem;
}
.secCre .tit{
    font-size: 2.8rem;
    line-height: 1.5;
    letter-spacing: 0.05em;
    font-weight: bold;
    position: relative;
}
.secCre .tit::before,
.secCre .tit::after{
    content: '';
    background-repeat: no-repeat;
    background-position: left top;
    background-size: 3.3rem;
    width: 3.3rem;
    height: 4.6rem;
    position: absolute;
}
.secCre.lazyloaded .tit::before,
.secCre.lazyloaded .tit::after{
    background-image: url(../img/iconCorner.png);
}
.secCre .tit::before{
    top: -2rem;
    left: -4rem;
}
.secCre .tit::after{
    bottom: -2rem;
    right: -4rem;
    transform: scale(-1, -1);
}
.secCre .boxCircle{
    display: flex;
    justify-content: center;
    gap: 0 3rem;
    margin: 0 0 4rem;
}
.secCre .boxCircle .boxTxt{
    padding: 16.5rem 0 0;
}
.secCre .titCircle{
    font-size: 1.8rem;
    line-height: 1.5;
    letter-spacing: 0.1em;
    font-weight: bold;
    color: #fff;
    background-color: var(--keyColor);
    border-radius: 100rem;
    margin: 0 0 1.8rem;
    padding: 1rem 6rem;
}
.secCre .txtCircle{
    font-size: 1.4rem;
    line-height: 1.67;
    letter-spacing: 0.05em;
}
.secCre .boxPoint{
    max-width: 74rem;
    padding: 0 0 0 3.5rem;
}
.secCre .itemPoint{
    background-color: #fff;
    border: 0.4rem solid var(--keyColor);
    border-radius: 0.6rem;
    box-shadow: 2px 2px 4px 0px rgba(0,0,0,0.25);
}
.secCre .itemPoint + .itemPoint{
    margin-top: 2rem;
}
.secCre .itemPoint dl{
    display: flex;
    min-height: 10rem;
}
.secCre .itemPoint dt{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24rem;
    font-size: 1.8rem;
    line-height: 1.3;
    letter-spacing: 0.1em;
    font-weight: bold;
    color: #fff;
    background-color: var(--keyColor);
    position: relative;
    padding: 0 0 0 3rem;
    text-align: center;
}
.secCre .itemPoint dt .icon{
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    left: -4.5rem;
    margin: auto 0;
    display: flex;
    align-items: center;
}
.secCre .itemPoint dd{
    display: flex;
    align-items: center;
    flex: 1;
    font-size: 1.5rem;
    line-height: 1.78;
    letter-spacing: 0.1em;
    font-weight: bold;
    padding: 1rem 2rem;
    color: var(--keyColor);
}
@media only screen and (max-width:1215px){
    .secCre{
        padding: 5rem 0;
    }
    .secCre.lazyloaded{
        background-image: url(../img/bgCre_sp.jpg?250908);
    }
    .secCre .boxTit{
        margin: 0 0 3rem;
    }
    .secCre .tit{
        font-size: 2.5rem;
        line-height: 1.5;
    }
    .secCre .tit::before,
    .secCre .tit::after{
        background-size: 1.6rem;
        width: 1.6rem;
        height: 2.3rem;
    }
    .secCre .tit::before{
        top: -1rem;
        left: -3rem;
    }
    .secCre .tit::after{
        bottom: -1rem;
        right: -3rem;
    }
    .secCre .boxCircle{
        flex-direction: column;
        gap: 1.5rem 0;
        margin: 0 0 0.5rem;
    }
    .secCre .boxCircle .boxTxt{
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 80%;
        margin: 0 auto;
    }
    .secCre .titCircle{
        font-size: 2rem;
        margin: 0 0 1.5rem;
        padding: 0.5rem 4.5rem;
    }
    .secCre .txtCircle{
        font-size: 1.3rem;
        line-height: 2.12;
    }
    .secCre .boxCircle .img{
        text-align: center;
    }
    .secCre .boxPoint{
        padding: 0;
    }
    .secCre .itemPoint{
        border-radius: 0.5rem;
    }
    .secCre .itemPoint + .itemPoint{
        margin-top: 1.5rem;
    }
    .secCre .itemPoint dl{
        min-height: 0;
    }
    .secCre .itemPoint dt{
        width: 35vw;
        font-size: 3.5vw;
        line-height: 1.3;
        letter-spacing: 0;
        padding: 2.5rem 1rem;
        text-align: left;
        justify-content: flex-start;
    }
    .secCre .itemPoint dt .icon{
        display: none;
    }
    .secCre .itemPoint dd{
        font-size: 3vw;
        line-height: 1.5;
        letter-spacing: 0.05em;
        padding: 2.5rem 1rem;
    }
}

/* secStrategy */
.secStrategy{
    background-position: center top;
    background-size: cover;
    background-color: #057173;
    padding: 8rem 0;
    text-align: center;
}
.secStrategy.lazyloaded{
    background-image: url(../img/bgStrategy.png);
}
.secStrategy .tit{
    font-size: 4.8rem;
    line-height: 1.5;
    letter-spacing: 0.05em;
    font-weight: bold;
    color: #fff;
    margin: 0 0 4rem; 
}
.secStrategy .tit .txtBig{
    font-size: 4.8rem;
}
@media only screen and (max-width:1215px){
    .secStrategy{
        padding: 5rem 0 6rem;
    }
    .secStrategy .tit{
        font-size: 2rem;
        margin: 0 0 3rem; 
    }
    .secStrategy .tit .txtBig{
        font-size: 2.5rem;
    }
}

/* secWorks */
.secWorks{
    padding: 8rem 0;
    text-align: center;
}
.secWorks .tit{
    font-size: 4.8rem;
    line-height: 1.5;
    letter-spacing: 0.05em;
    font-weight: bold;
    margin: 0 0 3rem; 
}
.secWorks .boxList{
    max-width: 82rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2.8rem;
}
.secWorks .item{
    width: calc((100% - 5.6rem) / 3);
}
.secWorks .item .txt{
    font-size: 1.4rem;
    line-height: 1.5;
    letter-spacing: 0.05em;
    font-weight: bold;
    color: #fff;
    background-color: var(--keyColor);
    padding: 1rem;
}
@media only screen and (max-width:1215px){
    .secWorks{
        padding: 6rem 0 3rem;
    }
    .secWorks .tit{
        font-size: 2.5rem;
        margin: 0 0 3rem; 
    }
    .secWorks .boxList{
        gap: 2rem 1rem;
    }
    .secWorks .item{
        width: calc((100% - 1rem) / 2);
    }
    .secWorks .item .txt{
        font-size: 2.5vw;
        padding: 1rem;
    }
}

/* secGallery */
.secGallery{
    background-position: center top;
    background-size: cover;
    padding: 8rem 0;
    text-align: center;
}
.secGallery.lazyloaded{
    background-image: url(../img/bgGallery.jpg?250914);
}
.secGallery .tit{
    font-size: 4.8rem;
    line-height: 1.5;
    letter-spacing: 0.05em;
    font-weight: bold;
    margin: 0 0 3rem; 
}
.secGallery .boxSlider{
    max-width: 106.5rem;
    position: relative;
}
.secGallery .titSlide{
    color: #fff;
    background-color: var(--keyColor);
    padding: 2rem;
    font-size: 3.2rem;
    line-height: 1.5;
    letter-spacing: 0.05em;
    font-weight: bold;
    border-radius: 3rem 3rem 0 0;
}
.secGallery .imgSlide{
    padding: 3rem 0 2rem;
    background-color: rgba(255,255,255,0.85);
    border: solid 0.5rem var(--keyColor);
    border-radius: 0 0 3rem 3rem;
}
.secGallery .imgSlide img{
    max-width: 98%;
    height: auto;
}
.secGallery .swiper-button-prev,
.secGallery .swiper-button-next{
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100%;
    position: absolute;
    width: 6.2rem;
    height: 6.2rem;
    top: 0;
    bottom: 0;
    margin: auto 0;
}
.secGallery.lazyloaded .swiper-button-prev,
.secGallery.lazyloaded .swiper-button-next{
    background-image: url(../img/arrow.png);
}
.secGallery .swiper-button-prev::after,
.secGallery .swiper-button-next::after{
    display: none;
}
.secGallery .swiper-button-prev{
    left: -9rem;
    transform: scale(-1, 1);
    filter: drop-shadow(0.2rem 0.2rem 0.5rem rgba(0,0,0,0.25));
}
.secGallery .swiper-button-next{
    right: -9rem;
    filter: drop-shadow(0.2rem 0.2rem 0.5rem rgba(0,0,0,0.25));
}
@media only screen and (max-width:1215px){
    .secGallery{
        padding: 6rem 0 3rem;
    }
    .secGallery .tit{
        font-size: 2.5rem;
        margin: 0 0 1.5rem; 
    }
    .secGallery .wrapSlide{
        padding: 0 1rem;
    }
    .secGallery .titSlide{
        font-size: 1.6rem;
        padding: 1rem;
        border-radius: 1.5rem 1.5rem 0 0;
    }
    .secGallery .imgSlide{
        padding: 2rem 1.5rem 2rem;
        border-radius: 0;
        height: 113vw;
        overflow-y: scroll;
        -webkit-overflow-scrolling: touch; /* 慣性スクロールを有効化 */
    }
    .secGallery .imgSlide img{
        max-width: 100%;
    }
    .secGallery .boxControl{
        width: 19rem;
        margin: 1.5rem auto 0;
        display: flex;
        justify-content: space-between;
    }
    .secGallery .swiper-button-prev,
    .secGallery .swiper-button-next{
        width: 5.2rem;
        height: 5.2rem;
        position: static;
    }
}

/* secContact */
.secContact{
    padding: 6rem 0;
    max-width: 78rem;
    text-align: center;
}
.secContact .boxTit{
    color: #fff;
    background-color: var(--keyColor);
    padding: 2rem;
    display: flex;
    justify-content: center;
}
.secContact .tit{
    font-size: 3rem;
    line-height: 1.5;
    letter-spacing: 0.05em;
    font-weight: bold;
    position: relative;
}
.secContact .tit::before,
.secContact .tit::after{
    content: '';
    position: absolute;
    width: 0.2rem;
    height: 5rem;
    background-color: #fff;
    top: 0;
    bottom: 0;
    margin: auto 0;
}
.secContact .tit::before{
    transform:rotate(-26deg);
    left: -2rem;
}
.secContact .tit::after{
    transform:rotate(26deg);
    right: -2rem;
}
.secContact .boxTxt{
    background: var(--lOrangeColor);
    padding: 4.5rem 2rem 3rem;
}
.secContact .boxBtn{
    display: flex;
    justify-content: center;
    gap: 0 1rem;
    padding: 0 0 2.5rem;
}
@media only screen and (max-width:1215px){
    .secContact{
        padding: 2.5rem 0 3.5rem;
    }
    .secContact .boxTit{
        padding: 1.5rem;
    }
    .secContact .tit{
        font-size: 4vw;
    }
    .secContact .tit::before,
    .secContact .tit::after{
        height: 2.2rem;
    }
    .secContact .tit::before{
        left: -1.5rem;
    }
    .secContact .tit::after{
        right: -1.5rem;
    }
    .secContact .boxTxt{
        padding: 2rem;
    }
    .secContact .boxBtn{
        flex-direction: column;
        gap: 1.5rem 0;
        padding: 0 0 2rem;
    }
}

/* secStrength */
.secStrength{
    text-align: center;
}
.secStrength .boxTit{
    padding: 12rem 0;
    margin: 0 0 6rem;
    background-position: center top;
    background-size: cover;
    background-color: rgba(0,0,0,.75);
}
.secStrength.lazyloaded .boxTit{
    background-image: url(../img/bgStength.jpg);
}
.secStrength .tit{
    font-size: 3.6rem;
    line-height: 1.5;
    letter-spacing: 0.05em;
    font-weight: bold;
    color: #fff;
}
.secStrength .tit .txtBig{
    font-size: 4.8rem;
}
.secStrength .tit .num{
    font-size: 7.2rem;
}
.secStrength .boxSubtit{
    display: flex;
    justify-content: center;
}
.secStrength .subtit{
    display: flex;
    align-items: center;
    position: relative;
    gap: 0 1.5rem;
    padding: 0 0 1rem;
    margin: 0 0 1.5rem;
}
.secStrength .subtit::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 2px;
    background-image: repeating-linear-gradient(90deg, var(--keyColor), var(--keyColor) 3px, transparent 3px, transparent 5px);
    background-position: left bottom;
    background-repeat: repeat-x;
    background-size: 100% 2px;
}
.secStrength .subtitIn{
    font-size: 4.8rem;
    line-height: 1.5;
    letter-spacing: 0.05em;
    font-weight: bold;
    color: var(--keyColor);
}
.secStrength .txtTop{
    font-size: 1.5rem;
    line-height: 1.7;
    letter-spacing: 0.05em;
    font-weight: bold;
    margin: 0 0 4rem;
}
@media only screen and (max-width:1215px){
    .secStrength .boxTit{
        padding: 9rem 0;
        margin: 0 0 2rem;
    }
    .secStrength .tit{
        font-size: 2.4rem;
    }
    .secStrength .tit .txtBig{
        font-size: 3.2rem;
    }
    .secStrength .tit .num{
        font-size: 4.8rem;
    }
    .secStrength .boxSubtit{
        display: flex;
        justify-content: center;
    }
    .secStrength .subtit{
        flex-direction: column;
        gap: 1rem 0;
        padding: 0 0 1rem;
        margin: 0 0 1.5rem;
    }
    .secStrength .subtit .num img{
        width: auto;
        height: 3rem;
    }
    .secStrength .subtitIn{
        font-size: 2.5rem;
    }
    .secStrength .txtTop{
        font-size: 1.5rem;
        line-height: 1.9;
        letter-spacing: 0.05em;
        font-weight: normal;
        margin: 0 0 3rem;
        text-align: left;
    }
    .secStrength .imgMatch{
        margin-inline: 3rem;
    }
}

/* secFirst */
.secFirst{
    padding: 0 0 6rem;
}
.secFirst .boxList{
    max-width: 75.4rem;
    margin-bottom: 6rem;
}
.secFirst .boxList .item{
    background-color: #fff;
    border: 2px solid var(--keyColor);
    border-radius: 0.6rem;
    box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.25);
    text-align: left;
    display: flex;
}
.secFirst .boxList .item + .item{
    margin-top: 2rem;
}
.secFirst .boxList .boxTxt{
    width: 49%;
    padding: 2rem 1rem 2rem 2rem;
}
.secFirst .titList{
    font-size: 2.4rem;
    line-height: 1.5;
    font-weight: bold;
    color: var(--keyColor);
}
.secFirst .titList .txtBig{
    font-size: 2.7rem;
}
.secFirst .txtList{
    font-size: 1.3rem;
    line-height: 1.875;
    letter-spacing: 0.05em;
    padding: 0 1.5rem 0 0;
}
.secFirst .imgList{
    padding: 0.5rem 0.5rem 0.5rem 0;
    display: flex;
    align-items: center;
}
.secFirst .boxList .item.isWideTxt .boxTxt{
    width: 58%;
}
@media only screen and (max-width:1215px){
    .secFirst{
        padding: 0 0 5rem;
    }
    .secFirst .boxList{
        margin-bottom: 7rem;
    }
    .secFirst .boxList .item{
        border-radius: 0.5rem;
        flex-direction: column;
    }
    .secFirst .boxList .item + .item{
        margin-top: 3rem;
    }
    .secFirst .boxList .boxTxt{
        width: 100%;
        padding: 2rem 1.5rem;
    }
    .secFirst .titList{
        font-size: 1.9rem;
        text-align: center;
        margin: 0 0 1rem;
    }
    .secFirst .titList .txtBig{
        font-size: 1.9rem;
    }
    .secFirst .txtList{
        font-size: 4vw;
        line-height: 2.11;
        font-weight: normal;
        padding: 0;
    }
    .secFirst .imgList{
        padding: 0 1.5rem 1.5rem;
        justify-content: center;
    }
    .secFirst .item1 .imgList{
        padding: 0 3rem 1.5rem;
    }
    .secFirst .boxList .item.isWideTxt .boxTxt{
        width: 100%;
    }
}

/* secSuggest */
.secSuggest{
    text-align: center;
    background-color: #F5F5F5;
    padding: 4.5rem 0;
}
.secSuggest .titSuggest{
    font-size: 2.7rem;
    line-height: 1.875;
    letter-spacing: 0.05em;
    font-weight: bold;
    margin: 0 0 3rem;
}
.secSuggest .titSuggest .txtBig{
    font-size: 3rem;
}
.secSuggest .txtSuggest{
    font-size: 1.5rem;
    line-height: 2;
    letter-spacing: 0.05em;
    margin: 0 0 3rem;
}
@media only screen and (max-width:1215px){
    .secSuggest{
        padding: 3.5rem 0 3rem;
    }
    .secSuggest .titSuggest{
        font-size: 1.8rem;
        margin: 0 0 2rem;
    }
    .secSuggest .titSuggest .txtBig{
        font-size: 1.8rem;
    }
    .secSuggest .txtSuggest{
        font-size: 1.5rem;
        line-height: 1.75;
        margin: 0 0 1.5rem;
        text-align: left;
    }
}

/* secSecond */
.secSecond{
    padding: 6rem 0;
}
.secStrength .secSecond .subtitIn{
    font-size: 3.6rem;
}
.secSecond .boxGraph{
    max-width: 108rem;
    display: flex;
    justify-content: center;
    gap: 0 3rem;
    margin-top: 4rem;
    margin-bottom: 4rem;
    text-align: left;
}
.secSecond .txtGraph{
    font-size: 1.7rem;
    line-height: 1.7;
    letter-spacing: 0.05em;
}
.secSecond .txtGraph .fGreen{
    font-weight: bold;
}
.secSecond .txtGraph .fOrange{
    font-size: 1.9rem;
    font-weight: bold;
}
.secSecond .listGraph{
    margin-top: 3rem;
    margin-bottom: 2rem;
}
.secSecond .itemGraph{
    color: var(--keyColor);
    font-size: 1.5rem;
    line-height: 1.5;
    letter-spacing: 0.05em;
    font-weight: bold;
    position: relative;
    padding: 0 0 0 4rem;
}
.secSecond .itemGraph + .itemGraph{
    margin-top: 2rem;
}
.secSecond .itemGraph::before{
    content: '';
    display: block;
    width: 2.4rem;
    height: 2.4rem;
    background-repeat: no-repeat;
    background-position: left top;
    background-size: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.secSecond.lazyloaded .itemGraph::before{
    background-image: url(../img/iconCheck.png);
}
.secSecond .boxChukai{
    max-width: 90rem;
}
.secSecond .titChukai{
    font-size: 2.7rem;
    line-height: 1.875;
    letter-spacing: 0.05em;
    font-weight: bold;
    color: var(--orangeColor);
    border-bottom: 1px solid var(--orangeColor);
    margin: 0 0 3rem;
}
.secSecond .titChukai .txtBig{
    font-size: 3rem;
}
.secSecond .txtChukai{
    font-size: 1.5rem;
    line-height: 1.7;
    letter-spacing: 0.05em;
    font-weight: bold;
    margin: 0 0 3rem;
}
@media only screen and (max-width:1215px){
    .secSecond{
        padding: 4rem 0 4rem;
    }
    .secStrength .secSecond .subtitIn{
        font-size: 2.5rem;
    }
    .secSecond .boxGraph{
        flex-direction: column;
        align-items: center;
        gap: 0 3rem;
        margin-top: 3rem;
        margin-bottom: 5rem;
    }
    .secSecond .imgGraph{
        order: 2;
    }
    .secSecond .boxGraph .boxTxt{
        order: 1;
        margin: 0 0 2rem;
    }
    .secSecond .txtGraph{
        font-size: 1.3rem;
        line-height: 1.85;
    }
    .secSecond .txtGraph .fOrange{
        font-size: 1.3rem;
    }
    .secSecond .listGraph{
        margin-top: 2rem;
        margin-bottom: 2rem;
    }
    .secSecond .itemGraph{
        font-size: 1.3rem;
        padding: 0 0 0 3rem;
    }
    .secSecond .itemGraph + .itemGraph{
        margin-top: 2rem;
    }
    .secSecond .itemGraph::before{
        width: 2.4rem;
        height: 2.4rem;
    }
    .secSecond .titChukai{
        font-size: 1.4rem;
        font-weight: normal;
        margin: 0 0 1rem;
    }
    .secSecond .titChukai .txtBig{
        font-size: 1.9rem;
        font-weight: bold;
    }
    .secSecond .txtChukai{
        font-size: 1.5rem;
        line-height: 1.75;
        margin: 0 0 2.5rem;
        text-align: left;
        font-weight: normal;
    }
}

/* secThird */
.secThird{
    padding: 0 0 6rem;
}
.secStrength .secThird .subtitIn{
    font-size: 4rem;
}
.secThird .boxStrategy{
    max-width: 79.2rem;
    color: var(--keyColor);
    border: 0.6rem solid var(--keyColor);
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 5rem;
}
.secThird .titStrateg{
    font-size: 2.4rem;
    line-height: 1.5;
    letter-spacing: 0.05em;
    font-weight: bold;
    margin: 0 0 1.5rem;
}
.secThird .txtStrateg{
    font-size: 1.5rem;
    line-height: 1.79;
    letter-spacing: 0.05em;
    font-weight: bold;
}
.secThird .listInfo{
    max-width: 79.2rem;
    text-align: left;
}
.secThird .itemInfo + .itemInfo{
    margin-top: 2rem;
}
.secThird .titInfo{
    font-size: 1.8rem;
    line-height: 1.5;
    letter-spacing: 0.05em;
    font-weight: bold;
    color: #fff;
    background-color: var(--keyColor);
    padding: 3rem 9rem 3rem 7.5rem;
    position: relative;
    cursor: pointer;
}
.secThird .titInfo .icon{
    width: 3.6rem;
    height: 3.6rem;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 2rem;
    margin: auto 0;
}
.secThird .titInfo .icon::before,
.secThird .titInfo .icon::after{
    content: '';
    display: block;
    width: 0.45rem;
    height: 100%;
    background-color: #fff;
    border-radius: 100rem;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    transition: transform 0.3s ease-out;
}
.secThird .titInfo .icon::after{
    transform: rotate(90deg);
}
.secThird .itemInfo.isOpen .titInfo .icon::before{
    transform: rotate(90deg);
}
.secThird .boxInfoDetail{
    height: 0;
    overflow: hidden;
    transition: padding 0.3s ease-out;
}
.secThird .itemInfo.isOpen .boxInfoDetail{
    height: auto;
    border: 0.5rem solid var(--keyColor);
}
.secThird .listDetail{
    padding: 0 5.5rem;
    transition: all 0.3s ease-out;
}
.secThird .itemInfo.isOpen .listDetail{
    padding: 2.5rem 5.5rem;
}
.secThird .itemDetail{
    position: relative;
    padding: 0 0 0 3.5rem;
    transition: all 0.3s ease-out;
}
.secThird .itemInfo.isOpen .itemDetail + .itemDetail{
    margin-top: 2rem;
}
.secThird .itemDetail::before{
    content: '';
    display: block;
    width: 2.4rem;
    height: 2.4rem;
    background-repeat: no-repeat;
    background-position: left top;
    background-size: 100%;
    position: absolute;
    top: .5rem;
    left: 0;
}
.secThird.lazyloaded .itemDetail::before{
    background-image: url(../img/iconCheck.png);
}
.secThird .titDetail{
    font-size: 2rem;
    line-height: 1.5;
    letter-spacing: 0.05em;
    font-weight: bold;
}
.secThird .txtDetail{
    font-size: 1.3rem;
    line-height: 1.84;
    letter-spacing: 0.05em;
}
@media only screen and (max-width:1215px){
    .secThird{
        padding: 0 0 6rem;
    }
    .secStrength .secThird .subtitIn{
        font-size: 2.5rem;
    }
    .secThird .boxStrategy{
        border-radius: 0.5rem;
        border-width: 0.3rem;
        padding: 1.5rem;
        margin-bottom: 2.5rem;
    }
    .secThird .titStrateg{
        font-size: 2rem;
        margin: 0 0 1.5rem;
    }
    .secThird .txtStrateg{
        font-size: 1.3rem;
        line-height: 1.92;
        font-weight: normal;
        text-align: left;
    }
    .secThird .itemInfo + .itemInfo{
        margin-top: 1.5rem;
    }
    .secThird .titInfo{
        font-size: 1.4rem;
        line-height: 1.45;
        letter-spacing: 0.05em;
        padding: 1rem 6rem 1rem 2rem;
    }
    .secThird .titInfo .icon{
        width: 2.4rem;
        height: 2.4rem;
        right: 1.5rem;
    }
    .secThird .titInfo .icon::before,
    .secThird .titInfo .icon::after{
        width: 0.3rem;
    }
    .secThird .listDetail{
        padding: 0 1.5rem;
    }
    .secThird .itemInfo.isOpen .listDetail{
        padding: 2rem 1.5rem;
    }
    .secThird .itemDetail{
        position: relative;
        padding: 0 0 0 2rem;
    }
    .secThird .itemInfo.isOpen .itemDetail + .itemDetail{
        margin-top: 2rem;
    }
    .secThird .itemDetail::before{
        width: 1.6rem;
        height: 1.6rem;
        top: 0.2rem;
    }
    .secThird .titDetail{
        font-size: 1.4rem;
        margin-bottom: 0.5rem;
    }
    .secThird .txtDetail{
        font-size: 1.3rem;
        line-height: 1.52;
    }
}

/* secCampany */
.secCampany{
    max-width: 79.2rem;
}
.secCampany .tit,
.secBussiness .tit{
    font-size: 2.4rem;
    line-height: 1.5;
    letter-spacing: 0.05em;
    font-weight: bold;
    color: var(--keyColor);
    border-bottom: 2px solid var(--keyColor);
}
.secCampany .boxWrap{
    display: flex;
    gap: 0 5.8rem;
    margin: 1.6rem 0 0; 
}
.secCampany .boxTable{
    width: 60.7rem;
}
.secCampany .boxTable table{
    width: 100%;
}
.secCampany .boxTable th,
.secCampany .boxTable td{
    border-bottom: 1px solid #000;
    font-size: 1.2rem;
    line-height: 1.75;
    letter-spacing: 0.05em;
}
.secCampany .boxTable th{
    padding: 1.5rem 0;
    width: 7.5rem;
}
.secCampany .boxTable td{
    padding: 1.5rem 1.5rem 1.5rem 3rem;
    width: 12rem;
}
.secCampany .boxTable td + td{
    padding-left: 0;
    width: auto;
}
.secCampany .boxImg + .boxImg{
    margin-top: 3rem;
}
.secCampany .titImg{
    font-size: 1.8rem;
    line-height: 1.5;
    letter-spacing: 0.05em;
    font-weight: bold;
    color: #fff;
    background-color: var(--keyColor);
    padding: 0.75rem;
    text-align: center;
}
@media only screen and (max-width:1215px){
    .secCampany .tit,
    .secBussiness .tit{
        font-size: 2.5rem;
        border-bottom: none;
        text-align: center;
    }
    .secCampany .boxWrap{
        margin: 2.5rem 0 0;
        flex-direction: column;
    }
    .secCampany .boxTable{
        width: 100%;
        order: 2;
        margin-top: 3rem;
    }
    .secCampany .boxTable th,
    .secCampany .boxTable td{
        font-size: 1.3rem;
        line-height: 1.46;
        border-color: #646464;
    }
    .secCampany .boxTable th{
        padding: 1rem 0;
        width: 9rem;
    }
    .secCampany .boxTable td{
        padding: 1rem 0;
        width: 8rem;
    }
    .secCampany .boxTable td + td{
        width: auto;
    }
    .secCampany .boxRight{
        display: flex;
        gap: 0 1rem;
        order: 1;
    }
    .secCampany .boxImg{
        width: calc((100% - 1rem) / 2);
    }
    .secCampany .boxImg + .boxImg{
        margin-top: 0;
    }
    .secCampany .titImg{
        font-size: 1.2rem;
        padding: 0.5rem;
    }
}

/* secBussiness */
.secBussiness{
    max-width: 79.2rem;
    padding: 6rem 0 15rem;
}
.secBussiness .txt{
    font-size: 1.2rem;
    line-height: 2.13;
    letter-spacing: 0.05em;
    margin-top: 3rem;
}
.secBussiness .list{
    font-size: 1.2rem;
    line-height: 2.13;
    letter-spacing: 0.05em;
    display: flex;
    flex-wrap: wrap;
    margin-top: 4rem;
    margin-bottom: 6rem;
}
.secBussiness .list .item::after{
    content: '/';
    padding: 0 0.5rem;
}
.secBussiness .list .item:last-child::after{
    display: none;
}
.secBussiness .boxTitCm{
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}
.secBussiness .titCm{
    font-size: 1.8rem;
    line-height: 1.5;
    letter-spacing: 0.05em;
    font-weight: bold;
    position: relative;
}
.secBussiness .titCm .txtBig{
    font-size: 2.4rem;
}
.secBussiness .titCm::before,
.secBussiness .titCm::after{
    content: '';
    position: absolute;
    width: 0.2rem;
    height: 3.5rem;
    background-color: #000;
    top: 0.5rem;
}
.secBussiness .titCm::before{
    transform:rotate(-26deg);
    left: -3rem;
}
.secBussiness .titCm::after{
    transform:rotate(26deg);
    right: -3rem;
}
.secBussiness .itemCm{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
.secBussiness .itemCm + .itemCm{
    margin-top: 7rem;
}
.secBussiness .boxMovie{
    aspect-ratio: 560 / 315;
    width: 65.3rem;
    position: relative;
}
.secBussiness .boxMovie iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    vertical-align: bottom;
}
.secBussiness .txtCm{
    font-size: 1.5rem;
    line-height: 1.5;
    letter-spacing: 0.05em;
    font-weight: bold;
    position: relative;
    color: #fff;
    background-color: var(--keyColor);
    padding: 1rem;
    margin-top: 3rem;
    width: 40rem;
    text-align: center;
}
.secBussiness .txtCm .txtBig{
    font-size: 2.4rem;
}
.secBussiness .txtCm::before{
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 9px solid transparent;
    border-left: 9px solid transparent;
    border-bottom: 22px solid var(--keyColor);
    border-top: 0;
    position: absolute;
    top: -21px;
    left: 0;
    right: 0;
    margin: 0 auto;
}
@media only screen and (max-width:1215px){
    .secBussiness{
        padding: 5rem 0 5rem;
    }
    .secBussiness .txt{
        font-size: 1.5rem;
        line-height: 1.8;
        margin-top: 2rem;
    }
    .secBussiness .list{
        font-size: 1.3rem;
        line-height: 2;
        margin-top: 2rem;
        margin-bottom: 5rem;
        display: block;
    }
    .secBussiness .list .item{
        display: inline;
    }
    .secBussiness .boxTitCm{
        margin-bottom: 1rem;
    }
    .secBussiness .titCm{
        font-size: 1.6rem;
    }
    .secBussiness .titCm .txtBig{
        font-size: 1.9rem;
    }
    .secBussiness .titCm::before,
    .secBussiness .titCm::after{
        height: 2.5rem;
        top: 0;
        bottom: 0;
        margin: auto 0;
    }
    .secBussiness .titCm::before{
        left: -2rem;
    }
    .secBussiness .titCm::after{
        right: -2rem;
    }
    .secBussiness .itemCm + .itemCm{
        margin-top: 4rem;
    }
    .secBussiness .boxMovie{
        width: 100%;
    }
    .secBussiness .txtCm{
        font-size: 1rem;
        font-weight: normal;
        padding: 1rem;
        margin-top: 2rem;
        width: 100%;
    }
    .secBussiness .txtCm .txtBig{
        font-size: 1.6rem;
        font-weight: bold;
    }
    .secBussiness .txtCm::before{
        border-right: 7px solid transparent;
        border-left: 7px solid transparent;
        border-bottom: 15px solid var(--keyColor);
        top: -14px;
    }
}

/* footer */
#footer{
    text-align: center;
    padding: 8rem 0 16rem;
    background-color: #F8F8F8;
    border-top: 0.8rem solid #D9D9D9;
}
#footer .logo{
    margin: 0 0 8rem;
}
#footer .list{
    display: flex;
    justify-content: center;
    font-size: 1.6rem;
    letter-spacing: 0.05em;
    margin: 0 0 2rem;
}
#footer .list .item{
    position: relative;
}
#footer .list .item + .item::before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    background-color: #000;
    width: 1px;
    height: 2.1rem;
}
#footer .list .item a{
    display: block;
    padding: 0 2.5rem;
}
#footer .copyright{
    font-size: 1.5rem;
    letter-spacing: 0.05em;
}
@media only screen and (max-width:1215px){
    #footer{
        padding: 2rem 0 9rem;
    }
    #footer .logo{
        width: 13.4rem;
        margin: 0 auto 2.5rem;
    }
    #footer .list{
        font-size: 1.1rem;
        margin: 0 0 2rem;
    }
    #footer .list .item + .item::before{
        height: 0.8rem;
    }
    #footer .list .item a{
        padding: 0 1rem;
    }
    #footer .copyright{
        font-size: 1rem;
    }
}

/* secFixed */
.secFixed{
    position: fixed;
    bottom: -15rem;
    left: 0;
    z-index: -1;
    width: 100%;
    transition: all 0.5s ease-out;
    background-size: cover;
    background-position: center center;
} 
.secFixed.active{
    bottom: 0;
    z-index: 40;
    background: var(--lOrangeColor);
}
.secFixed .fixedWrapper{
    max-width:calc(100% - 10rem);
    margin-inline: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 1%;
    padding: 0.5rem 0;
}
.secFixed .list{
    display: flex;
    gap: 0 0.5rem;
}
@media only screen and (max-width:1215px){
    .secFixed .fixedWrapper{
        max-width: calc(100% - 1rem);
        justify-content: space-between;
        gap: 0;
    }
    .secFixed .boxRight{
        width: 100%;
    }
    .secFixed .list{
        justify-content: space-between;
    }
    .secFixed .list .item{
        width: 49%;
    }
    .secFixed .list .item:nth-child(2){
        width: 49%;
    }
}