@charset "UTF-8";

/* ------------------------------------------- */
/* root */
/* ------------------------------------------- */
:root {
    --default-text-color: #000;
    --zenkaku: "Zen Kaku Gothic New", sans-serif;
    --lato: "Lato", sans-serif;
    --noto: "Noto Sans JP", sans-serif;
    --roboto: "Roboto", sans-serif;
}

/* --------------------------------------------------------------- */
/* reset start */
/* --------------------------------------------------------------- */
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    background: transparent;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
video {
    display: block;
}

ul,
li,
ol,
dl {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
    content: none;
}

a {
    display: inline-block;
    margin: 0;
    padding: 0;
    color: var(--default-text-color);
    text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
    a:hover {
        text-decoration: none;
    }
}

del {
    text-decoration: line-through;
}

abbr[title],
dfn[title] {
    border-bottom: 0.1rem dotted;
    cursor: help;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

*,
*:after,
*:before {
    -webkit-appearance: none;
    word-break: break-all;
    box-sizing: border-box;
}

video {
    filter: contrast(1);
}

/* --------------------------------------------------------------- */
/* reset end */
/* --------------------------------------------------------------- */

/* タブレット(1081px以上)のみ非表示 */
@media print, screen and (min-width: 1080.01px) {
    .tab-off {
        display: none !important;
    }
}
/* PC(768px以上)のみ非表示 */
@media print, screen and (min-width: 767.01px) {
    .pc-off {
        display: none !important;
    }
}
/* スマホのみ非表示 */
@media screen and (max-width: 767px) {
    .sp-off {
        display: none !important;
    }
}

@media screen and (max-width: 767px) {
    a[href^="tel:"] {
        color: var(--default-text-color);
    }
}
@media screen and (min-width: 767.01px) {
    a[href^="tel:"] {
        pointer-events: none;
        text-decoration: none;
    }
}

html {
    font-size: 62.5%;
    letter-spacing: 0;
    font-family: var(--noto);
    -webkit-text-size-adjust: none;

    @media screen and (min-width: 1080.01px) and (max-width: 1919.99px) {
        font-size: calc(10 / 1919 * 100 * 1vw);
    }

    /* あまりにも文字サイズが小さくなった場合 */
    @media screen and (min-width: 767.01px) and (max-width: 1080px) {
        font-size: calc(10 / 1920 * 100 * 1vw);
    }

    /* スマホ用（デザインサイズが375の場合） */
    @media screen and (max-width: 767px) {
        font-size: calc(10 / 375 * 100 * 1vw);
    }
}

body {
    font-size: 1.6rem;
    line-height: 1;
    overflow: auto;

    @media screen and (max-width: 767px) {
        font-size: 1.4rem;
    }
}
img {
    display: block;
    max-width: 100%;
    height: auto;
    vertical-align: top;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;

    @media screen and (max-width: 767px) {
        /* スマホ画像長押し禁止対策 */
        pointer-events: none;
    }
}

/* ------------------------------------------- */
/* 印刷用の設定 */
/* ------------------------------------------- */
@media print {
    html {
        font-size: calc(10 / 1919 * 100 * 14px);
    }
    body {
        -webkit-print-color-adjust: exact;
        position: relative;
        width: 1400px;
        zoom: 70%;
    }
}
@page {
    size: A4;
    margin: 10mm;
}

/* ------------------------------------------- */
/* デバッグ用：スクロールバーを0pxに
/* ------------------------------------------- */
.deve body {
    --sb-track-color: #ddd;
    --sb-thumb-color: #000;
    --sb-size: 0;
    /* scrollbar-color: var(--sb-thumb-color) var(--sb-track-color); */
    overflow-x: hidden;
}
.deve body::-webkit-scrollbar {
    width: var(--sb-size);
}
.deve body::-webkit-scrollbar-track {
    background: var(--sb-track-color);
    border-radius: 1px;
}
.deve body::-webkit-scrollbar-thumb {
    background: var(--sb-thumb-color);
    border-radius: 1px;
}

/* --------------------------------------------------------------- */
/* wrapper */
/* --------------------------------------------------------------- */
#wrapper {
    overflow: clip;

    box-sizing: border-box;
}

.menu-active {
    overflow: hidden;
}

/* --------------------------------------------------------------- */
/* header */
/* --------------------------------------------------------------- */
.scroll-now {
    #header {
        background: rgba(255, 247, 234, 0.8);
    }
}

