:root {
    --bg_color: #000000;
    --main_color: #364D42;
    --font_color: #c9c9c9;
}

/* 共通 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Noto Serif JP", serif;
    color: #fff;
    background-color: var(--bg_color);
    margin-top: 70px;
    margin-bottom: 110px;
}
.fixed {
    overflow: hidden;
}

h1,
h2,
h3,
h4,
p {
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
}

a:hover {
    opacity: 0.7;
}

li {
    list-style: none;
}

img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.inner {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.mail_link_box {
    text-align: center;
}

.mail_link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-right: 9px;
    background-color: #000;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
}

.mail_link.line {
    background-color: #50C651;
}

.section_ttl_box {
    text-align: center;
}

.section_ttl {
    font-size: 31px;
    font-weight: 500;
    line-height: 100%;
    /* letter-spacing: 0.12em; */
    margin-bottom: 10px;
}

.section_ttl_sm {
    font-family: "Snell Roundhand";
    font-size: 24px;
    font-weight: 500;
    color: var(--main_color);
    line-height: 100%;
    letter-spacing: 0.04em;
}

.section_ttl_sm>span {
    font-size: 28px;
}

.txt_br_pc {
    display: block;
}
.txt_br_sp {
    display: none;
}

.fade {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.5s, transform 1s;
    -webkit-transition: opacity 1.5s, transform 1s;
    -moz-transition: opacity 1.5s, transform 1s;
    -ms-transition: opacity 1.5s, transform 1s;
    -o-transition: opacity 1.5s, transform 1s;
    -webkit-transform: translateY(30px);
    -moz-transform: translateY(30px);
    -ms-transform: translateY(30px);
    -o-transform: translateY(30px);
}

.fv_txt_box.fade {
    transition: opacity 2.5s, transform 2s;
    -webkit-transition: opacity 2.5s, transform 2s;
    -moz-transition: opacity 2.5s, transform 2s;
    -ms-transition: opacity 2.5s, transform 2s;
    -o-transition: opacity 2.5s, transform 2s;
}

.fade.active {
    opacity: 1;
    transform: translateY(0px);
}

.link_btn {
    position: relative;
    display: block;
    width: 600px;
    font-size: 18px;
    color: #000;
    text-align: center;
    letter-spacing: 0.08em;
    padding-top: 18px;
    padding-bottom: 18px;
    margin-left: auto;
    margin-right: auto;
    background-image: linear-gradient(90deg, rgba(127, 127, 127, 0.18), rgba(255, 255, 255, 1) 30% 70%, rgba(127, 127, 127, 0.2));
}

.link_arrow {
    position: absolute;
    display: flex;
    top: 50%;
    right: 184px;
    width: auto;
    height: 11px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.link_arrow>img {
    -o-object-fit: contain;
    object-fit: contain;
}

@media only screen and (max-width: 1024px) {
    .inner {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media only screen and (max-width: 768px) {
    body {
        margin-top: 50px;
    }

    .section_ttl {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .section_ttl_sm {
        font-size: 18px;
    }

    .section_ttl_sm>span {
        font-size: 21px;
    }

    .txt_br_pc {
        display: none;
    }
    .txt_br_sp {
        display: block;
    }

    .link_btn {
        max-width: 335px;
        width: 100%;
        font-size: 18px;
        padding-top: 15px;
        padding-bottom: 15px;
        padding-right: 23px;
    }

    .link_arrow {
        height: 10px;
        right: 64px;
    }
}

/* header */
#header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    width: 100vw;
    height: 70px;
    background-color: #000000;
}

#header_box {
    /* padding-left: 80px;
    padding-right: 80px; */
    display: flex;
    justify-content: space-between;
}

/* ロゴ */
#header_logo_box {
    height: 70px;
}

#header_logo_box h1 {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

#header_logo_box h1 a {
    display: flex;
    width: 104px;
    height: auto;
}

#header_logo {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    transition: 0.3s;
}

#header_logo:hover {
    opacity: 0.5;
}

/* グローバルナビ */
#header_glonav_box {}

.header_glonav_list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 16px;
}

.header_glonav_list_sp {
    display: none;
}

.header_glonav_list_item {
    position: relative;
}

