@charset "utf-8";

/*==============================
    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;

    /* メインコンテンツの幅 */
    --widthMainBase: 60rem;

    /* 色 */
    --textColor: #000000;
    --keyColor: #ec6941;
    --Colorwhite: #fff;
    --ColorBrown: #3b1403;
    --ColorYellow: #fffbe1;
    --ColorRed:#b92525;
    --ColorOrange:#ff3300;
    --ColorMust:#ff0000;
    --formBorderColor: #626262;
    --formBorderColor02: #d4d6de;
    --ColorBorderMenu:#a9947b;

    --Colorwhite_60: rgb(255, 255, 255, 0.6);
    --ColorCircle: #f6f6f6;
    --headerLinkColor: #0676f5;
    --editor_linkColor: #295ea2;
    --editor_borderColor: #ccc;
    --borderColor: #e9eaea;
    --ColorGray: #949ba2;
    --ColorTag: #f03d17;
    --tag_borderColor: #e8e8e8;
    --accordionColor01: #2d78e8;
    --accordionColor02: #3dd583;
    --bgFormInner: #f8f8f9;
    --privacyColor: #252e33;
    --box-shadow_Color_10: rgba(36, 46, 51, 0.1);
    --box-shadow_Color_30: rgba(36, 46, 51, 0.3);
    --boder_Color_50: rgba(37, 46, 51, 0.5);
    --boder_Color_30: rgba(37, 46, 51, 0.3);
    --boder_Color_15: rgba(37, 46, 51, 0.15);
    --bgGradientColor: #fffdfd;
    --bgGradientColor02: #d8e5f7;
    --bgGradientColor03: #f7f8fd;
    --bgEnvironment: #d8e5f6;
    --bgEnvironment02: #4d9bec;
    --color_Base: #95989a;
    --bgPointColor: #e2ebf9;
    --MissionColor: #406295;
    --bgBlue: #f3f9fc;
    --colorYoutube: #f51e37;
    --colorPrivacy: #3581ff;
    --colorBoxOrange: #fffbf5;
    --colorInput: #f8f8f9;

    /* フォントサイズ（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;
    --pcFontSize23: 2.3rem;
    --pcFontSize24: 2.4rem;
    --pcFontSize25: 2.5rem;
    --pcFontSize26: 2.6rem;
    --pcFontSize27: 2.7rem;
    --pcFontSize28: 2.8rem;
    --pcFontSize30: 3rem;
    --pcFontSize32: 3.2rem;
    --pcFontSize33: 3.3rem;
    --pcFontSize34: 3.4rem;
    --pcFontSize35: 3.5rem;
    --pcFontSize36: 3.6rem;
    --pcFontSize38: 3.8rem;
    --pcFontSize40: 4rem;
    --pcFontSize43: 4.3rem;
    --pcFontSize44: 4.4rem;
    --pcFontSize45: 4.5rem;
    --pcFontSize48: 4.8rem;
    --pcFontSize50: 5rem;
    --pcFontSize54: 5.4rem;
    --pcFontSize60: 6rem;
    --pcFontSize70: 7rem;
    --pcFontSize72: 7.2rem;
    --pcFontSize75: 7.5rem;
    --pcFontSize80: 8rem;
    --pcFontSize89: 8.9rem;
    --pcFontSize95: 9.5rem;
    --pcFontSize100: 10rem;
    --pcFontSize110: 11rem;
    --pcFontSize130: 13rem;
    --pcFontSize140: 14rem;


    /* letter-spacing（PC） */
    --pcLetterSpacing0: 0;
    --pcLetterSpacing20: 0.03em;
    --pcLetterSpacing30: 0.03em;
    --pcLetterSpacing40: 0.04em;
    --pcLetterSpacing50: 0.05em;
    --pcLetterSpacing100: 0.1em;
    --pcLetterSpacing150: 0.15em;

    /* フォントサイズ（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));
    --spFontSize23: calc((23 / 375) * var(--widthBase));
    --spFontSize24: calc((24 / 375) * var(--widthBase));
    --spFontSize25: calc((25 / 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));
    --spFontSize42: calc((42 / 375) * var(--widthBase));
    --spFontSize45: calc((45 / 375) * var(--widthBase));
    --spFontSize48: calc((48 / 375) * var(--widthBase));
    --spFontSize50: calc((50 / 375) * var(--widthBase));
    --spFontSize52: calc((52 / 375) * var(--widthBase));
    --spFontSize54: calc((54 / 375) * var(--widthBase));
    --spFontSize58: calc((58 / 375) * var(--widthBase));
    --spFontSize60: calc((60 / 375) * var(--widthBase));
    --spFontSize70: calc((70 / 375) * var(--widthBase));

    /* letter-spacing（SP） */
    --spLetterSpacing0: 0;
    --spLetterSpacing10: 0.01em;
    --spLetterSpacing20: 0.02em;
    --spLetterSpacing30: 0.03em;
    --spLetterSpacing40: 0.04em;
    --spLetterSpacing50: 0.05em;
    --spLetterSpacing100: 0.1em;
    --spLetterSpacing150: 0.15em;

}

