@charset "UTF-8";

/* Repeatable Patterns
----------------------------------------------------*/

html {
    font-size: 62.5%;
}

body {
    background: #fff;
    color: #000;
    font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
    line-height: 1;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
}

.body_container{
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    margin: 0;
}

ul{
    margin: 0;
}

figure{
    margin: 0;
}

a {
    color: #000;
    text-decoration: none;
    transition: 0.3s ease-out
}

a:hover {
    filter: brightness(90%);
}

a img {
    transition: 0.3s ease-out;
}

::-moz-selection {
    background: #fff;
    color: #000;
    text-shadow: none;
}

::selection {
    background: #fff;
    color: #000;
    text-shadow: none;
}

img {
    width: 100%;
    height: auto;
    max-width: 100%;
}

input,
textarea,
button {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background: none;
    border-radius: 0;
    border: none;
}

.wrapper {
    width: calc(1160 / 1280 * 100%);
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.display_none {
    display: none;
}

.body_container{
    position: relative;
    padding-bottom: 14rem;
}

.header_container{
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    height: 14rem;
    align-items: center;
}

.header_inner{
    justify-content: space-between;
    align-items: center;
}

.header_logo{
    width: calc(200 / 1160 * 100%);
}

.header_statement{
    width: calc(440 / 1160 * 100%);
}

.drawer-hamburger {
    width: calc(86 / 1160 * 100%);
    height: 3rem;
    padding: 0;
    pointer-events: none;
}

.drawer-hamburger-icon,
.drawer-hamburger-icon:after,
.drawer-hamburger-icon:before {
    transition: all .3s cubic-bezier(.19, 1, .22, 1);
}

.drawer-hamburger-icon {
    position: relative;
    display: block;
    width: 100% !important;
    height: 3px;
    margin: 0 auto;
    background-color: transparent;
    border-radius: 50vmax;
}

.drawer-hamburger-icon:after,
.drawer-hamburger-icon:before {
    position: absolute;
    content: " ";
    height: 3px;
    width: 100% !important;
    background-color: #000;
    left: 0;
    right: 0;
    margin: auto;
    border-radius: 50vmax;
}

.drawer-hamburger-icon:before {
    top: -1.2rem !important;
}

.drawer-hamburger-icon:after {
    top: 1.2rem !important;
}

.main_img{
    width: 100%;
    height: calc(100vh - 14rem);
    height: calc(100svh - 14rem);
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-image: url(img/main_img.jpg);
}

.main_img_inner{
    position: relative;
    height: 100%;
}

.animation_scroll {
    position: absolute;
    right: .8rem;
    bottom: 6rem;
    z-index: 9;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.animation_scroll span {
    width: 1px;
    height: 6.7rem;
    background: #000;
    display: block;
    animation: scroll 1.8s cubic-bezier(1, 0, 0, 1) infinite;
    border-radius: 100vmax;
    margin-left: -.4rem;
}

.animation_scroll span::after{
    content: '';
    position: absolute;
    bottom: -0.1rem;
    right: -0.4rem;
    width: 1px;
    height: 1.2rem;
    display: block;
    background: #000;
    transform: rotate(38deg);
    border-radius: 100vmax;
}

@keyframes scroll {
    0% {
        transform: scale(1, 0);
        transform-origin: 0 0;
    }

    50% {
        transform: scale(1, 1);
        transform-origin: 0 0;
    }

    50.1% {
        transform: scale(1, 1);
        transform-origin: 0 100%;
    }

    100% {
        transform: scale(1, 0);
        transform-origin: 0 100%;
    }
}

.animation_scroll img{
    width: 1.4rem;
    padding-top: 1.2rem;
}


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

PCのみ

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

@media screen and (min-width: 768px) {
    .display_sp {
        display: none !important;
    }
    
    a[href^="tel:"]{
        pointer-events: none;
    }
    
    img{
        image-rendering: -webkit-optimize-contrast;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }
}
/*----------------------------------------------------

スマートフォンのみ

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


@media screen and (max-width: 767px) {
    .display_pc {
        display: none !important;
    }

    .wrapper {
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .body_container{
        position: relative;
        padding-bottom: 8rem;
    }

    .header_container{
        height: 8rem;
    }

    .header_logo{
        width: calc(260 / 1160 * 100%);
    }

    .header_statement{
        width: calc(700 / 1160 * 100%);
    }

    .drawer-hamburger {
        width: calc(120 / 1160 * 100%);
        height: 2rem;
    }

    .drawer-hamburger-icon {
        height: 2px;
    }

    .drawer-hamburger-icon:after,
    .drawer-hamburger-icon:before {
        height: 2px;
    }

    .drawer-hamburger-icon:before {
        top: -.5rem !important;
    }

    .drawer-hamburger-icon:after {
        top: .5rem !important;
    }

    .main_img{
        height: calc(100vh - 8rem);
        height: calc(100svh - 8rem);
    }

    .animation_scroll {
        right: 0;
        bottom: 2.8rem;
    }

    .animation_scroll span::after{
        content: '';
        position: absolute;
        bottom: -0.1rem;
        right: -0.4rem;
        width: 1px;
        height: 1rem;
    }

    .animation_scroll img{
        width: 1.2rem;
        padding-top: 1rem;
    }


}


@media screen and (max-width: 320px)  {
    html {
        font-size: 56%;
    }

}
