@charset "UTF-8";
/*basic*/
* {
    margin: 0;
    padding: 0;
}

summary {
    display: block;
    list-style: none;
}

/* 一部ブラウザで消えなかった場合は以下も追記 */
summary::-webkit-details-marker {
display:none;
}

figure {
    min-height: 104px;
}


.thumbnail {
    background-color: inherit;
    padding: 0;
    margin-bottom: 0px;
    border: none;
    border-radius: 0;
    transition: none;
}

label {
    font-weight: normal;
}

.glyphicon-move:before {
    content: "\e068";
    font-size: 20px;
}

.cast_list .glyphicon-move:before {
    font-size: 25px;
}

body {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: [header] 65px
                        [sub_header] 75px
                        [title] auto
                        [main] minmax(896px,auto)
                        [footer] 65px;
    min-height: 100vh;
    font-family: sans-serif;
    position:relative;
}

h1, .h1, h2, .h2, h3, .h3 {
    margin-top: 0;
    margin-bottom: 0;
}

h3 {
    font-size: 20px;
}

p {
    margin: 0 0 0;
}

* {
    box-sizing: content-box;
}

p {
    word-break: break-all;
}

h4 {
    text-align: center;
}

img {
    width: 100%;
    height: auto;
    vertical-align: bottom;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

::placeholder {
    color: #CCC;
}

input {
    display: block;
    width: 100%;
    box-sizing:border-box;
}

input[type="text"] {
    padding-left: 10px;
}

input[type="text"]:focus {
    outline: solid 1px black;
}

input[type="password"] {
    padding-left: 10px;
}

input[type="file"] {
    display: none;
}

input[type="datetime-local"] {
    padding: 10px;
}

textarea {
    width: 96%;
    padding: 2%
}

textarea.half {
    width: 43%;
    padding: 2%
}

textarea:focus {
    outline: solid 1px black;
}

summary {
    list-style: none;
    background-color: #F1F1F1;
    background-image: url(../img/list_triangle.jpg);
    background-position: right 10px center;
    background-repeat: no-repeat;
    background-size: 25px 15px;
    display: flex;
    gap: 20px;
}


/*end basic*/

/*color*/
#important {
    color: red;
}

#required {
    color: white;
    background-color: red;
}

#asterisk {
    color: #FBAF2A;
}

#blue_bg {
    color: white;
    background-color: #59DBCC;
}

#gray_bg {
    color: white;
    background-color: #333;
}

#green_bg {
    color: white;
    background-color: #00B900;
}

#beni_bg {
    color: white;
    background-color: #ED3D7B;
}
/*end color*/


/*link*/
.link {
    width: 70%;
    border-radius: 22px;
    margin: 40px auto;
}

.link a {
    font-size: 25px;
    text-align: center;
    vertical-align: middle;
}

.link_middle {
    height: 65px;
    width: 280px;
    padding: 0;
}

.link_middle a {
    line-height: 65px;
    display: block;
}

.link_middle p {
    line-height: 65px;
    text-align: center;
    font-size: 23px;
    cursor: pointer;
}
/*end link*/

/*span*/
span.cover {
    display: none;
}

span#required {
    padding: 3px;
    font-size: 15px;
}

span#asterisk {
    font-size: 10px;
}
/*end span*/

/*header*/
header {
    grid-column: 1/-1;
    grid-row: header;
    z-index: 2;
    text-align:center;

    position: fixed;
    top: 33px;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    background-color: white;
    width: 100%;
}

header h1 {
    padding-top: 3px;
    font-size: 20px;
    line-height: 65px;
}
/*end header*/

/*footer*/
footer{
    height: 60px;
    grid-column: 1/-1;
    grid-row: footer;
    text-align: center;
    color: white;
    background-color: black;
}

footer p {
    margin-top: 20px;
}

/*end footer*/

/*sub_header*/
.sub_header {
    grid-column: 1/-1;
    grid-row: sub_header;
    text-align: center;
    background-color: #59DBCC;
}

