/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/

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%;
    vertical-align: baseline;
    background: transparent;
}

body {
    line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

nav ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

a {
    margin: 0;
    padding: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

/* change colours to suit your needs */
ins {
    background-color: #ff9;
    color: #0c0e0f;
    text-decoration: none;
}

/* change colours to suit your needs */
mark {
    background-color: #ff9;
    color: #0c0e0f;
    font-style: italic;
    font-weight: bold;
}

del {
    text-decoration: line-through;
}

abbr[title],
dfn[title] {
    border-bottom: 1px dotted;
    cursor: help;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #cccccc;
    margin: 1em 0;
    padding: 0;
}

input,
select {
    vertical-align: middle;
}

/* -----------------------------------------------------------------------------
アニメ
----------------------------------------------------------------------------- */
@keyframes fuwafuwa {
    0% {
        transform: translateY(-5px);
    }

    100% {
        transform: translateY(5px);
    }
}

/* -----------------------------------------------------------------------------
画像
----------------------------------------------------------------------------- */
img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom
}

/* -----------------------------------------------------------------------------
共通
----------------------------------------------------------------------------- */
html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    background-color: #fff;
    color: #000;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-weight: normal;
    letter-spacing: 0.06em;
    -webkit-text-size-adjust: 100%;
}

.serif {
    font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "游明朝", YuMincho, "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

.sans {
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}

a {
    color: #000;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.clearfix::after {
    content: "";
    display: block;
    clear: both;
}


@media screen and (max-width: 750px) {
    html {
        /* font-size:24px */
        /* 24 / 750 */
        font-size: 3.2vw;
    }
}

/* -----------------------------------------------------------------------------
ボタン
----------------------------------------------------------------------------- */
.button {
    text-align: center;
}

.button_inner {
    display: inline-block;
    width: 100%;
    border: solid 1px #ccc;
    color: #ccc;
    padding: 2rem 0;
    text-align: center;
    text-decoration: none;

    transition-property: color background-color;
    transition-duration: 0.3s;
}

.button_inner:hover {
    background-color: #ccc;
    color: #fff;
}

.button_red .button_inner {
    border: solid 1px #D93924;
    color: #D93924;
}

.button_red .button_inner:hover {
    background-color: #D93924;
    color: #fff;
}

/* -----------------------------------------------------------------------------
レイアウト
----------------------------------------------------------------------------- */
.wrapper {
    max-width: 1366px;
    margin: auto;
}

.tow_columns {
    display: flex;
    justify-content: space-between;
}

header {
    width: 320px;
    flex-shrink: 0;
}

article {
    width: calc(100% - 410px);
}

@media screen and (max-width: 1366px) {

    header {
        width: 23.4%;
    }

    article {
        width: 70%;
    }
}

@media screen and (max-width: 1024px) {
    .tow_columns {
        display: block;
    }

    header {
        width: 100%;
        height: 28.8vw;
        float: none;
    }

    article {
        width: 100%;
        float: none;
    }

}



.c-icon::before {
    content: '';
    display: inline-block;
    width: 1em;
    height: 1em;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.icon_instagram::before {
    background-image: url(../images/common/icon_instagram.svg);
}

.icon_twitter::before {
    background-image: url(../images/common/icon_twitter.svg);
}

.icon_note::before {
    background-image: url(../images/common/icon_note.svg);
    transform: scale(1.33);
}

.icon_peatix::before {
    background-image: url(../images/common/icon_peatix.svg);
}

.icon_line::before {
    background-image: url(../images/common/icon_line.svg);
}



.section_title {
    font-weight: normal;
    text-align: center;
    margin-bottom: 50px;
    ;
}

.section_title>span {
    display: block;
}

.section_title .lang_en {
    font-size: 0.75rem;
    margin-bottom: 1em;
}

.section_title .lang_ja {
    font-size: 1.125rem;
}


/* -----------------------------------------------------------------------------
ヘッダ
----------------------------------------------------------------------------- */
header {}

header>.inner {
    position: sticky;
    top: 0
}

header h1 {
    margin: auto;
    padding: 50px 0;
    width: 50%;
}

header a:hover {
    text-decoration: none;
    opacity: 0.6;
}

.header_body_kissa {
    width: 160px;
    margin: 0 auto 50px auto;
}


.currently_being_held .currently_name {
    border: solid 1px #ccc;
    font-size: 1.125rem;
    font-weight: 600;
    padding: 23px 0;
    text-align: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.currently_being_held .currently_name a {
    color: #CE221A;
}

.currently_being_held dt {
    font-size: 0.875rem;
    margin-bottom: 2rem;
}

.currently_nav {
    border-bottom: solid 1px #ccc;
    padding: 33px 10px;
}

.currently_nav ul {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
}

a.modal_anchor {
    cursor: pointer;
}

.currently_nav a.disabled {
    opacity: 0.2;
}

.header_nav {
    padding: 14px 0 24px 0;
}

.header_nav a {
    display: block;
    padding: 13px 0;
    text-align: center;
    cursor: pointer;
}

.header_nav img {
    height: 45px;
}

.header_sns ul {
    display: flex;
    justify-content: center;
}

.header_sns li+li {
    margin-left: 1em;
}

.header_sns i {
    font-size: 1.5rem;
    filter: brightness(0);
}

.header_sns a {
    font-size: 0;
    line-height: 0;
}

.header_kissa {
    right: 5vw;
    top: 7vw;
    position: absolute;
    width: 14vw;

    transition-property: top;
    transition-duration: 0.3s;
}

@media screen and (max-width: 1024px) {
    header>.inner {
        width: 100%;
        height: 28.8vw;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 10;
        background-color: #fff;
        transition-property: height;
        transition-duration: 0.3s;
    }

    header h1 {
        width: 21.33vw;
        padding: 8vw 0;
        transition-property: width padding;
        transition-duration: 0.3s;
    }
}


/* -----------------------------------------------------------------------------
モバイルメニュー
----------------------------------------------------------------------------- */
.button_spmenu {
    display: block;
    width: 9.6vw;
    height: 9.6vw;
    position: absolute;
    top: 7vw;
    left: 8vw;
    z-index: 9;
    cursor: pointer;
    z-index: 2;

    transition-property: top;
    transition-duration: 0.3s;
}

.button_spmenu .menulabel {
    font-size: 1rem;
    text-align: center;
    color: #D93924;
}

.icon-animation {
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
}

.icon-animation span {
    width: 9.6vw;
    height: 2px;
    display: block;
    background: #D93924;
    position: absolute;
    left: 50%;
    top: calc(50% - 0.5px);
    margin-left: -4.8vw;
}

.icon-animation span {
    transition: all 0.3s;
}

.icon-animation .top {
    transform: translateY(-2.133vw) scale(1);
}

.icon-animation .middle {
    background: none;
    position: relative;
}

.icon-animation .middle:before,
.icon-animation .middle:after {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    content: "";
    width: 8vw;
    height: 2px;
    background: #D93924;
    display: block;
    transform: rotate(0deg);
    position: absolute;
}

.icon-animation .bottom {
    width: 6vw;
    transform: translateY(2.133vw) scale(1);
}

body.is_spmenu .icon-animation .top {
    transform: translateY(0px) scale(0);
}

body.is_spmenu .icon-animation .bottom {
    transform: translateY(0px) scale(0);
}

body.is_spmenu .icon-animation .middle:before {
    width: 9.6vw;
    transform: rotate(45deg) scaleX(1.000);
}

body.is_spmenu .icon-animation .middle:after {
    width: 9.6vw;
    transform: rotate(-45deg) scaleX(1.000);
}

@media screen and (max-width: 1024px) {

    .header_body {
        position: fixed;
        top: 28.8vw;
        left: -100%;
        width: 100%;
        transition-property: left top height;
        transition-duration: 0.3s;
        background-color: #fff;
        height: calc((var(--vh, 1vh) * 100) - 28.8vw);
        overflow-y: scroll;
        overscroll-behavior: contain;
        padding-bottom: 10vw;
        border-top: solid 1px #ccc;
    }

    .header_nav a {
        padding: 0.5rem 0;
        width: 60%;
        margin: auto;
    }

    .header_nav img {
        height: 10vw;
    }

    .header_sns {
        padding-bottom: 8vw;
    }

    body.is_spmenu .header_body {
        left: 0;
    }

    .header_body_kissa {
        width: 39vw;
        margin: 0 auto;
        padding: 4vw;
    }

    .header_body_kissa a {
        display: block;
        padding: 4vw;
    }

    .currently_being_held .currently_name {
        padding: 1.5em 0;
        margin: auto 1.5rem;
    }

    .currently_being_held dt {
        margin-bottom: 1.5rem;
    }

    .currently_nav {
        padding: 1.5rem;

    }

    body.is_scrolled .header_body {
        top: 18vw;
        height: calc((var(--vh, 1vh) * 100) - 18vw);
    }

    body.is_scrolled header>.inner {
        height: 18vw;
    }

    body.is_scrolled header h1 {
        width: 18vw;
        padding: 4vw 0 0 0;
    }

    body.is_scrolled .button_spmenu {
        top: 2vw;
    }

    body.is_scrolled .header_kissa {
        top: 2.5vw;
    }
}


/* -----------------------------------------------------------------------------
メインビジュアル
----------------------------------------------------------------------------- */
.mainvisual {
    width: calc((100vw - 1366px - var(--scrollbar-width)) / 2 + 100%);
}

.mainvisual_swiper {
    padding-bottom: 25px;
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: left;
}

.swiper-pagination-bullet {
    opacity: 1;
    border: solid 1px #ccc;
    background-color: transparent;
    width: 6px;
    height: 6px;
}

.swiper-pagination-bullet-active {
    background-color: #ccc;
}

@media screen and (max-width: 1366px) {
    .mainvisual {
        width: 100%;
    }
}

@media screen and (max-width: 750px) {
    .mainvisual_swiper .swiper-slide {
        position: relative;
    }

    .mainvisual_swiper .swiper-slide img {
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        width: auto;
        max-width: initial;
        height: 110vw;
    }

    .swiper-horizontal>.swiper-pagination-bullets,
    .swiper-pagination-bullets.swiper-pagination-horizontal,
    .swiper-pagination-custom,
    .swiper-pagination-fraction {
        width: calc(100% - 1rem);
        padding: 0 0.5rem;
    }

}

/* -----------------------------------------------------------------------------
コンセプト
----------------------------------------------------------------------------- */
.section_concept {
    padding-top: 60px;
    padding-bottom: 60px;
    border-bottom: solid 1px #ccc;
}

.concept_lead {
    text-align: center;
    font-size: 1.125rem;
    line-height: 2.333;
    letter-spacing: 0.12em;
    margin-bottom: 5.625rem;
}

.concept_items ul {
    display: flex;
    flex-wrap: wrap;
    list-style-type: none;
}

.concept_items li {
    flex-basis: 48%;
    margin-bottom: 3rem;
}

.concept_items li:nth-child(2n) {
    margin-left: 4%;
}

.concept_items li span {
    display: block;
}

.item_thumbnail {
    margin-bottom: 1.25rem;
}

.item_excerpt {
    text-align: center;
    line-height: 1.5;
}

@media screen and (max-width: 1024px) {
    .section_concept {
        padding-top: 10vw;
        padding-bottom: 10vw;
        width: 84%;
        margin: auto;
    }
}

/* -----------------------------------------------------------------------------
商品ラインナップ
----------------------------------------------------------------------------- */
.section_products {
    padding-top: 90px;
    padding-bottom: 110px;
    border-bottom: solid 1px #ccc;
}

.products_widget {
    position: relative;
}

.products_widget a {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: calc(100% - 20px);
    background: url(../images/common/instagram_cover.png) center center;
    opacity: 0.01;
    transition-property: opacity;
    transition-duration: 0.3s;
}

.products_widget a:hover {
    opacity: 0.3;
}

@media screen and (max-width: 1024px) {
    .section_products {
        padding-top: 20vw;
        padding-bottom: 20vw;
        width: 84%;
        margin: auto;
    }
}

/* -----------------------------------------------------------------------------
スケジュール
----------------------------------------------------------------------------- */
.section_schedule {
    padding-top: 90px;
    padding-bottom: 120px;
    border-bottom: solid 1px #ccc;
}

.section_schedule .section_title {
    margin-bottom: -2.5rem;
    position: relative;
}

.schedule_sentence {
    max-width: 600px;
    width: 90%;
    margin: -5rem auto 0 auto;
}

.schedule_sentence .sentence_catch {
    font-size: 1.125rem;
    line-height: 2.333;
    margin-bottom: 2.5em;
}

.schedule_sentence .sentence_lead {
    font-size: 0.875rem;
    line-height: 2;
}

@media screen and (max-width: 1024px) {
    .section_schedule {
        padding-top: 20vw;
        padding-bottom: 16vw;
        width: 84%;
        margin: auto;
    }

    .section_schedule .section_title {
        margin-bottom: 1rem;
    }

    .schedule_sentence {
        margin-top: -1.5rem;
        width: 100%;
    }

    .schedule_sentence .sentence_catch {
        font-size: 1.5rem;
        line-height: 1.7;
    }

    .schedule_sentence .sentence_lead {
        font-size: 1.166rem;
    }
}




/* -----------------------------------------------------------------------------
ソーシャル
----------------------------------------------------------------------------- */
.section_social {
    padding-top: 90px;
    padding-bottom: 20px;
    border-bottom: solid 1px #ccc;
}


.social_items ul {
    display: flex;
    flex-wrap: wrap;
    list-style-type: none;
}

.social_items li {
    flex-basis: 46%;
    margin-bottom: 3rem;
}

.social_items li:nth-child(2n) {
    margin-left: 8%;
}

.social_items li>.inner {
    display: flex;
}

.social_items .item_thumbnail {
    flex-basis: 37%;
    flex-shrink: 0;
    margin-right: 8%;
}

.social_items .item_body {
    padding-top: 1rem;
}

.social_items .item_subject {
    font-size: 0.75rem;
    margin-bottom: 1em;
}

.social_items .item_subject .c-icon {
    font-size: 1.5rem;
    margin-right: 0.5em;
    vertical-align: middle;
}

.social_items .item_explain {
    font-size: 0.875rem;
    line-height: 1.7;
}

@media screen and (max-width: 1024px) {
    .section_social {
        padding-top: 20vw;
        padding-bottom: 10vw;
        width: 84%;
        margin: auto;
    }
}

@media screen and (max-width: 750px) {
    .section_social {
        padding-top: 12vw;
        padding-bottom: 10vw;
    }

    .social_items li {
        flex-basis: 100%;
        margin-bottom: 5vw;
    }

    .social_items li:nth-child(2n) {
        margin-left: 0;
    }

    .social_items .item_body {
        padding-top: 0;
    }

    .social_items .item_subject {
        font-size: 1rem;
    }

    .social_items .item_subject .c-icon {
        font-size: 1.5rem;
    }

    .social_items .item_explain {
        font-size: 1rem;
    }
}


/* -----------------------------------------------------------------------------
ショップ＆カフェ
----------------------------------------------------------------------------- */
.section_shopandcafe {
    padding-top: 120px;
    padding-bottom: 80px;
}

.section_shopandcafe .section_title {
    margin-bottom: 100px;
}

.shopandcafe_slider {
    margin-bottom: 4rem;
}

.shopandcafe_swiper {
    padding-bottom: 25px;
}

.shopandcafe_slider .swiper-pagination {
    text-align: right;
}

.shopandcafe_item+.shopandcafe_item {
    margin-top: 3.5rem;
    padding-top: 3.5rem;
}

.shopandcafe_body {
    font-size: 0.875rem;
    max-width: 600px;
    width: 90%;
    margin: auto;
}

.shopandcafe_catch {
    font-size: 1.125rem;
    font-weight: normal;
    line-height: 2.333;
    margin-bottom: 3rem;
}

.shopandcafe_lead {
    line-height: 2;
    margin-bottom: 3rem;
}

.shopandcafe_data {
    line-height: 2;
}

.shopandcafe_data ul {
    list-style-type: none;
}

.shopandcafe_data li {
    margin-bottom: 0.5em;
}

.shopandcafe_data dl {
    display: flex;
}

.shopandcafe_data dt {
    margin-right: 4em;
}

.section_shopandcafe .button {
    margin-top: 5rem;
}

@media screen and (max-width: 750px) {
    .section_shopandcafe {
        padding-top: 20vw;
        padding-bottom: 5vw;
        width: 84%;
        margin: auto;
    }

    .shopandcafe_item+.shopandcafe_item {
        margin-top: 0;
        padding-top: 7rem;
    }

    .section_shopandcafe .section_title {
        margin-bottom: 15vw;
    }

    .shopandcafe_catch {
        font-size: 1.5rem;
        line-height: 1.7;
    }

    .shopandcafe_lead,
    .shopandcafe_data {
        font-size: 1.166rem;
    }
}

/* -----------------------------------------------------------------------------
マップ
----------------------------------------------------------------------------- */
article.one_column {
    clear: both;
    width: 100%;
    float: none;
}

.section_gmap {
    padding-top: 90px;
    padding-bottom: 60px;
}

.section_gmap .gmap {
    width: 100%;
    height: 530px;
    filter: grayscale(1);
}

.section_gmap .gmap iframe {
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 750px) {
    .section_gmap {
        padding-top: 18vw;
        padding-bottom: 0;
    }

    .section_gmap .gmap {
        height: 70vw;
    }
}

/* -----------------------------------------------------------------------------
ABOUT
----------------------------------------------------------------------------- */

.section_about {
    padding-top: 60px;
    padding-bottom: 120px;
    border-bottom: solid 1px #ccc;
}

.about_visual {
    margin-bottom: 5.625rem;
}

.about_body {
    font-size: 0.875rem;
    line-height: 2;
    max-width: 600px;
    width: 90%;
    margin: auto;
}

.about_body p+p {
    margin-top: 2em;
}

.about_body .button {
    margin-top: 80px;
}

@media screen and (max-width: 1024px) {
    .section_about {
        padding-top: 18vw;
        padding-bottom: 18vw;
        overflow: hidden;
    }
}

@media screen and (max-width: 750px) {

    .about_visual {
        height: 95vw;
        position: relative;
        margin-bottom: 4rem;
    }

    .about_visual img {
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        width: auto;
        max-width: initial;
        height: 100%;
    }

    .about_body {
        width: 84%;
        font-size: 1.166rem;
    }

    .about_body .button {
        margin-top: 3rem;
    }
}

/* -----------------------------------------------------------------------------
バナー
----------------------------------------------------------------------------- */
.section_banners {
    padding-top: 90px;
    padding-bottom: 130px;
    border-bottom: solid 1px #ccc;
}

.banner_items {
    overflow: hidden;
}

.banner_items .item_thumbnail {
    display: block;
    margin-bottom: 30px
}

.banner_items .item_caption {
    display: block;
    font-size: 0.8125rem;
    line-height: 1.5;
}

@media screen and (max-width: 750px) {
    .banner_swiper {
        width: 60%;
        margin: auto;
        overflow: visible;
    }
}

@media screen and (max-width: 750px) {
    .section_banners {
        padding-top: 18vw;
        padding-bottom: 18vw;
    }

    .banner_items .item_thumbnail {
        margin-bottom: 1em
    }

    .banner_items .swiper-slide {
        /* flex-basis: 70%; */
    }
}


/* -----------------------------------------------------------------------------
パートナー
----------------------------------------------------------------------------- */
.section_partners {
    padding-top: 90px;
    padding-bottom: 120px;
    border-bottom: solid 1px #ccc;
}

.partner_items ul {
    display: flex;
    flex-wrap: wrap;
    list-style-type: none;
    justify-content: center;
}

.partners_main ul {
    row-gap: 2.13%;
    column-gap: 20px;
}

.partners_main li {
    flex-basis: 23.4%;
    max-width: 23.4%;
}

.partners_sub ul {
    row-gap: 2.05%;
    column-gap: 20px;
}

.partners_sub li {
    flex-basis: 10.7%;
    max-width: 10.7%;
}

@media screen and (max-width: 750px) {
    .section_partners {
        padding-top: 18vw;
        padding-bottom: 10vw;
        width: 84%;
        margin: auto;
    }

    .partner_items ul {
        /* justify-content: space-between */
    }

    .partners_main ul {
        row-gap: 4%;
        column-gap: 1rem;
    }

    .partners_main li {
        flex-basis: 48%;
        max-width: 48%;
    }

    .partners_sub ul {
        row-gap: 5%;
        column-gap: 1rem;
    }

    .partners_sub li {
        flex-basis: 21%;
        max-width: 21%;
    }


}



/* -----------------------------------------------------------------------------
モットー
----------------------------------------------------------------------------- */
.section_motto {
    padding-top: 90px;
    padding-bottom: 90px;
    border-bottom: solid 1px #ccc;
}

.section_motto>.inner {
    text-align: center;
    font-size: 1.25rem;
}

.motto_sentence {
    height: 27px;
}

@media screen and (max-width: 750px) {
    .section_motto {
        padding-top: 10vw;
        padding-bottom: 10vw;
        width: 84%;
        margin: auto;
    }

    .section_motto>.inner {
        font-size: 1.166rem;
    }

    .motto_sentence {
        height: 3.6vw;
    }
}

/* -----------------------------------------------------------------------------
フッター
----------------------------------------------------------------------------- */
footer {
    padding-top: 60px;
    padding-bottom: 60px;
}

footer>.inner {
    margin: auto;
}

.footer_upper {
    display: flex;
    justify-content: space-between;
    margin-bottom: 90px;
}

.footer_upper>* {
    flex-basis: 33.333%;
    flex-shrink: 0;
}

.footer_address {
    font-size: 0.75rem;
    line-height: 2;
}

.footerlogo div {
    width: 108px;
    margin: auto;
}

.footer_sns ul {
    display: flex;
    justify-content: flex-end;
}

.footer_sns li+li {
    margin-left: 1em;
}

.footer_sns i {
    font-size: 1.5rem;
    filter: brightness(0);
}

.footer_sns a {
    font-size: 0;
    line-height: 0;
}

.footer_sns a:hover {
    text-decoration: none;
    opacity: 0.7;
}

.footer_sponser {
    margin-bottom: 45px;
}

.footer_sponser ul {
    display: flex;
    flex-wrap: wrap;
    list-style-type: none;
    justify-content: center;

    row-gap: 2.05%;
    column-gap: 20px;
}

.footer_sponser li {
    flex-basis: 10.7%;
}

.footer_copy {
    text-align: center;
    font-size: 0.75rem;
}

@media screen and (max-width: 1420px) {
    footer>.inner {
        width: calc(100% - 60px)
    }
}

@media screen and (max-width: 750px) {
    footer {
        padding-top: 16vw;
        padding-bottom: 10vw;
        width: 84%;
        margin: auto;
    }

    footer>.inner {
        width: 100%;
    }

    .footer_upper {
        flex-direction: column-reverse;
        margin-bottom: 10vw;
    }

    .footer_address {
        font-size: 1rem;
        line-height: 1.5;
        text-align: center;
        margin-top: 11.2vw;
    }

    .footerlogo div {
        width: 21.33vw;
    }

    .footer_sns {
        display: none;
    }

    .footer_sponser {
        margin-bottom: 2rem;
    }

    .footer_sponser ul {
        justify-content: space-between;
        row-gap: initial;
        column-gap: 1rem;
    }

    .footer_sponser li {
        flex-basis: 22%;
    }

}



/* -----------------------------------------------------------------------------
モーダル
----------------------------------------------------------------------------- */
.overlay {
    position: fixed;
    width: 100%;
    height: 100vh;
    display: block;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 20;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition-property: opacity visibility;
    transition-duration: 0.3s;
}

.overlay .modal {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.overlay .modal_inner {
    padding: 100px;
}

.overlay .modal_content {
    display: none;
}

.overlay .modal_content.is_current {
    display: block
}

body.is_modal .overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

@media screen and (max-width: 750px) {
    .overlay .modal_inner {
        padding: 5vw;
    }

}


/* ************************************ 表示
*/
/* ************************************ 
*/
@media screen and (min-width: 751px) {
    .disp_sp {
        display: none;
    }
}

@media screen and (max-width: 750px) {
    .disp_pc {
        display: none;
    }

}