@charset "utf-8";

/* PRODUCTページ用フォント */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');
/*
* style.css
*/
/*** root ***/
:root {
    --bs-white: #ffffff;
    --bs-bk: #000000;
    --bs-green: #00a6b5;
    --bs-gray: #505050;
    --header-adjust: 100px;
    --content-bottom: 80px;
    --content-bottom-sp: 50px;
}

/*******************
 base
********************/
html{
    width: 100%;
    color: var(--bs-bk);
    font-size: 62.5%;
    scroll-behavior: smooth;
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-family: 'Noto Sans JP', sans-serif;
    font-family: 'Open Sans', sans-serif;
}
body{
    font-size: 1.8rem;
}
body.no_scroll {
    overflow: hidden;
}
.page-container{
    width: 100%;
    padding-top: var(--header-adjust);
    line-height: 1.7;
}
a,
a:hover,
a:active{
    color: var(--bs-bk);
    text-decoration: none;
}
a.underline,
a.underline:hover,
a.underline:active{
    text-decoration: underline;
}
img{
    width: 100%;
}
h1{
    padding-bottom: 80px;
    font-size: 5.7rem;
    font-weight: bold;
}
h2{
    font-size: 2.9rem;
    font-weight: bold;
    line-height: 1.2;
}
h3{
    font-size: 3.5rem;
}
h4{
    font-size: 2.6rem;
    font-weight: bold;
    line-height: 1.4;
}
@media only screen and (max-width: 960px){
    h1{
        padding-bottom: 0;
        font-size: 3.6rem;
    }
}
@media only screen and (max-width: 767px){
    body{
        font-size: 1.6rem;
    }
    h1{
        font-size: 2.5rem;
    }
    h3{
        font-size: 2.4rem;
        font-weight: bold;
        line-height: 1.2    ;
    }
    h4{
        font-size: 2.0rem;
    }
}
/*******************
 header
********************/
header{
    width: 100%;
    background-color: var(--bs-white);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
}
.header-container{
    max-width: 1600px;
    margin: 0 auto;
    padding: 30px 5px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
@media only screen and (max-width: 767px){
    .header-container{
        padding: 20px 10px 10px;
    }
}
/* logo */
.header-container > div > a{
    display: inline-block;
}
.header-container > div > a:first-of-type{
    font-size: 1.1rem;
    vertical-align: middle;
}
.header-container .header-logo{
    width: 190px;
}
/* official site link */
.header-container > div > a:last-of-type{
    margin: 0 10px;
    padding: 10px 20px;
    color: var(--bs-white);
    background-color: var(--bs-green);
    border-radius: 22px;
}
.header-container > div > a:last-of-type > span{
    padding: 0 5px;
}
@media only screen and (max-width: 767px){
    .header-container > div > a:last-of-type{
        display: none;
    }
}
/* navi for pc */
.header-container > nav > ul > li{
    margin-left: 20px;
    display: inline-block;
}
.header-container > .header-menu__pc .multi-nav{
    position: relative;
}
.header-container > .header-menu__pc .multi-nav,
.header-container > .header-menu__pc .multi-nav > ul a{
    color: var(--bs-green);
}
.header-container > .header-menu__pc .multi-nav > ul a{
    font-size: 1.5rem;
}
.header-container > .header-menu__pc .multi-nav > span{
    padding-left: 28px;
    cursor: pointer;
}
.header-container > .header-menu__pc .multi-nav > span::before{
    content: "";
    position: absolute;
    top: 5px;
    left: 0;
    width: 0;
    height: 0;
    border: 1rem solid transparent;
    border-top: 1.5rem solid var(--bs-green);
    transition: all 0.2s ease-in-out;
}
.header-container > .header-menu__pc .multi-nav:hover > span::before{
    content: "";
    position: absolute;
    top: -5px;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}
.header-container > .header-menu__pc .multi-nav > ul{
    position: absolute;
    top: 0;
    width: 280px;
    padding: 1.0rem 2.0rem 2.0rem;
    background: #ffffff;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
    opacity: 0;
    visibility: hidden;
}
.header-container > .header-menu__pc .multi-nav:hover > ul{
    top: 28px;
    visibility: visible;
    opacity: 1;
}
.header-container nav.header-menu__pc > ul > li:nth-last-of-type(1){
    display: none;
}
.header-container > .header-menu__pc .multi-nav:hover > ul > li{
    padding: 5px 0;
    border-bottom: 1px solid #CCCCCC;
}
/* navi for tab & sp */
#slidein_trigger{
    display: none;
}
#nav_btn{
    width: 49px;
    height: auto;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    line-height: 1;
}
.header-container .header-menu__tab > nav{
    width: 500px;
    height: auto;
    padding: 20px 50px;
    position: fixed;
    top: 80px;
    right: -500px;
    transition: right .5s, right .5s; /* アニメーション */
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    font-size: 2.2rem;
    z-index: 1000;
}
/* :checked 擬似クラスを使って、#slidein_triggerがチェック状態になった時に、#slidein_menuが「left: 0;」になります。 */
#slidein_trigger:checked + nav{
    right: 0;
}
.header-container .header-menu__tab > nav > div{
    font-weight: bold;
}
.header-container .header-menu__tab > nav > div > p:first-of-type{
    float: left;
}
.header-container .header-menu__tab > nav > div > p:last-of-type{
    display: inline-block;
    float: right;
    font-size: 1.8rem;
    cursor: pointer;
}
.header-container .header-menu__tab > nav > ul li{
    padding: 5px 0;
    border-top: 1px solid #CCCCCC;
}
.header-container .header-menu__tab > nav > ul li > ul > li{
    margin-left: 25px;
    list-style: square;
}
.header-container .header-menu__tab > nav > ul li a{
    display: block;
}
.header-container .header-menu__tab{
    display: none;
}
@media only screen and (max-width: 1300px){
    .header-container .header-menu__pc{
        display: none;
    }
    .header-container .header-menu__tab{
        display: inline-block;
    }
}
@media only screen and (max-width: 767px){
    .header-container .header-menu__tab > nav{
        width: 100%;
        padding: 10px 20px;
        top: 70 px;
        right: -1000px;
        font-size: 1.8rem;
    }
}

