@charset "UTF-8";

/* ↓↓↓　※※※ここの範囲内は今回対象外のCSS※※※　↓↓↓ */

/* 文理様ソースコードのリセットCSS */
body, h1, h2, h3, h4, p, ul, ol, figure, blockquote, dl, dd {
    margin: 0;
}

body {
    line-height: 1.5;
    min-height: 100vh;
    text-rendering: optimizeLegibility;
}

a {
    -webkit-text-decoration: none;
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s;
}

a:active, a:hover {
    outline-width: 0;
}

ul, ol {
    list-style: none;
}

/* 全体にかかっているCSS */
*, *::before, *::after {
    box-sizing: border-box;
}

:root {
    --size-extraTiny: 2px;
    --size-tiny: 4px;
    --size-extraSmall: 6px;
    --size-small: 8px;
    --size-medium: 16px;
    --size-normal: 24px;
    --size-large: 32px;
    --size-xLarge: 48px;
    --size-xxLarge: 56px;
    --size-extraLarge: 64px;
    --font-size-tiny: 12px;
    --font-size-small: 16px;
    --font-size-medium: 18px;
    --font-size-large: 32px;
    --weight-thin: 100;
    --weight-extraLight: 200;
    --weight-light: 300;
    --weight-normal: 400;
    --weight-medium: 500;
    --weight-semiBold: 600;
    --weight-bold: 700;
    --weight-extraBold: 800;
}

img {
    display: block;
    max-width: 100%;
    width: 100%;
}

img {
    max-width: 100%;
}

a:not([class]) {
    -webkit-text-decoration-skip: ink;
    text-decoration-skip-ink: auto;
}

input[type=submit], input[type=button], label, button, select {
    cursor: pointer;
}

input, button, textarea, select {
    font: inherit;
}

/* html,body関係のCSS */
html{
    font-size: 16px;
    scroll-behavior: smooth;
}

@media screen and (min-width: 768px) {
    html {
        font-size: 1.7777777778vw;
    }
}

@media (min-width: 900px) {
    html {
        font-size: 16px;
    }
}

body {
    font-family: "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
    position: relative;
    width: 100%;
    min-width: 375px;
    overflow-x: hidden;
}

/* header関係のCSS */
.header {
    background-color: #fff;
    border-bottom: 1px solid #333;
    left: 0;
    padding: 0.75rem 0 0.6875rem;
    /* position: fixed; */
    /* 周り込みを避けるため↑をコメントアウト */
    right: 0;
    top: 0;
    z-index: 900;
}

@media screen and (min-width: 768px) {
    .header {
        padding: 0.9375rem 0 0.875rem;
    }
}

.header__inner {
    align-items: center;
    display: flex;
    padding: 0 0.5rem;
}

@media screen and (min-width: 768px) {
    .header__inner {
        margin-left: auto;
        margin-right: auto;
        max-width: 63.75rem;
    }
}

@media screen and (min-width: 1280px) {
    .header__inner {
        max-width: 100%;
        padding: 0 11.4375rem;
    }
}

.header__logo {
    display: flex
;
}

.header__logo a {
    display: inline-block;
    height: inherit;
    width: 7.5rem;
}

@media screen and (min-width: 768px) {
    .header__logo a {
        width: 10.375rem;
    }
}

.header__logo img {
    -o-object-fit: contain;
    aspect-ratio: 120 / 51;
    height: 100%;
    object-fit: contain;
    width: 100%;
}

.header__buttons {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin-left: auto;
}

@media screen and (min-width: 768px) {
    .header__buttons {
        flex-direction: initial;
        gap: 1.25rem;
    }
}

.button, .button--green {
    background-color: #5a2800;
    border-radius: 0.375rem;
    color: #fff;
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1;
    padding: 0.75rem 0;
    text-align: center;
    width: 10.25rem;
}

.button--green {
    background-color: #00b900;
    text-transform: uppercase;
}

@media screen and (min-width: 768px) {
    .button, .button--green {
        font-size: 1rem;
        padding: 0.9375rem 1.25rem;
        width: 100%;
    }
}

/* nav関係のCSS */

.gnav {
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 100;
}

.Toggle {
    display: block;
    position: fixed;
    width: 60px;
    height: 60px;
    cursor: pointer;
    z-index: 500;
    right: 15px;
    bottom: 15px;
    background: #FFFCBE;
    border-radius: 100px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.6);
}

