@charset "UTF-8";
/* CSS Document */
html {
    font-size: 62.5%; /* 16px * 62.5% = 10px */
    width: 100%;
    box-sizing: border-box;
}
body {
    color: #1d1c1c;
    background-color: #f6f0ed;
    font-family:"Zen Maru Gothic", serif;
    font-weight: 400;
    font-size: 1.6em;
    line-height: 1.5em;
    text-align: center;
}
h1 {
    font-size: 2.5rem;
    font-weight: 400;
    scroll-margin-top: 80px;
    margin: 40px auto 20px;
}
@media (min-width: 768px) {
    h1 {
        font-size: 4.0rem;
        margin: 100px auto 50px;
    }
}
h2 {
    display: flex;
    align-items: center;
    margin: 0 auto 20px;
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    color: #847871;
    font-size: 2.0rem;
    max-width: 1340px;
}
h2:before , h2:after {
    content: "";/*テキストの前後に空のコンテンツを作成*/
    flex-grow: 1;/*前後のボックスに同じ比率で幅が割り当てられるように*/
    background: #847871;
    height: 1px;
}
h2:before {
    margin : 0 25px;
}
h2:after {
    margin : 0 25px;
}
@media (min-width: 768px) {
    h2 {
        font-size: 3.5rem;
        margin-bottom: 50px;
    }
}
a:hover {
    opacity: 0.8;
    
}
.none {
    display: none;
}
@media (min-width: 1040px) {
    h1 {
        scroll-margin-top: 120px;
        margin: 100px auto 50px;
    }
}