.sub_header h2 {
    color: white;
    font-size: 36px;
    font-weight: normal;
    line-height: 75px;
}
/*end sub_header*/

/*title*/
.title {
    grid-column: 1/-1;
    grid-row: title;
    text-align: center;
}

.title p {
    color: white;
    font-size: 24px;
    line-height: 60px;
    background-color: #333;
}
/*end title*/

/*main*/
main {
    min-height: 900px;
    grid-column: 1/-1;
    grid-row: main;
}

main > * {
    margin: 40px auto;
    padding: 0 40px;
    max-width: 340px;
}
/*end main*/

/*counter*/
.sub_topics {
    text-align: center;
}

/*caution*/
.caution {
    text-align: center;
}

.caution * {
    margin-bottom: 5px;
    font-size: 12px;
    color: #FBAF2A;
}
/*end caution*/

/*recommend*/
.recommend {
    text-align: center;
}

.recommend * {
    margin-top: 5px;
    line-height: 15px!important;
    font-size: 15px!important;
    color: #59DBCC;
}

/*end list*/

/*selection*/
.selection {
    margin: 40px auto;
    display: flex;
    flex-flow:row;
    justify-content: center;
    gap: 5px;
}

.selection li {
    margin-bottom: 0;
    padding-top: 5px;
    width: 40px;
    height: 35px;
    border: 1px solid #999;
    border-radius: 50%;
    cursor:pointer;
}

.selection input[type="radio"] {
    display: none;
}

.selection p {
    text-align: center;
}

.selection .day {
    margin-top: -3px;
    font-size: 10px;
}
/*end selection*/

.room_selection p {
    font-size: 10px;
    line-height: 20px;
    margin-top: 7px;

}

/*topics*/
.topics h3{
    text-align: center;
}
/*end topics*/

/*notice_from_the_operation*/
.notice_from_the_operation {
    padding: 15px;
    margin: 40px auto;
    border: 1px solid #CCC;
    border-left: 10px solid #F9CE56;
}

.notice_from_the_operation div {
    margin-bottom: 10px;
}

.notice_from_the_operation div h3 {
    font-size: 15px;
    font-weight: normal;
}

.notice_from_the_operation .notice_list {
    height: 200px;
    overflow: scroll;
}

.notice_from_the_operation .notice_list li {
    padding: 10px 0;
}

.notice_from_the_operation .notice_list li:not(:last-child){
    border-bottom: 1px solid #CCC;
}

.notice_from_the_operation .notice_list li p {
    font-size: 14px;
}
.notice_from_the_operation .notice_list li a {
    display: block;
    margin-top: 10px;
}

.notice_from_the_operation .notice_list li .date {
    color: #FBAF2A;
    font-size: 12px;
}
/*end notice_from_the_operation*/

.border {
    border-bottom: 1px solid #CCCCCC;
    margin-bottom: 40px;
}

/*---how_to_sort_news---*/

.how_to_sort_news details {
    border: 1px solid #CCC;
}

.how_to_sort_news summary {
    padding: 10px;
}

.how_to_sort_news summary h3 {
    font-weight: normal;
}

.how_to_sort_news .description {
    padding: 10px;
}

.how_to_sort_news .description p {
    font-size: 12px;
    color: #000;
}
/*---end how_to_sort_news---*/

/*cropper*/
.cropper-area img {
    display: block;
    max-width: 100%;
}
/*end cropper */

/*topics*/
.topics h3{
    height: 45px;
    line-height: 50px;
    width: 200px;
    margin: 0 auto;
    font-weight: normal;
    background-color: #E4E4E4;
}

.topics .border{
    border-bottom: 3px solid #E4E4E4;
}
/*end topics*/

@media(min-width: 900px) {
    .notice_from_the_operation {
        margin: 40px auto;
    }
}

.privacy {
    margin-bottom: 30px;
}

.list .coupon_privacy {
    background-color: #F1F1F1;
}
