@charset "utf-8";

@font-face{
    font-family:'Noto Sans CJK JP';
    font-style:normal;
    font-weight:400;
    font-display:swap;
    src:url(../fonts/NotoSansCJKjp/NotoSansCJKjp-Regular.woff2) format('woff2');
}
@font-face{
    font-family:'Noto Sans CJK JP';
    font-style:normal;
    font-weight:700;
    font-display:swap;
    src:url(../fonts/NotoSansCJKjp/NotoSansCJKjp-Bold.woff2) format('woff2');
}

/*==============================
    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 {
    /* フッターの上の余白 */
    --footerPc: 15rem;
    --footerSp: 8rem;

    /* 色 */
    --textColor: #1d1d1d;
    --keyColor: #018cd4;
    --editor_linkColor: #295ea2;
    --editor_borderColor: #ccc;
    --colorWhite: #fff;
    --bgFooter: #333333;
    --bgBody: #f0eee6;
    --marqueeLoopDuration: 40s;

    /* フォントサイズ（PC） */
    --pcFontSize10: 1rem;
    --pcFontSize11: 1.1rem;
    --pcFontSize12: 1.2rem;
    --pcFontSize13: 1.3rem;
    --pcFontSize14: 1.4rem;
    --pcFontSize15: 1.5rem;
    --pcFontSize16: 1.6rem;
    --pcFontSize17: 1.7rem;
    --pcFontSize18: 1.8rem;
    --pcFontSize19: 1.9rem;
    --pcFontSize20: 2rem;
    --pcFontSize22: 2.2rem;
    --pcFontSize24: 2.4rem;
    --pcFontSize26: 2.6rem;
    --pcFontSize28: 2.8rem;
    --pcFontSize30: 3rem;
    --pcFontSize32: 3.2rem;
    --pcFontSize34: 3.4rem;
    --pcFontSize36: 3.6rem;
    --pcFontSize38: 3.8rem;
    --pcFontSize40: 4rem;
    --pcFontSize50: 5rem;
    --pcFontSize60: 6rem;
    --pcFontSize70: 7rem;
    --pcFontSize100: 10rem;
    --pcFontSize140: 14rem;

    /* line-height（PC） */
    --pcLineHeight10_15: calc(15 / 10); 
    --pcLineHeight16_40: calc(40 / 16); 

    /* letter-spacing（PC） */
    --pcLetterSpacing10: 0.01em; 
    --pcLetterSpacing20: 0.02em; 
    --pcLetterSpacing30: 0.03em; 
    --pcLetterSpacing40: 0.04em; 
    --pcLetterSpacing50: 0.05em; 
    --pcLetterSpacing100: 0.1em; 
    --pcLetterSpacing150: 0.15em;
    --pcLetterSpacing200: 0.2em;
    --pcLetterSpacing400: 0.4em;

    /* フォントサイズ（SP）*/
    --spFontSize10: calc((10 / 375) * var(--widthBase));
    --spFontSize11: calc((11 / 375) * var(--widthBase));
    --spFontSize12: calc((12 / 375) * var(--widthBase));
    --spFontSize13: calc((13 / 375) * var(--widthBase));
    --spFontSize14: calc((14 / 375) * var(--widthBase));
    --spFontSize15: calc((15 / 375) * var(--widthBase));
    --spFontSize16: calc((16 / 375) * var(--widthBase));
    --spFontSize17: calc((17 / 375) * var(--widthBase));
    --spFontSize18: calc((18 / 375) * var(--widthBase));
    --spFontSize19: calc((19 / 375) * var(--widthBase));
    --spFontSize20: calc((20 / 375) * var(--widthBase));
    --spFontSize22: calc((22 / 375) * var(--widthBase));
    --spFontSize24: calc((24 / 375) * var(--widthBase));
    --spFontSize26: calc((26 / 375) * var(--widthBase));
    --spFontSize28: calc((28 / 375) * var(--widthBase));
    --spFontSize30: calc((30 / 375) * var(--widthBase));
    --spFontSize32: calc((32 / 375) * var(--widthBase));
    --spFontSize34: calc((34 / 375) * var(--widthBase));
    --spFontSize36: calc((36 / 375) * var(--widthBase));
    --spFontSize38: calc((38 / 375) * var(--widthBase));
    --spFontSize40: calc((40 / 375) * var(--widthBase));
    --spFontSize50: calc((50 / 375) * var(--widthBase));
    --spFontSize60: calc((60 / 375) * var(--widthBase));
    --spFontSize70: calc((70 / 375) * var(--widthBase));

    /* line-height（SP） */
    --spLineHeight10_15: calc(15 / 10); /* font-size:10; line-height:1.5; */

    /* letter-spacing（SP） */
    --spLetterSpacing40: 0.04em;
    --spLetterSpacing50: 0.05em;
    --spLetterSpacing60: 0.06em;
    --spLetterSpacing70: 0.07em;
    --spLetterSpacing80: 0.08em;
    --spLetterSpacing90: 0.09em;
    --spLetterSpacing100: 0.1em;
    --spLetterSpacing150: 0.15em;
    --spLetterSpacing180: 0.18em;
    --spLetterSpacing200: 0.2em;
}

