/* フォントの埋め込み
====================================================*/
@font-face {
    font-family: 'NotoSansJP-Regular';
    src: url('../font/NotoSansJP-Regular.woff') format('woff');
}

@font-face {
    font-family: 'NotoSansJP-Medium';
    src: url('../font/NotoSansJP-Medium.woff') format('woff');
}

@font-face {
    font-family: 'NotoSansJP-Bold';
    src: url('../font/NotoSansJP-Bold.woff') format('woff');
}

@font-face {
    font-family: 'NotoSerifJP-Regular';
    src: url('../font/NotoSerifJP-Regular.woff') format('woff');
}

@font-face {
    font-family: 'NotoSerifJP-Medium';
    src: url('../font/NotoSerifJP-Medium.woff') format('woff');
}

@font-face {
    font-family: 'NotoSerifJP-Bold';
    src: url('../font/NotoSerifJP-Bold.woff') format('woff');
}

@font-face {
    font-family: 'Ryumin_Pro_L-KL';
    src: url('../font/Ryumin_Pro_L-KL.woff') format('woff');
}

/* 共通パーツ
====================================================*/
.sp {
    display: none;
}

a:hover {
    opacity: 0.7;
    transition: 0.3s;
}

img {
    width: 100%;
    height: auto;
    pointer-events: none;
}

.container {
    max-width: 1180px;
    width: 100%;
    margin: auto;
    padding: 0 30px;
}

@media screen and (max-width: 896px) {
    .pc {
        display: none;
    }

    .sp {
        display: block;
    }


}

@media screen and (max-width: 767px) {
    .container {
        max-width: unset;
        padding: 0 25px;
    }
    
}

/* モーダル
====================================================*/
.for-modal {
    display: none;
    position: fixed;
    z-index: 2;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.7);
}

.for-modal.is-show {
    display: block;
}

.js-modal-close {
    z-index: 10;
}

.modal-content {
    position: relative;
    margin: 15% auto;
    margin: 5% auto;
    padding: 20px;
    padding: 0;
    width: 40%;
    width: 30%;
}

.modal-content-batsu {
    position: absolute;
    top: -1em;
    right: -0.94em;
    font-size: 100%;/*ボタンの大きさ*/
    font-weight: bold;
    background-color: #fff;
    border: 1px solid #333;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    width: 2em;
    line-height: 1.88em;
    cursor: pointer;
    transition: .2s;
}

.modal-content-batsu:hover{
    background: #333;
    border-color: #333;
    color: #FFF;
}

.modal_image {
    margin-bottom: 10px;
}

.modal_image img {
    height: auto;
    object-fit: contain;
}

.modal_image_text {
    color: #fff;
    text-align: center;
}

.modal__bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media screen and (min-width: 1600px) {
    .modal-content {
        width: 25%;
    }

}


@media screen and (max-width: 896px) {
    .modal-content {
        width: 70%;
        margin: 25% auto;
    }

}

@media screen and (max-width: 767px) {
    .modal-content {
        width: 80%;
        margin: 30% auto;
    }

    .modal_image img {
        height: 100vw;
        height: auto;
    }
}


/* 各セクション
====================================================*/


/* --- fv --- */
.fv {
    position: relative;
    color: #fff;
    background-image: url(../img/fv.jpg);
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
}

