@charset "utf-8";
/* reserve css */

/*-------------------------------------------------
「OPTION」ページタイトル
-------------------------------------------------*/

#page_option .page_titlebox::before {
content: "OPTION";
}
body#page_option::before {
content: "";
background-image: url("../img/option/body_bg.jpg");
background-position: center top;
background-size: cover;
background-repeat: no-repeat;
background-color: #000;
display: block;
position: fixed;
top: 0;
left: 0;
z-index: -1;
width: 100%;
height: 100vh;
opacity: .25;
}

/*-------------------------------------------------
「RESERVE」 ページタイトル
-------------------------------------------------*/

#page_reserve .page_titlebox::before {
content: "RESERVE";
}
body#page_reserve::before {
content: "";
background-image: url("../img/reserve/body_bg.jpg");
background-position: center top;
background-size: cover;
background-repeat: no-repeat;
background-color: #000;
display: block;
position: fixed;
top: 0;
left: 0;
z-index: -1;
width: 100%;
height: 100vh;
opacity: .25;
}


/* optionページレイアウト */

/*-------------------------------------------------
intro
-------------------------------------------------*/

.intro_txt {
font-size: 1.5rem;
line-height: 200%;
letter-spacing: 0.2em;
display: block;
text-align: center;
margin-bottom: 50px;
}
.intro_txt a {
text-decoration: underline;
color: #B29458;
}
.intro_txt a:hover {
text-decoration: none;
}

@media all and (max-width : 767px) {
.intro_txt {
font-size: 1.2rem;
line-height: 180%;
letter-spacing: 0.1em;
margin-bottom: 30px;
}
}

/*-------------------------------------------------
選択項目リスト
-------------------------------------------------*/

.list_title {
font-size: 2.2rem;
font-weight: 600;
color: #B29458;
letter-spacing: 0.3em;
padding: 0 15px 15px 5px;
border-bottom: solid 1px #8E7742;
margin-bottom: 30px;
}
.item_box_wrap {
display: flex;
flex-wrap: wrap;
}
.item_box {
width: calc(33.3333333% - 60px / 3);
margin-right: 30px;
margin-bottom: 30px;
}
.item_box:nth-child(3n) {
margin-right: 0px;
}
.list_thum {
overflow: hidden;
background: #000;
margin-bottom: 15px;
}
.list_thum img {
width: 100%;
transition-duration: 0.7s;
}
.item_title {
font-size: 1.6rem;
font-weight: 500;
letter-spacing: 0.2em;
display: block;
text-align: center;
transition-duration: 0.7s;
}
.item_box a:hover .item_title {
color: #B29458;
transition-duration: 0.7s;
}
.item_box a:hover .list_thum img {
transform: scale(1.05);
transition-duration: 0.7s;
opacity: .8;
}


/* 「公演予約」ページレイアウト */

.itembox_wrap {
display: flex;
justify-content: space-between;
align-items: flex-start;
flex-wrap: wrap;
}
#page_reserve .itembox_left {
width: 46.97%;
position: relative;
}
#page_reserve .itembox_right {
width: 45%;
}
#page_reserve .itembox_left .swiper {
position: relative;
overflow: hidden;
}
#page_reserve .itembox_left .swiper .swiper-wrapper {
position: relative;
z-index: 3;
}
#page_reserve .itembox_left .swiper .swiper-wrapper .swiper-slide {
position: relative;
}

@media all and (max-width : 767px ){
.itembox_wrap {
display: flex;
justify-content: space-between;
flex-wrap:wrap;
flex-direction: column;
padding: 0;
margin-bottom: 20px;
}
#page_reserve .itembox_left {
width: 100%;
margin-bottom: 30px;
}
#page_reserve .itembox_right {
width: 100%;
}
}

/*-------------------------------------------------
公演予約画像 swiper
-------------------------------------------------*/

.swiper-slide {
position: relative;
}
.swiper .swiper-slide img {
width: 100%;
height: 305px;
object-fit: contain;
}

@media all and (max-width : 820px ){
.swiper .swiper-slide img {
height: 245px;
}
}

@media all and (max-width : 767px ){
.swiper .swiper-slide img {
height: 234px;
}
}

.swiper-slide .img_cap {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
display: block;
background: rgba(0, 0, 0, .7);
padding: 10px 5px;
color: #fff;
font-size: 1.4rem;
text-align: center;
}
.thumblist {
width: 100%;
margin-top: 10px;;
display: flex;
flex-wrap: wrap;
}
.thumblist .img_cap {
display: none;
}
.thumblist-item {
width: calc(25% - 30px / 4);
height: auto;
margin-right: 10px;
margin-bottom: 10px;
cursor: pointer;
}
.thumblist-item:nth-child(4n) {
margin-right: 0px;
}
.thumblist-item img {
width: 100%;
aspect-ratio: 3 / 2;
object-fit: cover;
overflow: hidden;
opacity: 0.4;
}
.thumblist-item.current img {
opacity: 1;
border: solid 2px #A48A5F;
}

@media all and (max-width : 820px ){
.swiper-slide .img_cap {
font-size: 1.2rem;
}
}

@media all and (max-width : 767px ){
.swiper-slide .img_cap {
padding: 8px 5px;
font-size: 1.1rem;
}
.thumblist-item {
width: calc(25% - 15px / 4);
margin-right: 5px;
margin-bottom: 5px;
}
}