/*==============================
    基本設定
==============================*/
body{
    color:var(--textColor);
    font-size:var(--pcFontSize12);
    font-family: "YakuHanJP", "Noto Sans CJK JP", "Lato", 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;}
.uVisuallyHidden{
    position:absolute;
    width:1px;
    height:1px;
    padding:0;
    margin:-1px;
    overflow:hidden;
    clip:rect(0 0 0 0);
    clip-path:inset(50%);
    white-space:nowrap;
    border:0;
}
th{
    font-weight:normal;
    text-align:left;
}

/*font layout*/
.fBold{font-weight:bold;}
.fSerif{font-family:'Noto Serif Japanese', serif;}
.fLato{font-family: "Lato", sans-serif;}

/*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;
    width: 100%;
    margin:0 auto;
}

/*========================================
    レスポンシブ用(不要な場合は削除)
========================================*/
.spOnly,
.brSp,
.imgSp{
    display:none;
}
.img100{
    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;
    }
}

/*-----------------------------------------------
    imgCover
-----------------------------------------------*/
/* imgCover */
.imgCover,
.imgCont{
    position:relative;
}
.imgCover img {
    width:100%;
    height:100%;
    position:absolute;
    top:0;
    left:0;
    object-fit:cover;
}
.imgCont img{
    width:auto;
    height:auto;
    max-width:100%;
    max-height:100%;
    display:block;
    position:absolute;
    top:0;
    bottom:0;
    left:0;
    right:0;
    margin:auto;
}


/*-----------------------------------------------
    wrapper
-----------------------------------------------*/
.wrapper{
    width: var(--widthBase);
    max-width: 192rem;
    margin: 0 auto;
    padding: 0 4rem;
}
.wrapper1600{
    width: 160rem;
    margin: 0 auto;
    max-width: calc(100% - 10rem);
}
@media only screen and (max-width:1215px){
    .wrapper1600{
        max-width:none;
        width: 100%;
    }

    .wrapperSp335{
        width: calc((335 / 375) * var(--widthBase));
        margin: 0 auto;
    }
    .wrapperFit{
        max-width: 40rem;
        margin: 0 auto;
	}
}

/*-----------------------------------------------
    mainwrapper
-----------------------------------------------*/
.mainwrapper{
    position: relative;
}

