@charset "UTF-8";

body {
    font-family: "Noto Sans JP", sans-serif;
    margin: 0;
}

img {
    width: 100%;
}

button {
    padding-block: 0;
    padding-inline: 0;
    border-width: 0;
    border-style: none;
    border-color: unset;
    border-image: unset;
}

p {
    margin-block-start: 0;
    margin-block-end: 0;
}

h3 {
    margin-block-start: 0;
    margin-block-end: 0;
}

@media screen and (min-width: 768px) {
    .sp-only {
        display: none;
    }
}

@media screen and (max-width: 767px) {
    .pc-only {
        display: none;
    }
}

@media screen and (max-width: 1000px) {
    html {
        font-size: 1vw;
        /*
        計算式：　10(px) / 1000(px) * 100 = 1
        画面幅1000pxの時に "font-size: 10px" 相当になる
      */
    }

    body {
        font-size: 1.4rem;
        /*
        html要素で指定されたfont-sizeの1.4倍になる
      */
    }
}

@media screen and (max-width: 768px) {
    html {
        font-size: 1.302vw;
        /*
        計算式：　10 / 768 * 100 = 1.302vw
        画面幅768pxの時に "font-size: 10px" 相当になる
      */
    }

    body {
        font-size: 1.4rem;
        /*
        html要素で指定されたfont-sizeの1.4倍 = 約14px
      */
    }
}


/*--------------------------------------------------
**************************************************
loding
**************************************************
--------------------------------------------------*/
#loading-wrapper {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #000000;
    transition: opacity 0.5s ease;
}

#loading-wrapper.hidden {
    opacity: 0;
    pointer-events: none;
}

#loading-text {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    color: #999;
    width: 100px;
    height: 30px;
    margin: -7px 0 0 -45px;
    text-align: center;
    font-family: 'PT Sans Narrow', sans-serif;
    font-size: 20px;
}

#loading-content {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 170px;
    height: 170px;
    margin: -85px 0 0 -85px;
    border: 3px solid #F00;
}

#loading-content:after {
    content: "";
    position: absolute;
    border: 3px solid #0F0;
    left: 15px;
    right: 15px;
    top: 15px;
    bottom: 15px;
}

#loading-content:before {
    content: "";
    position: absolute;
    border: 3px solid #00F;
    left: 5px;
    right: 5px;
    top: 5px;
    bottom: 5px;
}

#loading-content {
    border: 3px solid transparent;
    border-top-color: #4D658D;
    border-bottom-color: #4D658D;
    border-radius: 50%;
    -webkit-animation: loader 2s linear infinite;
    -moz-animation: loader 2s linear infinite;
    -o-animation: loader 2s linear infinite;
    animation: loader 2s linear infinite;
}

#loading-content:before {
    border: 3px solid transparent;
    border-top-color: #D4CC6A;
    border-bottom-color: #D4CC6A;
    border-radius: 50%;
    -webkit-animation: loader 3s linear infinite;
    -moz-animation: loader 2s linear infinite;
    -o-animation: loader 2s linear infinite;
    animation: loader 3s linear infinite;
}

#loading-content:after {
    border: 3px solid transparent;
    border-top-color: #84417C;
    border-bottom-color: #84417C;
    border-radius: 50%;
    -webkit-animation: loader 1.5s linear infinite;
    animation: loader 1.5s linear infinite;
    -moz-animation: loader 2s linear infinite;
    -o-animation: loader 2s linear infinite;
}

@-webkit-keyframes loaders {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes loader {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}


/*--------------------------------------------------
**************************************************
header
**************************************************
--------------------------------------------------*/
header {
    position: fixed;
    width: 100%;
    height: 80px;
    top: 0;
    left: 0;
    background: #ffffff;
    z-index: 100000;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.85);
    transition: background 0.3s ease;
}

header .heder-content {
    display: flex;
    width: calc(100% - 40px);
    max-width: 1500px;
    height: 100%;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
}

header .heder-content .logo {
    width: 250px;
}

header .heder-content .logo a {
    display: flex;
    width: 100%;
    height: 100%;
    transition: opacity 0.3s;
    align-items: center;
}

header .heder-content .logo a:hover {
    opacity: 0.8;
}

.header-icon {
    display: none;
}

header .heder-content .header-nav a {
    position: relative;
    display: inline-block;
    font-size: 20px;
    color: #333333;
    text-decoration: unset;
    margin-left: 20px;
    cursor: pointer;
    padding-bottom: 2px;
}

header .heder-content .header-nav a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: 0;
    left: 0;
    background: #333;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform 0.3s;
}

header .heder-content .header-nav a:hover::after {
    transform: scale(1, 1);
}


