@charset "utf-8";


/* --------------------
フォント設定
--------------------*/

#header div,
#header p,
#header a,
#header h1,
#header h2,
#header h3,
#header h4,
#header h5,
#header h6,
#header input,
#header select,
#header textarea,
#header button,
#footer div,
#footer p,
#footer a,
#footer h1,
#footer h2,
#footer h3,
#footer h4,
#footer h5,
#footer h6,
#footer input,
#footer select,
#footer textarea,
#footer button  {
    color: #000;
    letter-spacing: 0.05em;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

#header .font_jost,
#footer .font_jost {
    font-family: "Jost", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

#header .flex,
#footer .flex
 {
    display: flex;
    justify-content: space-between;
}

#header .ai_center,
#footer .ai_center {
    align-items: center;
}

#header .ai_end,
#footer .ai_end {
    align-items: end;
}

#header ul li,
#footer ul li {
    list-style: none;
}

#header img,
#footer img {
    width: 100%;
    height: auto;
    vertical-align: bottom;
    object-fit: cover;
    overflow: hidden;
}

#header ol, 
#header ul,
#footer ol, 
#footer ul {
    margin: 0;
}

/* ----------------------------------------

ヘッダー

---------------------------------------- */

#header {
    height: min(8vw, 120px);
    display: flex;
    align-items: center;
    justify-content: start;
    padding: min(2vw, 30px) min(3.4vw, 50px) 0;
    background-color: #fff;
}

#header>.inner {
    width: 100%;
}

#header_logo a {
    display: block;
    width: min(22.3vw, 330px);
}

#header_nav {
    margin-right: min(100px, 6.7vw);
}

#header_nav ul li a {
    display: block;
    font-size: min(14px, 1.1vw);
    letter-spacing: 0.15em;
    font-weight: 400;
}

#header_nav ul li:not(:last-of-type) a {
    margin-right: 2.5em;
}

#account_nav ul li a {
    display: block;
    font-size: min(14px, 1.1vw);
    width: 2.14em;
    height: 2.14em;
}

#account_nav ul li:not(:last-of-type) a {
    margin-right: 1.875em;
}

@media (max-width: 750px) {

    #header>.inner,
    #header-right,
    #account_nav>ul {
        flex-direction: row !important;
    }

    #header_nav {
        display: none;
    }

    #header {
        height: 19.8vw;
        padding-top: 0;
        padding-right: 0;
    }

    #header_logo a {
        width: 42.67vw;
    }

    #account_nav ul li a {
        width: 5.333vw;
        height: 5.333vw;
    }

    #account_nav ul li:not(:last-of-type) a {
        margin-right: 3.2vw;
    }
}


/* ----------------------------------------

ハンバーガーメニュー

---------------------------------------- */

.hamburger_wrapper {
    margin-left: min(2.7vw, 40px);
}

@media (max-width: 750px) {
    .hamburger_wrapper {
        margin-left: 2.1333vw;
    }
}

/* ----------------------------------------

ハンバーガーボタン

---------------------------------------- */

.hamburger {
    display: block;
    z-index: 100000;
    width: min(6vw, 90px);
    height: min(6vw, 90px);
    cursor: pointer;
    position: relative;
}

.hamburger span {
    display: block;
    position: absolute;
    width: 50%;
    height: min(4px, 0.3vw);
    left: 50%;
    transform: translateX(-50%);
    background: #000;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.hamburger span:nth-child(1) {
    top: calc(50% - 2px - min(14px, 1.1vw));
    transform: translate(-50%, -50%);
}

.hamburger span:nth-child(2) {
    top: calc(50% - 2px);
    transform: translate(-50%, -50%);
}

.hamburger span:nth-child(3) {
    top: calc(50% - 2px + min(14px, 1.1vw));
    transform: translate(-50%, -50%);
}

/* -----ナビ開いてる時のボタン----- */

.hamburger.active span:nth-child(1) {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

@media (max-width: 750px) {
    .hamburger {
        width: 13.333vw;
        height: 13.333vw;
    }

    .hamburger span:nth-child(1) {
        top: calc(50% - 2.133vw);
    }

    .hamburger span:nth-child(2) {
        top: 50%;
    }

    .hamburger span:nth-child(3) {
        top: calc(50% + 2.133vw);
    }

}

/* ----------------------------------------

ハンバーガーメニュー中身

---------------------------------------- */

.globalMenuSp {
    position: fixed;
    background-color: #F5F5F5;
    top: 0;
    /* right: 0; */
    width: min(330px, 22vw);
    height: 100%;
    /* transform: translate(min(330px, 22vw)); */
    transition: all .5s;
    right: max(-330px, -22vw);
    z-index: 99999;
}

.globalMenuSp.active {
    /* transform: translate(0); */
    right: 0;
}

#wrapper {
    height: 100%;
    overflow-x: hidden;
    position: relative;
    /* background-color: #F5F5F5; */
}