/*-----------------------------------------------
    header
-----------------------------------------------*/
#header{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    color: #fff;
    padding: 2.4rem 0 0;
}
#header .wrapperHeader{
    padding: 0 4rem;
}
#header .headerInner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}
#header .headerInner .boxLeft{
    display: flex;
    align-items: center;
    gap: 3.8rem;
}
#header .headerInner .boxRight{
    flex-shrink: 0;
    display: flex;
    align-items: center;
}
#header .headerLogo{
    flex-shrink: 0;
    width: 24.9rem;
}
#header .headerLogo a{
    display: block;
}
#header .headerNav{
    flex: 1;
}
#header .headerNavList{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: var(--pcFontSize16);
    letter-spacing: var(--pcLetterSpacing40);
}
#header .headerNavList li{
    display: flex;
    align-items: center;
}
#header .headerNavList li + li::before{
    content: "/";
    margin: 0 2.2rem;
    opacity: 0.7;
    position: relative;
    transform: rotate(-10deg);
}
#header .headerNavList a{
    display: block;
    white-space: nowrap;
    transition: opacity 0.2s ease-out;
}
#header .headerNavList a:hover{
    opacity: 0.7;
}
#header .headerContact{
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 3rem;
}
#header .headerTel{
    text-align: right;
}
#header .telBox{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
}
#header .telLabel{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 2rem;
    border: 0.1rem solid #fff;
    border-radius: 0.4rem;
    font-size: var(--pcFontSize12);
    letter-spacing: var(--pcLetterSpacing40);
    line-height: 1;
}
#header .telNumber{
    font-size: var(--pcFontSize20);
    line-height: 1;
}
#header .telHours{
    margin-top: 0.6rem;
    font-size: var(--pcFontSize13);
    letter-spacing: var(--pcLetterSpacing40);
    line-height: 1;
}
#header .headerBtns{
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
#header .btnHeader{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1.4rem;
    height: 5.7rem;
    width: 20rem;
    border-radius: 999rem;
    font-size: var(--pcFontSize13);
    letter-spacing: var(--pcLetterSpacing40);
    line-height: 1;
    transition: background-color 0.5s cubic-bezier(0.33, 1, 0.68, 1), color 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}
#header .btnHeader .btnIcon{
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
#header .btnHeader .btnIcon img{
    height: 1.5rem;
    width: auto;
}
#header .btnSite{
    background: #fff;
    color: var(--textColor);
}
#header .btnContact{
    background: #033886;
    color: #fff;
}
@media (hover: hover){
    #header .btnSite:hover{
        background: var(--textColor);
        color: var(--colorWhite);
    }
    #header .btnSite:hover .btnIcon img{
        filter: brightness(0) invert(1);
    }
    #header .btnContact:hover{
        background: var(--colorWhite);
        color: #033886;
    }
    #header .btnContact:hover .btnIcon img{
        filter: brightness(0) saturate(100%) invert(14%) sepia(84%) saturate(4257%) hue-rotate(210deg) brightness(95%) contrast(101%);
    }
}
#header .headerTagline{
    margin-top: 3rem;
    font-size: var(--pcFontSize13);
    letter-spacing: var(--pcLetterSpacing40);
    color: var(--colorWhite);
}
@media only screen and (max-width:1650px){
    #header .headerNavList li + li::before {
        margin: 0 1.6rem;
    }
    #header .btnHeader {
        width: 18rem;
    }
    #header .headerLogo{
        width: 20rem;
    }
}
@media only screen and (max-width:1215px){
    #header{
        padding: 2rem 0 0;
    }
    #header .wrapperHeader{
        padding: 0 2rem;
        width: 100%;
    }
    #header .wrapper{
        padding: 0 2rem;
        width: 100%;
    }
    #header .headerInner{
        align-items: flex-start;
        gap: 0;
    }
    #header .headerInner .boxLeft{
        flex: 1;
        gap: 0;
    }
    #header .headerLogo{
        width: calc((130 / 375) * var(--widthBase));
        max-width: 13rem;
    }
    #header .headerTagline{
        margin-top: 0.6rem;
    }
    #header .headerTaglineSp{
        display: block;
    }
    #header .headerTaglineCompany{
        display: block;
        font-size: var(--spFontSize11);
        letter-spacing: 0;
        line-height: calc(18 / 11);
    }
    #header .headerTaglineDesc{
        display: block;
        font-size: var(--spFontSize11);
        letter-spacing: 0;
        line-height: calc(18 / 11);
    }
    #header .headerMenuBtn{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-end;
        gap: 0.6rem;
        width: 2.5rem;
        height: 2.5rem;
        padding: 0;
        border: none;
        background: none;
        cursor: pointer;
        flex-shrink: 0;
    }
    #header .headerMenuBtnLine{
        display: block;
        width: 2.5rem;
        height: 0.1rem;
        background: var(--colorWhite);
        transition: transform 0.3s ease-out, opacity 0.3s ease-out;
    }
    #header.isMenuOpen .headerMenuBtnLine:nth-child(1){
        transform: translateY(0.45rem) rotate(20deg);
    }
    #header.isMenuOpen .headerMenuBtnLine:nth-child(2){
        transform: translateY(-0.45rem) rotate(-20deg);
    }
    #header.isMenuOpen .headerMenuBtn{
        position: relative;
        z-index: 310;
    }
    body.isMenuOpen{
        overflow: hidden;
    }
    #header .headerInner .boxRight{
        display: none;
    }
}

