@charset "utf-8";

/*----- reset -----*/
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
p,
blockquote,
th,
td {
    margin: 0;
    padding: 0;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 100%;
    font-weight: normal;
}

input,
select,
textarea {
    font-family: inherit;
}

img {
    border: 0;
}

/*----- common -----*/
body {
    font-family: Meiryo, sans-serif;
}

a {
    color: #ae2323;
}

/*----- header -----*/
#header {
    min-width: 992px;
    border-bottom: solid 5px #ae2323;
}

.header-inner {
    position: relative;
    width: 992px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 10px;
    padding-bottom: 16px;
}

.header-logo {
    display: inline-block;
    margin-bottom: 8px;
}

.header-logo > a {
    display: block;
    width: 185px;
    height: 36px;
    background: url("/img/logo.svg?20200401") no-repeat 0 0;
    text-indent: 100%;
    word-wrap: normal;
    overflow-wrap: normal;
    white-space: nowrap;
    vertical-align: top;
    overflow: hidden;
}

.header-hallCount {
    position: absolute;
    top: 12px;
    right: 0;
    color: #333;
    font-size: 13px;
}

.header-hallCount > strong {
    font-weight: normal;
}

.header-function {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
}

/* 検索窓 */
#gHallSearch {
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 430px;
    height: 38px;
}

