@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Akshar:wght@300..700&family=Noto+Sans+JP&display=swap');

/* BP
PC 1025~
Tab 600~1024
SP ~599 */

.dn {
    display: none;
}

:root {
    --size_ss: 14px;
    --size_sm: 16px;
    /* 基本の大きさ */
    --size_md: 20px;
    --size_lg: 27px;
    --size_xl: 40px;
    /* ちょっとしたマージン向け */
    --size_xxl: 64px;
    --accent_color: #FFD803;
    /* --main_color: #F5F5E6; */
    --main_color: #f7f2dd;
    --beige_dense: #7D7358;
    --beige_pale: #F9F7F3;
    --sub_color: #DBEAEA;
    --text_color: #2c2725;
    --title_color: #090807;
    --gray_color: #bdbbb8;
    --bg_color: #ffffff;
    --gutter_base: 8px;
    --section_gutter: 120px;
    --contents_gutter: 80px;
    --contents_side_gutter: 24px;
    --footer_gutter: 160px;
    --font_ja: "Noto Sans JP", sans-serif;
    --font_en: "Akshar", sans-serif;
}

html {
    font-size: 100%;
}

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

a:hover {
    opacity: 0.7;
}

body {
    color: var(--text_color);
    background-color: var(--bg_color);
    font-size: var(--size_sm);
    font-family: "Akshar", "Noto Sans JP", sans-serif;
    line-height: 1.8;
}

nav ul {
    display: flex;
    align-items: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.under_mv {
    min-height: 200px;
    margin-top: 68px;
}

.under_mv img {
    width: 100%;
    height: 100%;
    min-height: 200px;
    object-fit: cover;
}

@media screen and (max-width:1024px) {
    .under_mv {
        margin-top: 63px;
    }

    /*=====max-width:1024px=====*/
}

@media screen and (max-width:599px) {
    .under_mv {
        margin-top: 58px;
    }

    /*=====max-width:599px=====*/
}

/* ============================
* オリジナルスクロールアニメ
* ========================= */

[data-aos="blur_anime"] {
    opacity: 0;
}

[data-aos="blur_anime"].aos-animate {
    animation-name: blurAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}

@keyframes blurAnime {
    0% {
        filter: blur(10px);
        transform: scale(1.02);
        opacity: 0;
    }

    100% {
        filter: blur(0);
        transform: scale(1);
        opacity: 1;
    }
}

/* ============================
* header:共通事項
* ========================= */

.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 10;
}

.header .header_inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-left: 8%;
    padding-right: 8%;
    padding-top: 8px;
    padding-bottom: 8px;
    color: var(--title_color);
    font-size: 20px;
    border-bottom: 1px solid var(--gray_color);
    background-color: var(--bg_color);
}

.header .logo {
    width: 200px;
}