.fv::after {
    content: "";
    width: 100%;
    height: 20%;
    display: block;
    background: linear-gradient(rgba(255,255,255,0) 0, #082516 55%);
    position: absolute;
    bottom: -5px;
    left: 0;
  }

.fv_container {
    padding: 45px 30px 150px;
    padding: 45px 30px 10%;
}

.fv_main-title {
    font-size: 120px;
    font-family: 'Ryumin_Pro_L-KL';
    text-align: center;
    /* letter-spacing: 0.08em; */
    letter-spacing: -0.1em;
    opacity: 0.7;
    margin-top: 85px;
    text-shadow:
        -8.8px 0px 20px rgb(0 0 0 / 28%),
        -8.8px 0px 20px rgb(0 0 0 / 28%),
        8.8px 0px 20px rgb(0 0 0 / 28%),
        8.8px 0px 20px rgb(0 0 0 / 28%);
}


.fv_side-text {
    font-size: 18px;
    font-family: 'NotoSerifJP-Medium';
    line-height: 2.095;
    margin-left: auto;
    /* letter-spacing: 0.36em; */
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
}

.fv_side-text .punctuation {
    position: relative;
    top: -0.7em;
    left: 0.7em;
}

.fv_sign {
    width: 25%;
    width: 280px;
    margin: -10px auto 20px;
}

.fv_information {
    text-align: center;
}

.fv_information p {
    display: inline-block;
    font-size: 18px;
    font-family: 'NotoSansJP-Bold';
    border: 1px solid #fff;
    margin: 0 auto;
    text-align: center;
    padding: 8px 20px;
    letter-spacing: 0.16em;
}

.fv_opus_name {
    color: #ccc;
    position: relative;
    font-size: 10px;
    font-family: "NotoSansJP-Regular";
    padding-left: 15px;
}

@media screen and (min-width: 1600px) {
    .fv_container {
        padding: 5% 30px 12%;
    }

    .fv_main-title {
        margin-top: 20%;
    }
}

@media screen and (max-width: 1140px) {
    .fv::after {
        height: 15%;
    }
}

@media screen and (max-width: 896px) {
    .fv {
        background-image: url(../img/fv_sp.jpg);
    }

    .fv::after {
        height: 24%;
    }

    .fv_container {
        padding: 70px 30px 0;
        /* padding: 70px 30px 7vw; */
    }

    .fv_side-text {
        font-size: 25px;
        letter-spacing: 0.36em;
        margin-bottom: 0px;
    }

    .fv_wrapper {
        position: relative;
        top: 85px;
        z-index: 1;
    }

    .fv_side-text .punctuation {
        top: 0em;
    }

    .fv_main-title {
        font-size: 140px;
        line-height: 1;
        margin-top: 0;
    }

    .fv_sign {
        width: 40%;
        width: 285px;
    }

    .fv_information p {
        font-size: 30px;
    }

    .fv_opus_name {
        font-size: 18px;
    }

    .fv_information {
        margin-bottom: 50px;
    }
}

@media screen and (max-width: 767px) {
    .fv {
        height: 142vw;
    }

    .fv::after {
        height: 28%;
    }

    .fv_container {
        padding: 40px 25px 0;
        padding: 10.7vw 25px 0;
    }

    .fv_side-text {
        font-size: 12px;
    }

    .fv_wrapper {
        top: 45px;
        top: 8vw;
    }

    .fv_main-title {
        font-size: 65px;
    }

    .fv_sign {
        width: 130px;
        margin: 0 auto 10px;
        margin: 0 auto 2.7vw;
    }

    .fv_information {
        margin-bottom: 30px;
        margin-bottom: 8vw;
    }

    .fv_information p {
        font-size: 14px;
        padding: 5px;
    }
    
    .fv_opus_name {
        font-size: 10px;
        padding-left: 0;
    }

}

@media screen and (max-width: 420px) {
    .fv {
        height: 142vw;
    }

    .fv::after {
        height: 28%;
    }

    .fv_container {
        padding: 40px 25px 0;
        padding: 10.7vw 25px 0;
    }

    .fv_side-text {
        font-size: 12px;
    }

    .fv_wrapper {
        top: 45px;
        top: 8vw;
    }

    .fv_main-title {
        font-size: 65px;
    }

    .fv_sign {
        width: 130px;
        margin: 0 auto 10px;
        margin: 0 auto 2.7vw;
    }

    .fv_information {
        margin-bottom: 30px;
        margin-bottom: 8vw;
    }

    .fv_information p {
        font-size: 14px;
        padding: 5px;
    }
    
    .fv_opus_name {
        font-size: 10px;
        padding-left: 0;
    }
}

@media screen and (max-width: 365px) {
    .fv {
        height: auto;
    }

    .fv_main-title {
        font-size: 18vw;
    }
}

/* --- profile --- */
.profile {
    position: relative;
    z-index: -10;
    color: #fff;
    background-color: #082516;
}

.profile_container {
    max-width: 1000px;
    max-width: 1040px;
    padding-bottom: 50px;
}

.profile_wrapper {
    display: flex;
}

.profile_wrapper_inner1 {
    width: 32%;
}

.profile_wrapper_image {
    margin-bottom: 70px;
}

.profile_wrapper_name {
    text-align: center;
}

.profile_wrapper_name_ja {
    font-size: 16px;
    font-family: 'NotoSerifJP-Medium';
    letter-spacing: 0.16em;
    margin-bottom: 5px;
}

.profile_wrapper_name_en {
    font-size: 25px;
    font-family: 'NotoSerifJP-Medium';
    letter-spacing: 0.16em;
}

.profile_wrapper_inner2 {
    margin-left: 80px;
}

.profile_wrapper_text {
    font-size: 15px;
    font-family: 'NotoSansJP-Regular';
    line-height: 1.875;
    letter-spacing: 0.12em;
    margin-bottom: 40px;
}

.profile_wrapper_career {
    font-size: 12px;
    padding: 10px 25px;
    line-height: 1.08;
    line-height: 1.3;
    letter-spacing: 0.12em;
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
}

@media screen and (max-width: 896px) {
    .profile {
        padding-top: 160px;
    }

    .profile_container {
        padding: 0 65px;
        padding: 0 90px;
        padding-bottom: 60px;
    }

    .profile_wrapper {
        flex-direction: column;
        align-items: center;
    }

    .profile_wrapper_image {
        margin-bottom: 30px;
    }

    .profile_wrapper_inner1 {
        margin-bottom: 30px;
    }

    .profile_wrapper_inner2 {
        margin-left: 0;
    }

    .profile_wrapper_text {
        font-size: 27px;
        line-height: 1.99;
        letter-spacing: 0.06em;
    }

    .profile_wrapper_inner1 {
        width: 75%;
    }

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

    .profile_wrapper_name_en {
        font-size: 36px;
    }

    .profile_wrapper_career {
        font-size: 18px;
    }
}

@media screen and (max-width: 767px) {
    .profile {
        padding-top: 80px;
        padding-top: 0;
    }

    .profile_container {
        padding: 0 45px;
        padding-bottom: 40px;

    }

    .profile_wrapper_text {
        font-size: 13px;
    }

    .profile_wrapper_name_ja {
        font-size: 12px;
    }

    .profile_wrapper_name_en {
        font-size: 20px;
        line-height: 1.2;
    }

    .profile_wrapper_career {
        font-size: 10px;
        padding: 5px 15px;
    }
}

@media screen and (max-width: 420px) {
    .profile {
        padding-top: 21.4vw;
    }
}

@media screen and (max-width: 342px) {
    .profile {
        padding-top: 21.4vw;
    }

}

@media screen and (max-width: 342px) {
    .profile {
        padding-top: 21.4vw;
    }
}


/* ---  gallery  --- */
.gallery {
    background-color: #040606;
}

.gallery_container {
    padding: 80px 0;
}

.gallery_list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.gallery_list_item {
    width: 30%;
    height: auto;
    margin: 0 15px 30px;
    margin: 0 1.66% 30px;
}

.gallery_list_item_display:hover {
    opacity: 0.7;
    transition: 0.3s;
    cursor: pointer;
}

.gallery_list_item > .gallery_list_item_display > img {
    height: 345px;
    object-fit: cover;
}

#annotation{
    color:#ffffff;
    font-size: 14px;
    padding:1%;
}

