@charset "UTF-8";

/*------------------------------------------------------------
    共通
------------------------------------------------------------*/
body {
	overflow: hidden;
	border-top: 5px solid #0aafc5;
	font-size: 1.4rem;
	padding-top: 30px;
	line-height: 1.6;
	color: #000;
}
#container {
	max-width: 460px;
	margin-right: auto;
	margin-left: auto;
	padding-right: 20px;
	padding-left: 20px;
}

@media screen and (min-width: 768px) {
	#container {
		max-width: 1060px;
	}
}

@media screen and (min-width: 992px) {
	body {
		font-size: 1.6rem;
		padding-top: 60px;
	}
	#container {
		padding-right: 30px;
		padding-left: 30px;
	}
}

/*------------------------------------------------------------
    アイコンフォント
------------------------------------------------------------*/
@font-face {
  font-family: 'mfp';
  src:
    url('fonts/mfp.ttf?h9jp68') format('truetype'),
    url('fonts/mfp.woff?h9jp68') format('woff'),
    url('fonts/mfp.svg?h9jp68#mfp') format('svg');
  font-weight: normal;
  font-style: normal;
}

[class^="ico-"], [class*=" ico-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'mfp' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.ico-arrow_right:before {
  content: "\e900";
}
.ico-arrow_under:before {
  content: "\e901";
}
.ico-check:before {
  content: "\e902";
}
.ico-link:before {
  content: "\e905";
}
.ico-tel:before {
  content: "\e903";
}


/*------------------------------------------------------------
    冒頭
------------------------------------------------------------*/
.form_intro {
	margin-bottom: 30px;
}
.mv {
	background-image: url(_images/bg_mv_sp.jpg);
	background-repeat: no-repeat;
	background-size: 100%;
	padding-top: 95%;
	height: auto;
	text-align: center;
	position: relative;
	margin-bottom: 15px;
}
.mv__inner {
	width: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	-moz-transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	-o-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
}
.mv__ttl {
	font-size: 1.4rem;
}
.mfp_logo {
	width: 120px;
    margin: 0 auto;
}
.form_intro__txt {
	line-height: 1.6;
	max-width: 800px;
	margin-right: auto;
	margin-left: auto;
}

@media screen and (min-width: 768px) {
	.mv {
		background-image: url(_images/bg_mv_pc.jpg);
		padding-top: 34%;
	}
	.mfp_logo {
		width: 177px;
	}
}

@media screen and (min-width: 992px) {
	.form_intro {
		margin-bottom: 60px;
	}
	.mv {
		margin-bottom: 30px;
	}
	.mv__ttl {
		font-size: 1.8rem;
	}
}