@media screen and (max-width:1024px) {

    .header .header_inner {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .header .logo {
        width: 180px;
    }

    /*=====max-width:1024px=====*/
}

@media screen and (max-width:599px) {
    .header .logo {
        width: 160px;
    }

    /*=====max-width:599px=====*/
}

/* ============================
* header: navigation
* ========================= */

.header nav ul li {
    position: relative;
    text-align: center;
    line-height: 1.5;
}

.header nav ul li a:hover {
    opacity: 1;
}

/* 現在位置マーカー */
.header nav ul li.current::after,
.header nav ul li:hover::after {
    position: absolute;
    display: block;
    content: "";
    bottom: calc(100% + 1px);
    left: calc(50% - 1.5px);
    width: 3px;
    height: 8px;

}

.header nav ul li.current::after {
    background-color: var(--title_color);
}

.header nav ul li:hover::after {
    background-color: var(--gray_color);
}

.header nav ul li.nav_contact:hover::after,
.header nav ul li.nav_contact.current::after {
    display: none;
}

@media screen and (max-width:1024px) {

    .header nav ul li.current::after,
    .header nav ul li:hover::after {
        top: calc(50% - 1.5px);
        left: calc(-3px - 1em);
        width: 8px;
        height: 3px;
    }

    .header nav ul li.nav_contact:hover::after,
    .header nav ul li.nav_contact.current::after {
        display: block;
    }

    /*=====max-width:1024px=====*/
}

/* ここまで */

nav ul li:not(:last-child) {
    margin-right: 1.6em;
}

.header nav ul li a {
    display: block;
    width: 100%;
    padding-right: var(--base_gutter);
    padding-left: var(--base_gutter);
}

.header nav ul li.nav_contact a {
    display: flex;
    align-items: center;
    padding-right: 20px;
    padding-left: 20px;
    border: 1px solid var(--text_color);
    border-radius: 999px;
}

.header nav ul li.nav_contact a::after {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-left: 0.5rem;
    background-image: url(../img/mail-line_black.svg);
    background-repeat: no-repeat;
}

.header nav ul li.nav_contact a:hover,
.header nav ul li.nav_contact.current a {
    color: #fff;
    background-color: #111;
    opacity: 1;
}

.header nav ul li.nav_contact a:hover::after,
.header nav ul li.nav_contact.current a::after {
    background-image: url(../img/mail-line_white.svg);
}

@media screen and (max-width:1024px) {
    .site_header_nav {
        position: fixed;
        width: 60%;
        height: 90%;
        right: 0;
        top: 0;
        background-color: var(--beige_pale);
        border-radius: 5px;
        transform: translateX(100%);
        transition: transform .6s;
    }

    body.is_nav_open .site_header_nav {
        transform: translateX(0);
    }

    .site_header_nav ul {
        height: 100%;
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    header nav ul li:not(:last-child) {
        margin-right: 0;
        margin-bottom: 1.5em;
    }

    .site_header_nav ul li a {
        font-size: 1.5rem;
    }

    .header nav ul li.nav_contact a {
        border: none;
    }

    .header nav ul li.nav_contact a:hover,
    .header nav ul li.nav_contact.current a {
        color: var(--title_color);
        background-color: transparent;
    }

    .header nav ul li.nav_contact a::after {
        display: none;
    }
}

/*=====max-width:1024px=====*/

@media screen and (max-width:599px) {
    .site_header_nav {
        width: 100%;
        height: 100%;
    }

    .site_header_nav ul li:not(:last-child) {
        margin-right: 0;
        margin-bottom: 2em;
    }

    .site_header_nav ul li a {
        font-size: 2rem;
    }

    /*=====max-width:599px=====*/
}

/* ============================
* tab以下はハンバーガーメニュー
* ========================= */

.header .site_header_navbtn {
    position: fixed;
    display: none;
    right: 1rem;
    top: 8px;
    width: 44px;
    height: 44px;
    font-size: 9px;
    text-align: center;
    line-height: 1;
}

@media screen and (max-width:1024px) {
    .header .site_header_navbtn {
        display: block;
    }

    /*=====max-width:1024px=====*/
}

.header .site_header_navbtn::after {
    position: absolute;
    display: block;
    content: "メニュー";
    top: calc(50% + 14px);
    left: 50%;
    width: 100%;
    transform: translateX(-50%);
    transform-origin: top left;
}

.site_header_navbtn span {
    position: absolute;
    left: 13px;
    display: block;
    height: 2px;
    background-color: var(--title_color);
    transition: transform .4s;
}

.site_header_navbtn span:first-child {
    width: 23px;
    top: calc(50% - 4px);
}

.site_header_navbtn span:nth-child(2) {
    width: 27px;
    top: calc(50% - 12px);

}

.site_header_navbtn span:nth-child(3) {
    width: 19px;
    top: calc(50% + 4px);

}

body.is_nav_open .site_header_navbtn span:first-child {
    transform: scale(0);
}

body.is_nav_open .site_header_navbtn span:nth-child(2) {
    left: 15px;
    width: 28px;
    transform: translateY(8px)rotate(-135deg);
}

body.is_nav_open .site_header_navbtn span:nth-child(3) {
    left: 15px;
    width: 28px;
    transform: translateY(-8px) rotate(135deg);
}

body.is_nav_open .header .site_header_navbtn::after {
    content: "";
}

/* CONTACTマークをハンバーガーの隣に */
.sp_nav_contact {
    display: none;
}

@media screen and (max-width:1024px) {
    .sp_nav_contact {
        position: fixed;
        display: block;
        top: 8px;
        right: calc(44px + 20px);
        width: 40px;
        height: 36px;
        margin-right: var(--contents_side_gutter);
        padding: 4px;
    }

    .sp_nav_contact span {
        display: block;
        font-size: 9px;
        line-height: 1.2;
        text-align: center;
    }

    body.is_nav_open .sp_nav_contact {
        display: none;
    }

    /*=====max-width:1024px=====*/
}

@media screen and (max-width:599px) {
    .sp_nav_contact {
        margin-right: 8px;
    }

    /*=====max-width:599px=====*/
}

/* ============================
* MAIN
* ========================= */
.under_subtitle {
    color: var(--title_color);
    font-size: var(--size_lg);
    font-weight: 500;
    text-align: center;
}

/* ============================
* footer_bf
* ========================= */

.footer_bf {
    overflow: hidden;
}

.footer_bf .footer_bf_inner {
    padding: var(--contents_side_gutter) 0;
    color: #fff;
    text-align: center;
}

.footer_bf .link_box a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: var(--contents_side_gutter);
}

.footer_bf .link_txt::before {
    content: "";
    display: block;
    width: 70px;
    height: 70px;
    margin: 0 auto;
}

.footer_bf .link_contact {
    background-image: url(../img/top_contact.jpg);
}

.footer_bf .link_ttl {
    font-size: var(--size_xl);
    margin-bottom: 0;
}

.footer_bf .link_contact {
    width: 100%;
    height: 150px;
    /* margin-top: var(--contents_side_gutter); */
    /* color: var(--accent_color); */
    background-color: #a26836;
    /* border: 1px solid #fff; */
}

.footer_bf .link_contact a {
    display: flex;
    align-items: center;
}



.footer_bf .link_contact .link_ttl::before {
    content: "";
    display: inline-block;
    width: 30px;
    height: 30px;
    margin-right: 1rem;
    background-image: url(../img/mail-line_white.svg);
}

.footer_bf .link_contact .link_ttl {
    margin-right: 2rem;
}

@media screen and (max-width:849px) {
    .footer_bf .link_contact a {
        flex-direction: column;
        align-items: center;
    }

    .footer_bf .link_contact .link_ttl {
        margin-right: 0;
    }

    /*=====max-width:849px=====*/
}

@media screen and (max-width:599px) {
    .footer_bf .link_box {
        width: 100%;
        height: 160px;
        margin-bottom: var(--contents_side_gutter);
        font-size: var(--size_ss);
    }

    .footer_bf .link_txt::before {
        width: 40px;
        height: 40px;
    }

    .footer_bf .link_txt p {
        font-size: var(--size_ss);
    }

    .footer_bf p.link_ttl {
        font-size: var(--size_lg);
        margin-bottom: 0;
    }

    .footer_bf .link_contact {
        margin-top: 0;
    }

    .footer_bf .link_contact .link_ttl::before {
        display: block;
        margin: 0 auto;
    }

    .footer_bf .link_contact a span {
        display: block;
    }

    /*=====max-width:599px=====*/
}

/* ============================
* footer
* ========================= */
.footer .footer_inner {
    background-color: #000;
    padding: 0 8%;
    color: var(--bg_color);
}

@media screen and (max-width:1024px) {
    .footer .footer_inner {
        padding: 0 1rem;
    }

    /*=====max-width:1024px=====*/
}

.footer_inner .wrapper {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--contents_gutter);
    padding: 36px 0;
    font-size: var(--size_sm);
}