@media screen and (max-width: 896px) {
    .gallery_container {
        padding: 60px 30px;
    }

    .gallery_list {
        margin-bottom: -30px;
    }

    .gallery_list_item > .gallery_list_item_display > img {
        height: 230px;
    }
    #annotation{
    font-size: 12px;
    padding:3%;
    }
}

@media screen and (max-width: 767px) {
    .gallery_container {
        padding: 30px 20px;
    }

    .gallery_list {
        margin-bottom: -15px;
    }

    .gallery_list_item {
        margin: 0 1.66% 15px;
    }

    .gallery_list_item > .gallery_list_item_display > img {
        height: 100px;
        height: 27vw;
    }
}


/* --- delve --- */
.delve {
    color: #fff;
    background-color: #082516;
}

.delve_container {
    max-width: 1100px;
    padding: 50px 30px;
}

.delve_head {
    font-size: 28px;
    font-family: 'NotoSerifJP-Bold';
    margin-bottom: 100px;
    letter-spacing: 0.22em;
    line-height: 1.535;
    text-align: center;
}

.delve_head span.underline {
    position: relative;
}

.delve_head span.underline::before {
    content: '';
    position: absolute;
    bottom: -15px;
    left: -20px;
    width: 100%;
    height: 3px;
    background-image: url(../img/title_underline.png);
    background-size: cover;
    background-size: contain;
}