.header_glonav_list_item:hover {
    position: relative;
}


.header_glonav_list_item .header_glonav_list_item_link {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    height: 70px;
    text-decoration: none;
    font-size: 11px;
    line-height: 12px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0.04em;
    color: #ffffff;
    padding-left: 25px;
    padding-right: 25px;
}

.header_glonav_list_item .header_glonav_list_item_link:hover {
    opacity: 1;
}

.header_glonav_list_item .header_glonav_list_item_link::before {
    content: '';
}

.header_glonav_list_item:hover .header_glonav_list_item_link::before {
    position: absolute;
    z-index: -1;
    bottom: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 60px;
    background: rgba(20, 50, 41, 0.8);
}

.header_glonav_list_item .header_glonav_list_item_link span {
    display: block;
    font-size: 8px;
    font-weight: normal;
    letter-spacing: 0.08em;
    line-height: 100%;
    margin-top: 8px;
}

/* ドロップダウンメニュー */
/* メニューアイテムのホバースタイル */
.header_glonav_list_item:hover .drop-menu-list {
    visibility: visible;
    /* 下層メニューを表示 */
}

.drop-menu {
    position: relative;
}

.drop-menu-list {
    background: rgba(20, 50, 41, 0.8);
    left: 0;
    position: absolute;
    top: calc(100% - 5px);
    padding-top: 24px;
    padding-bottom: 17px;
    padding-left: 7px;
    padding-right: 7px;
    visibility: hidden;
    /* 下層メニューを非表示 */
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    z-index: 1;
}

.drop-menu-item:nth-child(n+2) {
    margin-top: 16px;
}

.drop-menu-item_link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    color: #fff;
    padding-bottom: 5px;
    border-bottom: 1px solid #fff;
}

.drop-menu-item_link>span:first-child {
    display: block;
    margin-right: 24px;
}


#hamburger {
    display: none;
}

#sp_glonav {
    display: none;
}