#header {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
    width: 100%;
    height: 12.8rem;
    padding-left: 2.7rem;
    padding-right: 4.3rem;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;

    @media screen and (max-width: 767px) {
        height: auto;
        padding-left: 2rem;
        padding-right: 2rem;
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
    .logomark {
        display: flex;
        align-items: center;
        gap: 2rem;
        @media screen and (max-width: 767px) {
            gap: 1rem;
        }
        & a {
            width: 13.6rem;
            @media screen and (max-width: 767px) {
                width: 7.9rem;
            }
            & img {
                width: 100%;
                vertical-align: top;
            }
        }
        .subtext {
            font-family: var(--zenkaku);
            font-style: normal;
            font-weight: 700;
            font-size: 1.6rem;
            line-height: 1;
            text-align: center;
            letter-spacing: 0.16em;
            color: #212121;
            @media screen and (max-width: 767px) {
                font-size: 1.2rem;
            }
        }
    }
    .nav {
        display: flex;
        align-items: center;
        .main-list {
            display: flex;
            align-items: center;
            gap: 3rem;
            @media screen and (max-width: 767px) {
                /* gap: 0; */
            }
            & li {
                position: relative;
                .dropdown {
                    display: none;
                    position: absolute;
                    background: #fff;
                    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
                    border-radius: 1rem;
                    margin-top: 2rem;
                    margin-left: -0.5rem;
                    z-index: 100;
                    padding: 4.8rem 4.7rem;
                    box-sizing: border-box;
                    min-width: 44rem;
                    @media screen and (max-width: 767px) {
                        position: relative;
                        min-width: auto;
                        padding: 2.5rem 0 0;
                        box-shadow: unset;
                        margin-top: unset;
                        background: #fff7e9;
                    }
                    & a {
                        display: block;
                        text-align: left;
                        transition: all 0.3s ease-in;
                        position: relative;
                        padding-left: 3.6rem;
                        box-sizing: border-box;
                        font-weight: 500 !important;
                        transition: all 0.3s ease-in;
                        font-size: 1.6rem;
                        line-height: 2.4rem;
                        letter-spacing: .04em;
                        margin-bottom: 2rem;
                        font-family: var(--zenkaku);
                        @media screen and (max-width: 767px) {
                            padding-bottom: 0;
                            font-size: 1.2rem;
                            line-height: 1.5;
                            margin-bottom: 1.4rem;
                            letter-spacing: .06em;
                        }
                        &:after {
                            content: "";
                            position: absolute;
                            width: 1.6rem;
                            height: .2rem;
                            background: #f08300;
                            left: 0;
                            top: 1rem;
                            @media screen and (max-width: 767px) {
                                top: 0.8rem;
                            }
                        }
                        &:hover {
                            color: #f08300;
                        }
                    }
                    & a:last-child {
                        margin-bottom: 0;
                    }
                }

                & a {
                    font-family: var(--zenkaku);
                    font-style: normal;
                    font-weight: 700;
                    font-size: 1.6rem;
                    line-height: 4.4rem;
                    text-align: center;
                    letter-spacing: 0.16em;
                    color: #212121;
                    position: relative;
                    transition: all 0.3s ease-in;
                    &:hover {
                        color: #f08300;
                    }
                    @media screen and (max-width: 1080px) {
                        font-size: 1.4rem;
                    }
                    @media screen and (max-width: 767px) {
                        line-height: 1.5;
                        font-size: 1.4rem;
                        font-weight: bold;
                    }
                }
                & div.dropdown-link {
                    font-family: var(--zenkaku);
                    font-style: normal;
                    font-weight: 700;
                    font-size: 1.6rem;
                    line-height: 1;
                    text-align: center;
                    letter-spacing: 0.16em;
                    color: #212121;
                    cursor: pointer;
                    transition: all 0.3s ease-in;
                    padding-right: 1.6rem;
                    box-sizing: border-box;
                    @media screen and (max-width: 767px) {
                        font-size: 1.4rem;
                        text-align: left;
                    }
                    &:after {
                        content: "";
                        position: absolute;
                        width: 1.2rem;
                        height: 0.6rem;
                        background: url("../img/orange-arrow-down.png") no-repeat center / 100% auto;
                        right: 0;
                        top: 0.6rem;
                        @media screen and (max-width: 767px) {
                            right: 0;
                        }
                    }
                    &:hover {
                        /* color: #f08300; */
                    }
                }
                .dropdown-link.active {
                    color: #f08300;
                    &:after {
                        transform: rotate(180deg);
                    }
                }
            }
            @media screen and (min-width: 768px) {
                li:hover > .dropdown {
                    /* display: block; */
                }
            }
            .entry {
                font-family: var(--zenkaku);
                font-style: normal;
                font-weight: 700;
                font-size: 1.8rem;
                line-height: 2.6rem;
                color: #ffffff;
                background-color: #f08300;
                border-radius: 4rem;
                width: 23rem;
                height: 5rem;
                display: flex;
                justify-content: center;
                align-items: center;
                transition: all 0.3s ease-in;
                &:hover {
                    color: #fff;
                    opacity: 0.8;
                }
            }
        }
    }

    /* メニューボタン */
    .menu-btn {
        position: absolute;
        display: none;
        top: 0;
        right: 0;
        z-index: 9999;
        background-color: #fff7ea;

        @media screen and (max-width: 767px) {
            display: block;
        }

        &:after {
            /* content: "MENU"; */
            content: "";
            position: absolute;
            left: 50%;
            bottom: 1.1rem;
            color: #5e4939;
            font-weight: 500;
            letter-spacing: 0.05em;
            font-size: 1.1rem;
            transform: translateX(-50%);
            white-space: nowrap;
        }

        & a {
            position: relative;
            width: 10rem;
            height: 10rem;
            vertical-align: top;
            transition: ease 0.25s all;

            @media screen and (max-width: 767px) {
                width: 6.2rem;
                height: 6.2rem;
            }

            & span {
                position: absolute;
                left: 50%;
                top: 50%;
                display: block;
                margin-left: -1.8rem;
                width: 3.4rem;
                height: 0.2rem;
                background: #5e4939;
                border-radius: 0.3rem;

                @media screen and (max-width: 767px) {
                    margin-left: -0.8rem;
                    width: 1.8rem;
                    height: 0.2rem;
                }

                &:before,
                &:after {
                    content: "";
                    position: absolute;
                    left: 0;
                    top: 0;
                    width: 100%;
                    height: 100%;
                    background: #5e4939;
                    border-radius: 0.3rem;
                    transition: ease 0.25s all;
                }

                &:before {
                    margin-top: -0.5rem;
                }
                @media screen and (max-width: 767px) {
                    &:before {
                        margin-top: -0.5rem;
                    }
                }
                &:after {
                    margin-top: 0.5rem;
                }
                @media screen and (max-width: 767px) {
                    &:after {
                        margin-top: 0.5rem;
                    }
                }
            }
        }
    }
}