.delve_list_item {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 150px;
}

.delve_list_item_sign {
    position: relative;
}

/* 奇数番目の表示カスタマイズ */
.delve_list_item:nth-of-type(odd) {
    flex-direction: row;
}

.delve_list_item:nth-of-type(odd) .delve_list_item_text {
    margin-right: 80px;
    padding-right: 20px;
}

/* 偶数番目の表示カスタマイズ */
.delve_list_item:nth-of-type(even) {
    flex-direction: row-reverse;
}

.delve_list_item:nth-of-type(even) .delve_list_item_text {
    margin-left: 80px;
}

/* 各アイテムに対してカスタマイズ */
.delve_list_item:nth-of-type(1) .delve_list_item_sign {
    left: -57px;
    width: 53%;
}

.delve_list_item:nth-of-type(2) .delve_list_item_sign {
    left: -55px;
    width: 42%;
}

.delve_list_item:nth-of-type(2) .delve_list_item_title {
    margin-top: 10px;
}

.delve_list_item:nth-of-type(3) .delve_list_item_sign {
    left: -57px;
    width: 37%;
}

.delve_list_item:nth-of-type(3) .delve_list_item_title {
    margin-top: 20px;
}

.delve_list_item:nth-of-type(3) .delve_list_item_image {
    margin-top: 60px;
}


.delve_list_item_title {
    font-size: 25px;
    font-family: 'NotoSerifJP-Medium';
    letter-spacing: 0.05em;
    line-height: 1.65;
    margin-bottom: 20px;
}

.delve_list_item_description {
    font-size: 16px;
    font-family: 'NotoSansJP-Regular';
    letter-spacing: 0.05em;
    line-height: 1.65;
}

.delve_list_item_image_wrapper {
    width: 100%;
}

.delve_list_item_image img {
    padding-bottom: 5px;
}

.delve_list_item_image_title {
    font-size: 10px;
    font-family: 'NotoSansJP-Regular';
}

@media screen and (max-width: 1180px) {
    .delve_container {
        padding: 50px 80px;
    }
}

@media screen and (max-width: 896px) {
    .delve_container {
        padding: 50px 30px;
    }

    .delve_list_item_image_wrapper.pc {
        display: block;
    }

    .delve_list_item_image_wrapper.sp {
        display: none;
    }

    .delve_list_item:nth-of-type(1) .delve_list_item_sign {
        left: 0;
    }

    .delve_list_item:nth-of-type(2) .delve_list_item_sign {
        left: 0;
    }

    .delve_list_item:nth-of-type(3) .delve_list_item_sign {
        left: 0;
    }

    .delve_list_item:nth-of-type(odd) .delve_list_item_text {
        margin-right: 40px;
        padding-right: 0;
    }

    .delve_list_item:nth-of-type(even) .delve_list_item_text {
        margin-left: 40px;
    }
}