/*-----------------------------------------------
    menu
-----------------------------------------------*/

@media only screen and (max-width:1215px){
    #menu{
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 300;
        background: rgba(51, 51, 51, 0.95);
        overflow-y: auto;
        visibility: hidden;
        opacity: 0;
        transition: opacity 0.4s ease-out, visibility 0.4s ease-out;
    }
    #menu.isOpen{
        visibility: visible;
        opacity: 1;
    }
    #menu .menuInner{
        min-height: 100%;
        padding: 2rem 0 6rem;
        color: var(--colorWhite);
    }
    #menu .menuHead{
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        padding-bottom: 2rem;
        border-bottom: 0.1rem solid rgba(255, 255, 255, 0.15);
    }
    #menu .menuLogo{
        width: calc((130 / 375) * var(--widthBase));
        max-width: 13rem;
    }
    #menu .menuLogo a{
        display: block;
    }
    #menu .menuClose{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0;
        width: 2.5rem;
        height: 2.5rem;
        padding: 0;
        border: none;
        background: none;
        cursor: pointer;
        flex-shrink: 0;
    }
    #menu .menuCloseLine{
        display: block;
        width: 2.5rem;
        height: 0.1rem;
        background: var(--colorWhite);
    }
    #menu .menuCloseLine:nth-child(1){
        transform: translateY(0.05rem) rotate(45deg);
    }
    #menu .menuCloseLine:nth-child(2){
        transform: translateY(-0.05rem) rotate(-45deg);
    }
    #menu .menuNav{
        display: grid;
        grid-template-columns: 1fr 1fr;
        list-style: none;
        margin: 0;
        padding: 0;
        border-bottom: 0.1rem solid rgba(255, 255, 255, 0.15);
    }
    #menu .menuNav li{
        border-bottom: 0.1rem solid rgba(255, 255, 255, 0.15);
    }
    #menu .menuNav li:nth-child(odd){
        position: relative;
    }
    #menu .menuNav li:nth-child(odd)::after{
        content: "";
        position: absolute;
        top: 50%;
        right: 0;
        width: 0.1rem;
        height: 3.5rem;
        background: rgba(255, 255, 255, 0.15);
        transform: translateY(-50%);
    }
    #menu .menuNav li:nth-last-child(-n+2){
        border-bottom: none;
    }
    #menu .menuNav a{
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 6rem;
        padding: 1.6rem 2rem;
        color: var(--colorWhite);
        font-size: var(--spFontSize13);
        letter-spacing: var(--spLetterSpacing40);
    }
    #menu .menuNav li:nth-child(odd) a{
        padding-left: 0;
    }
    #menu .menuNavArrow{
        position: relative;
        flex-shrink: 0;
        width: 2.1rem;
        height: 2.1rem;
        border: 0.1rem solid var(--colorWhite);
        border-radius: 50%;
    }
    #menu .menuNavArrow::before{
        content: "";
        position: absolute;
        top: 50%;
        left: 46%;
        width: 0.4rem;
        height: 0.4rem;
        border-top: 0.1rem solid var(--colorWhite);
        border-right: 0.1rem solid var(--colorWhite);
        transform: translate(0, -50%) rotate(45deg);
        margin-left: 0.1rem;
    }
    #menu .menuNavArrow::after{
        content: "";
        position: absolute;
        top: 50%;
        left: 52%;
        width: 0.8rem;
        height: 0.1rem;
        background: var(--colorWhite);
        transform: translate(-50%, -50%);
    }
    #menu .menuContact{
        padding-top: 2.8rem;
        text-align: center;
    }
    #menu .menuTelNote{
        font-size: var(--spFontSize11);
        letter-spacing: 0;
        line-height: calc(18 / 11);
    }
    #menu .menuTel{
        margin-top: 1rem;
    }
    #menu .menuTel .telBox{
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
    }
    #menu .menuTel .telLabel{
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 3rem;
        height: 2rem;
        border: 0.1rem solid var(--colorWhite);
        border-radius: 0.4rem;
        font-size: var(--spFontSize12);
        letter-spacing: 0;
        line-height: 1;
    }
    #menu .menuTel .telNumber{
        font-size: var(--spFontSize24);
        letter-spacing: var(--spLetterSpacing40);
        line-height: 1;
    }
    #menu .menuTel .telHours{
        margin-top: 0.8rem;
        font-size: var(--spFontSize11);
        letter-spacing: 0;
        line-height: calc(18 / 11);
    }
    #menu .menuBtns{
        display: flex;
        gap: 1rem;
        margin-top: 2.4rem;
    }
    #menu .menuBtn{
        display: flex;
        flex: 1;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.8rem;
        height: 7rem;
        border-radius: 999rem;
        font-size: var(--spFontSize13);
        letter-spacing: 0;
        line-height: 1.4;
        text-align: center;
    }
    #menu .menuBtnIcon{
        display: flex;
        align-items: center;
        justify-content: center;
        width: 1.5rem;
    }
    #menu .menuBtnContact .menuBtnIcon{
        width: 1.7rem;
    }
    #menu .menuBtnSite{
        background: var(--colorWhite);
        color: var(--textColor);
    }
    #menu .menuBtnContact{
        background: #033886;
        color: var(--colorWhite);
    }
    #menu .menuSns{
        display: flex;
        flex-wrap: wrap;
        gap: 1.4rem 1.5rem;
        width: 100%;
        margin-top: 3rem;
    }
    #menu .menuSnsItem{
        display: flex;
        align-items: center;
        gap: 1rem;
        color: var(--colorWhite);
    }
    #menu .menuSnsItem:nth-child(1){
        width: 100%;
    }
    #menu .menuSnsIcon{
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        width: 4.5rem;
        height: 4.5rem;
        background: var(--colorWhite);
        border-radius: 50%;
    }
    #menu .menuSnsIcon img{
        width: 1.8rem;
        height: auto;
    }
    #menu .menuSnsTxt{
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    #menu .menuSnsName{
        font-size: var(--spFontSize13);
        letter-spacing: 0;
        line-height: calc(18 / 13);
    }
    #menu .menuSnsId{
        font-size: var(--spFontSize10);
        letter-spacing: 0;
        line-height: 1.4;
    }
}

