@import url(http://fonts.googleapis.com/earlyaccess/notosansjapanese.css);
@import url(https://fonts.googleapis.com/css2?family=RocknRoll+One&display=swap);

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
    font-family: 'YuMincho', 'Yu Mincho', serif;
    overflow-x: hidden;
}

body {
    position: relative;
    background: #fff;
    font-size: 1.5rem;
    line-height: 1.5;
    letter-spacing: .06em;
    overflow-x: hidden;
}
section{
    width: 100vw;
}
img {
    max-width: 100%;
}

li,
ul {
    list-style: none;
}

p{
    margin-bottom: 1rem;
}

a {
    color: inherit;
    transition: all .3s ease;
}
button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
}

.hover_effect {
    opacity: 1;
    transition: opacity 0.4s;
}
.hover_effect:hover {
    opacity: 0.7;
}

.inner-wide {
    width: 100vw;
}

.inner {
    position: relative;
    width: 120rem;
    max-width: 100%;
    margin: 0 auto;
}

.yoko{
    display: flex;
    padding-top: 0.5rem;
    vertical-align: top;
    align-items: flex-start;
}

.h2{
    text-align: center;
    line-height: 1.3;
    font-size: 6rem;
    font-weight: 400;
}
.h2 small{
    display: block;
    font-size: 1.8rem;
}

.btn{
    display: inline-block;
    min-width: 19rem;
    padding: .75rem 2rem;
    border-radius: 100rem;
    background: #3A3024;
    text-align: center;
    font-family: 'YuMincho', 'Yu Mincho', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    transition: all .3s ease;
}
.btn:hover,
.btn:active{
    opacity: .7;
}

.accordion dd{
    display: none;
}

@media screen and (min-width: 769px) {
    @media screen and (max-width: 1200px) {
        html {
            font-size: 1vw;
        }
    }
    .sp {
        display: none !important;
    }
    .inner{
        width: 100rem;
        max-width: 1200px;
        margin: auto;
        padding: 0 2rem;
    }
    .yokopc{
        display: flex;
        padding-top: 0.5rem;
        vertical-align: top;
        align-items: flex-start;
    }
}

@media screen and (max-width: 768px) {
    html{
        font-size: 2vw;
    }
    body{
        font-size: 2rem;
    }
    p{
        font-size: 2rem;
    }
    .pc {
        display: none !important;
    }
    .yokosp{
        display: flex;
        padding-top: 0.5rem;
        vertical-align: top;
        align-items: flex-start;
    }
    .inner {
        width: 100vw;
        max-width: 100%;
        margin: 0 auto;
    }

    .h2{
        text-align: center;
        line-height: 1.3;
        font-size: 4rem;
        font-weight: 400;
    }
    .h2 small{
        display: block;
        font-size: 2.5rem;
    }
}