/*******************
 footer
********************/
footer{
    width: 100%;
    background-color: #EAEAEA;
}
footer > .inner_wrap{
    width: 880px;
    margin: 0 auto;
    padding: 50px 0;
}
.footer-flex{
    display: flex;
    justify-content: space-around;
    align-items: center;
}
footer .footer-logo{
    width: 320px;
    height: auto;
}
footer nav ul li{
    margin: 5px 0px;
    list-style: square;
}
footer nav > ul > li > ul > li {
    margin-left: 20px;
}
footer nav > ul:first-of-type > li:nth-last-of-type(1),
footer nav > ul:first-of-type > li:nth-last-of-type(2),
footer nav > ul:first-of-type > li:nth-last-of-type(3),
footer nav > ul:first-of-type > li:nth-last-of-type(4),
footer nav > ul:first-of-type > li:nth-last-of-type(5),
footer nav > ul:first-of-type > li:nth-last-of-type(6),
footer nav > ul:last-of-type > li:nth-of-type(1),
footer nav > ul:last-of-type > li:nth-of-type(2),
footer nav > ul:last-of-type > li:nth-of-type(3){
    display: none;
}
.copyright{
    width: 100%;
    padding: 10px;
    color: var(--bs-white);
    background-color: #969696;
    text-align: center;
    font-size: 1.4rem;
}
footer .strong{
    font-size: 2.0rem;
    font-weight: bold;
}
@media only screen and (max-width: 960px){
    footer > .inner_wrap{
        width: 100%;
        margin: 0;
        padding: 20px 10px;
    }
    .footer-flex{
        flex-direction: column;
    }
    .copyright{
        font-size: 1.1rem;
    }
}
@media only screen and (max-width: 767px){
    footer .strong{
        font-size: 1.7rem;
        text-align: center;
    }
}
/* go top btn */
.go_top{
    height: 66px;
    width: 66px;
    position: fixed;
    right: 30px;
    bottom: 50px;
    z-index: 999;
    cursor: pointer;
}
@media only screen and (max-width: 960px){
    .go_top{
        right: 10px;
        bottom: 10px;
    }
}
/* メニューtram653を非表示にした */
#nav_tram635{
    display: none;
}