/*------------------------------------------------------------
    フォーム
------------------------------------------------------------*/
.mailform {
	margin-bottom: -20px;
}
.mailform th {
	display: block;
	padding: 15px 20px;
	background: #f7f7f7;
	margin-right: -20px;
	margin-left: -20px;
	text-align: left;
	font-weight: normal;
	font-size: 1.4rem;
}
.mailform td {
	display: block;
	padding-top: 20px;
	padding-bottom: 20px;
}
input,
select,
textarea {
	width: 100%;
	height: 38px;
	border: 1px solid #bbbbbb;
	border-radius: 3px;
	line-height: 38px;
	padding: 0 10px;
	box-shadow: 0px 0px 7px 1px rgba(0, 0, 0, 0.05) inset;
	font-size: 1.4rem;
}
input:focus,textarea:focus {
	border-color: #292929;
}
textarea {
	width: 100%!important;
	height: auto!important;
}
:placeholder-shown {color:#999;}
::-webkit-input-placeholder {color:#999;}
::-moz-placeholder {color:#999;}
:-ms-input-placeholder {color:#999;}
:-moz-placeholder {color:#999;}

@media screen and (min-width: 768px) {
	input,select,textarea {
		font-size:1.8rem;
	}
	.mailform {
		letter-spacing: 0;
		font-size: 0;
		margin-bottom: 0;
	}
	.mailform th,
	.mailform td {
		display: table-cell;
		font-size: 1.6rem;
		margin: 0;
		border-top: 1px solid #e6e6e6;
	}
	.mailform th:last-child,
	.mailform td:last-child {
		border-bottom: 1px solid #e6e6e6;
	}
	.mailform th {
		width: 26%;
		vertical-align: top;
		padding: 15px 30px;
		line-height: 1.8;
	}
	.mailform td {
		width: 74%;
		padding: 10px 30px;
	}
	.small {
		width: 60%;
	}
}

/* 必須・任意
--------------------------------------------- */
.must,
.any {
	font-size: 1.0rem;
	padding: 5px;
	border-radius: 3px;
	color: #fff;
	margin-right: 10px;
	background: #f55e53;
	vertical-align: middle;
}
.any {
	color: #f55e53;
	background: #fff;
}
@media screen and (min-width: 768px) {
	.must,
	.any {
		font-size: 1.2rem;
	}
}

/* ラジオボタン・チェックボックス
--------------------------------------------- */
.label_contents input {
	display: none;
}
.label_contents label {
	display: block;
	width: 100%;
	line-height: 50px;
	position: relative;
}
.label_contents label:before {
	content: "";
	width: 20px;
	height: 20px;
	background: #e0e0e0;
	position: absolute;
	top: 15px;
	left: 22px;
}
.radio_contents label:before {
	border-radius: 100px;
}
.radio_contents input:checked ~ label:after {
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 100px;
	background: #0aafc5;
	position: absolute;
	top: 21px;
	left: 28px;
}
.check_contents input:checked ~ label:after {
	font-family: 'mfp';
	content: "\e902";
	position: absolute;
	font-size: 1.6rem;
	top: 1px;
	left: 24px;
	color: #0aafc5;
}

@media screen and (max-width: 767px) {
	.label_contents ul {
		border: 1px solid #bbb;
		border-radius: 3px;
	}
	.label_contents ul li:not(:last-child) {
		border-bottom: 1px solid #bbb;
	}
	.label_contents label {
		filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr=#ffffff, endColorstr=#f3f3f3);
		background-image:-moz-linear-gradient(top, #ffffff 0%, #f3f3f3 100%);
		background-image:-webkit-linear-gradient(top, #ffffff 0%, #f3f3f3 100%);
		background-image:-ms-linear-gradient(top, #ffffff 0%, #f3f3f3 100%);
		background-image:linear-gradient(top, #ffffff 0%, #f3f3f3 100%);
		background-image:-o-linear-gradient(top, #ffffff 0%, #f3f3f3 100%);
		background-image:-webkit-gradient(linear, right top, right bottom, color-stop(0%,#ffffff), color-stop(100%,#f3f3f3));
		padding-left: 50px;
	}
	.label_contents input:checked ~ label{
		background: #0aafc5;
		color: #fff;
	}
	.label_contents input:checked ~ label:before {
		background: #fff;
	}
}

@media screen and (min-width: 768px) {
	.label_contents ul {
		letter-spacing: 0;
		font-size: 0;
	}
	.label_contents ul li {
		vertical-align: top;
		display: inline-block;
		width: 50%;
		font-size: 1.8rem;
	}
	.label_contents label {
		padding-left: 45px;
		line-height: 40px;
	}
	.label_contents input:checked ~ label:before {
		background: #0aafc5;
	}
	.radio_contents input:checked ~ label:after {
		background: #fff;
	}
	.label_contents label:before {
		left: 0;
		top: 5px;
		width: 30px;
    	height: 30px;
	}
	.radio_contents input:checked ~ label:after {
		left: 10px;
		top: 15px;
		width: 10px;
    	height: 10px;
	}
	.check_contents input:checked ~ label:after {
		left: 4px;
		font-size: 2.3rem;
		color: #fff;
	}
	.check_contents ul li:nth-child(1),.check_contents ul li:nth-child(2){
		margin-bottom: 10px;
	}
}

/* セレクトボックス
--------------------------------------------- */
.select_ico {
	position: relative;
}
.select_ico:before {
	font-family: 'mfp';
	content: "\e901";
	font-size: 1.6rem;
	position: absolute;
	top: -6px;
	right: 10px;
	color: #0aafc5;
	border-left: 1px solid #bbb;
	line-height: 28px;
	padding-left: 10px;
	pointer-events: none;
}

/* 生年月日
--------------------------------------------- */
.birthday {
	letter-spacing: 0;
	font-size: 0;
}
.birthday li {
	display: inline-block;
	letter-spacing: 1px;
	font-size: 1.4rem;
	width: 100%;
}
.birthday li:not(:last-child) {
	margin-bottom: 10px;
}
.birthday ul li input{
	width: 70%;
}
.birthday ul li span {
	display: inline-block;
	width: 30px;
	line-height: 40px;
	text-align: center;
}
.memberprice input{
	width: 120px;
}

@media screen and (min-width: 768px) {
	.birthday li {
		width: auto;
	}
	.birthday li:not(:last-child) {
		margin-bottom: 0;
	}
	.birthday ul li input {
		width: 90px;
	}
	.birthday ul li span {
		width: 50px;
	}
}

/* 住所
--------------------------------------------- */
.address ul li:not(:last-child) {
	margin-bottom: 15px;
}
.address_name {
	display: block;
}

/* 送信確認
--------------------------------------------- */
.submit_check p {
	margin-bottom: 30px;
}
.submit_check p span {
	text-decoration: underline;
	color: #0aafc5;
}
.submit_check p span:hover {
	color: #007485;
}
.submit_check p a:after {
	font-family: 'mfp';
	content: "\e905";
	color: #0aafc5;
}
.submit_check p a:hover:after {
	color: #007485;
}
.label_contents.submit_check label {
	background: #f5f5f5;
	font-size: 1.2rem;
}

@media screen and (min-width: 768px) {
	.label_contents.submit_check p {
		margin-bottom: 15px;
	}
	.label_contents.submit_check label {
		padding: 10px 20px 10px 60px;
		font-size: 1.8rem;
	}
	.label_contents.submit_check label:before {
		left: 20px;
		top: 14px;
	}
	.check_contents.submit_check input:checked ~ label:after {
		left: 24px;
		top: 9px;
	}
}

/* エラー
--------------------------------------------- */
.problem {
	background-color: #ffecec;
	border: 1px solid #ec3f3f;
	box-shadow: 0px 0px 7px 1px rgba(236, 63, 63, 0.05) inset;
}
.mfp_err {
	display: none;
	color: #ec3f3f;
	font-size: 1.2rem;
	background-image: url(_images/mfp_error.gif);
	background-position: 10px 2px;
	padding-left: 30px;
}
.check_contents .mfp_err {
	padding: 0 0 10px 30px;
	background-color: #f3f3f3;
}
.problem::placeholder-shown {color:#ec3f3f;}
.problem::-webkit-input-placeholder {color:#ec3f3f;}
.problem::-moz-placeholder {color:#ec3f3f;}
.problem:-ms-input-placeholder {color:#ec3f3f;}
.problem:-moz-placeholder {color:#ec3f3f;}

@media screen and (min-width: 768px) {
	.mfp_err {
		background-color: #fff;
	}
	.check_contents .mfp_err {
		padding: 0 0 0 30px;
		background-color: #fff;
	}
}


/* 注釈
--------------------------------------------- */
.mfp_note {
	font-size: 1.2rem;
	color: #666;
}
@media screen and (min-width: 768px) {
	.mfp_note {
		text-indent: -1.5em;
		padding-left: 1em;
		font-size: 1.4rem;
	}
}

/* 送信ボタン
--------------------------------------------- */
.mfp_buttons {
	text-align: center;
	margin: 30px 0 60px;
}
.mfp_buttons button {
	font-size: 1.4rem;
	width: 240px;
	background: #f55e53;
	border-radius: 5px;
	color: #fff;
	padding: 15px 0;
	position: relative;
    transition: .2s ease-in;
}
.mfp_buttons button:hover {
    background: #ba423a;
}
.mfp_buttons button:after {
	font-family: 'mfp';
	content: "\e900";
	position: absolute;
	font-size: 1.2rem;
	right: 15px;
	top: 17px;
}
@media screen and (min-width: 768px) {
	.mfp_buttons {
		margin: 60px 0;
	}
	.mfp_buttons button {
		font-size: 1.8rem;
		border-radius: 0;
	}
	.mfp_buttons button:after {
		right: 30px;
		top: 20px;
	}
}

/*------------------------------------------------------------
    会社情報
------------------------------------------------------------*/
.form_info {
	margin-bottom: 60px;
}
.form_info__inner {
	background: #f5f5f5;
	padding: 30px;
	color: #000;
	max-width: 700px;
	margin-right: auto;
	margin-left: auto;
}
.form_info__name {
	font-size: 1.6rem;
    margin-bottom: 15px;
    font-weight: bold;
}
.form_info__address {
	font-size: 1.2rem;
}
.form_info__tel a {
    color: #000;
}
.form_info__tel a:before {
    font-family: 'mfp';
    content: "\e903";
    margin-right: 5px;
}
@media screen and (min-width: 768px) {
	.form_info__name {
		font-size: 2rem;
		margin-bottom: 24px;
	}
	.form_info__address {
		margin-bottom: 24px;
	}
	.form_info__address,.form_info__tel {
		font-size: 1.6rem;
	}
}
@media screen and (max-width: 767px) {
	.form_info__tel a {
		color: #327adc;
		display: block;
		text-align: center;
		border: 1px solid #327abc;
		border-radius: 5px;
		margin-top: 15px;
		padding: 6px;
	}
	.form_info__inner {
		padding:20px;
	}
}

/*------------------------------------------------------------
    　フッター
------------------------------------------------------------*/
#footer {
	margin: 0;
	background: #0aafc5;
	color: #fff;
	text-align: center;
	font-size: 1.2rem;
	padding: 10px 20px;
}

/*------------------------------------------------------------
    　ローディング
------------------------------------------------------------*/
#mfp_loading_screen {
    z-index: 20000;
    opacity: 0.8;
    display: none;
    background-color: #000;
    position: absolute;
}
#mfp_loading {
    z-index: 20001;
    position: absolute;
    display: none;
    width: 40px;
    height: 40px;
    background-image: url(_images/mfp_loading.gif);
}

/*------------------------------------------------------------
    　mfp_hidden
------------------------------------------------------------*/
#mfp_hidden {
    overflow: hidden;
    width: 1px;
    height: 1px;
    padding: 0px;
    margin: 0px;
}
#mfp_hidden input {
    margin: 10px;
}

/*------------------------------------------------------------
    確認画面
------------------------------------------------------------*/
#mfp_overlay_background {
    background-color: #000;
    position: absolute;
    display: none;
    z-index: 10000;
    height: 100vh !important;
}
#mfp_overlay {
    position: absolute;
    display: none;
    z-index: 10001;
}
#mfp_overlay_inner {
    background-color: #FFF;
    padding: 15px;
    border-radius: 10px;
    margin: 0 20px;
}
#mfp_overlay_inner h4 {
	font-size: 1.6rem;
	margin-bottom: 15px;
}
#mfp_confirm_table tr:nth-child(even) {
	background: #f5f5f5;
}
#mfp_confirm_table tr th,
#mfp_confirm_table tr td {
    text-align: left;
    font-size: 12px;
    border-top: solid 1px #CCC;
    padding: 5px 10px;
}
#mfp_confirm_table tr:last-child th,
#mfp_confirm_table tr:last-child td {
    border-bottom: solid 1px #CCC;
}
#mfp_confirm_table tr th {
    white-space: nowrap;
    width: 20%;
    vertical-align: top;
}
#mfp_confirm_table tr td {
    line-height: 1.6em;
    word-break: break-all;
    width: 80%;
}
.mfp_buttons #mfp_button_send {
	width: 200px;
	margin-right: 15px;
}
.mfp_buttons #mfp_button_cancel {
	background: #999;
	width: 160px;
}
.mfp_buttons #mfp_button_cancel:after {
	content: "";
}

