﻿@charset "utf-8";
@media screen and (max-width: 767px) {

/* CSS Document */
/* 角丸ボーダーボックス */
#page{
	overflow:hidden;/*右側の空白を表示させない*/
}
.panel {
	line-height: 1.6em;
	border-radius: 2px;
/*	border: 1px solid #DDD;	*/
	border: 1px solid #D0D0D0;
	background: none repeat scroll 0 0 #FCFCFC;
	width: 100%;
}

/* 角丸ボーダーボックス 入力確認 */
.panel_c {
	line-height: 0.3em;
	border-radius: 2px;
	border: 1px solid #D0D0D0;
	background: none repeat scroll 0 0 #FCFCFC;
	margin: 20px 0 0 73px;
	width: 90%;
}

/* パネルタイトル */
.panel-header {
	background-color: #EEE;
	font-weight: normal;
	padding: 4px 0 0 9px;
	line-height: 2.5;
	border-bottom: 1px solid #DDD;
	position: relative;
	font-size: 1.05em;
}
/* パネル内側 */
.panel-inner {
	/*padding: 18px 25px;*/
	padding: 18px 0;
	text-align:center;
}
/* テキスト太字 */
.boldFont {
	font-weight:bold;
	font-size:1.3em;
	padding:5px 10px;
}
/* 文字寄せ */
.align-center {text-align: center !important;}/*form4.html「トップページへ」ボタン*/
.align-left   {text-align: left   !important;}
.align-right  {text-align: right  !important;}
.align-middle {display: table-cell; vertical-align: middle !important;}

/*form4.html「トップページへ」ボタン*/
.align-center a ,.align-center a:hover{
	padding:20px 60px;
	border-radius: 10px;
	color:#FFFFFF;
	margin-top:100px;
	display:inline-block;
	font-size:1.1em;
	font-weight:bold;
}

.align-center a{
	background-color:#666;
}
.align-center a:hover{
	background-color:#333;
}

/* フォーム用 */
.panel-form {
	padding: 0;
	margin-top:50px;
}
/*-------------------------------------
// 共通フォームテーブル
//                    table.form-table
-------------------------------------*/
table.form-table {
	width: 100%;
	box-sizing: border-box;
}
table.form-table tr th,
table.form-table tr td {
	display:list-item;
	padding: 8px 5px;
	border-top: 1px dotted #CCC;
	word-break: break-all;
	box-sizing: border-box;
	min-height: 40px;
}
table.form-table tr:first-child th,
table.form-table tr:first-child td {
	border-top: none;
}

table.form-table tr th {
	padding-right: 10px;
	padding-left: 7px;
	text-align: left;
	background-color: #e9e9e9;
	min-height:36px;

	line-height: 1.3;
	padding-top: 11px;
	padding-bottom: 10px;
}
table.form-table tr td {
	padding-left: 5px;
	padding-left: 5px;
	text-align: left;
	line-height: 150%;
	position: relative; /*validate position*/
}
table.form-table tr td span {
	display:block;/*htmlに直書きされているため、important指定にて、「姓」「名」「セイ」「メイ」改行させる*/
	font-size: 0.9em;
}
table.form-table tr td span.span_sei_mei {
	display:inline !important;/*htmlに直書きされているため、important指定にて、「姓」「名」「セイ」「メイ」改行させる*/
	font-size: 1.0em;
}

table.form-table th.title_center_green{
	background-color:lightgreen;
	text-align: center;
	color:red;
	font-size:1.5em;
}

/* 注記 */
#details table.form-table tr td .note {
	color: #666;
	font-size: 0.9em;
	line-height: 1.4;
	margin-bottom: 0.5em;
	margin-top: 0.8em;
}

/*form4.html「お振込先」内のtableタグ*/
.furikomi_saki{
	width:100%;
	font-weight:bold;
}
.furikomi_saki td{
	font-weight:bold;
}
#lodging textarea{
	width:90%;
	max-width:90%;
}

/*-------------------------------------
// 共通ボタン
//   [使用例]基本btnは必ず指定
//    class="btn btn-default"
//    class="btn btn-blue"
-------------------------------------*/