/*******************
 contents
********************/
section{
    margin-bottom: var(--content-bottom);
}
section.top_visual{
    width: 100%;
    max-width: 1380px;
    height: auto;
    margin: 0 auto var(--content-bottom);
    position: relative;
    overflow: hidden;
}
section.main_visual{
    width: 100%;
    height: auto;
    margin: 0 0 50px;
    padding-right: 12%;
}
@media only screen and (max-width: 960px){
    section.main_visual{
        margin: 0 0 30px;
        padding-right: 0;
    }
}
.inner_wrap{
    width: 100%;
    max-width: 1000px;
    margin: 0 auto var(--content-bottom);
}
.content-title{
    margin-bottom: 50px;
    color: #646464;
    font-size: 5.7rem;
    font-weight: bold;
    border-bottom: 1px solid #969696;
    line-height: 1.5;
}
@media only screen and (max-width: 960px){
    .inner_wrap{
        margin: 0 auto var(--content-bottom-sp);
        padding: 0 20px;
    }
    .content-title{
        margin-bottom: 20px;
        font-size: 3.6rem;
    }
}
@media only screen and (max-width: 767px){
    .inner_wrap{
        padding: 0 10px;
    }
}

/* TOP */
/* --- fade in --- */
#slidein_text{
    color: #fff;
    position: absolute;
    top: 0;
    right: 0;
}
#slidein_text p{
    margin: 0;
    display: inline;
    font-family: 'Barlow', sans-serif;
    font-size: 18.0rem;
    font-weight: bold;
    line-height: 0.7;
    position: absolute;
    animation-iteration-count: 1;
}
#slidein_text p:nth-of-type(1){
    top: -1.5rem;
    right: -1.0rem;
    opacity: 0.5;
    animation-name: slidein_01;
    animation-duration: 1s;
}
@keyframes slidein_01{
    from{
        opacity: 0;
        transform: translateX(20.0rem);
    }
    to{
        opacity: 0.5;
        transform: translateY(0);
    }
}
#slidein_text p:nth-of-type(2){
    top: 9.5rem;
    right: 2.3rem;
    opacity: 0.6;
    animation-name: slidein_02;
    animation-duration: 2s;
}
@keyframes slidein_02{
    from{
        opacity: 0;
        transform: translateX(20.0rem);
    }
    50%{
        opacity: 0;
        transform: translateX(20.0rem);
    }
    to{
        opacity: 0.6;
        transform: translateY(0);
    }
}
#slidein_text p:nth-of-type(3){
    top: 21.0rem;
    right: 14.0rem;
    opacity: 0.8;
    animation-name: slidein_03;
    animation-duration: 3s;
}
@keyframes slidein_03{
    from{
        opacity: 0;
        transform: translateX(20.0rem);
    }
    70%{
        opacity: 0;
        transform: translateX(20.0rem);
    }
    to{
        opacity: 0.8;
        transform: translateY(0);
    }
}
#slidein_text p:nth-of-type(4){
    width: 200px;
    top: 30.0rem;
    right: 35.0rem;
}
@media only screen and (max-width: 960px){
    .top_visual{
        margin: 0 auto var(--content-bottom-sp);
    }
    #slidein_text p{
        font-size: 10.0rem;
    }
    #slidein_text p:nth-of-type(1){
        top: -0.5rem;
        right: -0.5rem;
    }
    #slidein_text p:nth-of-type(2){
        top: 6.1rem;
        right: 1.3rem;
    }
    #slidein_text p:nth-of-type(3){
        top: 12.6rem;
        right: 7.8rem;
    }
    #slidein_text p:nth-of-type(4){
        width: 140px;
        top: 20.0rem;
        right: 16.0rem;
    }
}
@media only screen and (max-width: 767px){
    #slidein_text p{
        font-size: 5.8rem;
    }
    #slidein_text p:nth-of-type(1){
        top: -0.3rem;
        right: 0;
    }
    #slidein_text p:nth-of-type(2){
        top: 3.4rem;
        right: 1.0rem;
    }
    #slidein_text p:nth-of-type(3){
        top: 7.4rem;
        right: 4.7rem;
    }
    #slidein_text p:nth-of-type(4){
        width: 120px;
        top: 13.0rem;
        right: 5.5rem;
    }
}
/* HOURS */
.hours-box{
    width: 100%;
    padding: 50px;
    border: 1px solid #B4B4B4;
    font-size: 2.3rem;
}
.d-flex__hours{
    display: flex;
    justify-content: space-between;
}
.d-flex__hours > .hours-box{
    width: 48%;
}
.hours-box > p > img{
    width: 152px;
    height: auto;
    display: block;
    margin: 0 auto 20px;
}
.hours-box__shopname_010,
.hours-box__shopname_020{
    font-weight: bold;
    text-align: center;
}
.hours-box__shopname_010{
    margin-bottom: 20px;
    font-size: 4.7rem;
}
.hours-box__shopname_010 > span{
    font-size: 3.0rem;
}
.hours-box__shopname_020{
    font-size: 4.1rem;
}
@media only screen and (max-width: 960px){
    .hours-box{
        padding: 30px;
        font-size: 1.8rem;
    }
    .hours-box__shopname_010{
        font-size: 3.8rem;
    }
    .hours-box__shopname_020{
        font-size: 3.0rem;
    }
}
@media only screen and (max-width: 767px){
    .hours-box{
        padding: 20px;
        font-size: 1.8rem;
    }
    .d-flex__hours{
        flex-direction: column;
        justify-content: center;
    }
    .d-flex__hours > .hours-box{
        width: 100%;
    }
    .hours-box__shopname_010{
        font-size: 3.0rem;
        line-height: 1;
    }
    .hours-box__shopname_010 > span{
        font-size: 2.0rem;
    }
}
/* FACILITY */
.facility-content{
    padding-top: 120px;
    margin-top: -120px;
    color: var(--bs-gray);
}
#floor-menu{
    text-align: center;
}
#floor-menu > a{
    width: 104px;
    height: 104px;
    margin: 0 15px;
    padding-top: 10px;
    color: var(--bs-white);
    background-color: var(--bs-green);
    border-radius: 50%;
    display: inline-block;
    font-size: 3.9rem;
    text-align: center;
    position: relative;
}
#floor-menu > a::after{
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
    border-top: 17px solid var(--bs-white);
    border-bottom: 0;
    position: absolute;
    bottom: 15px;
    left: 42px;
}
.facility-floor__head{
    margin-bottom: 50px;
}
.facility-floor__head > p{
    font-size: 6.2rem;
    line-height: 1.5;
}
.facility-floor__head > p:first-of-type{
    font-size: 10.0rem;
}
.facility-floor__head > p:last-of-type{
    font-size: 3.4rem;
}
.facility-text__bluewrap{
    width: 100%;
    height: auto;
    margin-bottom: 60px;
    background: linear-gradient(90deg, #E2FBFF 0%, #E2FBFF 50%, var(--bs-white) 50%, var(--bs-white) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
}
.facility-text__bluewrap > .inner_wrap{
    margin-bottom: 0;
    padding: 40px 10px;
    background-color: #E2FBFF;
}
.sb-flex{
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
}
.sb-flex > div{
    width: 48%;
}
#facility-floor__1F > div:nth-of-type(3) > div:first-of-type{
    width: 30%;
}
#facility-floor__1F > div:nth-of-type(3) > div:last-of-type{
    width: 65%;
}
.sb-flex > div > img + p{
    margin-top: 10px;
}
@media only screen and (max-width: 960px){
    .facility-floor__head{
        margin-bottom: 30px;
    }
    .facility-floor__head > p{
        font-size: 4.0rem;
    }
    .facility-floor__head > p:first-of-type{
        font-size: 5.0rem;
    }
    .facility-floor__head > p:last-of-type{
        font-size: 2.2rem;
    }
}
@media only screen and (max-width: 767px){
    #floor-menu > a{
        width: 55px;
        height: 55px;
        margin: 0 7px;
        padding-top: 5px;
        font-size: 2.0rem;
    }
    #floor-menu > a::after{
        border-right: 5px solid transparent;
        border-left: 5px solid transparent;
        border-top: 9px solid var(--bs-white);
        bottom: 10px;
        left: 23px;
    }
    .facility-floor__head{
        margin-bottom: 20px;
    }
    .facility-floor__head > p{
        font-size: 2.5rem;
    }
    .facility-floor__head > p:first-of-type{
        font-size: 4.0rem;
    }
    .facility-floor__head > p:last-of-type{
        font-size: 1.7rem;
    }
    .facility-text__bluewrap{
        margin-bottom: 30px;
    }
    .sb-flex{
        margin-bottom: 20px;
        flex-direction: column;
        justify-content: center;
    }
    .sb-flex > div,
    #facility-floor__1F > div:nth-of-type(3) > div:first-of-type,
    #facility-floor__1F > div:nth-of-type(3) > div:last-of-type{
        width: 100%;
        margin-bottom: 20px;
    }
}
/* HISTORY */
.history-box__title{
    margin-bottom: 60px;
    font-size: 7.0rem;
    color: var(--bs-green);
    border-bottom: 6px solid var(--bs-green);
    line-height: 1.3;
}
.history-box__title > span{
    font-size: 5.0rem;
}
.history-box__inner{
    padding: 0 90px;
}
.history-box__inner img + p + p{
    margin-top: 40px;
}
.history-people{
    margin-bottom: 0;
    padding: 80px 0;
    background-image: url(../../img/user/030_bg_010.png);
    background-size: cover;
    font-size: 2.0rem;
}
.history-people > .inner_wrap{
    margin-bottom: 0;
}
.history-people > div > div:first-of-type{
    margin-bottom: 80px;
}
.history-people > div > div:first-of-type > div:first-of-type{
    width: 75%;
}
.history-people > div > div:first-of-type > div:last-of-type{
    width: 20%;
}
.history-people > div > div:last-of-type > div:first-of-type{
    width: 30%;
}
.history-people > div > div:last-of-type > div:last-of-type{
    width: 65%;
}
@media only screen and (max-width: 960px){
    .history-box__title{
        font-size: 5.0rem;
    }
    .history-box__title > span{
        font-size: 3.0rem;
    }
}
@media only screen and (max-width: 767px){
    .history-box__title{
        margin-bottom: 30px;
        font-size: 2.6rem;
    }
    .history-box__title > span{
        font-size: 2.0rem;
    }
    .history-box__inner{
        padding: 0;
    }
    .history-box > .sb-flex > div{
        width: 100%;
    }
    .history-people{
        padding: 30px 0;
        font-size: 1.8rem;
    }
    .history-people > div > div:first-of-type{
        margin-bottom: 30px;
    }
    .history-people > div > div:first-of-type > div:first-of-type,
    .history-people > div > div:first-of-type > div:last-of-type,
    .history-people > div > div:last-of-type > div:first-of-type,
    .history-people > div > div:last-of-type > div:last-of-type{
        width: 100%;
    }
    .history-people > div > div:first-of-type > div:last-of-type{
        padding: 0 40px;
    }
}
/* PIANO */
.piano_wrap{
    padding-bottom: var(--content-bottom);
    background-color: #FFFAE8;
}
.piano_wrap > .main_visual{
    margin-bottom: 0;
}
.piano_wrap > .main_visual + section{
    margin-top: -90px;
}
.piano_wrap > .main_visual + section > h1{
    padding-bottom: 0;
    font-size: 8.5rem;
    font-weight: normal;
}
.piano_wrap > section:last-of-type,
.piano_wrap > section:last-of-type .sb-flex{
    margin-bottom: 0;
}
.piano-title{
    margin-bottom: 50px;
    padding: 0 40px;
    border-left: 5px solid var(--bs-bk);
    font-size: 4.0rem;
    line-height: 1.1;
}
@media only screen and (max-width: 960px){
    .piano_wrap > .main_visual + section > h1{
        font-size: 6.0rem;
    }
}
@media only screen and (max-width: 767px){
    .piano_wrap{
        padding-bottom: var(--content-bottom-sp);
    }
    .piano_wrap > .main_visual + section{
        margin-top: -45px;
    }
    .piano_wrap > .main_visual + section > h1{
        font-size: 4.0rem;
    }
    .piano-title{
        margin-bottom: 30px;
        padding: 0 20px;
        font-size: 2.8rem;
        line-height: 1.1;
    }
}
/* VRTOUR */
h2.tour-title{
    margin-bottom: 40px;
    padding: 5px 40px;
    font-size: 4.5rem;
    border-left: 11px solid #323232;
    border-bottom: 1px solid #323232;
}
.tour_inner{
    margin-bottom: var(--content-bottom);
    padding: 0 60px;
}
.tour_inner hr{
    margin: 5px 0 15px;
    border-top: 1px solid #323232;
}
.tour-item__bar{
    padding: 3px 40px;
    color: #323232;
    background-color: rgba(204, 204, 204, 0.5);
    font-size: 2.9rem;
    font-weight: bold;
}
.tour-item__bar + p{
    margin: 10px 0 50px;
    padding: 0 30px;
    font-size: 2.2rem;
}
.tour-item__table{
    display: flex;
    align-items: flex-start;
    font-size: 2.2rem;
}
.tour-item__table > p{
    font-size: 2.9rem;
}
.tour-item__table > p > span{
    font-size: 4.0rem;
    font-weight: 700;
}
.tour-item__table > p:first-of-type{
    padding-top: 10px;
    width: 14%;
}
.booking-title{
    margin: 0 20px 20px 0;
    font-size: 4.0rem;
    font-weight: bold;
}
.booking-title > img{
    width: 38px;
    margin-right: 10px;
    vertical-align: baseline;
}
@media only screen and (max-width: 960px){
    h2.tour-title{
        font-size: 3.5rem;
    }
    .tour-item__table > p > span{
        font-size: 3.4rem;
    }
    .booking-title{
        margin: 0 20px 15px 0;
        font-size: 3.0rem;
    }
}
@media only screen and (max-width: 767px){
    h2.tour-title{
        padding: 5px 20px;
        font-size: 2.8rem;
        border-left: 11px solid #323232;
        border-bottom: 1px solid #323232;
    }
    .tour_inner{
        margin-bottom: var(--content-bottom-sp);
        padding: 0;
    }
    .tour-item__bar{
        padding: 0 20px;
        font-size: 2.2rem;
    }
    .tour-item__bar + p{
        margin: 10px 0;
        padding: 0 10px;
        font-size: 1.8rem;
    }
    .tour-item__table{
        flex-direction: column;
        font-size: 1.8rem;
    }
    .tour-item__table > p{
        font-size: 1.8rem;
    }
    .tour-item__table > p > span{
        font-size: 2.2rem;
    }
    .tour-item__table > p:first-of-type{
        padding-top: 0;
        width: 100%;
    }
    .booking-title{
        font-size: 3.0rem;
    }
    .booking-title > img{
        width: 30px;
    }
}
/* TRAM653/2024 */
h2.tram653 {
    margin-bottom: 50px;
    font-size: 4.5rem;
    text-align: center;
    line-height: 1.3;
}
h2.tram653 > span {
    font-size: 3.7rem;
}
.iframe_wrap {
    height: 0;
    padding-bottom: 56.25%;
    position: relative;
    overflow: hidden;
}
.iframe_wrap > iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
span[class*="tour-label"] {
    margin: 0 3.0rem 1.0rem 0;
    padding: 0.5rem 2.0rem;
    display: inline-block;
    font-size: 2.0rem;
    font-weight: bold;
    color: #ffffff;
    background-color: #00A6B5;
}
.tour-item__table > p span.small{
    font-size: 2.9rem;
    font-weight: 700;
}
.tour-text__time,
.tour-text__text {
    line-height: 1.2;
}
.tour-text__time {
    margin-right: 2.0rem;
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-size: 2.4rem;
}
.tour-text__text {
    font-size: 2.1rem;
    font-weight: 700;
}
.tour-text__flex {
    display: flex;
    align-items: center;
}
.bar-btn__title{
    margin-bottom: 10px;
    font-size: 4.0rem;
    font-weight: bold;
    text-align: center;
}
.tour_inner > .contact {
    font-size: 2.9rem;
    font-weight: 700;
    text-align: center;
}
@media only screen and (max-width: 767px){
    h2.tram653{
        margin-bottom: 20px;
        font-size: 2.4rem;
    }
    h2.tram653 > span {
        font-size: 2.0rem;
    }
    .tour-item__table > p span.small{
        font-size: 1.8rem;
    }
    .tour-text__time {
        font-size: 2.2rem;
    }
    .tour-text__text {
        font-size: 2.0rem;
    }
    .tour-text__flex {
        flex-direction: column;
        align-items: flex-start;
    }
    .bar-btn__title{
        font-size: 2.2rem;
    }
    .tour_inner > .contact {
        font-size: 2.0rem;
    }
}
/* モーダルウィンドウ */
.overlay {
    width: 100%;
    height: 100%;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10000;
}
.modal_window {
    width: 1129px;
    max-width: 95%;
    max-height: 95%;
    padding: 5.0rem;
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.0rem;
    background-color: #ffffff;
    z-index: 10001;
    overflow-y: scroll;
}
.modal_title {
    font-size: 3.5rem;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 2.5rem;
    text-align: center;
}
.modal_window picture {
    display: block;
    text-align: center;
}
.modal_window picture > img {
    width: 100%;
    max-width: 670px;
    height: auto;
    margin-bottom: 2.0rem;
}
@media only screen and (max-width: 767px){
    .modal_window {
        padding: 3.0rem 2.0rem;
        font-size: 1.8rem;
    }
    .modal_title {
        font-size: 2.5rem;
        margin-bottom: 2.0rem;
    }
}