@media screen and (max-width: 767px) {
    .delve_list_item_image_wrapper.pc {
        display: none;
    }

    .delve_head {
        font-size: 18px;
        margin-bottom: 60px;
    }

    .delve_head span.underline::before {
        bottom: -8px;
        left: -20px;
        width: 110%;
        height: 2px;
    }

    .delve_list {
        width: 90%;
        margin: auto;
    }

    .delve_list_item {
        margin-bottom: 80px;
    }

    .delve_list_item_image_wrapper.sp {
        display: block;
        margin-bottom: 40px;
    }

    .delve_list_item_title {
        font-size: 16px;
        text-align: center;
    }

    .delve_list_item_title .sp {
        display: none;
    }

    .delve_list_item_text {
        margin-right: 0;
    }

    .delve_list_item_image img {
        padding-bottom: 10px;
    }

    .delve_list_item:nth-of-type(odd) {
        justify-content: center;
    }

    .delve_list_item:nth-of-type(even) {
        justify-content: center;
    }

    .delve_list_item:nth-of-type(odd) .delve_list_item_text {
        margin-right: 0;
    }

    .delve_list_item:nth-of-type(even) .delve_list_item_text {
        margin-left: 0;
    }

    .delve_list_item:nth-of-type(1) .delve_list_item_sign,
    .delve_list_item:nth-of-type(2) .delve_list_item_sign,
    .delve_list_item:nth-of-type(3) .delve_list_item_sign {
        width: 50%;
        width: 142px;
        left: -5.4vw;
        left: -20px;
        margin-bottom: -10px;
    }

    .delve_list_item:nth-of-type(3) .delve_list_item_sign {
        margin-bottom: 0;
    }

    .delve_list_item:nth-of-type(3) .delve_list_item_title {
        margin-top: 0;
    }

    .delve_list_item:nth-of-type(3) .delve_list_item_image {
        margin-top: 0;
    }

    .delve_list_item_description {
        font-size: 14px;
        line-height: 1.99;
        letter-spacing: 0.06em;
    }
}

@media screen and (max-width: 560px) {
    .delve_list_item_title .sp {
        display: block;
    }
}

@media screen and (max-width: 367px) {
    .delve_head span.underline::before {
        width: 85vw;
    }
}


/* --- present --- */
.present {
    background-color: #9ea9a3;
}

.present_head {
    position: relative;
    top: -45px;
    width: 12%;
    width: 175px;
    margin: 0 auto -20px;
}

.present_title {
    color: #144721;
    font-size: 25px;
    font-family: 'NotoSerifJP-Bold';
    letter-spacing: 0.05em;
    letter-spacing: 0.22em;
    line-height: 1.266;
    text-align: center;
    margin-bottom: 25px;
}

.present_title span.waveline {
    position: relative;
}

.present_title span.waveline::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 4px;
    background-size: cover;
    background-image: url(../img/wave_underline.png);
}



.present_text {
    color: #144721;
    font-family: 'NotoSansJP-Regular';
    text-align: center;
    letter-spacing: 0.12em;
}

.present_privilege {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}

.present_privilege_item_text {
    color: #fff;
    text-align: center;
    font-family: 'NotoSansJP-Regular';
    margin-top: 15px;
}

.present_privilege_item1 {
    width: 23%;
    margin: 0 25px;
}

.present_privilege_item1 img {
    box-shadow: 0px 1px 6px 4px #888;
}

.present_privilege_item2 {
    width: 13%;
    margin: 0 25px;
}

.present_privilege_item2_card {
    box-shadow: 0px 1px 7px 4px #888;
}

.present_bottom {
    padding-top: 120px;
    position: relative;
    overflow: hidden;
}

.present_bottom::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    top: 0;
    left: 50%;
    border-top: 120px solid #9ea9a3;
    border-left: 52vw solid #082516;
    border-right: 52vw solid #082516;
    transform: translateX(-50%);
}

@media screen and (max-width: 896px) {
    .present_head {
        width: 22%;
        width: 170px;
    }

    .present_privilege_item1 {
        width: 30%;
    }

    .present_privilege_item2 {
        width: 20%;
    }


}

@media screen and (max-width: 767px) {
    .present_container {
        padding-bottom: 30px;
    }

    .present_head {
        width: 30%;
        width: 112px;
        top: -30px;
    }

    .present_title {
        font-size: 16px;
        line-height: 1.5;
        letter-spacing: 0.14em;
        margin-bottom: 20px;
    }

    .present_text {
        font-size: 12px;
        line-height: 1.57;
        letter-spacing: 0.14em;
    }

    .present_privilege {
        margin-top: 30px;
    }

    .present_privilege_item1 {
        width: 58%;
        margin: 0 10px;
    }

    .present_privilege_item2 {
        width: 30%;
        margin: 0 10px;
    }

    .present_privilege_item_text {
        font-size: 10px;
        margin-top: 10px;
    }

    .present_bottom {
        padding-top: 80px;
    }

    .present_bottom::after {
        border-top: 80px solid #9ea9a3;
    }
}