@media screen and (max-width: 449px) {
	#mfp_overlay_inner .mfp_buttons {
		display: -webkit-box;
		display: -webkit-flex;
		display: flex;
	}
}

@media screen and (min-width: 768px) {
	#mfp_overlay_inner {
		padding: 60px;
	}
	#mfp_overlay_inner h4 {
		font-size: 2rem;
		margin-bottom: 30px;
		font-weight: bold;
	}
	#mfp_confirm_table tr th,
	#mfp_confirm_table tr td {
		font-size: 1.4rem;
	}
}

@media screen and (min-width: 840px) {
	#mfp_overlay_inner {
		margin-right: auto;
		margin-left: auto;
		max-width: 800px;
	}
}

/* スマホ表示位置設定 */
@media screen and (max-width: 768px) {
	#mfp_overlay {
		top: auto !important;
		bottom: 10px !important;
	}
}

/*------------------------------------------------------------
    サンクス
------------------------------------------------------------*/
.mfp_thanks {
	max-width: 800px;
	margin-right: auto;
	margin-left: auto;
}
.thanks_logo {
	text-align: center;
	margin-bottom: 25px;
}
.thanks_ttl {
	font-size: 1.8rem;
	margin-bottom: 30px;
	text-align: center;
}
#ThanksComment {
	margin-bottom: 60px;
}
.thanks_com_tac{
	text-align: center;
}
.thanks_btn a,
.next_btn {
	display: block;
	width: 240px;
	background: #0aafc5;
	border-radius: 0;
	color: #fff;
	text-align: center;
	line-height: 60px;
	font-size: 1.4rem;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 120px;
}
.thanks_logo {
	width: 120px;
	margin: 0 auto 30px;
}

