@charset "UTF-8";
/* ==========================================================================
   Setting
========================================================================== */ :root {
    --white: #FFF;
    --l-gray: #F8FAFA;
    --gray: #AAA;
    --d-gray: #888;
    --black: #111;
    --border1: rgba(0, 0, 0, 0.1);
    --color1: #00999F;
    --color1-h: #35B4B9;
    --color2: #FFCE00;
    --grad-green: linear-gradient(90deg, #378A8D 0%, #2AD4D9 50%, #378A8D 100%);
    --grad-green2: linear-gradient(330deg, #378A8D 0%, #2AD4D9 100%);
    --grad-blue: linear-gradient(90deg, #0061A8 0%, #14BBE3 50%, #0061A8 100%);
    --red: #FF0000;
    --font1: 'Lexend Giga', sans-serif;
    --font2: 'DIN Alternate', 'Reddit Sans Condensed', sans-serif;
}
/* ==========================================================================
   Loading
========================================================================== */
#splash {
    position: fixed;
    z-index: 9999;
    width: 100%;
    height: 100%;
    background: var(--white);
    text-align: center;
    color: var(--color1);
    font-family: var(--font1);
}
#splash_text {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 999;
    width: 200px;
    transform: translate(-50%, -50%);
    color: var(--color1);
}
/*  Animation
================ */
.iv {
    opacity: 0;
}
/* ==========================================================================
   Base
========================================================================== */
html {
    font-size: 87.5%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}
@media (max-width: 374px) {
    html {
        font-size: 3.475vw;
    }
}
@media (min-width: 1440px) {
    html {
        font-size: 93.8%;
    }
}
@media (min-width: 1760px) {
    html {
        font-size: 100%;
    }
}
body {
    font-family: "Noto Sans JP", sans-serif;
    line-height: 1.8;
    color: var(--black);
}
#bg {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #F8FAFA url(../img/bg_v.jpg) no-repeat center center / cover;
}
@media (orientation: landscape) {
    #bg {
        background-image: url(../img/bg.jpg);
    }
}
#container {
    padding-top: 90px;
    position: relative;
    overflow: hidden;
}
@media (min-width: 992px) {
    #container {
        padding-top: 115px;
    }
}
/* ==========================================================================
   Header
========================================================================== */
#siteHeader {
    height: 90px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
}
.inner-header {
    padding: 0 30px;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#logo {
    margin: 0;
    flex: 0 1 130px;
    max-width: 130px;
    position: relative;
}
#logo .logo__inner {
    display: block;
    color: inherit;
    position: relative;
}
#logo .logo__inner img {
    display: inline-block;
    vertical-align: middle;
}
#logo .logo__inner img.logo-color {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: .2s;
}
@media (min-width: 992px) {
    #siteHeader {
        height: 115px;
    }
    #logo {
        flex: 0 0 150px;
        max-width: 150px;
    }
}
/* ==========================================================================
   Global Navigation
========================================================================== */
nav a {
    display: block;
    text-decoration: none;
}
nav ul {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 0;
    margin: 0;
}
nav ul li a {
    display: block;
    color: inherit;
    text-decoration: none;
    line-height: 1.25;
    padding: .75em 1.25em;
}
nav ul li a span, nav ul li a em {
    display: block;
    font-style: normal;
}
.gNav {
    flex: 1 1 100%;
    max-width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    display: none;
}
.gNav__inner {
    display: flex;
    width: 100%;
    max-width: 480px;
    height: 100vh;
    background: var(--grad-green2);
    color: var(--white);
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0;
    transform: translateX(100%);
    transition: 1s cubic-bezier(0.190, 1.000, 0.220, 1.000);
    transition-property: opacity, transform;
}
.gNav .navBar {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 90px 30px;
    font-size: .923em;
}
.gNav .navBar ul {
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateX(1em);
    width: 25em;
    max-width: 100%;
    margin: 10px auto 20px;
    transition: 1s .5s cubic-bezier(0.190, 1.000, 0.220, 1.000);
    transition-property: opacity, transform;
}
.gNav .navBar ul[data-ttl]::before {
    content: attr(data-ttl);
    display: block;
    border-bottom: 1px solid currentColor;
    font-family: var(--font1);
    font-weight: 500;
    text-transform: uppercase;
    padding-bottom: .5em;
    margin-bottom: 1.5em;
}
.gNav .navBar ul li a span {
    display: block;
}
.gNav .navBar > ul > li > a {
    display: flex;
    align-items: center;
    font-size: 1.286em;
    font-weight: 700;
    position: relative;
}
.gNav .navBar > ul:not(.sub-nav) > li > a::before {
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    background: currentColor;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
.gNav .navBar .sub-nav li a {
    display: inline-block;
    text-align: center;
    line-height: 1.2;
    font-weight: 600;
    padding: 1em 2em;
    width: 100%;
    max-width: 100%;
    border-radius: 3em;
    background: var(--white);
    color: var(--color1);
    text-decoration: none;
    outline: none;
    cursor: pointer;
    position: relative;
}
/* OPEN */
.gNav.on .gNav__inner {
    opacity: 1;
    transform: translateX(0);
}
.gNav.on ul {
    opacity: 1;
    transform: translateX(0);
}
/* Nav Btn */
.nav-btn {
    background: var(--white);
    color: var(--color1);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(85, 85, 85, .1);
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 2;
    transition: .5s;
}
.nav-btn i {
    display: block;
    background: currentColor;
    width: 34.285%;
    height: 2px;
    border-radius: 1px;
    position: absolute;
    right: 0;
    left: 0;
    margin: -1px auto 0;
    transition: transform .3s;
}
.nav-btn i:nth-of-type(1) {
    top: 50%;
}
.nav-btn i:nth-of-type(2) {
    top: 40%;
    transition: top .3s .35s, transform .3s .1s;
}
.nav-btn i:nth-of-type(3) {
    top: 60%;
    transition: top .3s .35s, transform .3s .1s;
}
.nav-btn.on i:nth-of-type(1) {
    transform: scaleX(0);
}
.nav-btn.on i:nth-of-type(2) {
    top: 50%;
    transform: rotate(30deg);
    transition: top .3s .1s, transform .3s .35s;
}
.nav-btn.on i:nth-of-type(3) {
    top: 50%;
    transform: rotate(-30deg);
    transition: top .3s .1s, transform .3s .35s;
}
/* ==========================================================================
   PC Global Navigation
========================================================================== */
@media(min-width: 992px) {
    .gNav .navBar {
        padding-top: 130px;
    }
    .nav-btn {
        width: 70px;
        height: 70px;
        top: 30px;
        right: 30px;
    }
}
/* ==========================================================================
   SP Global Navigation
========================================================================== */
@media(max-width: 991px) {}
/* ==========================================================================
   Fixed Navigation
========================================================================== */
#fixedNav {
    padding: 0 20px 20px 0;
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: 888;
}
#fixedNav .btn {
    width: 21.429em;
    padding: 1.3em 2em;
}
@media(max-width: 575px) {
    #fixedNav {
        padding: 0 10px 15px 10px;
        left: 0;
    }
    #fixedNav .btn {
        width: 100%;
    }
}
/* ==========================================================================
   Footer
========================================================================== */
#siteFooter {
    clear: both;
    overflow: hidden;
}
#siteFooter .inner-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 60px;
    padding-bottom: 60px;
}
#siteFooter .logo__inner {
    display: inline-block;
    color: inherit;
}
#siteFooter .footer-bottom {
    padding-top: 45px;
    padding-bottom: 110px;
    font-size: .857rem;
}
#siteFooter .footer-bottom__inner {}
#siteFooter .footer-bottom__inner nav ul {
    margin-right: -1em;
    margin-left: -1em;
}
#siteFooter .copyright {
    text-align: center;
}
@media (min-width: 992px) {
    #siteFooter .footer-bottom__inner {
        display: -webkit-flex;
        display: flex;
        -webkit-justify-content: space-between;
        justify-content: space-between;
        align-items: center;
    }
}
/* ==========================================================================
   PC Footer Navigation
========================================================================== */
@media(min-width: 992px) {
    .fNav .navBar > ul {
        flex-wrap: nowrap;
    }
    .fNav .navBar > ul > li {
        flex-basis: 100%;
    }
    .fNav .sub-menu ul li {
        flex: 0 0 100%;
    }
}
/* ==========================================================================
  SNS Link
========================================================================== */
.sns_link {
    list-style: none;
    margin: 0 auto 20px;
}
.sns_link ul {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}
.sns_link ul li {
    list-style: none;
    margin: 0 10px 0;
}
.sns_link ul li a {}
.sns_link ul li a img {}

@media (min-width: 992px) {
    .sns_link {
    margin: 0 auto 0 0;
}
    .sns_link ul li {
    margin: 0 15px 0 0;
}
}