/*==============================
    基本設定
==============================*/
body {
    color: var(--textColor);
    font-size: var(--pcFontSize12);
    font-family: "YakuHanJP", "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;
    font-weight: 500;
}

@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;
}

.fOswald {
    font-family: "Oswald", '游ゴシック', YuGothic, 'ヒラギノ角ゴ Pro', 'Hiragino Kaku Gothic Pro', 'メイリオ', 'Meiryo', sans-serif;
}

.fShippori {
    font-family: "Shippori Mincho B1", '游ゴシック', YuGothic, 'ヒラギノ角ゴ Pro', 'Hiragino Kaku Gothic Pro', 'メイリオ', 'Meiryo', 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;
    background-color: var(--bgColor);
}

/* main */
#main {
    position: relative;
    width: var(--widthMainBase);
    margin: 0 auto;
    background-color: var(--white_color);
    box-shadow: 0 0 1rem 0.4rem rgba(0, 0, 0, 0.06);
    z-index: 1;
}

@media only screen and (max-width:1215px) {
    #container {
        background-color: var(--bgColor);
    }

    /* PCの固定ヘッダー背景と同様、スクロールしても背景を固定 */
    #container::before {
        content: "";
        position: fixed;
        inset: 0;
        z-index: 0;
        background: url(../img/common/bgHeader.jpg) center top / cover no-repeat;
        pointer-events: none;
    }

    #main {
        position: relative;
        z-index: 1;
        width: 100%;
        background-color: transparent;
        box-shadow: none;
        overflow: hidden;
        margin-top: 6rem;
    }
}


/*========================================
    レスポンシブ用(不要な場合は削除)
========================================*/
.spOnly,
.brSp,
.imgSp {
    display: none;
}

.img100 {
    width: 100%;
    height: auto;
}

#main .wrapper552 img.imgR {
    display: block;
    width: 100%;
    max-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
-----------------------------------------------*/
.wrapper552 {
    width: 55.2rem;
    margin: 0 auto;
}

@media only screen and (max-width:1215px) {
    .wrapper552 {
        max-width: none;
        width: 100%;
    }

    .wrapperSp350 {
        width: calc((350 / 375) * 100%);
        margin: 0 auto;
    }

    .wrapperSp335 {
        width: calc((335 / 375) * 100%);
        margin: 0 auto;
    }

    .wrapperFit {
        max-width: 40rem;
        margin: 0 auto;
    }
}

/*-----------------------------------------------
    header
-----------------------------------------------*/
#header {
    position: fixed;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: space-between;
    background: url(../img/common/bgHeader.jpg) center top / cover no-repeat;
}

/* headerWrapper */
#header .headerWrapper {
    width: calc((100% - var(--widthMainBase)) / 2);
}

/* headerLeft */
#header .headerLeft {
    padding: 5rem 3rem 5rem 5rem;
}

/* headerRight */
#header .headerRight {
    position: relative;
}

/* bgHeader（co.html / ok.html） */
#header .bgHeader {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

#header .boxLogo {
    display: flex;
    align-items: center;
    gap: 3rem;
}
#header .boxLogoLink {
    display: block;
    text-decoration: none;
    color: inherit;
}
#header .boxLogo .img{
    width: 30rem;
}

#header .boxLogo .titLogo {
    font-size: var(--pcFontSize14);
}

#header .boxList {
    margin-top: 7.5rem;
}
#header .headerRight .boxList {
    position: absolute;
    bottom: 7.5rem;
    right: 12rem;
    z-index: 2;
    margin-top: 0;
}

#header .btnHeaderConsult {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.2rem;
    width: 24rem;
    height: 24rem;
    border-radius: 50%;
    background: var(--ColorRed);
    color: var(--Colorwhite);
    font-size: var(--pcFontSize30);
    line-height: calc(38 / 30);
    letter-spacing: 0.05em;
    text-decoration: none;
    text-align: center;
    box-shadow: inset 0 -1.5rem 0 rgba(0, 0, 0, 0.2);
}