@media screen and (min-width: 768px) {
	.thanks_logo {
		margin-bottom: 120px;
		width: 177px;
	}
	.thanks_ttl {
		font-size: 2.4rem;
		margin-bottom: 60px;
	}
	#ThanksComment {
		margin-bottom: 60px;
	}
	.thanks_btn a,
	.next_btn {
		font-size: 1.8rem;
	}
}


/*------------------------------------------------------------
    保留
------------------------------------------------------------*/

.optionally {
    display: block;
    background-color: #06C;
    border: solid 2px #06C;
    text-shadow: 0px 1px 2px #933;
    padding: 2px 5px;
    font-size: 10px;
    color: #FFF;
    float: left;
    margin: 0px 5px;
    border-radius: 4px;
    box-shadow: 0px 0px 5px #CCC;
    background-image: url(_images/mfp_header.png);
    background-size: 100% 100%;
}
#mfp_confirm_table {
    border-spacing: 0px;
    border-collapse: collapse;
    width: 100%;
}

#mfp_phase_confirm {
    clear: both;
}
#mfp_phase_confirm h4 {
    font-size: 36px;
    padding: 10px 0px 0px 0px;
    text-align: center;
}




.mfp_achroma {
    background-color: #FFF;
}

.mfp_parent_error {
    border: solid 2px #F00;
}