/* ボタン共通 */
.btn {
	-moz-user-select: none;
	border-radius: 10px;
	box-sizing: border-box;
	color: #FFF;
	cursor: pointer;
	font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
	font-size: 15px;
	font-weight: bold;
	padding: 6px 15px 5px;
	text-shadow: 0 1px rgba(255, 255, 255, 0.8);
	background-color: #F9F9F9;
/*	border: 1px solid #CCC;	*/
	background-repeat: no-repeat;
	display: inline-block;
	text-align: center;
	line-height: 150%;	/* ★縦位置が1pxずれるのを防ぐ。ずれたらこの値を1pxずらしてみる。単位無しはダメ。 */
	margin:15px 10px;
}

.btn:hover,
.btn:focus {
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
	text-decoration: none;
	background-color: #F0F0F0;
	color: #fff;
	border-color: #B9B9B9;
}
.btn:active {
	box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2);
	color: #fff;
}
.btn:link {
	color: #fff;
}
/* トランジション効果 */
.btn {
	transition: color 100ms ease-in-out 0s, background-color 100ms ease-in-out 0s, border-color 100ms ease-in-out 0s, box-shadow 100ms ease-in-out 0s, z-index 100ms ease-in-out 0s;
}
/* ボタン[青系] */
.btn-blue {
	color: #FFF !important;
	background-color: #488AC8;
	text-shadow: 0 1px rgba(0, 0, 0, 0.1);
	width:90%;
}
.btn-blue:hover,
.btn-blue:focus {
	color: #FFF !important;
	background-color: #3E80BE;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.btn-blue:active {
	color: #FFF;
	box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* ボタン[緑系] */
.btn-green {
	color: #FFF !important;
	background-color: #228b22;
	text-shadow: 0 1px rgba(0, 0, 0, 0.1);
	width:90%;
}
.btn-green:hover,
.btn-green:focus {
	color: #FFF !important;
	background-color: #006400;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.btn-blue:active {
	color: #FFF !important;
	box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* ボタン[赤系] */
.btn-red {
	color: #FFF !important;
	background-color: #dc143c;
	text-shadow: 0 1px rgba(0, 0, 0, 0.1);
	width:90%;
}
.btn-red:hover,
.btn-red:focus {
	color: #FFF !important;
	background-color: #8b0000;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.btn-blue:active {
	color: #FFF !important;
	box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* ボタン[デフォルト] */
.default {
	color: #333 !important;
}
.default :hover,
.default :focus {
	color: #333 !important;
}
.default:active {
	color: #333 !important;
}

/* ボタン[黒] */
.btn-black {
	color: #FFF !important;
	background-color: #555;
	text-shadow: 0 1px rgba(0, 0, 0, 0.1);
	width:90%;

}
.btn-black:hover,
.btn-black:focus {
	color: #FFF !important;
	background-color: #222;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.btn-black:active {
	box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* 進むボタンと戻るボタンの並び */
div.entry_btn_area {
	position: relative;
	width: 100%;
	height: 150px;
}
div.entry_btn_area .btn-black {
/*	width: 64%;	*/
/*	padding: 16px 24px;	*/
	width: 50%;
	padding: 12px 24px;
}
div.entry_btn_area a:first-child{
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin:0 auto;
}
div.entry_btn_area a:last-child{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin:0 auto;
}

div.entry_btn_area a:only-child{
	position: relative !important;
	margin: 0 auto;
}

/* 最大ボタン(基本のbtn-クラスと一緒に使用) */
.btn-xbig {
	font-size: 1.4em;
	font-weight:bold;
	color:#FFF;
	padding: 20px 30px;
	min-width: 150px;
}
.btn-xsmall {
	border: 1px solid #CCC;
}

/* 必須アイコン */
.hissu {
	background: url(../image/ico_hissu.png) no-repeat scroll left 1px transparent;
	padding-left: 35px;
}
.hissu_f {
	background: url(../image/ico_hissu.png) no-repeat scroll left 1px transparent;
	text-align: left;
	background-position: right;
	padding-right: 2.4em;
}
/* 入力フォーム共通 */
form textarea{
	width:90%;
	max-width:90%;
}
form input{
	max-width:90% !important;
}
form select{
	max-width:90%;
}

form input[type="text"],
form input[type="tel"],
form input[type="email"],
form textarea,
form select,
form input[type="password"] {
	color: #222;
	background-color: #FFF;
	border: 1px solid #BCBCBC;
	padding: 6px 1px 4px 8px;
	margin:5px 0px;
	min-height: 18px;

	font-size: 16px;	/* iPhoneでフォーカス時画面拡大防止（※user-scalable=yesの場合） */
}
form input[type="text"]:hover,
form input[type="tel"]:hover,
form input[type="email"]:hover,
form textarea:hover,
form select:hover,
form input[type="password"]:hover {
	background-color: #fffcef !important;
	border: 1px solid #A0A0A0 !important;
}
form input[type="text"]:focus,
form input[type="tel"]:focus,
form input[type="email"]:focus,
form textarea:focus,
form select:focus,
form input[type="password"]:focus {
	background-color: #fffcef !important;
	border: 1px solid #EFC400 !important;
}
form input[type="image"]:hover {
	opacity: 0.70;
	-moz-opacity: 0.70; /* Firefox */
	filter: alpha(opacity=70); /* IE6/7 */
	-ms-filter: "alpha(opacity=70)"; /* IE8 */
}
input[type="submit"],
input[type="button"] {
}
form label {
	margin-right: 1em;
}
form label:hover {
	cursor: pointer;
}
form fieldset legend {
	color: #000000;
	font-size: 1.2em;
	font-weight: bold;
}
form select {
	padding-left: 4px;
	height: 30px;
}
form select option {
	padding-right: 6px;
}
/* フォーム内各テキスト */
.form-note {
	font-size: 0.9em;
	padding-left: 5px;
}
.form-caution {
	font-size: 0.8em;
	color: #F00;
	padding-left: 5px;
}
.form-error {
	color: #F00;
	font-weight: bold;
	padding-left: 5px;
}
.form-example {
	color: #666666;
	font-size: 0.9em;
	line-height: 1.3;
	padding-left: 5px;
}

/* sdc_aoki add*/
table.form-table tr td label {
  display : inline-block;;
  word-wrap : break-word;
  overflow-wrap : break-word;
}
input[type=checkbox] {
    width: 15px;
    height: 15px;
    vertical-align: middle;
}
input[type=radio] {
    width: 15px;
    height: 15px;
    vertical-align: middle;
}
form input[type="text"].sei_mei {
	width: 30%;
}

/* 支払方法 金額計算 sdc_aoki add*/
table.form-table tr td table tr {
	border-top: 1px dotted #CCC;
}
table.form-table tr td table tr:first-child {
	border-top: 0;
}
table.form-table tr td table tr td {
	padding-left: 0px;
}
table.form-table tr td table tr td:nth-child(2) {
	font-size: 0.9em;
	padding-left: 10px;
}
table.form-table tr td span.desc {
	display: none;
	color: inherit;
	background-color: #fffacd;
	padding: 5px 10px;
	font-weight: bold;
	font-size: 1.1em;
}
table.form-table tr td p.desc_wrap {
	margin: 10px 5px;
}
table.form-table tr td span.amount_tanka {
	display:inline !important;
	font-size: 1.0em;
}

/* 支払い方法選択テーブル */
table#table_siharai_kbn tr td.td_siharai_kbn {
	font-size: 0.9em;
	padding-left: 1em;
}
table#table_siharai_kbn tr td.td_siharai_kbn table {
	width: 98%;
	margin: 0 auto;
}
table#table_siharai_kbn tr td.td_siharai_kbn label {
	font-weight: bold;
	font-size: 1.05em;
}
table#table_siharai_kbn tr td.td_siharai_kbn img {
	padding: 0 !important;
}
table#table_siharai_kbn tr td.td_siharai_kbn p {
	line-height: 1.4;
	margin: 0.2em 0 0.4em 1em;
}