@media screen and (min-width: 750px) {
    .Toggle {
        display: none;
    }
}

.Toggle span:nth-child(1) {
    top: 12px;
}

.Toggle span:nth-child(2) {
    top: 22px;
}

.Toggle span:nth-child(3) {
    top: 32px;
}

.Toggle span {
    display: block;
    position: absolute;
    width: 30px;
    right: 15px;
    border-bottom: solid 4px #703A0E;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
}

.Toggle-menu {
    font-size: 12px;
    color: #70390E;
    font-weight: bold;
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
}

.Toggle-close {
    overflow-x: hidden;
    -webkit-transform: translateY(300%);
}

.gnav ul {
    width: 100%;
    display: flex;
    justify-content: space-around;
    justify-content: center;
    background-color: #FFFCBE;
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-weight: 600;
    color: #703A0E;
}

.gnav ul .gnav-bg {
    border-right: 1px solid #BA7A4F;
}

.gnav ul .gnav-bg:last-child {
    border: none;
}

.gnav ul > li {
    display: block;
}

.gnav ul li {
    width: 100%;
    position: relative;
}

.gnav ul .gnav-bg a {
    width: 100%;
    height: 52px;
    padding: 14px 0;
    vertical-align: middle;
}

.gnav ul > li > a {
    padding: 15px 30px;
    display: block;
    text-transform: uppercase;
}

.gnav ul .gnav-bg::after {
    content: '';
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 33px;
    left: 0;
    bottom: -30px;
    background: url(../img/etc/nav-bg.png) no-repeat;
    background-size: 100%;
}

@media screen and (min-width: 1250px) {
    .gnav ul .gnav-bg::after {
        bottom: -28px;
    }
}

nav ul li.list-child::before {
    content: '';
    position: absolute;
    right: 30px;
    top: 17px;
    width: 10px;
    height: 10px;
    border-top: 2px solid #703A0E;
    border-right: 2px solid #703A0E;
    transform: rotate(135deg);
}

.gnav ul li ul {
    display: none;
}

@media screen and (max-width: 750px) {
    .gnav .menu {
        position: fixed;
        bottom: 0;
        z-index: 100;
    }
}

@media screen and (max-width: 750px) {
    .menu {
        text-align: center;
        background-color: rgba(255, 255, 255, 0.5);
        transition: 0.5s ease;
        -webkit-transform: translateY(300%);
        z-index: 100;
    }
}

.footer {
    background-image: linear-gradient(to bottom, transparent 0%, transparent 55%, #fbf0e7 55%, #fbf0e7 100%);
    background-image: linear-gradient(to bottom, transparent 0% 55%, #fbf0e7 55% 100%);
}

@media screen and (min-width: 768px) {
    .layout-footer {
    }
}

@media screen and (min-width: 768px) {
    .footer {
        background-image: linear-gradient(to bottom, transparent 0%, transparent 63%, #fbf0e7 63%, #fbf0e7 100%);
        background-image: linear-gradient(to bottom, transparent 0% 63%, #fbf0e7 63% 100%);
    }
}

.pagetop {
    bottom: 5.5rem;
    height: 3rem;
    padding: 0;
    position: fixed;
    left: 0.75rem;
    width: 3rem;
    z-index: 90;
}

@media screen and (min-width: 768px) {
    .pagetop {
        bottom: 5rem;
        height: 3rem;
        right: 1.25rem;
        left: auto;
        width: 4rem;
    }
}

input, button, select, textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: transparent;
    border: none;
    border-radius: 0;
    font: inherit;
    outline: none;
}

.pagetop img {
    -o-object-fit: contain;
    aspect-ratio: 179 / 198;
    height: 100%;
    object-fit: contain;
    width: 100%;
}

.footer__copyright {
    background-color: #fff;
    border-top: 1px solid #707070;
    height: 3.5625rem;
    padding-top: 0.625rem;
    text-align: center;
}

@media screen and (min-width: 768px) {
    .footer__copyright {
        height: 4.375rem;
        padding-top: 0.75rem;
    }
}

/* ↑↑↑　※※※ここの範囲内は今回対象外のCSS※※※　↑↑↑ */