div#mfp_error {
    background-color: #FEE;
    border: solid 1px #F00;
    padding: 10px;
    display: none;
}
div#mfp_error p {
    padding: 0px;
    margin: 0px;
    font-size: 14px;
    text-align: center;
}
div#mfp_error p strong {
    font-size: 18px;
    color: #F00;
}
div#mfp_warning {
    background-color: #FEE;
    border: solid 1px #F00;
    padding: 10px;
    display: none;
    border-radius: 5px;
}
div#mfp_warning p {
    padding: 0px;
    margin: 0px;
    font-size: 14px;
    text-align: center;
}
div#mfp_warning p strong {
    font-size: 18px;
    color: #F00;
}
div#mfp_price {
    color: #C00;
    font-size: 36px;
    padding: 10px;
    font-weight: bolder;
}
div#mfp_price span {
    color: #666;
    font-size: 12px;
    font-weight: normal;
}
button.mfp_next,button.mfp_prev {
    font-size: 18px;
    margin: 10px;
    padding: 5px 10px;
}
button.mfp_next {
    float: right;
}
button.mfp_prev {
    float: left;
}
ul#mfp_phase_stat {
    padding: 10px;
    text-align: center;
}
ul#mfp_phase_stat li {
    display: inline-block;
    padding: 8px 15px;
    border-radius: 5px;
    margin: 0px 5px;
    list-style: none;
    font-size: 14px;
}
ul#mfp_phase_stat li.mfp_phase_arrow {
    box-shadow: none;
    color: #999;
    padding: 8px 0px;
}
#mfp_phase_stat li.mfp_phase_arrow {
	margin: 0 4px;
}
ul#mfp_phase_stat li.mfp_active_phase {
    box-shadow: 0px 1px 6px #000;
    background-image: url(_images/mfp_header.png);
    background-size: 100% 100%;
    background-color: #0068B7;
    border: solid 2px #0068B7;
    font-weight: bolder;
    color: #FFF;
    text-shadow: 0px 1px 3px #000;
}
ul#mfp_phase_stat li.mfp_inactive_phase {
    background-image: url(_images/mfp_header.png);
    background-size: 100% 100%;
    background-color: #EEE;
    border: solid 2px #EEE;
    color: #999;
    box-shadow: 0px 1px 6px #CCC;
}
div#mfp_shopping_cart {
    border: solid 1px #CCC;
    margin: 0px;
    padding: 0px;
}
div#mfp_shopping_cart p {
    margin: 0px;
    text-align: center;
    padding: 20px 10px;
    font-size: 12px;
    background-color: #FEE;
}
table.mfp_shoppingcart {
    border-spacing: 0px;
    border-collapse: collapse;
    width: 100%;
}
table.mfp_shoppingcart thead tr td {
    background-color: #EEE;
    border-bottom: solid 1px #CCC;
    text-align: center;
    font-size: 12px;
    padding: 5px;
}
table.mfp_shoppingcart tbody tr th,table.mfp_shoppingcart tbody tr td {
    font-size: 12px;
    padding: 5px;
    border-bottom: solid 1px #CCC;
}
table.mfp_shoppingcart tbody tr td select {
    display: block;
    margin: 0px auto;
    text-align: center;
}
table.mfp_shoppingcart tbody tr td select option {
    text-align: center;
}
table.mfp_shoppingcart tbody tr th span {
    display: block;
    font-weight: normal;
    font-size: 10px;
    color: #666;
    padding: 3px 0px;
}
table.mfp_shoppingcart tfoot tr td {
    padding: 5px;
    font-size: 16px;
    font-weight: bolder;
    color: #900;
}
td.msc_price {
    font-size: 12px;
    text-align: right;
}