#header .btnHeaderConsultText {
    display: flex;
    flex-direction: column;
}

#header .btnHeaderConsultText .line {
    display: block;
}

#header .btnHeaderConsultArrow {
    display: block;
    width: 0;
    height: 0;
    border-left: 2rem solid transparent;
    border-right: 2rem solid transparent;
    border-top: 1.8rem solid var(--Colorwhite);
}

#header .boxLinkList {
    list-style: none;
    margin: 0;
    padding: 0;
}

#header .boxList .item {
    margin-bottom: 4rem;
    padding-left: 1rem;
}

#header .boxList .item:last-child {
    margin-bottom: 0;
}

#header .linkItem {
    display: flex;
    align-items: center;
    gap: 3rem;
    text-decoration: none;
    color: var(--textColor);
}

#header .linkArrow {
    flex-shrink: 0;
    width: 0;
    height: 0;
    border-top: 1.5rem solid transparent;
    border-bottom: 1.5rem solid transparent;
    border-left: 2rem solid var(--ColorOrange);
}

#header .linkText {
    display: block;
    font-size: var(--pcFontSize22);
    line-height: calc(32 / 22);
    letter-spacing: 0.02em;
}

#header .linkText .line {
    display: block;
}

#header .linkText .line + .line {
    margin-top: 0.2rem;
}

.headerSpActions {
    display: none;
}

@media only screen and (max-width:1600px) {
    #header .linkText {
        font-size: var(--pcFontSize18);
    }
}

@media only screen and (max-width:1215px) {
    #header .secTicker .imgTicker {
        height: 8.3rem;
        width: 183.9rem;
    }
    #header .boxList.pcOnly {
        display: none;
    }
    #header {
        justify-content: center;
        height: auto;
        background: var(--Colorwhite);
        z-index: 99;
        max-width: 40rem;
        margin: 0 auto;
        transform: translateX(-50%);
        left: 50%;
    }
    #header .headerLeft {
        padding: 0 1rem;
        height: 6.2rem;
        background: #fff;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 0.4rem;
        z-index: 2;
        box-sizing: border-box;
    }
    #header .headerRight {
        position: relative;
        display: none;
    }
    #header .boxLogo {
        flex-shrink: 0;
        gap: 1rem;
        margin-right: 0.4rem;
    }
    #header .boxLogo .titLogo {
        font-size: var(--spFontSize10);
        padding-top: 0.6rem;
    }
    #header .boxLogo .img {
        width: 14.8rem;
    }
    #header .headerSpActions {
        display: flex;
        align-items: center;
        gap: 0.6rem;
        flex: 1 1 auto;
        min-width: 0;
    }
    #header .btnHeaderConsultSp {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.4rem;
        flex: 1 1 auto;
        min-width: 0;
        max-width: 11.4rem;
        height: 4.3rem;
        padding: 0 0.8rem;
        border-radius: 1rem;
        background: var(--ColorRed);
        color: var(--Colorwhite);
        font-size: var(--spFontSize14);
        line-height: 1;
        letter-spacing: var(--spLetterSpacing50);
        text-decoration: none;
        white-space: nowrap;
        box-shadow: inset 0 -0.4rem 0 rgba(0, 0, 0, 0.2);
    }
    #header .btnHeaderConsultSpArrow {
        flex-shrink: 0;
        width: 0;
        height: 0;
        border-left: 0.7rem solid transparent;
        border-right: 0.7rem solid transparent;
        border-top: 0.9rem solid var(--Colorwhite);
    }
    #header .btnHeaderLine {
        display: block;
        flex-shrink: 0;
        width: 4.3rem;
        line-height: 0;
    }
    #header .btnHeaderLine .imgR {
        display: block;
        width: 100%;
        height: auto;
    }
}

/*-----------------------------------------------
    footer
-----------------------------------------------*/
#footer {
    padding: 5rem 0 4rem;
    text-align: center;
    background: var(--Colorwhite);
}

#footer .imgFooterLogo{
    width: 30rem;
    margin: 0 auto;
}

@media only screen and (max-width:1215px) {
    #footer {
        padding: 2.5rem 0 2.5rem;
    }
    #footer .imgFooterLogo {
        width: 16rem;
    }
}


