@charset "UTF-8";

/* ==================================================
Base
================================================== */
:root {
    --color-main: #ce4344;
    --color-bg: #fdf9f2;
    --color-text: #3a2f2a;
    --color-border: #d9c9a3;
}
html {
    font-size: 62.5%;
}
body {
    font-family: "Shippori Mincho", "Noto Serif JP", serif;
    font-size: 1.6rem;
    line-height: 1.8;
    color: var(--color-text);
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    margin: 0;
}
a {
    color: inherit;
    text-decoration: none;
    transition: opacity .3s;
}
a:hover {
    opacity: .7;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
ul {
    list-style: none;
}
p {
    margin: 0;
}
.br--sp {
    display: none;
}

/* ==================================================
Header
================================================== */
.header {
    width: 100%;
    height: 100px;
    background: rgb(255 255 255 / 70%);
    border-bottom: 1px solid #e9ecef;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
}
.header__inner {
    max-width: 1920px;
    margin: 0 auto;
    padding: 2rem 2.4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.2rem;
}
.header__logo {
    margin: 0;
}
.header__logo a {
    display: block;
}
.header__logo img {
    width: 160px;
}
.header-main {
    position: relative;
    width: 100%;
    height: 600px;
    background: url(/img/header_bg.jpg) no-repeat center center / cover;
}
.header-main::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background: rgba(255, 255, 255, 0.3);
}
.header__box p {
    position: absolute;
    top: calc(50% + 50px);
    right: 15%;
    opacity: 0.9;
    z-index: 2;
    transform: translateY(-50%);
    writing-mode: vertical-rl;
    font-size: 34px;
    font-weight: 600;
}

/* ==================================================
Main
================================================== */
main {
    padding: 150px 2rem;
}
.main__inner {
    max-width: 1200px;
    margin: 0 auto;
}
.main__box {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 4rem;
}
.main__btn {
    background-color: #fff;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    padding: 3.2rem 2.4rem;
    text-align: center;
    flex: 1;
}
.main__btn > div > a {
    display: inline-block;
    min-width: 320px;
    padding: 1.8rem 3rem;
    background-color: var(--color-main);
    color: #fff;
    font-size: 1.8rem;
    letter-spacing: .06em;
    border-radius: 4px;
    border: 1px solid var(--color-main);
    position: relative;
    transition: .4s all;
}
.main__btn > div > a::after {
    content: "";
    position: absolute;
    right: 1.6rem;
    top: 50%;
    width: 8px;
    height: 8px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: translateY(-50%) rotate(45deg);
}
.main__btn > div > a:hover {
    background-color: #fff;
    color: var(--color-main);
    opacity: 1;
    transition: .4s all;
}
.main__btn > div > a:hover::after {
    border-color: var(--color-main);
}
.main__btn ul {
    text-align: left;
    margin: 3rem 0 0;
    padding: 0;
    width: 90%;
}
.main__btn ul li {
    font-size: 1.3rem;
    color: #6b5f57;
    position: relative;
    padding-left: 1.2em;
}

/* ==================================================
Footer
================================================== */
.footer {
    background: url(/img/footer_bg.jpg) no-repeat center center / cover;
    border-top: 1px solid var(--color-border);
    padding: 5rem 2rem 3rem;
    text-align: center;
}
.footer__inner {
    max-width: 800px;
    margin: 0 auto;
}
.footer__inner > p:first-child {
    font-size: 1.3rem;
    color: var(--color-main);
    margin-bottom: 3.2rem;
}
.footer__logo {
    margin: 0;
}
.footer__logo a {
    display: block;
}
.footer__logo img {
    max-width: 200px;
    margin-bottom: 2rem;
}
.footer__info {
    margin-bottom: 2.4rem;
}
.footer__address,
.footer__tel,
.footer__hours {
    font-size: 1.4rem;
}
.footer__address,
.footer__tel {
    margin-bottom: .5rem;
}
.footer__copyright {
    font-size: 1.1rem;
    color: #9a8f86;
    letter-spacing: .05em;
}

/* ==================================================
Responsive
================================================== */
@media screen and (max-width: 780px) {
    .br--sp {
        display: inline;
    }
    .header__box p {
        font-size: 24px;
    }
    main {
        padding: 100px 1.5rem;
    }
    .main__box {
        flex-direction: column;
        gap: 2rem;
    }
    .main__btn {
        min-height: 250px;
    }
    .main__btn > div > a {
        min-width: 100%;
        width: 100%;
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 560px) {
    .header__logo img {
        width: 105px;
    }
}