.imagebutton {
    margin: 0px;
    padding: 0px;
    border: none;
    outline: none;
    background: none;
}
.mfp_element_file {
    font-size: 12px;
    display: inline-block;
    padding: 10px 10px;
    vertical-align: middle;
    border: solid 1px #CCC;
    border-radius: 3px;
    box-shadow: 0px 0px 5px #CCC inset;
    background: #EEE;
}
.mfp_element_reset {
    color: #333;
}
button.mfp_next,button.mfp_prev {
    font-size: 14px;
}
input#mfp_reserve_item,input#mfp_reserve_date {
    display: none;
}
div#mfp_reserve_wrapper {
    position: relative;
    overflow: hidden;
    border: solid 1px #CCC;
}
div#mfp_reserve_inner {
    position: relative;
    padding: 0px 0px 0px 100px;
    overflow: auto;
}
div#mfp_reserve_wrapper table {
    border-spacing: 0px;
    border-collapse: collapse;
}
div#mfp_reserve_wrapper table.mfp_reserve_table_label {
    position: absolute;
    top: 0px;
    left: 0px;
    background-color: #FEE;
    z-index: 100;
}
div#mfp_reserve_wrapper table.mfp_reserve_table_value {
    padding: 0px 0px 0px 0px;
}
div#mfp_reserve_wrapper table.mfp_reserve_table_value tr td.mfp_reserve_active,
div#mfp_reserve_wrapper table.mfp_reserve_table_value tr td.mfp_reserve_warning {
    cursor: pointer;
}
div#mfp_reserve_wrapper table.mfp_reserve_table_value tr td.mfp_reserve_active:hover,
div#mfp_reserve_wrapper table.mfp_reserve_table_value tr td.mfp_reserve_warning:hover {
    background-color: #E8EEF9;
}
div#mfp_reserve_wrapper table.mfp_reserve_table_value tr td.mfp_reserve_current {
    background-color: #0068B7;
    color: #FFF;
}
td.mfp_reserve_disabled {
    background-color: #CCC;
}
td.mfp_reserve_warning {
    background-color: #FFC;
}
div#mfp_reserve_wrapper table tr td,div#mfp_reserve_wrapper table tr th {
    border: solid 1px #CCC;
    padding: 0px 5px;
    font-size: 12px;
    text-align: center;
    font-family: Osaka,"ＭＳ Ｐゴシック","MS PGothic",Sans-Serif;
    font-weight: normal;
    height: 20px;
    text-align: left;
}
td.mfp_reserve_week_0 {
    color: #F00;
    background-color: #FEE;
}
td.mfp_reserve_week_6 {
    color: #00F;
    background-color: #EEF;
}
div.mfp_ok {
    border-radius: 5px;
    background-color: #090;
    border: solid 1px #090;
    display: inline-block;
    line-height: 1.6em;
    padding: 0px 5px;
    margin: 0px 2px;
    color: #FFF;
    font-size: 10px;
    background-image: url(_images/mfp_header.png);
    background-size: 100% 100%;
    display: none;
}
div.prefcodeWrapper {
    position: relative;
}
div.prefcodeResult {
    position: absolute;
    top: 0px;
    left: 0px;
    padding: 5px;
    border: solid 1px #CCC;
    background-color: #FFF;
    box-shadow: 0px 0px 5px #CCC;
    display: none;
}
div.prefcodeResult div {
    cursor: pointer;
}
div.prefcodeResult div:hover {
    background-color: #C9EBFB;
}
div.prefcodeResult div.prefcodeNext {
    background-color: #EEE;
    text-align: center;
}
div.prefLoading {
    padding: 60px 100px;
    background: url(_images/mfp_zip_loading.gif) no-repeat center center;
}
.hidefield {
    height: 0px;
    overflow: hidden;
}
.showfield {
    height: auto;
    overflow: visible;
}
div.mfp_attached_thumbnails {
    display: none;
    padding: 5px;
    margin: 5px auto;
    border: solid 1px #CCC;
    border-radius: 3px;
    box-shadow: 0px 0px 5px #CCC inset;
    background: #EEE;
}
div.mfp_attached_thumbnails ul {
    margin: 0px;
    padding: 0px;
}
form#mailformpro dl dd div.mfp_attached_thumbnails ul li {
    display: inline-block;
    vertical-align: top;
    padding: 0px;
    border: solid 4px #FFF;
    margin: 5px;
    box-shadow: 0px 2px 5px #999;
}
form#mailformpro dl dd div.mfp_attached_thumbnails ul li a {
    display: block;
    max-height: 100px;
    overflow: hidden;
}
div.mfp_attached_thumbnails ul li a img {
    display: block;
    max-width: 80px;
}
button.mfp_attached_reset {
    font-size: 14px;
}
div#mfp_OperationCheck {
}
div#mfp_OperationCheck div#mfp_OperationCheck_inner {
    display: none;
}
div#mfp_OperationCheck strong {
    background: #090;
    display: block;
    color: #222;
    text-align: center;
    border-radius: 3px;
}
div#mfp_OperationCheck * {
    padding: 0px;
    margin: 0px;
    font-size: 12px;
}
div#mfp_OperationCheck p {
    padding: 0px 5px;
    margin: 0px;
    font-size: 12px;
}
div#mfp_OperationCheck p a {
    color: #0C0;
    text-decoration: none;
}
div#mfp_OperationCheck p a:hover,
div#mfp_OperationCheck p button:hover {
    text-decoration: underline;
}
div#mfp_OperationCheck p button {
    border: none;
    background: none;
    color: #0C0;
    cursor: pointer;
}
div#mfp_OperationCheck div#mfp_OperationCheck_inner ul {
}
div#mfp_OperationCheck ul li,
div#mfp_OperationCheck ul li label,
div#mfp_OperationCheck ul li label input {
    line-height: 12px;
    font-size: 12px;
    list-style: none;
    vertical-align: middle;
}
div#mfp_OperationCheck ul li {
    padding: 5px 10px;
}
div#mfp_OperationCheck ul li label {
    text-decoration: underline;
}
button#mfp_recorder_record,
button#mfp_recorder_clear,
button#mfp_recorder_restore {
    border-radius: 5px;
    padding: 5px 10px 5px 2em;
    border: solid 1px #CCC;
    background: gradient(linear, center top, center bottom, from(#EEE), to(#CCC));
    background: -webkit-gradient(linear, center top, center bottom, from(#EEE), to(#CCC));
    background: -moz-linear-gradient(top, #EEE, #CCC);
    background: -ms-linear-gradient(top, #EEE 0%, #CCC 100%);
    text-shadow: 0px 2px 0px #FFF;
    font-size: 16px;
    cursor: pointer;
    outline: none;
    display: inline-block;
    margin: 5px auto;
}
button#mfp_recorder_record {
    background: url(_images/mfp_record_disabled.png) no-repeat 5px center #EEE;
    background-size: 24px 24px;
}
button#mfp_recorder_clear {
    background: url(_images/mfp_record_remove.png) no-repeat 5px center #EEE;
    background-size: 24px 24px;
}
button#mfp_recorder_restore {
    background: url(_images/mfp_record_restore.png) no-repeat 5px center #EEE;
    background-size: 24px 24px;
}
button.enabled#mfp_recorder_record,
button.enabled#mfp_recorder_clear,
button.enabled#mfp_recorder_restore {
    background: url(_images/mfp_record_enabled.png) no-repeat 5px center #EEE;
    background-size: 24px 24px;
}
div#mfp_recorder_wrap {
    border: solid 1px #CCC;
    padding: 10px;
    text-align: center;
    margin: 5px auto;
}
td.request_image {
    width: 100px;
}
td.request_image img {
    max-width: 100px;
}
span.mfp_tips {
    background-image: url(_images/mfp_header.png);
    background-size: 100% 100%;
    background-color: #FCC;
    display: block;
    border-radius: 5px;
    padding: 10px;
    margin: 2px;
    box-shadow: 0px 2px 10px #999;
}
span.mfp_tips strong {
    color: #800040;
}
span.mfp_tips span {
    display: block;
    padding: 10px;
    color: #008080;
}
span.mfp_tips em {
    font-style: normal;
    color: #090;
    font-weight: bold;
}
@media screen and (max-width: 800px) {

    div#mfp_phase_confirm h4 {
        font-size: 18px;
    }
    ul#mfp_phase_stat {
        padding: 0px;
        text-align: left;
    }
    ul#mfp_phase_stat li {
        text-align: center;
        padding: 5px 0px;
        border-radius: 3px;
        margin: 5px;
        list-style: none;
        font-size: 14px;
        width: 28%;
    }
    ul#mfp_phase_stat li.mfp_phase_arrow {
        bos-shadow: none;
        display: none;
    }
    ul#mfp_phase_stat li.mfp_active_phase {
    }
    ul#mfp_phase_stat li.mfp_inactive_phase {
    }
    table#mfp_confirm_table tr th {
        white-space: nowrap;
        width: 100px;
    }
    div#mfp_thanks {
        text-align: center;
        font-size: 18px;
        padding: 20px 0px;
    }
    div#mfp_thanks strong {
        color: #C00;
        font-size: 24px;
        display: block;
    }
}