@media screen and (max-width: 768px) {
    header .heder-content .logo {
        width: 180px;
    }

    .header-nav {
        display: none;
    }

    .header-icon {
        display: block;
    }

    /* ハンバーガーアイコン */

    .icon-animation {
        position: relative;
        display: block;
        width: 50px;
        height: 60px;
        z-index: 1000;
    }

    .icon-animation span {
        position: absolute;
        display: block;
        width: 40px;
        height: 3px;
        background: #0e4478;
        top: 50%;
    }

    #hamburger_icon span {
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    #hamburger_icon .top {
        -webkit-transform: translateY(-10px);
        -ms-transform: translateY(-10px);
        transform: translateY(-10px);
    }

    #hamburger_icon .bottom {
        -webkit-transform: translateY(10px);
        -ms-transform: translateY(10px);
        transform: translateY(10px);
    }

    #hamburger_icon.is-open .middle {
        background: rgba(255, 255, 255, 0);
    }

    #hamburger_icon.is-open .top {
        -webkit-transform: rotate(-45deg) translateY(0px);
        -ms-transform: rotate(-45deg) translateY(0px);
        transform: rotate(-45deg) translateY(0px);
    }

    #hamburger_icon.is-open .bottom {
        -webkit-transform: rotate(45deg) translateY(0px);
        -ms-transform: rotate(45deg) translateY(0px);
        transform: rotate(45deg) translateY(0px);
    }

    .side-nav {
        position: fixed;
        top: 0;
        right: -250px;
        width: 200px;
        height: 100%;
        background: #fff;
        transition: right 0.3s ease;
        z-index: 1000;
        padding: 1rem;
        box-shadow: -2px 2px 2px rgb(226 221 221 / 50%);
    }

    .side-nav.active {
        right: 0;
    }

    .side-nav .close {
        display: flex;
        margin-bottom: 20px;
        color: #aaa;
        font-size: 28px;
        font-weight: bold;
        justify-content: flex-end;
    }

    .side-nav a {
        display: block;
        font-size: 20px;
        margin: 10px;
        text-decoration: none;
        color: #0e4478;
    }

}


/*--------------------------------------------------
**************************************************
common
**************************************************
--------------------------------------------------*/
h1 {
    margin-block-start: 0;
    margin-block-end: 0;
}

h2 {
    font-size: 35px;
}

.bold {
    font-weight: bold;
}

.fade-up-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    transition-delay: 0.3s;
}

.fade-up-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media screen and (max-width: 768px) {
    h2 {
        font-size: 3.5rem;
    }
}

/*--------------------------------------------------
**************************************************
footer
**************************************************
--------------------------------------------------*/
footer {
    background: #bcbbbb;
}

footer .footer-cont {
    padding: 50px 0;
}

footer .footer-cont .footer-logo {
    width: 250px;
    text-align: center;
    margin: 0 auto 20px auto;
}

footer .footer-cont .location-card {
    display: flex;
    justify-content: center;
    align-items: center;
}

footer .footer-cont .location-card .icon-wrap {
    width: 40px;
    margin-right: 20px;
}

footer .footer-cont .location-card a {
    color: #ffffff;
    font-size: 18px;
}

footer #copyright {
    font-size: 15px;
    text-align: center;
    color: #ffffff;
    padding: 10px 0;
    box-sizing: border-box;
}

@media screen and (max-width: 768px) {
    footer .footer-cont {
        padding: 5rem 0;
    }

    footer .footer-cont .footer-logo {
        width: 180px;
        margin-bottom: 2rem;
    }

    footer .footer-cont .location-card .icon-wrap {
        width: 4rem;
        margin-right: 2rem;
    }

    footer .footer-cont .location-card a {
        font-size: 1.8rem;
    }

    footer #copyright {
        font-size: 1.5rem;
        padding: 1rem 0;
    }

}

/*--------------------------------------------------
**************************************************
Contact
**************************************************
--------------------------------------------------*/
.contact {
    position: relative;
    margin-bottom: 50px;
}

.contact-banner {
    position: absolute;
    display: flex;
    width: 900px;
    height: 400px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    padding: 50px 50px 80px 50px;
    box-sizing: border-box;
    background: #FFFDF2;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0px 0px 15px -5px #777777;
}

.contact-banner .title-area {
    text-align: center;
}

.contact-banner .bth-area button {
    position: relative;
    display: inline-block;
    width: 250px;
    font-size: 20px;
    text-align: center;
    text-decoration: none;
    line-height: 60px;
    outline: none;
    cursor: pointer;
    color: #FFFFFF;
    background: #FECB1F;
    /* box-shadow: 0px 0px 15px -5px #777777; */
    transition: all 0.3s ease-out;
}

.contact-banner .bth-area button:hover {
    background: #0e4478;
}

@media screen and (max-width: 1000px) {
    .contact-banner {
        width: 90rem;
        height: 40rem;
        padding: 5rem 5rem 8rem 5rem;
    }

    .contact-banner .bth-area button {
        width: 25rem;
        font-size: 2rem;
        line-height: 6rem;
    }

}

@media screen and (max-width: 767px) {
    .contact {
        margin-bottom: 5rem;
    }

    .contact-banner {
        width: calc(100% - 4rem);
        height: 35rem;
        padding: 3rem 3rem 5rem 3rem;
    }

    .contact-banner .bth-area button {
        width: 25rem;
        font-size: 2rem;
        line-height: 6rem;
    }
}

@media screen and (min-width: 1400px) {
    .move-btn{
        display: block !important;
    }
}
.move-btn {
    position: fixed;
    display: none;
    right: 0;
    bottom: 0;
    margin: auto;
    z-index: 10000;
}

.move-btn .inquire-button {
    display: flex;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.move-btn .inquire-button .img-wrap {
    width: 80px;
    height: 70px;
}