/*-------------------------------------------
    btnNavi
-----------------------------------------------*/
@media only screen and (max-width:1215px) {
    .btnNavi {
        width: auto;
        height: auto;
        flex-shrink: 0;
        position: relative;
        border: none;
        padding: 0;
        margin: 0;
        background: transparent;
        font: inherit;
        color: inherit;
        border-radius: 0;
        cursor: pointer;
        z-index: 9999;
    }

    .btnNavi .naviCover {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-flow: column;
        gap: 0.6rem;
        height: auto;
        transition: all 0.5s;
    }

    .btnNavi .border {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 2.6rem;
        height: 1.5rem;
        flex-shrink: 0;
    }

    .btnNavi .border .line {
        display: block;
        width: 100%;
        height: 0.1rem;
        background: var(--textColor);
        transition: transform 0.4s ease-out, opacity 0.3s ease-out;
    }

    .btnNavi .txt {
        margin-top: 0;
        font-size: var(--spFontSize13);
        line-height: 1;
        letter-spacing: 0.02em;
        font-weight: bold;
        color: var(--textColor);
    }

    .btnNavi.naviOpen .naviCover {
        border: none;
    }

    .btnNavi:not(.naviOpen) .txtClose,
    .btnNavi.naviOpen .txtMenu {
        display: none;
    }

    .btnNavi.naviOpen .border .line:nth-child(1) {
        transform: translateY(0.675rem) rotate(35deg);
    }

    .btnNavi.naviOpen .border .line:nth-child(2) {
        opacity: 0;
    }

    .btnNavi.naviOpen .border .line:nth-child(3) {
        transform: translateY(-0.675rem) rotate(-35deg);
    }
}

@media only screen and (max-width:370px) {
    #header .headerLeft {
        padding: 0 0.8rem 0 1rem;
        gap: 0.4rem;
    }
    #header .btnHeaderConsultSp {
        max-width: 12.5rem;
        font-size: var(--spFontSize11);
        padding: 0 0.6rem;
    }
    #header .btnHeaderLine {
        width: 3rem;
    }
}
/*-----------------------------------------------
    menu
-----------------------------------------------*/
#menu {
    display: none;
}

@media only screen and (max-width:1215px) {
    #secIntro,
    #secAbout,
    #secConcept,
    #secConsult,
    #form {
        scroll-margin-top: 6.2rem;
    }
    html.isMenuScrollLock,
    body.isMenuScrollLock {
        overflow: hidden;
    }
    .menuOpen #header {
        z-index: 11;
    }
    .menuOpen #header .headerLeft {
        background: var(--Colorwhite);
    }
    #menu {
        display: none;
        position: fixed;
        z-index: 9;
        top: 6.2rem;
        left: 0;
        width: 100%;
        height: calc(100vh - 6.2rem);
        height: calc(100dvh - 6.2rem);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        background: var(--ColorYellow);
        color: var(--textColor);
        max-width: 40rem;
        left: 50%;
        transform: translateX(-50%);
    }
    #menu .menuInner {
        display: flex;
        flex-direction: column;
        min-height: 100%;
        padding: 2.4rem 1.5rem 3rem;
        box-sizing: border-box;
    }
    #menu .boxList {
        margin-top: 0;
    }
    #menu .boxLinkList {
        list-style: none;
        margin: 0;
        padding: 0;
    }
    #menu .boxList .item {
        margin: 0;
        padding: 0;
        border-bottom: 0.1rem solid var(--ColorBorderMenu);
    }
    #menu .linkItem {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.5rem;
        padding: 2.6rem 0;
        text-decoration: none;
        color: var(--textColor);
    }
    #menu .linkText {
        flex: 1 1 auto;
        min-width: 0;
        font-size: var(--spFontSize17);
        line-height: calc(25 / 17);
        letter-spacing: 0;
        padding-left: 1rem;
    }
    #menu .linkText .line {
        display: block;
    }
    #menu .linkText .line + .line {
        margin-top: 0.2rem;
    }
    #menu .linkArrow {
        flex-shrink: 0;
        width: 0;
        height: 0;
        border-top: 0.8rem solid transparent;
        border-bottom: 0.8rem solid transparent;
        border-left: 1.1rem solid var(--keyColor);
    }
    #menu .btnMenuClose {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        width: 100%;
        height: 5rem;
        margin-top: 9.5rem;
        padding: 0;
        border: 0.1rem solid var(--ColorBorderMenu);
        border-radius: 0;
        background: var(--ColorYellow);
        color: var(--textColor);
        font-size: var(--spFontSize16);
        line-height: 1;
        letter-spacing: 0.05em;
        cursor: pointer;
        appearance: none;
        font-family: inherit;
    }
}
@media only screen and (max-width:370px) {
    #menu .linkText {
        font-size: var(--spFontSize16);
    }
}