@media only screen and (max-width: 768px) {
    #header {
        height: 50px;
    }

    #header_box {
        /* padding-left: 20px;
        padding-right: 20px; */
    }

    #header_logo_box {
        height: 50px;
    }

    #header_logo_box h1 a {
        width: 104px;
        /* height: 29px; */
    }

    #header_logo {}

    .header_glonav_list {
        display: none;
    }

    .header_glonav_list_sp {
        display: flex;
        align-items: center;
        margin-right: 38px;
    }

    .header_glonav_list_item_sp {
        display: flex;
        align-items: center;
        height: 50px;
    }

    .header_glonav_list_item_link_sp {
        display: flex;
        width: 58px;
        height: 34px;
    }

    #sp_glonav {
        position: fixed;
        top: 0;
        left: 100%;
        background: rgba(20, 50, 41, 0.8);
        transition: .3s;
        z-index: 100;
        display: block;
    }

    .sp_glonav_box {
        width: calc(100vw - 40px);
        height: calc(100vh - 50px);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 50px;
        overflow-y: scroll;
    }

    #sp_glonav ul {
        width: 100%;
        height: auto;
        padding-top: 30px;
        padding-bottom: 30px;
        padding-left: 20px;
        padding-right: 20px;
    }

    #sp_glonav ul li {
        list-style-type: none;
    }

    .sp_glonav_link {
        position: relative;
        display: block;
        text-decoration: none;
        color: #fff;
        padding-bottom: 14px;
        padding-left: 16px;
        padding-right: 16px;
        border-bottom: 1px solid #fff;
        transition: .3s;
    }

    #sp_glonav ul li:nth-child(n+2) {
        margin-top: 25px;
    }

    .sp_glonav_link_txt>span:first-child {
        display: block;
        font-size: 18px;
        margin-bottom: 9px;
    }

    .sp_glonav_link_txt>span:last-child {
        display: block;
        font-size: 14px;
    }

    .sp_glonav_link_arrow {
        position: absolute;
        display: flex;
        top: 50%;
        right: 16px;
        width: 22px;
        height: 10px;
        transform: translateY(-50%);
    }

    .sp_glonav_link_arrow>img {
        width: 100%;
        height: 100%;
        -o-object-fit: contain;
        object-fit: contain;
    }

    #sp_glonav ul li.sp_glonav_tel_box {
        margin-top: 40px;
    }

    .sp_glonav_tel {
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: "Noto Sans JP", sans-serif;
        font-size: 34px;
        font-weight: bold;
        color: #fff;
    }

    .sp_glonav_tel_icon {
        width: 25px;
        height: auto;
        margin-right: 7px;
    }

    #hamburger {
        display: block;
        position: absolute;
        top: 0;
        right: 0px;
        width: 58px;
        height: 50px;
        cursor: pointer;
        transition: 1s;
        z-index: 1000;
    }

    #hamburger.open {
        background: rgba(20, 50, 41, 0.8);
    }

    .inner_line {
        display: block;
        position: absolute;
        left: 15px;
        width: 28px;
        height: 1px;
        background-color: #ffffff;
        transition: 0.3s;
        -webkit-transition: 0.3s;
        -moz-transition: 0.3s;
        -ms-transition: 0.3s;
        -o-transition: 0.3s;
    }

    .line1 {
        top: 14px;
    }

    .line2 {
        top: 24px;
    }

    .line3 {
        top: 34px;
    }

    .in {
        transform: translateX(-100%);
        -webkit-transform: translateX(-100%);
        -moz-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        -o-transform: translateX(-100%);
    }

    /* .Line_1,.Line_2,.Line_3{
    background: #000000;
    } */
    .line_open_1 {
        top: 22px;
        /*-45度回転させる*/
        transform: rotate(-225deg);
        -webkit-transform: rotate(-225deg);
        -moz-transform: rotate(-225deg);
        -ms-transform: rotate(-225deg);
        -o-transform: rotate(-225deg);
    }

    .line_open_2 {
        opacity: 0;
    }

    .line_open_3 {
        top: 22px;
        /*45度回転させる*/
        transform: rotate(225deg);
        -webkit-transform: rotate(225deg);
        -moz-transform: rotate(225deg);
        -ms-transform: rotate(225deg);
        -o-transform: rotate(225deg);
    }

    #sp_glonav ul li.sp_glonav_line_box {
        margin-top: 23px;
    }

    #sp_glonav ul li.sp_glonav_mail_box {
        margin-top: 9px;
    }

    .sp_glonav_box .mail_link {
        max-width: 291px;
        margin-left: auto;
        margin-right: auto;
        font-size: 16px;
        letter-spacing: 0.08em;
        padding-top: 10px;
        padding-bottom: 10px;
        padding-right: 9px;
    }

    .sp_glonav_box .mail_link>.mail_link_icon {
        width: 28px;
        height: 28px;
        margin-right: 8px;
    }

    .sp_glonav_box .mail_link:hover {
        color: #000000;
        background-color: #fff;
        opacity: 1;
    }


    #sp_glonav ul.sp_glonav_drop_menu {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        padding: 0;
        padding-left: 70px;
    }

    /* 展開時 */
    #sp_glonav ul.sp_glonav_drop_menu.active {
        max-height: 500px;
        /* 十分大きい値を指定 */
    }

    .sp_glonav_drop_menu_item:first-child {
        padding-top: 35px;
    }

    .sp_glonav_drop_menu_link {
        color: #fff;
    }
}



/* fv */
.fv_box {
    display: flex;
}

.fv_movie {
    width: 100%;
    height: 600px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center center;
    object-position: center center;
}

@media only screen and (max-width: 768px) {
    .fv_movie {
        height: 255px;
    }
}

/* assets */
.assets {}