@media screen and (max-width: 767px) {
    .nav {
        top: 6rem;
        left: 0;
        position: fixed;
        left: 100%;
        z-index: 999;
        width: 100%;
        height: calc(100vh - 5rem);
        padding: 3.4rem 2rem 5rem;
        box-sizing: border-box;
        pointer-events: none;
        background-color: #fff7ea;
        overflow: scroll;
        display: block !important;
        .main-list {
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            justify-content: flex-start;
            gap: 2rem;
            background-color: #fff7ea;
            @media screen and (max-width: 767px) {
                gap: 0 !important;
            }
            & li {
                width: 100%;
                display: flex;
                flex-direction: column;
                justify-content: flex-start;
                padding-bottom: 2.3rem;
                & a {
                    display: block;
                    text-align: left !important;
                    font-size: 1.4rem;
                    font-weight: 500;
                }
                & div.dropdown-link {
                    font-size: 1.4rem;
                    font-weight: 500;
                }
                .main-list-link {
                    padding-bottom: 2.3rem;
                    border-bottom: 1px solid #c0c0c0;
                }
            }

            .entry {
                display: flex;
                justify-content: center !important;
                width: 100%;
            }
        }
    }
    .entry-btn-sp {
        position: absolute;
        width: 8.4rem;
        height: 3.2rem;
        right: 5.8rem;
        top: 1.5rem;
        background: #f18200;
        border-radius: 0.4rem;
        display: flex;
        justify-content: center;
        align-items: center;
        font-family: var(--zenkaku);
        font-style: normal;
        font-weight: 700;
        font-size: 1.2rem;
        line-height: 1;
        text-align: center;
        color: #ffffff;
        z-index: 9999;
    }
}

.scroll-now {
    #header {
        background: rgba(255, 247, 234, 0.8);
    }
}

.menu-active {
    #header {
        background-color: #fff7ea;
        .menu-btn {
            /* position: fixed; */
            & a {
                /* background-color: #fff; */
                & span {
                    background-color: transparent;
                    &:before {
                        margin-top: 0;
                        transform: rotate(35deg);
                        -webkit-transform: rotate(35deg);
                    }
                    &:after {
                        margin-top: 0;
                        transform: rotate(-35deg);
                        -webkit-transform: rotate(-35deg);
                    }
                }
            }
        }

        @media screen and (max-width: 767px) {
            .nav {
                left: 0;
                pointer-events: auto;
            }
        }
    }
}

/* --------------------------------------------------------------- */
/* breadcrumbs */
/* --------------------------------------------------------------- */
#breadcrumbs {
    /* padding: 2.4rem 0; */
    padding-bottom: 9.775rem;

    @media screen and (max-width: 767px) {
        display: none;
    }
    & ol {
        display: flex;
        flex-wrap: wrap;
    }
    & li {
        position: relative;
        margin-right: 3.7rem;
        font-weight: 500;
        font-size: 1.2rem;
        letter-spacing: 0.1em;

        &:last-child {
            margin-right: 0;
            &:after {
                display: none;
            }
        }

        &:after {
            content: "";
            position: absolute;
            right: -2.7rem;
            top: 50%;
            z-index: 0;
            display: block;
            width: 1.4rem;
            height: 1px;
            background: #a3a3a3;
            &:last-child:after {
                display: none;
            }
        }
    }
    & a {
        text-decoration: underline;
        color: #a3a3a3;

        @media (hover: hover) and (pointer: fine) {
            &:hover {
                text-decoration: none;
            }
        }
    }
}

/* --------------------------------------------------------------- */
/* container */
/* --------------------------------------------------------------- */
#container {
    width: 100%;
}

/* --------------------------------------------------------------- */
/* contents */
/* --------------------------------------------------------------- */
#contents {
}

/* --------------------------------------------------------------- */
/* footer */
/* --------------------------------------------------------------- */
.border-container {
    background-color: #fff7ea;
    #border {
        width: 100%;
        background: #d4c5bb;
        width: 100%;
        height: 1px;
    }
}