@media screen and (max-width:599px) {
    .footer_inner .wrapper {
        margin-bottom: 0;
        flex-direction: column;
        align-items: center;
    }

    /*=====max-width:599px=====*/
}

.footer_company {
    display: flex;
    color: var(--bg_color);
}

.footer_company .logo {
    max-width: 200px;
}

.footer_company .item:not(:last-of-type) {
    margin-right: 1rem;
}

.footer_company .item.address {
    margin-top: 0.5em;
}

.footer_company .item.address p {
    margin-bottom: 0;
    font-size: var(--size_ss);
    line-height: 1.2;
}

.footer_inner nav ul {
    margin-bottom: var(--size_sm);
}

@media screen and (max-width:1024px) {


    .footer_company .logo {
        max-width: 180px;
    }

    /*=====max-width:1024px=====*/
}

@media screen and (max-width:762px) {
    .footer_company {
        flex-direction: column;
    }

    .footer_company .logo {
        margin-bottom: 0.5rem;
        margin-right: 0;
    }

    /*=====max-width:762px=====*/
}

@media screen and (max-width:599px) {
    .footer_inner nav ul {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .footer_inner nav ul li {
        width: 40%;
        text-align: center;
        margin-right: 0;
    }

    .footer_company .item.address {
        margin-bottom: 1rem;
    }

    .footer_company .item.address p {
        font-size: 12px;
        text-align: center;
    }

    /*=====max-width:599px=====*/
}

.footer_inner ul.sns {
    display: flex;
    justify-content: flex-end;
}

.footer_inner ul.sns li {
    margin-right: 30px;
    width: 30px;
}

@media screen and (max-width:599px) {
    .footer_inner ul.sns {
        justify-content: center;
    }

    /*=====max-width:599px=====*/
}

.footer_inner ul.sns li:last-of-type {
    margin-right: 0;
}

.footer_info {
    font-size: var(--size_ss);
    text-align: center;
}

.footer_info a:not(:last-child) {
    margin-right: 36px;
}

.footer_inner .copyright {
    text-align: center;
    padding: 0.5em 0 1em;
}

/* ============================
* under_MV・under_title
* ========================= */

.under_mv {
    margin-bottom: var(--section_gutter);
}

.under_mv img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
}

.under_title {
    color: var(--title_color);
    font-size: var(--size_xxl);
    margin-bottom: var(--contents_gutter);
    text-align: center;
    line-height: 1;
    font-weight: 600;
}

.under_title span {
    display: block;
    font-size: var(--size_ss);
    font-weight: normal;
}