@charset "utf-8";
/**********************************/
/*フォーム             			   */
/**********************************/
/*フォームデザインのデフォルトスタイルの削除*/
input, button, textarea, select {
    margin: 0;
    padding: 2px;
    background: none;
    border: solid 1px #999;
    border-radius: 0;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* お問い合わせ飾り用ライン */
.line{
    max-width:770px;
    width:100%;
    margin:0;
    padding:0;
}

/* 文章枠 */
.form-box-text{
    max-width:700px;
    width:90%;
    margin:0 auto;
    padding:1rem;
    font-size:1rem;
}

/* 文字（小） */
.font-s{
    font-size:0.8rem;
}

/*文字アンダーライン*/
.under-l{
    text-decoration: underline #70cc11 2px;
}


/* ＦＬＥＸ枠 */
.form-box-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content:center;
    margin:0 0 2em 0;
    list-style: none;
}

/**********************************/
/*フォーム仕様                     */
/**********************************/
/*サイズ（中）*/
.size-m {
    width: 15rem;
}
/*サイズ（小：郵便番号など）*/
.size-s {
    width: 8rem;
}
/*サイズ（代：テキストボックスなど）*/
.size-l {
    width: 100%;
}

.label {
    font-size: 0.9em;
    width: auto;
    display: block;
    text-align:left;
    margin:1em 0 0 0;
}

label.on::after {
    font-size: 0.8em;
    margin: 1em;
    padding: 0.2em;
    border-radius: 2px;
    width: auto;
    content: '必須';
    background-color:#ff6600;
}

label.off::after {
    font-size: 0.8em;
    margin: 1em;
    padding: 0.2em;
    border-radius: 2px;
    width: auto;
    content: '任意';
    background-color:#666;
}

label.non::after {
    font-size: 0.8em;
    margin: 1em;
    padding: 0.2em;
}

input[type="text"],
input[type="email"],
input[type="tel"]  {
	font: 15px/24px sans-serif;
	box-sizing: border-box;
    border-radius: 4px;
	width: 100%;
	letter-spacing: 1px;
	padding:0.5em 1em;
    border: 1px solid #aaa;
    color:#222;
    background-color:#fff;
    outline: none;
}

textarea{
	font: 15px/24px sans-serif;
	box-sizing: border-box;
    border-radius: 4px;
	width: 100%;
    height:10em;
	letter-spacing: 1px;
	padding:0.5em 1em;
    border: 1px solid #aaa;
    color:#222;
    background-color:#fff;
    outline: none;
}

input[type="date"],
select {
	font: 15px/24px sans-serif;
    color:#222;
    background-color:#fff;
	box-sizing: border-box;
    border-radius: 4px;
	width: 95%;
	letter-spacing: 1px;
	padding:0.5em 1em;
    border: 1px solid #aaa;
    outline: none;
}

.arrow {
    font: 15px/24px sans-serif;
    color:#222;
    background-color:#fff;
    box-sizing: border-box;
    border-radius: 4px;
    width: 70%;
    letter-spacing: 1px;
    padding:0.5em 1em;
    border: 1px solid #aaa;
    outline: none;
}

input[type='text']:focus,
input[type='textarea']:focus,
input[type='email']:focus,
input[type='tel']:focus,
input[type="date"]:focus,
select:focus,
textarea:focus {
	border-color: #70cc11;
}

/**********************************/
/* テーブル           			   */
/**********************************/

/* 入力用テーブル */
.form-table01{
    max-width:700px;
    width:95%;
    border-collapse: collapse;
    border-spacing: 0;
    margin:0 auto;
}

.form-table01 tr{
    border-width:0.5rem;
    border-style:solid;
    border-color: transparent;
}

@media screen and (min-width: 801px) {
    .form-table01 th{
        margin:0.5rem auto;
        text-align: right;
        max-width:200px;
        width:30%;
    }

    .form-table01 td{
        margin:0.5rem auto;
        text-align: left;
    }
}

@media screen and (max-width: 800px) {
    .form-table01 th,
    .form-table01 td {
        display: block;
        max-width:600px;
        width: 100%;
    }
}

/* 確認画面用テーブル */
#contact .wrap-top-text {
    background-color: rgba(255, 255, 255, 0.95);
}
#form-box .form-table02{
    max-width:650px;
    width:90%;
    border-collapse:collapse;
    border-spacing: 0;
    margin:0 auto;
    color:#000;
}

#form-box .left_td{
    border-bottom:1px solid #aaa;
    padding:1em;
    min-width:200px;
}

#form-box .right_td{
    border-bottom:1px solid #aaa;
    padding:1em;
}

#form-box .form-table02 th{
    border-bottom:1px solid #aaa;
    padding:1em;
}

#form-box .form-table02 td{
    border-bottom:1px solid #aaa;
    padding:1em;
}

#form-box .form-table02 span{
    font-size: 0.9em;
}

#form-box .img-bottom{
    border-bottom:1px solid #666;
    padding:10px;
    display: table-cell;
    position: relative;
}

.form-box-area {
	padding-top:15px;
}