/*-----------------------------------------------
    footer
-----------------------------------------------*/
#footer{
    background: var(--bgFooter);
    color: var(--colorWhite);
    padding: 12rem 0;
}
#footer .footerInner{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 4rem;
}
#footer .footerLeft{
    flex: 1;
    min-width: 0;
}
#footer .footerCompany{
    display: flex;
    align-items: flex-start;
    gap: 3rem;
}
#footer .footerLogo{
    flex-shrink: 0;
    width: 24.9rem;
}
#footer .footerLogo a{
    display: block;
}
#footer .footerInfo{
    font-size: var(--pcFontSize13);
    letter-spacing: var(--pcLetterSpacing40);
    line-height: calc(28 / 13);
}
#footer .footerMapLink{
    text-decoration: underline;
    text-underline-offset: 0.6rem;
}
#footer .footerTel{
    margin-top: 0.4rem;
}
#footer .footerBanners{
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 2.6rem;
}
#footer .footerBanner{
    display: block;
    width:13rem;
    background: var(--colorWhite);
    border-radius: 0.4rem;
    overflow: hidden;
}
#footer .footerRight{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4rem;
    flex-shrink: 0;
    margin-top: 0.8rem;
}
#footer .footerNavList{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: var(--pcFontSize16);
    letter-spacing: var(--pcLetterSpacing40);
}
#footer .footerNavList li{
    display: flex;
    align-items: center;
}
#footer .footerNavList li + li::before{
    content: "/";
    margin: 0 2.2rem;
    opacity: 0.7;
    position: relative;
    transform: rotate(-10deg);
}
#footer .footerNavList a{
    display: block;
    white-space: nowrap;
    transition: opacity 0.2s ease-out;
}
#footer .footerNavList a:hover{
    opacity: 0.7;
}
#footer .footerSns{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 2rem;
}
#footer .footerSnsItem{
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--colorWhite);
}
#footer .footerSnsIcon{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 4.5rem;
    height: 4.5rem;
    background: var(--colorWhite);
    border-radius: 50%;
}
#footer .footerSnsIcon img{
    width: 2rem;
    height: auto;
}
#footer .footerSnsTxt{
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
#footer .footerSnsName{
    font-size: var(--pcFontSize13);
    letter-spacing: var(--pcLetterSpacing40);
    line-height: calc(18 / 13);
}
#footer .footerSnsId{
    font-size: var(--pcFontSize10);
    letter-spacing: var(--pcLetterSpacing40);
}
#footer .footerCopyright{
    font-size: var(--pcFontSize11);
    letter-spacing: var(--pcLetterSpacing40);
    color: rgba(255, 255, 255, 0.5);
}

