@import url(http://fonts.googleapis.com/earlyaccess/notosansjapanese.css);
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
    font-family: "Noto Sans Japanese", "Noto Sans", sans-serif;
    overflow-x: hidden;
}

body {
    background-color: #ffffff;
    font-size: 1.8rem;
    line-height: 1.5;
    overflow-x: hidden;
}
main{
    position: relative;
    margin-bottom: 10rem;
}
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 {
    position: relative;
    width: 100rem;
    max-width: 100%;
    margin: 0 auto;
}

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

.txt-grad{
    display: inline-block;
    background: linear-gradient(15deg, #B3F1EE, #1D1F46);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.font-eng{
    font-family: Futura, 'Century Gothic', 'Noto Sans JP', 'Noto Sans', sans-serif;
    font-weight: 500;
}

.h2{
    text-align: center;
    font-size: 5rem;
    line-height: 1.3;
}
.h2 small{
    display: block;
    font-size: 2.6rem;
    font-weight: 500;
}

@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;
    }
    .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;
    }
    .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;
    }

}