@media screen and (max-width: 800px) {
    .form-table02 th,
    .form-table02 td {
        display: block;
        max-width:600px;
        width: 95%;
    }

    #form-box .right_td{
        background-color:#eee;
    }
}

#contact .section1,
#thanks .section1 {
    margin-bottom:0;
}

/**********************************/
/* 承諾チェックボックス             */
/**********************************/

/* チェックボックス01 */
input[type=checkbox] {
    display: none;
}
.checkbox01 {
    box-sizing: border-box;
    cursor: pointer;
    display: inline-block;
    padding: 5px 10px 5px 30px;
    position: relative;
    width: auto;
}
.checkbox01::before {
    background: #fff;
    border: 1px solid #aaa;
    content: '';
    display: block;
    height: 20px;
    left: 5px;
    margin-top: -8px;
    position: absolute;
    top: 50%;
    width: 20px;
}
.checkbox01::after {
    border-right: 3px solid #ff6600;
    border-bottom: 3px solid #ff6600;
    content: '';
    display: block;
    height: 12px;
    left: 10px;
    margin-top: -7px;
    opacity: 0;
    position: absolute;
    top: 50%;
    transform: rotate(45deg);
    width: 8px;
}
input[type=checkbox]:checked + .checkbox01::after {
    opacity: 1;
}

/*チェックボックスoff時グレー（来場予約ボタン）*/
.btn-o:disabled {
	background-color: #999;
}

/*チェックボックスoff時グレー*/
button:disabled {
	background-color: #999;
}

/**********************************/
/* ラジオボタン                    */
/**********************************/
/* ラジオボタン全体 */
input[type=radio] {
    display: none;
}

/* ラジオボタン01 */
.radio01 {
    box-sizing: border-box;
    cursor: pointer;
    display: inline-block;
    padding: 5px 30px;
    position: relative;
    width: auto;
}
.radio01::before {
    background: #fff;
    border: 1px solid #aaa;
    border-radius: 50%;
    content: '';
    display: block;
    height: 20px;
    left: 5px;
    margin-top: -8px;
    position: absolute;
    top: 50%;
    width: 20px;
}
.radio01::after {
    background: #ff6600;
    border-radius: 50%;
    content: '';
    display: block;
    height: 10px;
    left: 9px;
    margin-top: -4px;
    opacity: 0;
    position: absolute;
    top: 50%;
    width: 10px;
}
input[type=radio]:checked + .radio01::after {
    opacity: 1;
}

/* ラジオボタン02 */
.radio02 {
    cursor: pointer;
    padding-left: 30px;
    position: relative;
}

.radio02::before,
.radio02::after {
    content: "";
    display: block;
    border-radius: 50%;
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
}

.radio02::before {
    background-color: #fff;
    border: 1px solid #aaa;
    height: 20px;
    width: 20px;
    left: 5px;
}

.radio02::after {
    background-color: #ff6600;
    opacity: 0;
    height: 16px;
    width: 16px;
    left: 7px;
}

input:checked + .radio02::after {
    opacity: 1;
}

/**********************************/
/* 光が入るオレンジ色ボタン         */
/**********************************/
/*オレンジ色ボタン*/
    .btn-o{
    position:relative;
    display:inline-block;
    overflow:hidden;
    text-align:center;
    width:15em;/*タイトル幅*/
    height:2.5em;/*タイトル高さ*/
    border-radius: 5px; /* ボックスの四つ角を丸くする */
    background:#ff6600;
    color:#fff;
    padding:0 1em;
    margin:1em auto;
    font-size: 1em;
}

/*キラッと光る（来場予約ボタン）*/
.btn-o::before {
    content: '';
    /*絶対配置でキラッと光るの位置を決める*/
    position: absolute;
    top: 0;
    left: -75%;
    /*キラッと光る形状*/
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
    transform: skewX(-25deg);
}

/*hover（来場予約ボタン）*/
/*.btn-o:hover {
    background:#ff6600;
}*/

/*hoverした際の移動のアニメーション（来場予約ボタン）*/
.btn-o:hover::before {
    animation: shine 0.7s;
}

@keyframes shine {
	100% {
		left: 125%;
	}
}

/**********************************/
/* 光が入る灰色ボタン               */
/**********************************/
/*灰色ボタン*/
    .btn-g{
    position:relative;
    display:inline-block;
    overflow:hidden;
    text-align:center;
    width:15em;/*タイトル幅*/
    height:2.5em;/*タイトル高さ*/
    border-radius: 5px; /* ボックスの四つ角を丸くする */
    background:#333;
    color:#fff;
    padding:0 1em;
    margin:1em auto;
    font-size: 1em;
}

/*キラッと光る（来場予約ボタン）*/
.btn-g::before {
    content: '';
    /*絶対配置でキラッと光るの位置を決める*/
    position: absolute;
    top: 0;
    left: -75%;
    /*キラッと光る形状*/
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
    transform: skewX(-25deg);
}

/*hover（来場予約ボタン）*/
.btn-g:hover {
    background:#333;
}

/*hoverした際の移動のアニメーション（来場予約ボタン）*/
.btn-g:hover::before {
    animation: shine 0.7s;
}

@keyframes shine {
	100% {
		left: 125%;
	}
}