/*cart*/


form.mfpcart {
}
form.mfpcart button {
    display: inline-block;
    border-radius: 3px;
    padding: 0px;
    border: solid 1px #999;
}
form.mfpcart button span {
    font-family: ArialMT, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3","Hiragino Kaku Gothic Pro W3","ヒラギノ角ゴ Pro W3","メイリオ","ＭＳ Ｐゴシック","Osaka";
    font-size: 12px;
    font-weight: bolder;
    cursor: pointer;
    display: inline-block;
    border-radius: 3px;
    padding: 3px 8px;
    border-radius: 3px;
    border-top: solid 1px #FFF;
    background-color: #CCC;
    text-shadow: 0px 1px 0px #EEE;
}
form.mfpcart button span:hover {
    background-color: #DDD;
}
a.gocart {
    display: inline-block;
    border: solid 1px #999;
    border-radius: 3px;
    background-color: #CCC;
    text-decoration: none;
}
a.gocart:hover {
    background-color: #DDD;
}
a.gocart span {
    border-radius: 3px;
    display: inline-block;
    padding: 6px 8px;
    font-size: 12px;
    color: #000;
    border-top: solid 1px #FFF;
    text-shadow: 0px 1px 0px #EEE;
    font-weight: bolder;
}



/*example*/





ul.example_pages {
    border: solid 1px #CCC;
    padding: 15px 30px;
}
ul.example_pages li {
    padding: 5px 0px;
}
div#example_selector {
    padding: 10px 0px;
    text-align: left;
}
div#example_selector span {
    display: block;
    font-size: 14px;
    padding: 5px 0px;
}
div#example_selector select {
    font-size: 18px;
    border-radius: 3px;
    border: solid 1px #CCC;
    padding: 5px 10px;
    box-shadow: 0px 0px 5px #CCC inset;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    outline: none;
}
div.tips {
    margin: 10px auto;
    padding: 5px 20px;
    border: solid 1px #CCC;
    border-radius: 5px;
    box-shadow: 0px 2px 10px #CCC;
    background: #FEE;
}
div.tips p {
    font-size: 14px;
    line-height: 1.6em;
}
div.tips strong {
    color: #800040;
}
div.tips span {
    display: block;
    padding: 5px 10px;
    color: #008080;
}
div.tips em {
    font-style: normal;
    color: #090;
    font-weight: bold;
}
div.tips ol li {
    padding: 10px;
    margin: 15px;
    font-size: 12px;
    line-height: 1.6em;
    border: solid 1px #CCC;
    border-radius: 5px;
    background: #FFF;
}
div.tips ol li span {
    padding: 0px 10px;
}
div.tips ol li img {
    display: block;
    width: 280px;
    border: none;
    margin: 5px auto;
}
@media screen and (max-width: 800px) {
    table#mfp_confirm_table tr th {
        white-space: nowrap;
    }
    table#mfp_confirm_table tr th,
    table#mfp_confirm_table tr td {
    	display: block;
        width: 100%;
    }
    #mfp_confirm_table tr:last-child th{
    	border-bottom: none;
    }
    table#mfp_confirm_table tr td {
    	border-top: none;
    }
    #mfp_confirm_table tr:last-child td{
    	border-top: none;
    }
    div#mfp_thanks {
        text-align: center;
        font-size: 18px;
        padding: 20px 0px;
    }
    div#mfp_thanks strong {
        color: #C00;
        font-size: 24px;
        display: block;
    }
}
