@charset "utf-8";
* {
    font-family: "Noto Sans Japanese";
}

body {
    word-wrap: break-word;
}

p {
    line-height: 1.6;
}


/* Back to Top */
.backtop {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 50px;
    height: 50px;
    transition: 0.3s;
}

.backtop:hover {
    opacity: 0.8;
    bottom: 40px;
    transition: 0.3s;
}


/* Heading */
h1, h2, h3 {
    font-weight: 900 !important;
    letter-spacing: 2px;
    line-height: 1.4 !important;
}


/* Button */
.buttonMain, .buttonSub {
    display: block;
    width: 260px;
    height: 80px;
    background-color: #ff4200 !important;
    background-image: url(../images/icon_arrow_001.svg);
    background-repeat: no-repeat;
    background-position: 90% center;
    font-size: 1.333rem;
    color: #fff !important;
    text-align: left;
    border-radius: 0;
}

.buttonMain:hover, .buttonSub:hover {
    background-color: #e13a00 !important;
    background-position: 92% center;
    transition: 0.3s;
}

.buttonMain span, .buttonSub span {
    display: block;
}

.buttonMain .ttl_l {
    font-weight: bold;
    margin-top: 5px;
}

.buttonMain .ttl_s {
    font-size: 0.800rem;
}

.buttonSub {
    height: 60px;
}

.buttonSub .ttl_l {
    font-size: 1rem;
    font-weight: bold;
    margin-top: 8px;
}


/* Header */
#globalHeader > .container {
    max-width: none;
    padding: 0 2rem 0 3rem;
}

.hero {
    background: url(../images/bg_001.jpg) no-repeat center top;
    background-size: cover;
}

.logoBox {
    display: block;
    flex-shrink: 1;
    margin: 50px auto 0;
}

.logoBox:hover {
    background: transparent !important;
}

img.logo {
    display: none;
}

img.logo_mobile {
    max-height: 120px;
}

#gnav .navbar-item {
    font-size: 1.125rem;
    padding: 15px 30px 15px 30px;
}

#gnav .is-active::after {
    content: '';
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 10px;
    height: 10px;
    background: #ff4200;
    color: #000;
    margin: auto;
    border-radius: 5px;
}

.langButton {
    display: block;
    background-color: #ff4200 !important;
    color: #fff !important;
    padding: 5px 15px 35px 15px;
    border-radius: 0;
}

.langButton:hover {
    background-color: #e13a00 !important;
    transition: 0.3s;
}

.langButton .icon {
    transform: translate(0, 2px) rotate(-180deg);
    transition: 0.3s;
}

.langButton:hover .icon {
    transform: translate(0, 2px) rotate(180deg);
    transition: 0.3s;
}

.navbar-burger {
    position: absolute;
    top: 0;
    right: 0;
    background: #ff4200;
    color: #fff;
    z-index: 1;
}

.navbar-burger:hover {
    background: #e13a00;
}

.navbar-burger.is-active {
    position: fixed;
}

.accordion__wrap {
    position: relative;
}

.accordion__target {
    position: relative;
    overflow: hidden;
    height: 500px;
}

.accordion__target::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: -webkit-gradient(linear,left top,left bottom,from(hsla(0,0%,100%,0)),to(#fff));
    background: -webkit-linear-gradient(top,hsla(0,0%,100%,0),#fff);
    background: linear-gradient(180deg,hsla(0,0%,100%,0) 0,#fff);
    z-index: 1
}

.accordion__target.active {
    height: auto;
}

.accordion__target.active::before {
    content: none;
}

.accordion__button {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 0;
    bottom: -10px;
    width: 30px;
    height: 30px;
    background: #fff;
    border: 2px solid #ff4200;
    z-index: 1;
    transition: 0.3s;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}

.accordion__button:hover {
    opacity: 0.8;
    transition: 0.3s;
}

.accordion__button img {
    width: 15px;
}

.accordion__button.active {
    transform: rotate(180deg);
    bottom: -40px;
}

#gnav {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
}

#gnav .navbar-end {
    margin-top: 44px;
}


/* Contact */
#sectionContact {
    background: #ff4200;
}

#sectionContact .columns {
    color: #fff;
}

#sectionContact h1 {
    position: relative;
    color: #fff;
    margin-top: 30px;
}

#sectionContact h1::before {
    content: 'Contact';
    position: absolute;
    left: 0;
    top: -25px;
    color: #fff;
    font-size: 1rem;
    text-align: center;
    letter-spacing: 2px;
}

#sectionContact .contact_m {
    border-bottom: 1px dotted #fff;
    font-size: 1.200rem;
    font-weight: bold;
    margin-bottom: 15px;
    padding-bottom: 15px;
}

#sectionContact .contact_l span {
    display: block;
    font-size: 1.600rem;
    font-weight: 900;
}

#sectionContent .contact_l .tel {
    margin-bottom: 25px;
}


/* Footer */
#globalFooter {
    background: #fff;
    padding: 20px 20px 55px 20px;
}

#globalFooter p {
    text-align: center;
}

#globalFooter .footerNav {
    text-decoration: underline;
    border-bottom: 1px dotted #aaa;
    padding-bottom: 20px;
}

#globalFooter .footerNav:hover {
    text-decoration: none;
}



@media screen and (min-width: 769px) {
    /* Header */
    img.logo_mobile {
        max-height: 150px;
        height: 150px;
    }


    /* Contact */
    #sectionContact h1 {
        margin-top: 50px;
    }

    #sectionContact .contact_l span {
        display: inline-block;
        margin-right: 20px;
    }


    /* Footer */
    #globalFooter .footerNav {
        border: none;
        text-align: left;
        padding: 0;
    }

    #globalFooter p {
        text-align: right;
    }
}


@media screen and (min-width: 1024px) {
    /* Header */
    .navbar > .container .navbar-brand {
        position: relative;
        left: 0;
        right: 0;
        margin: auto;
    }

    img.logo_mobile {
        margin: 0 auto;
    }

    .logoBox {
        margin-top: 150px;
    }

    #gnav {
        position: absolute;
        right: 0;
        left: auto;
        width: auto;
        height: auto;
    }
}



@media screen and (min-width: 1216px) {
    /* Header */
    .navbar > .container .navbar-brand {
        position: static;
        margin-left: -.75rem;
    }

    img.logo_mobile {
        display: none;
    }

    img.logo {
        display: block;
        max-height: 50px;
    }

    .logoBox {
        margin-top: 0;
    }

    #gnav {
        position: static;
    }

    #gnav .navbar-end {
        margin-top: 0;
    }

    .hero-head {
        margin-top: 50px;
    }

    #gnav .navbar-item {
        padding: 0.5rem 1.25rem;
    }

    #gnav .is-active::after {
        right: 0;
        left: 0;
        bottom: -50px;
    }

    .langButton {
        padding: 5px 20px 35px 15px;
    }


    /* Contact */
    #sectionContact h1 {
        margin-top: 60px;
    }

    #sectionContact h1::before {
        top: -30px;
    }

    #sectionContact .contact_s {
        font-size: 1rem;
    }

    #sectionContact .contact_m {
        font-size: 1.5rem;
    }

    #sectionContact .contact_l span {
        font-size: 2rem;
    }
}



@media screen and (min-width: 1408px) {
    /* Header */
    img.logo {
        max-height: 68px;
    }


    /* Footer */
    #globalFooter {
        padding-top: 40px;
    }
}