/* itembox_right 公演情報
-------------------------------------------------- */

.reserve_date {
font-size: 1.6rem;
font-weight: 500;
color: #B29458;
line-height: 100%;
margin-bottom: 10px;
}
.reserve_title {
font-size: 2.0rem;
font-weight: 500;
letter-spacing: 0.2em;
margin-bottom: 30px;
}
.reserve_txt {
font-size: 1.5rem;
margin-bottom: 30px;
}
.stage_title {
font-size: 1.8rem;
font-weight: 600;
letter-spacing: 0.2em;
color: #B29458;
padding : 0 10px 10px 5px;
border-bottom: solid 1px #8E7742;
margin-bottom: 20px;
}
.list_box {
width: 100%;
display: flex;
}
.list_box:last-of-child {
padding-bottom: 10px;
border-bottom: solid 1px #666;
margin-bottom: 30px;
}
.price_ttl {
font-size: 1.8rem;
font-weight: 500;
display: block;
white-space: nowrap;
width: 30%;
}
.price_box_wrap {
width: 70%;
}
.price_box {
margin-bottom: 20px;
}
.price_box dt {
font-size: 1.8rem;
font-weight: 500;
white-space: nowrap;
letter-spacing: 0.2em;
margin-bottom: 5px;
}
.price_box dd {
font-size: 1.3rem;
width: 100%;
}
.product_box {
width: 100%;
display: flex;
justify-content: space-between;
align-items: center;
padding: 0 30px;
margin-bottom: 10px;
}

@media all and (max-width : 820px ){
.product_box {
padding: 0 10px;
}
}

.pb01 {
padding-top: 30px;
margin-top: 10px;
border-top: solid 1px #666;
}
.product_ttl {
font-size: 1.6rem;
font-weight: 400;
letter-spacing: 0.2em;
}
.number_input span {
font-size: 1.6rem;
margin-right: 0.5em;
letter-spacing: 0.2em;
}
.number_input input[type=number] {
display: inline-block;
width: 50px;
height: auto;
padding: 8px 5px 8px 0;
border: solid 1px #666666;
border-radius: 3px;
text-align: right;
}

@media all and (max-width : 1024px ){
.reserve_title {
font-size: 1.8rem;
letter-spacing: 0.1em;
margin-bottom: 20px;
}
.reserve_txt {
font-size: 1.4rem;
margin-bottom: 25px;
}
.stage_title {
font-size: 1.6rem;
}
.price_box {
margin-bottom: 20px;
}
.price_box dt {
font-size: 1.6rem;
font-weight: 500;
white-space:normal;
letter-spacing: 0.1em;
margin-bottom: 5px;
}
.price_box dd {
font-size: 1.2rem;
}
}

.btn_area {
max-width: 400px;
margin: 30px auto 0;
position: relative;
}
.btn_area button {
position: absolute;
top: 0;
left: 0;
right: 0;
margin: 0 auto;
width: 100%;
height: 100%;
border: none;
border-radius: 0;
background:#8E0B0B;
padding: 0;
cursor: pointer;
transition-duration: 0.3s;
box-sizing: border-box;
-webkit-appearance: none;
}
.btn_area button::before {
content: "";
display: inline-block;
width: 15px;
height: 15px;
background-image: url("../img/reserve/icon_cart.svg");
background-repeat: no-repeat;
background-size: contain;
vertical-align: middle;
padding-left: 20px;
}
.btn_area .cart_btn {
display: flex;
justify-content: center;
align-items: center;
background: #8E0B0B;
border-radius: 5px;
width: 100%;
padding: 15px 10% 15px 10%;
color: #fff;
font-family: "Noto Serif JP", serif;
font-size: 1.5rem;
font-weight: 400;
text-align: center;
position: relative;
letter-spacing: 0.15em;
}
.btn_area .cart_btn:hover {
background: #8E7742;
transition: all 0.3s;
opacity: 1;
}
.cancel_txt {
font-size: 1.2rem;
margin: 15px 0 0 20px;
letter-spacing: 0.15em;
}
.cancel_txt a {
color: #B29458;
text-decoration: underline;
}
.cancel_txt a:hover {
text-decoration: none;
}

@media all and (max-width : 767px ){
.reserve_date {
font-size: 1.4rem;
}
.reserve_title {
font-size: 1.6rem;
margin-bottom: 20px;
}
.reserve_txt {
font-size: 1.3rem;
margin-bottom: 25px;
}
.stage_title {
font-size: 1.5rem;
}
.price_box {
margin-bottom: 20px;
}
.price_ttl {
font-size: 1.4rem;
width: 30%;
}
.price_box dt {
font-size: 1.4rem;
}
.price_box dd {
font-size: 1.1rem;
}
.product_ttl {
font-size: 1.4rem;
letter-spacing: 0.1em;
}
.number_input span {
font-size: 1.3rem;
letter-spacing: 0.1em;
}
.number_input input[type=number] {
padding: 6px 5px 6px 0;
}
.btn_area {
max-width: 300px;
margin: 30px auto 0;
}
.btn_area .cart_btn {
padding: 12px 10% 12px 10%;
font-size: 1.2rem;
letter-spacing: 0.1em;
}
.cancel_txt {
font-size: 1.0rem;
margin: 10px 0 0 25px;
}
}