table#table_siharai_kbn tr td.td_siharai_kbn table tr td:nth-child(1) {
	padding-bottom: 0;
	padding-top: 0.8em;
	border-top: 1px dotted #CCC;
}
table#table_siharai_kbn tr td.td_siharai_kbn table tr:first-child td:nth-child(1) {
	border-top: none;
}
table#table_siharai_kbn tr td.td_siharai_kbn table tr td:nth-child(2) {
	padding-left: 4%;
	padding-top: 0;
	overflow: hidden;
}


/* サブテーブル */
table.form-table-s {
	width: 100%;
	border-collapse: collapse;
	background-color:#fff;
    margin: 0;
    padding: 0;
    border: none;
    font-style: normal;
    font-weight: normal;
    font-size: 100%;
    text-align: left;
    list-style-type: none;
    box-sizing: border-box;
}
table.form-table-s tr th {
    background-color: #e9e9e9;

}
table.form-table-s tr td {
    height: 37px;

}
table.form-table-s tr th, table.form-table-s tr td{
    display: list-item;
    padding: 8px 5px;
    border-top: 1px dotted #CCC;
    border-collapse: collapse;
    word-break: break-all;
	width: 100%;
	box-sizing: border-box;

}

table.form-table-s tr:first-child th,
table.form-table-s tr:first-child td {
	border-top: none;
}


