@charset "utf-8";
/* CSS Document */

a {
text-decoration:none;
color: #000;
}

body {}

.addition_box {
width: 640px;
margin: 20px auto 0;
}

.item {
margin-bottom: 20px;
}

.item img {
width: 640px;
}

.addition_tittle {
font-size: 24px;
text-align: left;
margin: 0 auto 3px;
padding-left: 3px;
}

.addition_text_area {
margin-bottom: 23px;
padding-top: 5px;
padding-left: 3px;
}

.addition_text {
font-size: 16px;
text-align: left;
margin: 0 auto ;
padding-top: 3px;
padding-left :3px;
}

.addition_telltap {
font-weight: bold;
font-size: 19px;
text-align: left;
margin: 10px auto 0;
}

.addition_emphasize {
    font-size: 20px;
    text-align: left;
    margin: 0 auto 5px;
    padding: 3px 3px;
}

.addition_text_center {
font-weight: bold;
font-size: 19px;
text-align: center;
margin: 0 auto ;
padding-top: 3px;
padding-left :3px;
}


/*--------------------------------
coupon-use
----------------------------------*/
.coupon-use-container {
    margin-bottom: 50px;
}

.coupon-use {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin: 0 auto 20px;
}

.use-item {
    width: 40%;
    display: inline-block;
}
.use-item img {
    width: 100%;
}

.use-heading {
    font-weight: 600;
    font-size: 20px;
    margin: 10px 0;
}

.use-text {
    font-size: 20px;
    margin: 0 0 20px;
}

@media screen and (min-width: 768px) {
    .coupon-use{
    width: 640px;
}
}


/*--------------------------------
開閉エリア
----------------------------------*/
/*inputを非表示 & 閉じた時の位置調整*/
.open-box{
  position: relative;
}
input[type="checkbox"].on-off{
  position: absolute;
  bottom: 0;
  display: block;
  opacity: 0;
}

/*ラベル（「開く」ボタン）*/
.open-label{
  margin: 0 1.5em;
  padding: 0.8em;
/*  display: block;*/
    display: inline-block;
  color: #fff;
  font-weight: bold;
  text-align: center;
  box-shadow: 0 2px 0 2px #aaa;
/*  background: #fcae11;*/
    background: #e83478;
  border-radius: 10px;
  position: relative;
       font-size: 24px;
    font-weight: 600;
    width: 13rem;
}
/*ボタンっぽい効果*/
.open-label:active{
  box-shadow: 0 0 0 0;
}
.open-label:hover{
  background: -webkit-linear-gradient(bottom, #fff4e0 1%,orange 80%);
/*  background: #fcbe11;*/
    background: #e85478;
}
/*ラベルに表示するテキスト*/
.open-label::after{
  content:'続きを読む ▼'; 
}
.on-off:checked ~ .open-label::after{
  content: '閉じる ✕';
}
/*開閉エリア*/
.open{
  padding: 1em;
  border-radius: 8px;
  height: 100px;/*ちらっと見える部分の高さ*/
  overflow: hidden;
  transition: .5s;
  position: relative;
}
.on-off:checked ~ .open{
  padding: 1.5em 1em;
  height: auto;
}

/*開閉エリアにぼかしを乗せる*/
.open::before{
  content:'';
  background: linear-gradient(to bottom, transparent,rgba(255,255,255,1)100%);
  position: absolute;
  top:0;
  left:0;
  right:0;
  bottom:0;
  z-index: 3;
}
/*開いたらぼかしを消す*/
.on-off:checked ~ .open::before{
  background: none;
  z-index: -1;
}
/*
@media screen and (min-width: 768px) {
    .open-label{
    width: 100px;
}
}*/

/*--------------------------------
room
----------------------------------*/

.room_list {
	width: 640px;
	margin: 0 auto 30px;
	padding: 0;
	display: block;
}
.room_list li {
    display: flex;
    width: 640px;
    justify-content: space-between;
}
.room_frame {
	margin-bottom: 10px;
}
.room_frame p {
	font-size: 20px;
	text-align: left;
    font-weight: bold;
	margin: 0;
}
.room_frame img {
	width: 312px;
}

.room_pickup img {
	width: 635px;
}

.triming_short img {
    object-fit: cover;
    height: 175.75px;
}
