@charset "utf-8";


/* ====================
共通
==================== */
body {
    font-size: 14px;
    font-family: "Shippori Mincho B1", serif;
    font-weight: 400;
    font-style: normal;
}

h2 {
    font-size: 48px;
    font-family: "Monsieur La Doulaise", cursive;
}

h3,
h4 {
    font-size: 16px;
    margin-bottom: 24px;
}

section {
    padding: 0 24px;
    margin: 240px 0;
    text-align: center;
}

.page-title {
    margin-bottom: 80px;
}

.more {
    display: block;
    width: 200px;
    line-height: 36px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 80px;
    border: 1px solid #000;
    background-color: #ffffff1d;
}

.more a {
    display: block;
}

@media screen and (min-width:900px) {
    section {
        max-width: 900px;
        margin-right: auto;
        margin-left: auto;
    }
}

/*=======min-width:900px=======*/

/* ====================
header
==================== */
header {
    position: absolute;
    color: #fff;
}

header.scrolled {
    color: #000;
}

.hamburger-menu span.scrolled {
    background-color: #000;
}

h1 {
    display: block;
    position: relative;
    position: fixed;
    line-height: 70px;
    font-family: "Monsieur La Doulaise", cursive;
    font-weight: 400;
    font-size: 2rem;
    left: 10px;
    z-index: 990;
}

.tel {
    display: block;
    position: relative;
    position: fixed;
    top: 10px;
    right: 60px;
    height: 48px;
    width: 50px;
    text-align: center;
    z-index: 1000;
}

.tel a {
    font-size: 0.8rem;
}

.background {
    display: block;
    position: relative;
    position: fixed;
    width: 100%;
    height: 70px;
    background-color: #fff;
    z-index: 900;
    display: none;
}

/* ==========
global-nav
========== */
.global-nav {
    position: fixed;
    z-index: 1000;
    top: 0;
    right: -120%;
    width: 70%;
    height: 100vh;
    background-color: #fff;
    transition: all 0.6s;
}

.global-nav ul {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.global-nav li {
    text-align: center;
}

.global-nav li a {
    padding: 10px;
    display: block;
    color: #000;
    font-weight: bold;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ==========
global-nav.click
========== */
.global-nav.click {
    right: 0;
}

/* ==========
.hamburger-menu
========== */
.hamburger-menu {
    display: block;
    position: fixed;
    top: 10px;
    right: 10px;
    width: 50px;
    height: 50px;
    z-index: 1100;
    cursor: pointer;
    transition: all 0.6s;
}

.hamburger-menu span {
    display: block;
    position: absolute;
    background-color: #fff;
    height: 1px;
    width: 80%;
    left: 10%;
    transition: all .4s;
}

.hamburger-menu span:nth-child(1) {
    top: 25%;
}

.hamburger-menu span:nth-child(2) {
    top: 50%;
}

.hamburger-menu span:nth-child(3) {
    top: 75%;
}

/* ==========
.hamburger-menu.click
========== */
.hamburger-menu.click {
    right: calc(70% + 20px);
}

.hamburger-menu.click span {
    background-color: #fff;
}

.hamburger-menu.click span:nth-child(1) {
    transform: rotate(45deg) translate(0, 0);
    top: 50%;
}

.hamburger-menu.click span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.click span:nth-child(3) {
    transform: rotate(-45deg) translate(0, 0);
    top: 50%;
}

.remaining-area.click {
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    background-color: #000000CC;
    z-index: 999;
}

/* ==========
scrolldown
========== */
.scrolldown1 {
    position: absolute;
    left: 50%;
    bottom: 100px;
    height: 50px;
    z-index: 20;
}

.scrolldown1 span {
    position: absolute;
    left: -15px;
    top: -15px;
    color: #eee;
    font-size: 0.7rem;
    letter-spacing: 0.05em;
}

.scrolldown1::after {
    content: "";
    position: absolute;
    top: 0;
    width: 1px;
    height: 30px;
    background: #eee;
    animation: pathmove 1.4s ease-in-out infinite;
    opacity: 0;
}

@keyframes pathmove {
    0% {
        height: 0;
        top: 0;
        opacity: 0;
    }

    30% {
        height: 30px;
        opacity: 1;
    }

    100% {
        height: 0;
        top: 50px;
        opacity: 0;
    }
}

/* ==========
contact-link
========== */
.contact-link {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #3d3d3d;
    color: #fff;
}

.contact-link ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    background-color: #b4a382;
}

.contact-link li {
    flex: 1;
    padding-top: 12px;
    padding-bottom: 12px;
    border-right: 1px solid #3d3d3d;
}

.contact-link li:last-child {
    border-right: none
}

.contact-link a {
    display: block;
    text-align: center;
    padding: 10px;
    text-decoration: none;
}

@media screen and (min-width:900px) {
    .contact-link {
        position: fixed;
        bottom: 12px;
        left: auto;
        right: 0;
        width: 30%;
        background-color: #3d3d3d;
        color: #fff;
    }

    .contact-link ul {
        display: block;
    }

    .contact-link li {
        border-bottom: 1px solid #3d3d3d;
        border-right: none;
    }

    .contact-link li:last-child {
        border-bottom: none;
    }

}

/*=======min-width:900px=======*/

/* ==========
アニメーション用
========== */
.contact-link {
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

@keyframes hideContactLink {
    from {
        transform: translateY(0);
        opacity: 1;
    }

    to {
        transform: translateY(100%);
        opacity: 0;
    }
}

@keyframes showContactLink {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.hide {
    animation: hideContactLink 0.5s ease-in-out forwards;
}

.show {
    animation: showContactLink 0.5s ease-in-out forwards;
    animation-iteration-count: 1;
    /* アニメーション終了後にリセット */
}

/* ====================
footer
==================== */
footer {
    color: #fff;
    font-size: 12px;
    background-color: #3d3d3d;
    text-align: center;
}

.footer-inner {
    padding: 60px 48px;
}

.footer-name {
    font-size: 16px;
    margin-bottom: 24px;
}

.footer-address {
    margin-bottom: 16px;
}

.footer-date {
    margin-bottom: 16px;
    line-height: 1.5rem;
}

.footer-link {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.footer-link li:not(:last-child)::after {
    content: "｜";
    margin: 0 8px;
}

small {
    color: #9c9c9c;
}

.fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.appear {
    opacity: 1;
    transform: translateY(0);
}