div.panel-s {
	float: none !important;
	margin-left: 0 !important;
	width : 100% !important;
	box-sizing: border-box;
}


/** 矢印(進み具合?) */
.active_root {
	text-align: center;
	width: 100%;
	margin: 0 atuo;
}

.signpost_ins_entry {
	background: url(../image/active_root/sp/ins_entry.png) no-repeat scroll left 1px transparent;
	width: 100%;
	height: 59px;
	background-size: 100% auto;
}
.signpost_ins_entry.input_reverse {
	background: url(../image/active_root/sp/ins_entry_r.png) no-repeat scroll left 1px transparent;
}
.signpost_upd_entry {
	background: url(../image/active_root/sp/upd_entry.png) no-repeat scroll left 1px transparent;
	width: 100%;
	height: 59px;
	background-size: 100% auto;
}
.signpost_ins_mousi {
	background: url(../image/active_root/sp/ins_mousi.png) no-repeat scroll left 1px transparent;
	width: 100%;
	height: 59px;
	background-size: 100% auto;
}
.signpost_ins_mousi.input_reverse {
	background: url(../image/active_root/sp/ins_mousi_r.png) no-repeat scroll left 1px transparent;
}
.signpost_upd_mousi {
	background: url(../image/active_root/sp/upd_mousi.png) no-repeat scroll left 1px transparent;
	width: 100%;
	height: 59px;
	background-size: 100% auto;
}
.signpost_ins_kakunin {
	background: url(../image/active_root/sp/ins_kakunin.png) no-repeat scroll left 1px transparent;
	width: 100%;
	height: 59px;
	background-size: 100% auto;
}
.signpost_ins_kakunin.input_reverse {
	background: url(../image/active_root/sp/ins_kakunin_r.png) no-repeat scroll left 1px transparent;
}
.signpost_upd_kakunin_entry {
	background: url(../image/active_root/sp/upd_kakunin_entry.png) no-repeat scroll left 1px transparent;
	width: 100%;
	height: 59px;
	background-size: 100% auto;
}
.signpost_upd_kakunin_mousi {
	background: url(../image/active_root/sp/upd_kakunin_mousi.png) no-repeat scroll left 1px transparent;
	width: 100%;
	height: 59px;
	background-size: 100% auto;
}
.signpost_ins_finish {
	background: url(../image/active_root/sp/ins_finish.png) no-repeat scroll left 1px transparent;
	width: 100%;
	height: 59px;
	background-size: 100% auto;
}
.signpost_ins_finish.input_reverse {
	background: url(../image/active_root/sp/ins_finish_r.png) no-repeat scroll left 1px transparent;
}
.signpost_upd_finish_entry {
	background: url(../image/active_root/sp/upd_finish_entry.png) no-repeat scroll left 1px transparent;
	width: 100%;
	height: 59px;
	background-size: 100% auto;
}
.signpost_upd_finish_mousi {
	background: url(../image/active_root/sp/upd_finish_mousi.png) no-repeat scroll left 1px transparent;
	width: 100%;
	height: 59px;
	background-size: 100% auto;
}


/* IME-MODE制限 */
form input.no-ime {ime-mode:disabled;}



}	/* ←削除禁止(@mediaの閉じ括弧) */

/* スマホ個別調整 */
@media screen and (max-width: 320px) {
	table.form-table .wdPx300 {
		width: 250px
	}
	table#table_siharai_kbn tr td.td_siharai_kbn p {
		font-size: 1em;
	}
}