@media screen and (max-width: 341px) {
    .present_title span.waveline::before {
        width: 81vw;
    }
}

/* --- venue --- */
.venue {
    color: #fff;
    background-color: #082516;
}

.venue_container {
    max-width: 1200px;
    width: 100%;
    padding: 80px 30px;
}

.venue_title {
    font-size: 30px;
    font-family: 'NotoSerifJP-Bold';
    letter-spacing: 0.22em;
    text-align: center;
    margin-bottom: 40px;
}

.venue_area {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
}

.venue_area_item {
    cursor: pointer;
    margin: 0 20px;
}

.venue_area_item a {
    font-family: 'NotoSansJP-Regular';
    text-decoration: underline;
}

.venue_swiper {
    width: 100%;
}

.venue_swiper-container {
    position: relative;
}

.swiper {
    padding: 0 !important;
    padding-right: 25px !important;
}

.swiper-slide {
    height: auto !important;
    left: 35px;
    left: 25px;
}

/* 前への矢印 */
.venue_swiper-container .swiper-button-prev {
    left: -90px;
}
  /* 次への矢印 */
.venue_swiper-container .swiper-button-next {
    right: -90px;
}

.swiper-button-prev, .swiper-button-next {
    display: block !important;
    color: #fff !important;
}


  /* ページネーション */
.venue_swiper-container .swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: 0 !important;
}

.swiper-pagination-bullet {
    background-color: #84928b !important;
}

.swiper-pagination-bullet-active {
    background-color: #fff !important;
}


.venue_swiper-slide {
    position: relative;
    color: #333;
    background-color: #fff;
    /* margin: 30px 25px; */
    margin: 30px 0;
}

.venue_swiper-slide.slide_zero {
    color: #fff;
    background-color: transparent;
    margin-right: 0!important;
    text-align: center;
    left: 0;
}


.venue_swiper-slide_prefectures {
    position: absolute;
    top: -25px;
    left: -25px;
    color: #fff;
    background-color: #688631;
    font-family: 'NotoSansJP-Medium';
    letter-spacing: 0.075em;
    /* padding: 30px 15px; */
    padding: 25px 10px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.venue_swiper-slide_prefectures.three-letter {
    font-size: 12px;
    padding: 28px 10px;
}

.venue_swiper-slide_wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 15px 20px;
}

.venue_swiper-slide_detail {
    margin-bottom: 30px;
}

.venue_swiper-slide_place {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 85%;
    margin: auto;
    font-size: 20px;
    font-family: 'NotoSansJP-Regular';
    letter-spacing: 0.06em;
    text-align: center;
    border-bottom: 1px solid #333;
    padding-bottom: 15px;
    margin-bottom: 15px;
    flex-grow: 1;
}

.venue_swiper-slide_detail_date {
    font-size: 14px;
    font-family: 'NotoSansJP-Regular';
    letter-spacing: 0.06em;
    /* line-height: 1.857; */
    padding-bottom: 10px;
}

.venue_swiper-slide_detail_time {
    font-size: 14px;
    font-family: 'NotoSansJP-Regular';
    letter-spacing: 0.06em;
    /* line-height: 1.857; */
}

.venue_swiper-slide_detail_time span {
    font-size: 12px;
}

.venue_swiper-slide_btn {
    background-color: #a82927;
    text-align: center;
    border-radius: 20px;
}

.venue_swiper-slide_btn a {
    display: block;
    padding: 8px;
    color: #fff;
    font-size: 20px;
    font-family: 'NotoSansJP-Regular';
    letter-spacing: 0.12em;
}

@media screen and (max-width: 1350px) {
    .venue_container {
        padding: 80px 50px;
        padding: 80px 3.7vw;
    }

    .venue_swiper-container .swiper-button-prev {
        left: -2.6vw;
    }

    .venue_swiper-container .swiper-button-next {
        right: -2.6vw;
    }

    .venue_swiper {
        width: 95%;
        margin-left: 2vw!important;
    }
}

@media screen and (max-width: 1167px) {
    .venue_swiper {
        width: 90%;
        margin-left: auto!important;
    }

}