@media only screen and (max-width:1215px){
    #footer{
        padding: 7rem 0;
    }
    #footer .footerInner{
        flex-direction: column;
        align-items: center;
        gap: 0;
    }
    #footer .footerLeft{
        width: 100%;
    }
    #footer .footerCompany{
        flex-direction: column;
        align-items: center;
        gap: 1.6rem;
        text-align: center;
    }
    #footer .footerLogo{
        width: calc((184 / 375) * var(--widthBase));
        max-width: 18.4rem;
        margin: 0 auto;
    }
    #footer .footerInfo{
        font-size: var(--spFontSize13);
        letter-spacing: 0;
        line-height: calc(24 / 13);
    }
    #footer .footerTel{
        margin-top: 0.6rem;
    }
    #footer .footerBanners{
        justify-content: center;
        gap: 0.4rem;
        margin-top: 2rem;
        width: 100%;
    }
    #footer .footerBanner{
        flex: 1;
        width: calc((100% - 0.8rem) / 3);
        min-width: 0;
        border-radius: 0.3rem;
    }
    #footer .footerRight{
        align-items: center;
        width: 100%;
        gap: 2.4rem;
        margin-top: 2.4rem;
        padding-top: 2.4rem;
        border-top: 0.1rem solid rgba(255, 255, 255, 0.15);
    }
    #footer .footerNav{
        display: none;
    }
    #footer .footerSns{
        gap: 2rem 1.5rem;
        width: 100%;
        margin: 0 auto;
        justify-content: initial;
    }
    #footer .footerSnsItem:nth-child(1){
        width: 100%;
    }
    #footer .footerSnsItem:nth-child(2){

    }
    #footer .footerSnsItem:nth-child(3){

    }
    #footer .footerSnsIcon{
        width: 4rem;
        height: 4rem;
    }
    #footer .footerSnsIcon img{
        width: 1.8rem;
    }
    #footer .footerSnsName{
        font-size: var(--spFontSize13);
        letter-spacing: 0;
        line-height: calc(18 / 13);
    }
    #footer .footerSnsId{
        font-size: var(--spFontSize10);
        letter-spacing: 0;
    }
    #footer .footerCopyright{
        width: 100%;
        font-size: var(--spFontSize11);
        letter-spacing: 0;
        text-align: center;
    }
}
@media only screen and (max-width:370px){
    .secStaff .staffTitle::before {
        left: 56%;
    }
}
/*==============================
    scroll fade（JS有効時）
==============================*/
html.js-scrollFade [data-scroll-fade]:not([data-scroll-fade-group]):not(.isScrollFadeVisible){
    opacity: 0;
}
html.js-scrollFade [data-scroll-fade-group]:not(.isScrollFadeVisible) > *{
    opacity: 0;
}