.assets_box {
    text-align: center;
    padding-top: 139px;
    padding-bottom: 110px;
    background-image: url(../img/assets_bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.assets_box>h2 {
    font-size: 31px;
    font-weight: 500;
    letter-spacing: 0.16rem;
    margin-bottom: 62px;
}

.assets_box>p {
    font-size: 18px;
    line-height: 36px;
    letter-spacing: 0.14rem;
}

.assets_img_box {
    box-shadow: -8px -14px 26px rgba(0, 0, 0, 0.75);
}

@media only screen and (max-width: 768px) {
    .assets_box {
        padding-top: 95px;
        padding-bottom: 95px;
    }

    .assets_box>h2 {
        font-size: 22px;
        margin-bottom: 51px;
    }

    .assets_box>p {
        font-size: 12px;
    }

    .assets_img_box {
        box-shadow: -2px -4px 7px rgba(0, 0, 0, 0.75);
    }
}

/* lineup */
.lineup {
    padding-top: 159px;
    padding-bottom: 117px;
    background-image: url(../img/lineup_bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.lineup_box {
    max-width: 1000px;
    margin-top: 60px;
    margin-left: auto;
    margin-right: auto;
}

.lineup_splide {
    margin-bottom: 120px;
}

.splide__arrow {
    background: unset;
    width: 50px;
    height: auto;
    top: 37%;
}

.splide__arrow--prev {
    left: 22.3em;
}

.splide__arrow--next {
    right: 22.3em;
}

.splide__pagination {
    bottom: -35px;
}

.splide__pagination__page.is-active {
    background: #F0F0F0;
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
}

.splide__pagination__page {
    width: 11px;
    height: 11px;
    background: #4E4E4E;
    margin: 0 10px;
}

.lineup_img {
    box-shadow: 0px 0px 15px rgba(54, 77, 66, 1);
}

.lineup_txt {
    font-size: 21px;
    line-height: 31px;
    letter-spacing: 0.08em;
    margin-top: 25px;
    padding-bottom: 30px;
    border-bottom: 1px solid #364D42;
}



@media only screen and (max-width: 1024px) {
    .lineup_box {
        max-width: 700px;
    }
}

@media only screen and (max-width: 768px) {
    .lineup {
        padding-top: 88px;
        padding-bottom: 54px;
    }

    .lineup_box {
        margin-top: 43px;
    }

    .lineup_splide {
        margin-bottom: 106px;
    }

    .splide__arrow--prev {
        left: 0em;
    }

    .splide__arrow--next {
        right: 0em;
    }

    .splide__pagination__page {
        width: 8px;
        height: 8px;
        margin: 0 7px;
    }

    .lineup_txt {
        font-size: 16px;
        line-height: 25px;
        margin-top: 30px;
        padding-bottom: 15px;
    }

    .lineup .link_box {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* customers_story */
.customers_story {
    padding-top: 140px;
    padding-bottom: 204px;
    background-image: url(../img/customers_story_bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.customers_story .section_ttl_sm>span {
    font-size: 34px;
}

.customers_story_box {
    margin-top: 90px;
}

.customers_story_item {
    display: flex;
    border: 1px solid var(--main_color);
    box-shadow: 0px 0px 15px rgba(54, 77, 66, 1);
}

.customers_story_item:last-child {
    margin-top: 57px;
}

.customers_story_item_img {
    width: 47%;
}

.customers_story_item_txt_wrap {
    width: 53%;
    background-color: #1B1B1B;
    padding: 74px 47px;
}

.customers_story_item_txt_box {
    margin-bottom: 42px;
}

.customers_story_item_txt {
    font-size: 20px;
    letter-spacing: 0.12em;
    line-height: 100%;
}

.customers_story_item_txt>span {
    font-size: 31px;
}

.customers_story_item_txt:nth-child(n+2) {
    margin-top: 20px;
}

.customers_story_item_popup_btn_box {
    display: flex;
    justify-content: end;
}

.customers_story_item_popup_btn {
    width: 152px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
    color: #000000;
    letter-spacing: 0.04em;
    background-color: #304E41;
    border: 1px solid #000;
    padding-top: 8px;
    padding-bottom: 12px;
    cursor: pointer;
}

.customers_story_item_popup_btn:hover {
    opacity: 0.7;
}

.customers_story_item_popup_btn>span {
    display: inline-block;
    line-height: 100%;
    margin-right: 17px;
}

.customers_story_item_popup_btn_arrow {
    display: flex;
    width: auto;
    height: 10px;
    margin-top: 6px;
}

.customers_story_item_popup_btn_arrow>img {
    -o-object-fit: contain;
    object-fit: contain;
}


.modal-container {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    text-align: center;
    background: rgba(0, 0, 0, 0.6);
    overflow: auto;
    opacity: 0;
    visibility: hidden;
    transition: .3s ease-out;
    z-index: 9;
}

.modal-container::before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    height: 100%;
}

.modal-container.active {
    opacity: 1;
    visibility: visible;
}

.modal-body {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    max-width: 900px;
    width: 100%;
}

.modal-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 22px;
    height: 22px;
    background: unset;
    cursor: pointer;
    border: none;
}

.modal-content {
    display: flex;
    align-items: end;
    justify-content: space-between;
    background: #000;
    text-align: left;
    padding: 30px 25px 30px 32px;
    font-weight: bold;
}
.modal_img {
    display: flex;
    width: 37.1%;
    height: auto;
}
.modal_txt_box {
    width: 60%;
}
.modal_ttl>h2 {
    font-size: 31px;
    font-weight: 500;
    letter-spacing: 0.06em;
    line-height: 100%;
}
.modal_ttl>h2>span {
    font-size: 25px;
}
.modal_ttl>p {
    position: relative;
    font-size: 19px;
    letter-spacing: 0.06em;
    line-height: 32px;
    padding-bottom: 20px;
    margin-top: 15px;
    margin-bottom: 20px;
}
.modal_ttl>p::after {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    width: 100px;
    height: 3px;
    background-color: #fff;
}
.modal_txt_wrap {
    position: relative;
}
.modal_txt {
    font-size: 18px;
    line-height: 32px;
    letter-spacing: -0.07em;
}
.custom-scrollbar {
    display: none;
}

.modal_ttl_sp {
    display: none;
}

@media only screen and (max-width: 768px) {
    .customers_story {
        background-image: none;
        padding-top: 84px;
        padding-bottom: 100px;
    }

    .customers_story_item {
        display: block;
        border: none;
        box-shadow: none;
    }

    .customers_story_item:last-child {
        margin-top: 69px;
    }

    .customers_story_item_img {
        width: 100%;
        display: grid;
        box-shadow: 0px 0px 15px rgba(54, 77, 66, 1);
    }

    .customers_story_item_txt_wrap {
        width: 100%;
        padding: 0;
    }

    .customers_story_item_txt_box {
        padding: 26px 27px 0 27px;
    }

    .customers_story_item_txt:first-child {
        font-size: 20px;
    }

    .customers_story_item_txt:nth-child(2) {
        font-size: 14px;
        letter-spacing: 0.08em;
        margin-top: 14px;
    }

    .customers_story_item_txt:last-child {
        font-size: 18px;
        margin-top: 17px;
    }

    .customers_story_item_txt:last-child>span {
        font-size: 24px;
    }

    .customers_story_item_popup_btn {
        width: 100%;
    }

    .modal-body {
        height: 100vh;
    }
    .modal-container {
        height: auto;
        background: rgba(0, 0, 0, 1);
    }
    .modal-content {
        display: block;
        height: 550px;
        margin: 60px 20px 0;
        padding: 20px 14px;
    }
    .modal_img {
        width: 100%;
        height: auto;
        margin: auto;
    }
    .modal_txt_box {
        width: 100%;
        margin-top: 20px;
    }
    .modal_ttl {
        display: none;
    }
    .modal_ttl_sp {
        display: block;
    }
    .modal_ttl_sp>p {
        position: relative;
        font-size: 14px;
        letter-spacing: 0.06em;
    }
    .modal_ttl_sp>h2 {
        position: relative;
        font-size: 20px;
        padding-bottom: 25px;
        margin-top: 10px;
        margin-bottom: 25px;
    }
    .modal_ttl_sp>h2>span {
        font-size: 14px;
    }
    .modal_ttl_sp>h2::after {
        position: absolute;
        content: '';
        bottom: 0;
        left: 0;
        width: 100px;
        height: 3px;
        background-color: #fff;
    }
    .modal_txt {
        font-size: 12px;
        line-height: 24px;
        letter-spacing: -0.07em;
        height: 70px;
        padding-right: 10px;
        overflow-y: scroll;
    }

    .custom-scrollbar {
    position: absolute;
    display: block;
    top: 0;
    right: 2px;
    width: 8px;
    height: 100%;
    background: #202020;
    border-radius: 4px;
    }

    .custom-thumb {
        width: 3px;
        margin-left: auto;
        margin-right: auto;
        background: #666666;
        border-radius: 4px;
        position: absolute;
        top: 0;
        height: 50px; /* 初期値（動的に変更） */
        left: 50%;
        transform: translateX(-50%);
    }
}

/* link_list */
.link_list {
    padding-top: 218px;
    padding-bottom: 218px;
    background-image: url(../img/link_list_bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.link_list_box {
    display: flex;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}
.link_l {
    width: 50%;
}
.link_r {
    display: flex;
    flex-wrap: wrap;
    width: 50%;
}
.link_item {
    position: relative;
    width: 100%;
}
.link_item.sp {
    display: none;
}
.link_r .link_item {
    width: 50%;
}
.link_item_img {
    display: flex;
    aspect-ratio: 1 / 1;
}
.link_item_txt_box {
    position: absolute;
    top: 55%;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}
.link_item_txt {
    text-align: center;
}
.link_item_txt>p:first-child {
    font-size: 20px;
    line-height: 100%;
    text-shadow: 0 0 10px rgba(0, 0, 0);
}
.link_item_txt>p:nth-child(2) {
    font-size: 18px;
    line-height: 100%;
    text-shadow: 0 0 10px rgba(0, 0, 0);
    margin-top: 14px;
}
.link_item_link {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}
.link_item_link>a {
    display: block;
    width: 90px;
    height: auto;
    border: 1px solid #fff;
    font-size: 19px;
    color: #fff;
    text-align: center;
    letter-spacing: 0.04em;
    padding-bottom: 7px;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}
.link_item_link>a:hover {
    opacity: 1;
    background-color: #fff;
    color: #000;
}

@media only screen and (max-width: 768px) {
    .link_list {
        padding-top: 0;
        padding-bottom: 0;
    }
    .link_list_box {
        display: block;
    }
    .link_l {
        width: 100%;
    }
    .link_r {
        width: 100%;
    }
    .link_r .link_item {
        width: 100%;
    }
    .link_item_img {
        aspect-ratio: unset;
    }
    .link_item_txt_box {
        display: flex;
        justify-content: space-between;
        align-items: center;
        top: 50%;
        padding-left: 34px;
        padding-right: 47px;
    }
    .link_item_txt {
        text-align: left;
    }
    .link_item_txt>p:first-child {
        font-size: 18px;
    }
    .link_item_txt>p:nth-child(2) {
        font-size: 15px;
        margin-top: 7px;
    }
    .link_item_link {
        margin-top: 0;
    }
    .link_item_link>a {
        width: 70px;
        font-size: 14px;
        padding-top: 2px;
    }
    .link_item.pc {
        display: none;
    }
    .link_item.sp {
        display: block;
    }
}

/* shop_info */
.shop_info {
    padding-top: 225px;
    padding-bottom: 184px;
}
.shop_info_box {
    margin-top: 96px;
}

.shop_info_item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}
.shop_info_item_img {
    display: grid;
    width: 50%;
    box-shadow: 0px 0px 15px rgba(54, 77, 66, 1);
}
.shop_info_txt_box {
    width: 50%;
    padding-left: 77px;
}
.shop_ttl {
    font-size: 31px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: 0.08em;
    padding-bottom: 35px;
    margin-bottom: 43px;
    border-bottom: 1px solid var(--main_color);
}
.shop_txt {
    font-size: 18px;
    letter-spacing: 0.08em;
    line-height: 28px;
}
.shop_tel {
    font-size: 18px;
    letter-spacing: 0.08em;
    line-height: 100%;
    margin-top: 23px;
}
.shop_tel>a {
    color: #ffffff;
}
.shop_tel:first-child {
    margin-top: 30px;
}

.shop_info_map {
    width: 100%;
    height: 395px;
    -webkit-filter: grayscale(100%);
            filter: grayscale(100%);
    margin-bottom: 116px;
}
.shop_info_map.mb_none {
    margin-bottom: 0;
}

@media only screen and (max-width: 768px) {
    .shop_info {
        padding-top: 92px;
        padding-bottom: 86px;
    }
    .shop_info_box {
        margin-top: 48px;
    }
    .shop_info_item {
        margin-bottom: 18px;
    }
    .shop_info_item_img {
        width: 41%;
    }
    .shop_info_txt_box {
        width: 59%;
        padding-left: 20px;
    }
    .shop_ttl {
        font-size: 16px;
        letter-spacing: 0.05em;
        padding-bottom: 10px;
        margin-bottom: 10px;
    }
    .shop_txt {
        font-size: 11px;
        line-height: 17px;
    }
    .shop_tel {
        font-size: 11px;
        margin-top: 12px;
    }
    .shop_tel:first-child {
        margin-top: 30px;
    }
    .shop_info_map {
        height: 132px;
        margin-bottom: 45px;
    }
}

/* special */
.special {
    padding-top: 68px;
    padding-bottom: 46px;
    background-image: url(../img/special_bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.special_ttl_box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 554px;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 13px;
    border-bottom: 1px solid var(--main_color);
}
.special_ttl_box>h2 {
    font-size: 31px;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 100%;
}
.special_ttl_box>p {
    font-size: 31px;
    letter-spacing: 0.08em;
    line-height: 100%;
    padding: 5px 12px;
    background-color: var(--main_color);
}
.special_txt {
    font-size: 18px;
    text-align: center;
    letter-spacing: 0.14em;
    line-height: 36px;
    margin-top: 30px;
    margin-bottom: 30px;
}

@media only screen and (max-width: 768px) {
    .special {
        padding-top: 71px;
        padding-bottom: 50px;
        background-image: url(../img/special_bg_sp.webp);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
    }
    .special_ttl_box {
        display: block;
        text-align: center;
        padding-bottom: 23px;
        border-bottom: 1px solid var(--main_color);
    }
    .special_ttl_box>h2 {
        font-size: 23px;
        margin-bottom: 16px;
    }
    .special_ttl_box>p {
        display: inline-block;
        font-size: 23px;
        padding: 7px 12px;
    }
    .special_txt {
        font-size: 12px;
        text-align: left;
        letter-spacing: 0em;
        line-height: 29px;
        margin-top: 27px;
        margin-bottom: 110px;
    }
    .special_txt span {
        letter-spacing: 0.05em;
    }
}


/* footer */
.footer_logo {
    width: 252px;
    height: auto;
    padding-top: 50px;
    padding-bottom: 50px;
    margin-left: auto;
    margin-right: auto;
}
.copyright {
    font-size: 18px;
    text-align: center;
    letter-spacing: 0.02em;
    padding-top: 10px;
    padding-bottom: 10px;
}

@media only screen and (max-width: 768px) {
    .footer_logo {
        width: 190px;
        padding-top: 50px;
        padding-bottom: 35px;
    }
    .copyright {
        font-size: 13px;
        letter-spacing: 0.06em;
        padding-top: 7px;
        padding-bottom: 7px;
    }
}

.fixed_contents {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    background: rgba(255, 255, 255, 0.8);
    padding-top: 25px;
    padding-bottom: 25px;
}
.fixed_contents_box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 948px;
    margin-left: auto;
    margin-right: auto;
}
.fixed_contents_tel_link {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 41px;
    font-weight: bold;
    color: #000;
}

.fixed_contents_tel_link_icon {
    width: 30px;
    height: auto;
    margin-right: 7px;
}
.fixed_contents_mail {
    width: 30%;
}
.fixed_contents_box .mail_link {
    width: 100%;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 15px;
    color: #fff;
    letter-spacing: 0.08em;
    background-color: #000;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}
.fixed_contents_box .mail_link.line {
    background-color: #50C651;
}
.fixed_contents_box .mail_link .mail_link_icon {
    width: 30px;
    height: 30px;
    margin-right: 13px;
}

.fixed_contents_box_sp {
    display: none;
}

@media only screen and (max-width: 768px) {
    .fixed_contents {
        padding-top: 13px;
        padding-bottom: 13px;
    }
    .fixed_contents_box {
        display: none;
    }
    .fixed_contents_box_sp {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-left: 20px;
        padding-right: 20px;
    }
    .fixed_contents_box_sp>a {
        width: 31%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: "Noto Sans JP", sans-serif;
        font-size: 14px;
        color: #fff;
        letter-spacing: 0.08em;
        padding-top: 11px;
        padding-bottom: 11px;
        background-color: #000;
    }
    .fixed_contents_box_sp>a.line {
        background-color: #50C651;
    }
    .mail_link_icon {
        width: 28px;
        height: 28px;
        margin-right: 8px;
    }
}


/* message */
.message {
    padding-top: 130px;
    padding-bottom: 130px;
    background-image: url(../img/message_bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.message_box {
    margin-top: 74px;
}
.message_txt {
    font-size: 18px;
    text-align: center;
    line-height: 36px;
    letter-spacing: 0.14em;
}
.message_txt2 {
    font-size: 18px;
    text-align: center;
    line-height: 100%;
    letter-spacing: 0.14em;
    margin-top: 80px;
}
.message_txt_sp {
    display: none;
}

@media only screen and (max-width: 768px) {
    .message {
        padding-top: 45px;
        padding-bottom: 99px;
        background-image: url(../img/message_bg_sp.webp);
    }
    .message_box {
        margin-top: 18px;
    }
    .message_txt {
        display: none;
    }
    .message_txt_sp {
        display: block;
        font-size: 12px;
        text-align: left;
        line-height: 29px;
        letter-spacing: 0.07em;
    }
    .message_txt2 {
        font-size: 13px;
        margin-top: 40px;
    }
}

.company_profile {
    padding-top: 110px;
    padding-bottom: 120px;
    background-image: url(../img/company_profile_bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.company_profile_box {
    display: flex;
    justify-content: space-between;
    margin-top: 85px;
}
.company_profile_list {
    width: 47%;
}
.company_profile_item {
    display: flex;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0.08em;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--main_color);
}
.company_profile_item:nth-child(n+2){
    margin-top: 38px;
}
.company_profile_item>dt {
    width: 30%;
}
.company_profile_item>dd {
    width: 70%;
}
.company_profile_item_dd>a {
    display: flex;
    align-items: center;
    color: #fff;
}
.company_profile_item_address {
    letter-spacing: -0.01em;
}
.company_profile_item_arrow {
    display: flex;
    width: 23px;
    height: auto;
    margin-left: 9px;
}

@media only screen and (max-width: 768px) {
    .company_profile {
        padding-top: 61px;
        padding-bottom: 53px;
        background-image: url(../img/company_profile_bg_sp.webp);
    }
    .company_profile_box {
        display: block;
        margin-top: 84px;
    }
    .company_profile_list {
        width: 100%;
    }
    .company_profile_list:last-child {
        margin-top: 25px;
    }
    .company_profile_item {
        font-size: 14px;
        line-height: 21px;
        letter-spacing: 0;
        padding-bottom: 8px;
    }
    .company_profile_list:last-child .company_profile_item>dt {
        width: 35%;
    }
    .company_profile_list:last-child .company_profile_item>dd {
        width: 65%;
    }
    .company_profile_item:nth-child(n+2){
        margin-top: 22px;
    }
    .company_profile_item_arrow {
        width: 16px;
        margin-left: 10px;
    }
    .company_profile_item_address {
        letter-spacing: -0.1em;
    }
}

.shop_info.company {
    padding-top: 152px;
    padding-bottom: 155px;
}
@media only screen and (max-width: 768px) {
    .shop_info.company {
        padding-top: 76px;
        padding-bottom: 125px;
    }
}

/* sponsorship */
.sponsorship {
    padding-top: 130px;
    padding-bottom: 140px;
    background-image: url(../img/sponsorship_bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.sponsorship_box {
    margin-top: 42px;
}
.sponsorship_txt {
    font-size: 18px;
    text-align: center;
    line-height: 100%;
    letter-spacing: 0.08em;
    margin-bottom: 77px;
}
.sponsorship_img_box {
    display: flex;
    justify-content: space-between;
}
.sponsorship_img {
    display: flex;
    width: 49%;
}

@media only screen and (max-width: 768px) {
    .sponsorship {
        padding-top: 100px;
        padding-bottom: 45px;
        background-image: url(../img/sponsorship_bg_sp.webp);
    }
    .sponsorship_box {
        margin-top: 40px;
    }
    .sponsorship_txt {
        margin-bottom: 50px;
    }
    .sponsorship_img_box {
        display: block;
    }
    .sponsorship_img {
        width: 100%;
    }
    .sponsorship_img:last-child {
        margin-top: 40px;
    }
}