body {
    height: 100%;
    /* min-height: 100vh; */
    transition: all .5s;
}

/* body.active {
    transform: translateX(max(-330px, -22vw));
} */

#wrapper.fixed {
    overflow: hidden;
    height: 100vh!important;
}

@media (max-width: 750px) {
    .globalMenuSp {
        width: 60vw;
        /* transform: translate(60vw); */
        right: -60vw;
    }

    /* body.active {
        transform: translate(-60vw);
    } */
}

/* ----------------------------------------

ハンバーガーメニュー中身詳細

---------------------------------------- */

#hamburger_nav {
    padding: min(80px, 5.4vw) min(50px, 3.4vw);
}

#hamburger_nav ul li a {
    font-size: min(14px, 1.1vw);
    display: block;
    letter-spacing: 0.1em;
    margin-bottom: 1.5em;
    font-weight: 500;
}

#hamburger_nav ul li a img {
    width: 2.15em;
    height: 2.15em;
    vertical-align: middle;
    margin-right: 5px;
}

#hamburger_nav ul li:nth-of-type(3),
#hamburger_nav ul li:nth-of-type(6) {
    border-bottom: 3px solid #fff;
}

#hamburger_nav ul li:nth-of-type(4),
#hamburger_nav ul li:nth-of-type(7) {
    margin-top: 1.5em;
}

@media (max-width: 750px) {
    #hamburger_nav {
        padding: 10vw 8vw;
    }

    #hamburger_nav ul li a {
        font-size: 3.2vw;
    }
}

/* ----------------------------------------

オーバーレイ

---------------------------------------- */

.overlay {
    content: "";
    display: block;
    width: 0;
    height: 0;
    background-color: rgba(0, 0, 0, 0.2);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    opacity: 0;
    transition: opacity .5s;
}

.overlay.active {
    width: 100%;
    height: 100%;
    opacity: 1;
}

/* ----------------------------------------

フッター

---------------------------------------- */

#footer {
    padding: min(150px, 10vw) 0 min(100px, 6.7vw);
    border: min(30px, 2vw) solid #fff;
    border-top: none;
    background-color: #F5F5F5;
}

#footer>.inner {
    max-width: min(1000px, 67vw);
    margin: 0 auto;
}

#footer .sns_icon {
    display: flex;
    justify-content: center;
    margin-bottom: min(80px, 5.4vw);
}

#footer .sns_icon li {
    margin: 0 0.75em;
}

#footer .sns_icon img {
    width: 2em;
    height: 2em;
    font-size: min(16px, 1.4vw);
}

#footer p.company {
    font-size: min(18px, 1.4vw);
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 1;
}

#footer p.addr {
    font-size: min(14px, 1.1vw);
    letter-spacing: 0.1em;
    margin: 1.25em 0 2.875em;
    line-height: 1;
}

#footer .right li a {
    letter-spacing: 0.1em;
    font-size: min(14px, 1.1vw);
    margin-left: 2em;
    line-height: 1;
    text-decoration: underline;
}

#footer .copyright {
    font-size: min(11px, 0.9vw);
}

@media (max-width: 750px) {
    #footer {
        padding: 14.666vw 0 8vw;
        border: none;
    }

    #footer>.inner {
        max-width: initial;
    }

    #footer>.inner>.flex {
        justify-content: center;
        align-items: center;
        flex-direction: column-reverse !important;
    }

    #footer .sns_icon {
        margin-bottom: 16vw;
    }

    #footer .sns_icon img {
        width: 5.33333vw;
        height: 5.33333vw;
    }

    #footer p,
    #footer ul li {
        text-align: center;
    }

    #footer ul.flex {
        flex-direction: column!important;
    }

    #footer .right li {
        margin-bottom: 1.5em;
    }

    #footer .right li a {
        margin-left: 0;
        font-size: 3vw;
    }

    #footer .left {
        margin-top: 20vw;

    }

    #footer p.company {
        font-size: 4.26666vw;
        margin-bottom: 0;
    }

    #footer p.addr {
        font-size: 2.9333vw;
        
    }

    #footer .copyright {
        font-size: 2.4vw;
        margin-bottom: 0;
    }
}