@charset "UTF-8";
/*
SP ~519px
tab 520~959px
PC 960~
*/

/*===================
変数宣言
====================*/
:root {
    --size_ss: 0.8rem;
    --size_s: 1rem;
    --size_m: 1.4rem;
    --size_md: 1.6rem;
    --size_lg: 2rem;
    --size_xl: 2.4rem;
    --size_xxl: 3.2rem;
    --main_color: #F8F4EF;
    --main_color_80: 248, 244, 239, 0.8;
    --accent_color: #464544;
    --text_color: #2E2E2E;
    --gutter_base: 8px;
    --font_sans: 'Zen Kaku Gothic New', san-serif;
}

/*===================
共通設定
====================*/
html {
    font-size: 62.5%;
}

body {
    font-size: var(--size_m);
    line-height: 1.75;
    font-family: var(--font_sans);
    color: var(--text_color);
}

a {
    text-decoration: none;
    color: var(--accent_color);
}

.center {
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
}

.contents_title {
    font-family: "Ephesis";
    font-size: 40px;
    font-weight: 500;
    text-align: center;
    display: block;
    padding-bottom: calc(var(--gutter_base)*5);
}

h3 {
    font-family: "Quicksand";
    font-weight: 600;
    font-size: var(--size_lg);
    text-align: center;
    margin: calc(var(--gutter_base)*3) auto;
}

.fadeIn {
    animation-name: fadeInAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeInAnime {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@media screen and (min-width:520px) {
    .contents_title {
        padding-bottom: calc(var(--gutter_base)*10);
        font-size: 56px;
    }

    /*======min-width:520px======*/
}

@media screen and (min-width:960px) {
    a:hover {
        opacity: 0.6;
    }

    /*======min-width:960px======*/
}

/*===================
ヘッダー、ナビ
====================*/
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 10;
}

header .header_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: calc(var(--gutter_base)*2);
    padding-left: calc(var(--gutter_base)*2);
    padding-right: calc(var(--gutter_base)*2);
}

header .header_inner h1 {
    width: 200px;
}

header .header_inner nav a {
    font-size: var(--size_xl);
    display: block;
    text-align: center;
    line-height: 2.5;
}

header .header_inner .hum_menu {
    z-index: 100;
}

header .header_inner .hum_menu img {
    width: 40px;
}

header .header_inner nav {
    font-family: Quicksand;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #f8eaf0;
    width: 100%;
    height: 100vh;
    padding-top: calc(var(--gutter_base)*10);
    padding-left: calc(var(--gutter_base)*5);
    padding-right: calc(var(--gutter_base)*5);
    z-index: 10;
    transition: 0.4s;
    visibility: hidden;
    opacity: 0;
}

header.on .header_inner nav {
    visibility: visible;
    opacity: 1;
}

header .header_inner nav a {
    font-size: var(--size_md);
}

@media screen and (min-width:960px) {
    header .header_inner {
        padding-top: calc(var(--gutter_base)*5);
        padding-left: calc(var(--gutter_base)*4);
        padding-right: calc(var(--gutter_base)*4);
    }

    header .header_inner h1 {
        width: 300px;
    }

    header .header_inner nav {
        padding-top: 160px;
    }

    header .header_inner nav a {
        font-size: calc(var(--size_xl)*1.5);
    }

    /*======min-width:960px======*/
}

/*===================
コンタクト
====================*/

.contact .contact_inner {
    background-color: #fff;
    padding: calc(var(--gutter_base)*20) 0;
}

.contact .contact_inner img {
    display: block;
    margin: 0 auto;
}

/*===================
フッター
====================*/
footer {
    background-color: #fff;
    padding: calc(var(--gutter_base)*2) 0;
}

footer .footer_inner small {
    color: #2E2E2E;
    text-align: center;
    display: block;
}