@media screen and (max-width: 896px) {
    .venue_container {
        padding: 80px 30px;
    }

    .venue_swiper {
        margin-left: 3vw!important;
        margin-left: 4vw!important;
    }

    .venue_swiper-container .swiper-button-prev {
        left: -1%;
    }

    .venue_swiper-container .swiper-button-next {
        right: -2%;
    }

    .swiper-slide {
        left: 25px;
        /* left: 1vw; */
    }

}

@media screen and (max-width: 767px) {
    .venue_container {
        padding: 45px 10px;
    }

    .venue_title {
        font-size: 20px;
    }

    .venue_area {
        margin-bottom: 15px;
    }

    .venue_area_item {
        width: 20%;
        margin: 0 0 30px;
        text-align: center;
    }

    .venue_area_item a {
        letter-spacing: 0.22em;
    }

    .venue_swiper-container {
        /* width: 80%;
        margin: auto; */
        padding: 0 20px;
    }

    /* .swiper-slide {
        left: 25px;
        left: 6.6vw;
    } */

    .swiper-button-next:after, .swiper-button-prev:after {
        font-size: calc(var(--swiper-navigation-size) / 2) !important;
    }

    .venue_swiper-container .swiper-button-prev {
        left: 2.4%;
    }

    .venue_swiper-container .swiper-button-next {
        right: -1%;
    }

    .venue_swiper-slide_prefectures {
        font-size: 14px;
    }

    .venue_swiper-slide_place {
        width: 80%;
        font-size: 16px;
        padding-bottom: 10px;
        margin-bottom: 10px;
    }

    .venue_swiper-slide_detail_date {
        font-size: 12px;
        padding-bottom: 5px;
    }

    .venue_swiper-slide_detail_time {
        font-size: 12px;
    }

    .venue_swiper-slide_detail_time span {
        font-size: 10px;
    }

    .venue_swiper-slide_detail {
        margin-bottom: 20px;
    }

    .venue_swiper-slide_btn a {
        font-size: 16px;
    }

}

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

@media screen and (max-width: 560px) {
    .venue_area {
    flex-wrap: wrap;
}
}


@media screen and (max-width: 419px) {
    .venue_area_item {
        margin: 0 10px 30px;
    }

    .venue_swiper {
        margin-left: 2vw!important;
    }

    .venue_swiper-container .swiper-button-next {
        right: -2%;
    }

}


/* --- footer --- */
.footer {
    background-color: #fff;
}

.footer_container {
    padding: 20px 0;
}

.copy_right {
    font-size: 12px;
    font-family: 'NotoSansJP-Regular';
    text-align: center;
    line-height: 1.8;
    letter-spacing: 0.06em;
}

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

}

@media screen and (max-width: 767px) {
    .footer_container {
        padding: 15px 0 80px;
    }

    .copy_right {
        font-size: 10px;
        letter-spacing: 0em;
    }
}

/* --- reserve --- */

.reserve {
    position: fixed;
    bottom: -911vh;
    bottom: 0;
    right: 0;
    width: 305px;
    height: auto;
    z-index: 10;
}

.reserve a {
    width: 100%;
    height: 100%;
}

.reserve_wrapper {
    position: relative;
}

.reserve_background {
    position: absolute;
    bottom: 0;
    right: 0;
}

.reserve_image {
    position: absolute;
    bottom: 70px;
    left: 65px;
    left: 7%;
    width: 60%;
}

.reserve_text {
    position: absolute;
    bottom: 30px;
    left: 128px;
    font-size: 18px;
    font-family: 'NotoSansJP-Medium';
    line-height: 1.33;
    letter-spacing: 0.12em;
}

@media screen and (max-width: 896px) {
    .reserve_background.pc {
        display: block;
    }

    .reserve_text .sp {
        display: block;
    }
}

@media screen and (max-width: 767px) {
    .reserve_background.pc {
        display: none;
    }

    .reserve {
        width: 100%;
        background-image: url(../img/reserve_background_sp.png);
        background-repeat: no-repeat;
        background-size: cover;
    }

    .reserve_image {
        position: absolute;
        bottom: 20px;
        left: 25px;
        width: 30%;
        width: 113px;
    }

    .reserve_text {
        position: static;
        text-align: center;
        font-size: 14px;
        padding: 15px;
    }

    .reserve_text .sp {
        display: none;
    }

}