.gHallSearch-keyword {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1;
    -webkit-flex: 1;
    flex: 1;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 6px 8px;
    border: none;
    border-top: solid 1px #ccc;
    border-left: solid 1px #ccc;
    border-bottom: solid 1px #ccc;
    -webkit-border-radius: 3px 0 0 3px;
    -moz-border-radius: 3px 0 0 3px;
    border-radius: 3px 0 0 3px;
    background-color: transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.gHallSearch-option {
    width: 70px;
    border-top: solid 1px #ccc;
    border-bottom: solid 1px #ccc;
    border-left: solid 1px #ccc;
    color: #333;
    font-size: 14px;
    text-align: center;
    line-height: 36px;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    cursor: pointer;
}

.gHallSearch-option.is-setting {
    background-color: #fdeff8;
}

.gHallSearch-button {
    position: relative;
    width: 40px;
    margin: 0;
    padding: 0;
    border: none;
    background-color: #ae2323;
    border-top: solid 1px #ae2323;
    border-right: solid 1px #ae2323;
    border-bottom: solid 1px #ae2323;
    -webkit-border-radius: 0 3px 3px 0;
    -moz-border-radius: 0 3px 3px 0;
    border-radius: 0 3px 3px 0;
    text-indent: 100%;
    word-wrap: normal;
    overflow-wrap: normal;
    white-space: nowrap;
    vertical-align: top;
    overflow: hidden;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
}

.gHallSearch-button:after {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 22px;
    height: 22px;
    margin: auto;
    background: url("/img/index/icons.svg") no-repeat -6px -111px;
    content: "";
}

.gHallSearch-button:hover {
    opacity: .7;
}

.gHallSearch-optionBox {
    position: absolute;
    top: 100%;
    left: 10px;
    display: none;
    -webkit-box-shadow: 0 1px 4px rgba(41,51,57,.5);
    -moz-box-shadow: 0 1px 4px rgba(41,51,57,.5);
    box-shadow: 0 1px 4px rgba(41,51,57,.5);
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 550px;
    margin-top: 8px;
    padding: 20px 20px 24px;
    background-color: #fff;
    border: solid 1px #aaa;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    color: #333;
    font-size: 12px;
    z-index: 100;
}

.gHallSearch-optionBox.is-show {
    display: block;
}

.gHallSearch-optionBox:before,
.gHallSearch-optionBox:after {
    position: absolute;
    left: 338px;
    width: 0;
    height: 0;
    margin-top: 1px;
    border-left: solid 7px transparent;
    border-right: solid 7px transparent;
    pointer-events: none;
    content: "";
}

.gHallSearch-optionBox:before {
    top: -9px;
    border-bottom: solid 7px #aaa;
}

.gHallSearch-optionBox:after {
    top: -7px;
    border-bottom: solid 7px #fff;
}

.gHallSearch-optionBox-item {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    width: 100%;
    margin-bottom: 8px;
}

.gHallSearch-optionBox-item-label {
    width: 100px;
    font-weight: bold;
}

.gHallSearch-optionBox-item-input {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1;
    -webkit-flex: 1;
    flex: 1;
}

.gHallSearch-optionBox-item-input-setMachine,
.gHallSearch-optionBox-item-input-feature {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    height: 28px;
    padding: 6px 4px;
    border: solid 1px #ccc;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    background-color: #fff;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.gHallSearch-optionBox-item-input-setMachine::-ms-clear,
.gHallSearch-optionBox-item-input-feature::-ms-clear {
    visibility: hidden;
}

.gHallSearch-optionBox-item-input-kashidama {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 200px;
    height: 28px;
    border: solid 1px #ccc;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}

.hallFacilities {
    line-height: 2.4;
    list-style-type: none;
}

.hallFacilities-item {
    float: left;
}

.hallFacilities-item--half {
    width: 50%;
}

.hallFacilities-item--full {
    width: 100%;
}

.hallFacilities-item > label.is-disabled {
    color: #ccc;
}

.gHallSearch-optionBox-item-input-checkbox {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    transform: scale(1.2);
    width: 14px;
    height: 14px;
    margin-bottom: 3px;
    vertical-align: middle;
}

.gHallSearch-optionBox-searchButton {
    text-align: center;
}

.gHallSearch-optionBox-searchButton > button {
    padding: 8px 12px;
    border: none;
    background-color: #ae2323;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    color: #fff;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
}
.gHallSearch-optionBox-searchButton > button:hover {
    opacity: .7;
}

.gHallSearch-balloon {
    display: inline-block;
    position: absolute;
    bottom: 56px;
    left: 296px;
    width: auto;
    height: auto;
    margin-top: -10px;
    padding: 6px 6px 6px 10px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    background-color: #ffd40e;
    color: #333;
    font-size: 11px;
    font-weight: bold;
    line-height: 1;
    white-space: nowrap;
    animation: blink 1s linear 4;
    pointer-events: none;
}

.gHallSearch-balloon:after {
    position: absolute;
    content: "";
    display: block;
    top: 100%;
    left: 50%;
    width: 0;
    height: 0;
    margin-left: -4px;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 6px solid #ffd40e;
}

/* gNavi */
#gNavi {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -ms-flex: 1;
    -webkit-flex: 1;
    flex: 1;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    width: 100%;
    font-size: 15px;
    list-style-type: none;
}

.gNavi-item {
    width: 142px;
    font-weight: bold;
    text-align: center;
}

.gNavi-item:last-child {
    width: 120px;
    padding-left: 16px;
    text-align: right;
    white-space: nowrap;
}

.gNavi-item:not(:first-child) {
    position: relative;
}

.gNavi-item:not(:first-child):before {
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    margin: auto;
    background-color: #999;
    content: "";
}

.gNavi-item > a {
    color: #999;
    text-decoration: none;
}
.gNavi-item.is-current > a {
    color: #333;
}

/*----- footer -----*/
#footer {
    min-width: 992px;
}
.footer-inner {
    position: relative;
    width: 992px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 20px;
    padding-bottom: 20px;
}

.gFooterNavi {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    list-style-type: none;
    padding-top: 6px;
    padding-bottom: 6px;
    font-size: 14px;
    line-height: 1.2;
}

.gFooterNavi-item {
    padding: 0 16px;
}

.gFooterNavi-item:not(:first-child) {
    position: relative;
}

.gFooterNavi-item:not(:first-child):before {
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    background-color: #ae2323;
    content: "";
}

.gFooterNavi-item > a {
    color: #333;
    text-decoration: none;
}

.gFooterNavi-item > a:hover {
    opacity: .7;
}

.sslBox {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    list-style-type: none;
}

.sslBox-item {
    margin: 0 4px;
}

.sslBox-item > a > img {
    vertical-align: middle;
}

#copyrightMemo,
#copyright {
    padding-top: 4px;
    padding-bottom: 4px;
    font-size: 10px;
    text-align: center;
}












/* clearfix */
.clearfix:after {
    clear: both;
    content: " ";
    display: block;
    font-size: .1em;
    height: .1px;
    line-height: 0;
    visibility: hidden;
}

.clearfix {
    display: inline-block;
    min-height: 1%;
}
* html .clearfix {
    height: 1%;
}