#footer {
    background-color: #fff7ea;
    padding-top: 16rem;
    position: relative;
    @media screen and (max-width: 767px) {
        padding-top: 6.6rem;
    }
    &:after {
        content: "";
        position: absolute;
        background: url("../img/f-bg.svg") no-repeat top center / 100% auto;
        width: 93%;
        height: 90rem;
        left: 3rem;
        top: 13rem;
        z-index: 0;
        @media screen and (max-width: 767px) {
            background: url("../img/f-bg-sp.svg") no-repeat top center / 100% auto;
            left: 50%;
            transform: translateX(-50%);
            width: 100%;
            top: 2rem;
        }
    }
    &:before {
        content: "";
        position: absolute;
        width: 88.6rem;
        height: 90rem;
        top: 0;
        right: -10rem;
        background: url("../../img/top/donut-bg.svg") no-repeat top center / 100% auto;
        z-index: 0;
        @media screen and (max-width: 767px) {
            width: 34.8rem;
            height: 40rem;
            background: url("../../img/top/donut-bg.svg") no-repeat top left / 100% auto;
        }
    }
    .bottom-bg {
        position: relative;
        width: 100%;
        padding-bottom: 6.6rem;
        &:before {
            content: "";
            position: absolute;
            width: 127rem;
            height: 129rem;
            bottom: 0;
            left: 0;
            background: url("../../img/top/donut-bottom-bg.svg") no-repeat top right / 100% auto;
            z-index: 0;
            @media screen and (max-width: 767px) {
                width: 45rem;
                background: url("../../img/top/donut-bottom-bg.svg") no-repeat bottom right / 100% auto;
                left: -9rem;
            }
        }
        @media screen and (max-width: 767px) {
            padding-bottom: 5rem;
        }
    }
    .footer-section1 {
        width: 100%;
        margin-bottom: 16.4rem;
        @media screen and (max-width: 767px) {
            margin-bottom: 2rem;
        }
        .heading {
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 100%;
            .jp {
                position: relative;
                width: 65.4rem;
                font-family: var(--zenkaku);
                font-style: normal;
                font-weight: 700;
                font-size: 5.29647rem;
                line-height: 7.7rem;
                letter-spacing: 0.12em;
                color: #212121;
                margin-bottom: 1.1rem;
                text-align: center;
                @media screen and (max-width: 767px) {
                    width: auto;
                    font-size: 3.4rem;
                    line-height: 118%;
                    margin-bottom: 0.8rem;
                }
                &:before {
                    content: "";
                    position: absolute;
                    width: 3.5rem;
                    height: 9rem;
                    left: -5rem;
                    top: -2rem;
                    background: url("../img/quotes01.png") no-repeat center / 100% auto;
                    @media screen and (max-width: 767px) {
                        width: 1.5rem;
                        height: 3rem;
                        left: -2.5rem;
                        top: -0.5rem;
                    }
                }
                &:after {
                    content: "";
                    position: absolute;
                    width: 3.5rem;
                    height: 9rem;
                    right: -4rem;
                    top: -2rem;
                    background: url("../img/quotes02.png") no-repeat center / 100% auto;
                    @media screen and (max-width: 767px) {
                        right: -1.5rem;
                        top: -0.5rem;
                        width: 1.5rem;
                        height: 3rem;
                    }
                }
            }
            .en {
                font-family: var(--lato);
                font-style: normal;
                font-weight: 700;
                font-size: 1.8rem;
                line-height: 2.2rem;
                text-align: center;
                letter-spacing: 0.04em;
                color: #212121;
                margin-bottom: 7.6rem;
                @media screen and (max-width: 767px) {
                    font-size: 1.4rem;
                    margin-bottom: 3rem;
                    line-height: 1.4;
                }
            }
        }
        .body-text {
            font-family: var(--zenkaku);
            font-style: normal;
            font-weight: 400;
            font-size: 1.8rem;
            line-height: 3.3rem;
            text-align: center;
            letter-spacing: 0.06em;
            color: #000000;
            margin-bottom: 8rem;
            width: 100%;
            @media screen and (max-width: 767px) {
                font-size: 1.6rem;
                line-height: 3rem;
                margin-bottom: 4.4rem;
            }
        }
        .link-flexwrap {
            display: flex;
            flex-wrap: wrap;
            width: 100%;
            gap: 2.2rem 4rem;
            @media screen and (max-width: 767px) {
                gap: 1rem;
            }
            & li {
                @media screen and (max-width: 767px) {
                    width: 100%;
                }
                & a {
                    background-color: #fff;
                    width: 62rem;
                    height: 10.1rem;
                    border-radius: 1rem;
                    padding: 3.4rem;
                    box-sizing: border-box;
                    position: relative;
                    transition: ease-in 0.3s all;
                    border: 2px #fff solid;
                    @media screen and (max-width: 767px) {
                        width: 100%;
                        padding: 2.6rem 3rem 2.6rem 2.9rem;
                        height: auto;
                    }
                    &:hover {
                        border: 2px solid #f08300;
                        opacity: 0.85;
                    }
                    &:after {
                        content: "";
                        position: absolute;
                        top: 50%;
                        right: 3.4rem;
                        width: 4.13rem;
                        height: 4.13rem;
                        background: url("../img/orange-arrow.svg") no-repeat center / 100% auto;
                        transform: translateY(-50%);
                        @media screen and (max-width: 767px) {
                            right: 1.7rem;
                            width: 2.6rem;
                            height: 2.6rem;
                        }
                    }
                    .link-header {
                        font-family: var(--zenkaku);
                        font-style: normal;
                        font-weight: 700;
                        font-size: 2.2rem;
                        line-height: 3.2rem;
                        letter-spacing: 0.1em;
                        color: #212121;
                        @media screen and (max-width: 767px) {
                            font-size: 1.6rem;
                            line-height: 1.3;
                            letter-spacing: 0.05em;
                        }
                    }
                }
            }
        }
    }
    .slider-wrapper {
        overflow: hidden;

        @media screen and (max-width: 767px) {
            transform: scale(1.8);
            transform-origin: left center;
        }
    }
    .slider {
        position: relative;
        z-index: 9;
        display: flex;
        width: 200%;
        animation: slideAnimation 18s linear infinite;
        margin-bottom: 8rem;

        @media screen and (max-width: 767px) {
            margin-top: 8rem;
            animation: slideAnimation 8s linear infinite;
        }
        .slide {
            width: 50%;
            flex-shrink: 0;
            & img {
                width: 100%;
                vertical-align: top;
                display: block;
            }
        }
    }

    /* .slider {
        width: 100%;
        cursor: pointer;
        margin-bottom: 11.4rem;
        position: relative;
        z-index: 99;
        @media screen and (max-width: 767px) {
            margin-bottom: 0;
        }
        .slide {
            padding: 3rem;
            position: relative;
            @media screen and (max-width: 767px) {
                padding: 3rem 1rem 4rem;
            }
            &:before {
                content: "";
                position: absolute;
                z-index: -1;
                top: 1.9rem;
                right: 1.9rem;
                width: 100%;
                height: 100%;
                background: url("../img/main-banner-bg01.png") no-repeat center / 100% auto;
                opacity: 0.7;
                @media screen and (max-width: 767px) {
                    top: 1rem;
                    right: 1rem;
                }
            }
            & img {
                border-radius: 1rem;
                overflow: hidden;
                width: 100%;
                height: auto;
                object-fit: cover;
                @media screen and (max-width:767px){
                    width: 100%;
                    height: auto;
                }
            }
        }
        .slick-slide:nth-child(even) {
            margin-top: 4.8rem;
            @media screen and (max-width: 767px) {
                margin-top: 1.2rem;
            }
        }
    } */
    .footer-main {
        width: 100%;
        .f-logo-flex {
            margin-bottom: 5rem;
            display: flex;
            gap: 2.6rem;
            align-items: center;
            @media screen and (max-width: 767px) {
                margin-bottom: 4rem;
                gap: 1rem;
            }
            .f-logo {
                width: 16.3rem;
                @media screen and (max-width: 767px) {
                    width: 9.9rem;
                }
                & img {
                    width: 100%;
                    vertical-align: top;
                }
            }
            .f-logo-text {
                font-family: var(--zenkaku);
                font-style: normal;
                font-weight: 700;
                font-size: 1.6rem;
                line-height: 5.6rem;
                letter-spacing: 0.16em;
                color: #212121;
                @media screen and (max-width: 767px) {
                    font-size: 1.523rem;
                    line-height: 1.4;
                }
            }
        }
        .contents-flex {
            display: flex;
            gap: 32rem;
            width: 100%;
            @media screen and (max-width: 767px) {
                flex-direction: column-reverse;
                gap: 0;
            }

            .sns-text {
                font-family: var(--zenkaku);
                font-style: normal;
                font-weight: 700;
                font-size: 1.6rem;
                line-height: 5.6rem;
                letter-spacing: 0.16em;
                color: #212121;
                margin-bottom: 0.2rem;
                @media screen and (max-width: 767px) {
                    font-size: 1.4rem;
                    line-height: 2.4rem;
                    margin-bottom: 1.827rem;
                }
            }
            .sns-links-flex {
                display: flex;
                align-items: center;
                margin-bottom: 25rem;
                gap: 1.7rem;
                @media screen and (max-width: 767px) {
                    margin-bottom: 5.4rem;
                    gap: 1rem;
                }
                & a {
                    width: 5rem;
                    transition: ease-in 0.3s all;
                    @media screen and (max-width: 767px) {
                        width: 2.5rem;
                    }
                    &:hover {
                        opacity: 0.85;
                    }
                    & img {
                        width: 100%;
                        vertical-align: top;
                    }
                }
                & a:last-child {
                    width: 4.5rem;
                    @media screen and (max-width: 767px) {
                        width: 2.3rem;
                    }
                }
            }
        }
        .copyright {
            font-family: var(--lato);
            font-style: normal;
            font-weight: 700;
            font-size: 1.2rem;
            line-height: 1.4rem;
            letter-spacing: 0.12em;
            color: #000000;
            @media screen and (max-width: 767px) {
                font-size: 1rem;
                margin-top: 4.2rem;
                display: block;
                text-align: center;
            }
        }
        .external-links {
            margin-bottom: 6.9rem;
            @media screen and (max-width: 767px) {
                margin-bottom: 1.5rem;
            }
            & li {
                margin-bottom: 2rem;
                @media screen and (max-width: 767px) {
                    margin-bottom: 1.5rem;
                }
                & a[target] {
                    position: relative;
                    padding-right: 2.3rem;
                    transition: all 0.3s ease-in;
                    font-family: var(--zenkaku);
                    font-size: 1.6rem !important;
                    /* line-height: 2.4rem; */
                    line-height: 1;
                    font-weight: 500;
                    @media screen and (max-width: 767px) {
                        padding-right: 2rem;
                        font-size: 1.4rem !important;
                        line-height: 1.27;
                        white-space: nowrap;
                    }
                    &:hover {
                        color: #f08300;
                    }
                    &:after {
                        content: "";
                        position: absolute;
                        top: 50%;
                        right: 0;
                        width: 1.5rem;
                        height: 1.5rem;
                        background: url("../img/external-link.png") no-repeat center / 100% auto;
                        transform: translateY(-50%);
                        @media screen and (max-width: 767px) {
                            width: 1.2rem;
                            height: 1.2rem;
                        }
                    }
                }
            }
        }
        .column2 {
            @media screen and (max-width: 767px) {
                width: 100%;
                margin-bottom: 2rem;
            }
            .links-flex {
                display: flex;
                justify-content: space-between;
                gap: 10rem;
                margin-top: -1rem;
                @media screen and (max-width: 767px) {
                    gap: 2rem;
                }
                .sub-column1,
                .sub-column2 {
                    width: 33.3rem;
                    @media screen and (max-width: 767px) {
                        width: 48%;
                    }
                }
                .sub-column1 {
                    @media screen and (max-width: 767px) {
                        width: 50%;
                    }
                }
                .link-block {
                    border-top: 1px solid #a3a3a3;
                    padding-top: 2.9rem;
                    margin-bottom: 4.5rem;
                    @media screen and (max-width: 767px) {
                        padding-top: 1rem;
                        margin-bottom: 2rem;
                    }
                    .bold-text {
                        font-family: var(--zenkaku);
                        font-style: normal;
                        font-weight: 700;
                        font-size: 1.8rem;
                        line-height: 1.2;
                        letter-spacing: 0.06em;
                        color: #000000;
                        transition: all 0.3s ease-in;
                        @media screen and (max-width: 767px) {
                            font-size: 1.4rem;
                            line-height: 2.6rem;
                        }
                    }
                    a.bold-text {
                        &:hover {
                            color: #f08300;
                        }
                    }
                    .external-links {
                        margin-top: 8.7rem;
                        @media screen and (max-width: 767px) {
                            margin-top: 1.5rem;
                        }
                    }
                    .f-link-list {
                        margin-top: 2.3rem;
                        @media screen and (max-width: 767px) {
                            margin-top: 1.5rem;
                        }
                        & li {
                            margin-bottom: 1.6rem;
                            & a {
                                padding-left: 2.7rem;
                                font-family: var(--zenkaku);
                                font-style: normal;
                                font-weight: 400;
                                font-size: 1.6rem;
                                line-height: 1;
                                letter-spacing: 0.06em;
                                color: #000000;
                                position: relative;
                                transition: all 0.3s ease-in;
                                @media screen and (max-width: 767px) {
                                    font-size: 1.202rem;
                                    line-height: 1.27;
                                    padding-left: 2rem;
                                }
                                &:hover {
                                    color: #f08300;
                                }
                                &:after {
                                    content: "";
                                    position: absolute;
                                    background-color: #f08300;
                                    width: 1.3rem;
                                    height: 0.2rem;
                                    top: 50%;
                                    left: 0;
                                    transform: translateY(-50%);
                                    @media screen and (max-width: 767px) {
                                        width: 1rem;
                                        top: 0.7rem;
                                        transform: unset;
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
    .scroll_up {
        position: fixed;
        right: 9.5rem;
        bottom: 10rem;
        transition: all 0.3s ease-in;
        z-index: 991;
        @media screen and (max-width: 767px) {
            display: none !important;
        }
        &:hover {
            opacity: 0.75;
        }
    }
}

/* ------------------------------------------- */
/* inner config */
/* ------------------------------------------- */
.inner {
    position: relative;
    z-index: 1;
    margin: 0 auto;

    /* @media screen and (max-width: 1080px) {
        width: calc(100% - 3rem);
    } */

    @media screen and (max-width: 767px) {
        width: calc(100% - 3rem);
    }
}

.w960 {
    max-width: 96rem;
}
.w1080 {
    max-width: 108rem;
}
.w1200 {
    max-width: 120rem;
}
.w1280 {
    max-width: 128rem;
}
.w1435 {
    max-width: 143.5rem;
}
.w1440 {
    max-width: 144rem;
}
.w1576 {
    max-width: 157.6rem;
}
.w1600 {
    max-width: 160rem;
}
.w1700 {
    max-width: 170rem;
}

/* ------------------------------------------- */
/* align */
/* ------------------------------------------- */
.tar {
    text-align: right;
}
.tal {
    text-align: left;
}
.tac {
    text-align: center;
}

/* --------------------------------------------------------------- */
/* common parts */
/* --------------------------------------------------------------- */

#lower-banner {
    width: 100%;
    /* background-color: #fff7e9; */
    padding-top: 24.7rem;
    @media screen and (max-width: 767px) {
        padding-top: 12rem;
    }
    .main-text {
        margin-bottom: 15.5rem;
        @media screen and (max-width: 767px) {
            margin-bottom: 10rem;
        }
        .en {
            font-family: var(--lato);
            font-style: normal;
            font-weight: 700;
            font-size: 1.6rem;
            line-height: 1.9rem;
            letter-spacing: 0.05em;
            color: #f08300;
            margin-bottom: 1.1rem;
            @media screen and (max-width: 767px) {
                font-size: 1.4rem;
                line-height: 1.2;
                margin-bottom: 1rem;
            }
        }
        .jp {
            font-family: var(--zenkaku);
            font-style: normal;
            font-weight: 700;
            font-size: 5.4rem;
            line-height: 7.6rem;
            letter-spacing: 0.1em;
            color: #212121;
            @media screen and (max-width: 767px) {
                font-size: 3rem;
                line-height: 1.2;
            }
        }
    }
}

.main-contents {
    width: 100%;
    /* background: #fff7e9; */
    padding-bottom: 16.5rem;
    position: relative;
    @media screen and (max-width: 767px) {
        padding-bottom: 8rem;
    }
    &:after {
        content: "";
        position: absolute;
        width: 100%;
        left: 0;
        top: 0;
        height: 100%;
        background: #fff7e9 url("../img/lower-banner-bg.svg") no-repeat top center / 100% auto;
        z-index: -1;
    }
}

/* ------------------------------------------- */
/* common-area */
/* ------------------------------------------- */
.common-area {
}

/* ------------------------------------------- */
/* common-title */
/* ------------------------------------------- */
.common-title {
}
/* type01 */
.common-title.type01 {
    text-align: center;
}

.common-header {
    margin-bottom: 5.7rem;
    @media screen and (max-width: 767px) {
        margin-bottom: 3rem;
    }
    .en {
        font-family: var(--lato);
        font-style: normal;
        font-weight: 700;
        font-size: 3.4rem;
        line-height: 4.1rem;
        letter-spacing: 0.02em;
        color: #f08300;
        @media screen and (max-width: 767px) {
            font-size: 1.8rem;
            line-height: 3rem;
        }
    }
    .jp {
        font-family: var(--zenkaku);
        font-style: normal;
        font-weight: 500;
        font-size: 1.8rem;
        line-height: 3.9rem;
        letter-spacing: 0.02em;
        color: #000000;
        @media screen and (max-width: 767px) {
            font-size: 1.4rem;
            line-height: 1.4;
        }
    }
}

.header-h3 {
    font-family: var(--zenkaku);
    font-style: normal;
    font-weight: 700;
    font-size: 3.2rem;
    line-height: 150%;
    letter-spacing: 0.1em;
    color: #212121;
    padding-left: 3rem;
    box-sizing: border-box;
    position: relative;
    margin-bottom: 5.3rem;
    @media screen and (max-width: 767px) {
        font-size: 2.2rem;
        margin-bottom: 3rem;
        padding-left: 2.6rem;
    }
    &:after {
        content: "";
        position: absolute;
        background-color: #f08300;
        left: 0;
        top: 0.5rem;
        width: 0.6rem;
        height: 3.6rem;
        border-radius: 0.5rem;
        @media screen and (max-width: 767px) {
            height: 2.2rem;
            width: 0.4rem;
        }
    }
}

/* ------------------------------------------- */
/* common-btn */
/* ------------------------------------------- */
.common-btn {
}

/* ------------------------------------------- */
/* common-select */
/* ------------------------------------------- */
.common-select {
}

/* ------------------------------------------- */
/* common-list */
/* ------------------------------------------- */
.common-list {
}

/* ------------------------------------------- */
/* common-text */
/* ------------------------------------------- */
.common-text {
}

p {
    font-family: var(--zenkaku);
    font-style: normal;
    font-weight: 400;
    font-size: 1.8rem;
    line-height: 3.3rem;
    letter-spacing: 0.06em;
    color: #212121;
    @media screen and (max-width: 767px) {
        font-size: 1.4rem;
        line-height: 2.6rem;
    }
}

/* ------------------------------------------- */
/* common-table */
/* ------------------------------------------- */
.common-table {
    table-layout: fixed;
    width: 100%;
    border-collapse: collapse;

    & p {
        margin-bottom: 2rem;
        &:last-child {
            margin-bottom: 0;
        }
    }
}
/* table-scroll */
@media screen and (max-width: 767px) {
    .table-scroll {
        position: relative;
        padding-bottom: 2rem;
        overflow-x: scroll;
        &:after {
            content: "←";
            position: absolute;
            right: 0;
            bottom: 0;
            z-index: 1;
            margin-left: -1.5rem;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            width: 3rem;
            height: 3rem;
            border-radius: 1.5rem;
            border: 0.1rem solid #000;
            animation: arrowtable 2s infinite forwards;
        }
        .common-table {
            width: 80rem;
        }
    }
}
@keyframes arrowtable {
    50% {
        opacity: 1;
        right: 0;
    }
    100% {
        opacity: 0;
        right: 100%;
    }
}

/* ------------------------------------------- */
/* アニメーション用 */
/* ------------------------------------------- */
/*
.moveFlag {
	position: relative;
	top: -5rem;
	opacity: 0;
	transition: ease 0.5s top, ease 0.5s opacity;
}
.moveFlag.on {
	top: 0;
	opacity: 1;
}
@media print {
	.moveFlag {
		top: 0;
		opacity: 1;
	}
}
*/

/* --------------------------------------------------------------- */
/*  margin padding */
/* --------------------------------------------------------------- */
.mb0 {
    margin-bottom: 0rem !important;
}
.mb10 {
    margin-bottom: 1rem !important;
}
.mb20 {
    margin-bottom: 2rem !important;
}
.mb30 {
    margin-bottom: 3rem !important;
}
.mb40 {
    margin-bottom: 4rem !important;
}
.mb50 {
    margin-bottom: 5rem !important;
}
.mb60 {
    margin-bottom: 6rem !important;
}
.mb70 {
    margin-bottom: 7rem !important;
}
.mb80 {
    margin-bottom: 8rem !important;
}
.mb90 {
    margin-bottom: 9rem !important;
}
.mb100 {
    margin-bottom: 10rem !important;
}

@media screen and (max-width: 767px) {
    .mb10 {
        margin-bottom: 0.5rem !important;
    }
    .mb20 {
        margin-bottom: 1rem !important;
    }
    .mb30 {
        margin-bottom: 1.5rem !important;
    }
    .mb40 {
        margin-bottom: 2rem !important;
    }
    .mb50 {
        margin-bottom: 2.5rem !important;
    }
    .mb60 {
        margin-bottom: 3rem !important;
    }
    .mb70 {
        margin-bottom: 3.5rem !important;
    }
    .mb80 {
        margin-bottom: 4rem !important;
    }
    .mb90 {
        margin-bottom: 4.5rem !important;
    }
    .mb100 {
        margin-bottom: 5rem !important;
    }
}

.mt0 {
    margin-top: 0rem !important;
}
.mt10 {
    margin-top: 1rem !important;
}
.mt20 {
    margin-top: 2rem !important;
}
.mt30 {
    margin-top: 3rem !important;
}
.mt40 {
    margin-top: 4rem !important;
}
.mt50 {
    margin-top: 5rem !important;
}
.mt60 {
    margin-top: 6rem !important;
}
.mt70 {
    margin-top: 7rem !important;
}
.mt80 {
    margin-top: 8rem !important;
}
.mt90 {
    margin-top: 9rem !important;
}

@media screen and (max-width: 767px) {
    .mt10 {
        margin-top: 0.5rem !important;
    }
    .mt20 {
        margin-top: 1rem !important;
    }
    .mt30 {
        margin-top: 1.5rem !important;
    }
    .mt40 {
        margin-top: 2rem !important;
    }
    .mt50 {
        margin-top: 2.5rem !important;
    }
    .mt60 {
        margin-top: 3rem !important;
    }
    .mt70 {
        margin-top: 3.5rem !important;
    }
    .mt80 {
        margin-top: 4rem !important;
    }
    .mt90 {
        margin-top: 4.5rem !important;
    }
    .mt100 {
        margin-top: 5rem !important;
    }
}

.pb0 {
    padding-bottom: 0 !important;
}
.pb10 {
    padding-bottom: 1rem !important;
}
.pb20 {
    padding-bottom: 2rem !important;
}
.pb30 {
    padding-bottom: 3rem !important;
}
.pb40 {
    padding-bottom: 4rem !important;
}
.pb50 {
    padding-bottom: 5rem !important;
}
.pb60 {
    padding-bottom: 6rem !important;
}
.pb70 {
    padding-bottom: 7rem !important;
}
.pb80 {
    padding-bottom: 8rem !important;
}
.pb90 {
    padding-bottom: 9rem !important;
}
.pb100 {
    padding-bottom: 10rem !important;
}
@media screen and (max-width: 767px) {
    .pb10 {
        padding-bottom: 0.5rem !important;
    }
    .pb20 {
        padding-bottom: 1rem !important;
    }
    .pb30 {
        padding-bottom: 1.5rem !important;
    }
    .pb40 {
        padding-bottom: 2rem !important;
    }
    .pb50 {
        padding-bottom: 2.5rem !important;
    }
    .pb60 {
        padding-bottom: 3rem !important;
    }
    .pb70 {
        padding-bottom: 3.5rem !important;
    }
    .pb80 {
        padding-bottom: 4rem !important;
    }
    .pb90 {
        padding-bottom: 4.5rem !important;
    }
    .pb100 {
        padding-bottom: 5rem !important;
    }
}

.pt0 {
    padding-top: 0 !important;
}
.pt10 {
    padding-top: 1rem !important;
}
.pt20 {
    padding-top: 2rem !important;
}
.pt30 {
    padding-top: 3rem !important;
}
.pt40 {
    padding-top: 4rem !important;
}
.pt50 {
    padding-top: 5rem !important;
}
.pt60 {
    padding-top: 6rem !important;
}
.pt70 {
    padding-top: 7rem !important;
}
.pt80 {
    padding-top: 8rem !important;
}
.pt90 {
    padding-top: 9rem !important;
}
.pt100 {
    padding-top: 10rem !important;
}
@media screen and (max-width: 767px) {
    .pt10 {
        padding-top: 0.5rem !important;
    }
    .pt20 {
        padding-top: 1rem !important;
    }
    .pt30 {
        padding-top: 1.5rem !important;
    }
    .pt40 {
        padding-top: 2rem !important;
    }
    .pt50 {
        padding-top: 2.5rem !important;
    }
    .pt60 {
        padding-top: 3rem !important;
    }
    .pt70 {
        padding-top: 3.5rem !important;
    }
    .pt80 {
        padding-top: 4rem !important;
    }
    .pt90 {
        padding-top: 4.5rem !important;
    }
    .pt100 {
        padding-top: 5rem !important;
    }
}

/* ------------------------------------------- */
/* pagination */
/* ------------------------------------------- */
.single-post-pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 7rem;

    @media screen and (max-width: 767px) {
        margin-top: 3.5rem;
    }

    .back {
        margin: 0 8.3rem;
        @media screen and (max-width: 767px) {
            margin: 0 1rem;
        }
    }

    .prev,
    .next {
        width: 14rem;
        @media screen and (max-width: 767px) {
            width: 4.6rem;
        }
        & a {
            position: relative;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            width: 100%;
            height: 4.6rem;
            font-weight: 500;
            text-decoration: underline;
            letter-spacing: 0.08rem;
            color: #000;
            box-sizing: border-box;

            @media screen and (max-width: 767px) {
                padding: 0;
                font-size: 0;
                color: transparent;
            }

            @media (hover: hover) and (pointer: fine) {
                &:hover {
                    text-decoration: none;
                }
            }

            &:after {
                content: "";
                position: absolute;
                top: 50%;
                margin-top: -2.3rem;
                display: block;
                width: 4.6rem;
                height: 4.6rem;
                border-radius: 2.3rem;
                background-color: #2987d9;
            }
            @media (hover: hover) and (pointer: fine) {
                &:hover:after {
                    background-color: #2987d9;
                }
            }
            @media screen and (max-width: 767px) {
                &:after {
                    width: 4.8rem;
                    height: 4.8rem;
                    margin-top: -2.4rem;
                    border-radius: 0;
                }
            }

            &:before {
                content: "";
                position: absolute;
                top: 50%;
                z-index: 1;
                margin-top: -0.4rem;
                display: block;
                width: 0.8rem;
                height: 0.8rem;
                border-top: 0.2rem solid #fff;
                box-sizing: border-box;
                transition: ease 0.25s border;
            }
        }
    }

    .prev {
        & a {
            padding-left: 7.3rem;
            &:after {
                left: 0;
            }
            &:before {
                left: 2.2rem;
                border-left: 0.2rem solid #fff;
                -webkit-transform: rotate(-45deg);
                transform: rotate(-45deg);
            }
            @media (hover: hover) and (pointer: fine) {
                &:hover:before {
                    border-left-color: #fff;
                }
            }
        }
    }
    .next {
        & a {
            padding-right: 7.3rem;
            &:after {
                right: 0;
            }
            &:before {
                right: 2.2rem;
                border-right: 0.2rem solid #fff;
                -webkit-transform: rotate(45deg);
                transform: rotate(45deg);
            }
        }
    }
}

/* navigation pagination */
.navigation.pagination {
    margin: 7rem 0 0;

    @media screen and (max-width: 767px) {
        margin: 3rem 0 0;
    }

    .disable {
        display: none;
    }

    .nav-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;

        @media screen and (max-width: 767px) {
            position: relative;
            padding-bottom: 5rem;
        }
    }

    .pager {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        margin: 0 0.8rem;
        width: 4.4rem;
        height: 5rem;
        font-family: var(--roboto);
        font-weight: bold;
        letter-spacing: 0.08em;
        color: #2987d9;
        background: #fff;
        text-decoration: none;
        transition: ease 0.25s all;
        /* border-radius: 0.4em; */
        border: 0.1rem solid #2987d9;

        @media screen and (max-width: 767px) {
            width: 3rem;
            height: 3rem;
        }

        @media (hover: hover) and (pointer: fine) {
            &:hover {
                color: #fff;
                background: #2987d9;
                border-color: #2987d9;
            }
        }
    }

    .pager.current {
        color: #fff;
        font-weight: bold;
        background: #2987d9;
        border-color: #2987d9;
    }

    .next,
    .prev {
        @media screen and (max-width: 767px) {
            /*position: absolute;*/
            /*bottom: 0;*/
            /*width: 48%;*/
            /*height: 4rem;*/
        }

        & a {
            position: relative;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            width: 4.4rem;
            height: 5rem;
            font-size: 0;
            font-family: var(--roboto);
            font-weight: bold;
            letter-spacing: 0.08em;
            text-decoration: none;
            color: #000;
            background: #fff;
            border: 0.1rem solid #2987d9;
            transition: ease 0.25s background, ease 0.25s color;

            @media screen and (max-width: 767px) {
                width: 2.8rem;
                height: 2.8rem;
            }

            @media (hover: hover) and (pointer: fine) {
                &:hover {
                    color: #fff;
                    background-color: #2987d9;
                    &:after {
                        border-top-color: #fff;
                    }
                }
            }

            &:after {
                content: "";
                position: absolute;
                top: 50%;
                margin-top: -0.4rem;
                display: block;
                width: 0.8rem;
                height: 0.8rem;
                border-top: 0.1rem solid #2987d9;
                box-sizing: border-box;
                transition: ease 0.25s border;
            }
        }
    }

    .prev {
        @media screen and (min-width: 767.01px) {
            margin-right: 0.8rem;
        }
        @media screen and (max-width: 767px) {
            margin-right: 1rem;
        }
        & a {
            &:after {
                left: 50%;
                margin-left: -0.2rem;
                border-left: 0.1rem solid #2987d9;
                -webkit-transform: rotate(-45deg);
                transform: rotate(-45deg);
            }
            @media (hover: hover) and (pointer: fine) {
                &:hover:after {
                    border-left-color: #fff;
                }
            }
        }
    }
    .next {
        @media screen and (min-width: 767.01px) {
            margin-left: 0.8rem;
        }
        @media screen and (max-width: 767px) {
            margin-left: 1rem;
            /*right: 0;*/
        }
        & a {
            &:after {
                right: 50%;
                margin-right: -0.2rem;
                border-right: 0.1rem solid #2987d9;
                -webkit-transform: rotate(45deg);
                transform: rotate(45deg);
            }
            @media (hover: hover) and (pointer: fine) {
                &:hover:after {
                    border-right-color: #fff;
                }
            }
        }
    }
}

/* ------------------------------------------- */
/* wordpress パスワードフォーム調整用 */
/* ------------------------------------------- */

.post-password-form {
    padding: 100px 30px;
    line-height: 1.8;
    text-align: center;
}

@keyframes slideAnimation {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}