/* TRAM653/2023 */
/* h2.tram653{
    margin-bottom: 20px;
    font-size: 3.4rem;
    line-height: 1.4;
}
h3.tram653{
    line-height: 1;
}
p.tram653{
    font-size: 2.0rem;
}
.video{
    width: 100%;
    max-width: 880px;
}
*/

/* POLICY */
.gray_title{
    margin-bottom: 40px;
    padding: 5px 50px;
    color: var(--bs-white);
    background-color: #707070;
    font-size: 3.0rem;
}
@media only screen and (max-width: 960px){
    .gray_title{
        padding: 5px 20px;
        font-size: 2.6rem;
    }
}
@media only screen and (max-width: 767px){
    .gray_title{
        font-size: 2.2rem;
    }
}

/* PRODUCT */
.product_title{
    font-size: 6.5rem;
    font-weight: bold;
    text-align: center;
}
.product_subtitle{
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-size: 3.8rem;
    text-align: center;
}
@media only screen and (max-width: 767px){
    .product_title{
        font-size: 2.5rem;
    }
    .product_subtitle{
        font-size: 2.1rem;
    }
}
.prod_flex{
    display: flex;
    flex-wrap: wrap;
    & > div{
        width: 30%;
        margin-right: 5%;
        margin-bottom: 80px;
        padding: 20px 0 30px;
        overflow-wrap: break-word;
        border: 1px solid rgba(112,112,112,0.3);
        border-left: 0;
        border-right: 0;
    }
    &.prod_navi > div{
        margin-bottom: 50px;
        padding: 0;
        border: none;
    }
    & > div:nth-child(3n){
        margin-right: 0;
    }
    & > div > a{
        padding: 10px;
        display: block;
        font-size: 2.5rem;
        font-weight: bold;
        text-align: center;
        color: #ffffff;
        background-color: #56A4E6;
        border: 1px solid #56A4E6;
        border-radius: 50px;
    }
    & > div > a.active{
        color: #56A4E6;
        background-color: #ffffff;
        border-radius: 50px;
        pointer-events: none;
    }
}
@media only screen and (max-width:  767px){
    .prod_flex{
        flex-direction: column;
        justify-content: center;
        & > div{
            width: 100%;
            margin-right: 0;
            margin-bottom: 40px;
        }
        &.prod_navi > div{
            margin-bottom: 10px;
        }
        & > div > a{
            font-size: 1.8rem;
        }
    }
    .link-btn.icon-btn{
        padding: 10px 20px;
    }
}
.prod_date,
.prod_title,
.prod_detail_title{
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
}
.prod_date{
    margin-top: 24px;
    font-size: 1.4rem;
}
.prod_title{
    font-size: 2.7rem;
    line-height: 1.4;
}
.prod_detail_title{
    margin-bottom: 20px;
    font-size: 4.0rem;
    line-height: 1.2;
}
.prod_heading{
    margin: 22px 0 30px;
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 1.6;
}
/* CKeditor */
.ckeditor{
    position: relative;
    overflow-wrap: break-word;
    & a{
        color: #56A4E6;
        text-decoration: underline;
    }
    & ul, ol{
        margin: 10px 20px;
    }
    & blockquote{
        overflow: hidden;
        margin: 0;
        padding: 0 1.5em;
        font-style: italic;
        border-left: 5px solid #ccc;
    }
    & img{
        width: auto;
        max-width: 100%;
        height: auto;
    }
    & figure.image{
        text-align: center;
    }
    & figure.image-style-side{
        margin: 0 0 10px 10px;
        float: right;
    }
    & .media{
        display: block;
    }
    & h2, h3, h4{
        font-weight: bold;
    }
    & h2{
        font-size: 3.4rem;
    }
    & h3{
        font-size: 3.0rem;
    }
    & h4{
        font-size: 2.6rem;
    }
    & .text-tiny{
        font-size: 1.0rem;
    }
    & .text-small{
        font-size: 1.4rem;
    }
    & .text-big{
        font-size: 2.2rem;
    }
    & .text-huge{
        font-size: 2.8rem;
    }
    & .marker-yellow{
        background-color: #fdfd77;
    }
    & .marker-green{
        background-color: #62f962;
    }
    & .marker-pink{
        background-color: #fc7899;
    }
    & .marker-blue{
        background-color: #72ccfd;
    }
    & .pen-red{
        color: #e71313;
        background-color: #ffffff;
    }
    & .pen-green{
        color: #128a00;
        background-color: #ffffff;
    }
}
.pagination{
    justify-content: center;
}
/*******************
 class
********************/
.for-sp{
    display: none;
}
.for-tab{
    display: none;
}
@media only screen and (max-width: 960px){
    .for-pc{
        display: none;
    }
    .for-tab{
        display: inline-block;
    }
    .for-sp{
        display: none;
    }
}
@media only screen and (max-width: 767px){
    .for-pc{
        display: none;
    }
    .for-sp{
        display: inline-block;
    }
}
.icon{
    width: 18px;
    height: auto;
    vertical-align: text-bottom;
}
.link-btn,
.link-btn:hover{
    padding: 10px 40px;
    border-radius: 7px;
    color: var(--bs-white);
    background-color: #56a4e6;
}
.link-btn__green,
.link-btn__green:hover{
    padding: 10px 40px;
    border-radius: 7px;
    color: var(--bs-white);
    background-color: var(--bs-green);
}
.link-btn.disabled{
    background-color: #c0c0c0;
    pointer-events: none;
}
.under-img__text{
    font-size: 1.7rem;
    font-weight: 300;
}
@media only screen and (max-width: 767px){
    .under-img__text{
        font-size: 1.5rem;
        line-height: 1.5;
    }
}
a.bar-btn{
    padding: 15px;
    display: block;
    background-color: #F7CA33;
    border-radius: 5px;
    box-shadow: 0 0.8rem 0 #B99007;
    font-size: 2.8rem;
    font-weight: bold;
    text-align: center;
    line-height: 1;
    transition: .3s;
}
a.bar-btn.orange{
    background-color: #F97D1D;
    box-shadow: 0 0.8rem 0 #C65B09;
    color: #ffffff;
}
a.bar-btn:hover{
    transform: translate3d(0, 0.5rem, 0);
    box-shadow: none;
}
@media only screen and (max-width: 767px){
    a.bar-btn{
        font-size: 2.2rem;
    }
}
.text-link,
.text-link:hover {
    color: #56A4E6;
    font-weight: bold;
    text-decoration: underline;
}
