@charset "utf-8";
/* CSS Document */

/*---------------------------------------------
common
---------------------------------------------*/
html { font-size: 110%; }/* サイト全体のテキスト基準サイズ */
@media (max-width: 749px) { html { font-size: 100%; } }

::placeholder, .placeholder { color: #969696; opacity: 1.0; }
:-ms-input-placeholder { color: #969696; }
::-webkit-input-placeholder { color: #969696; opacity: 1.0; }
.key_color { background-color: #305f97; }
.text_key_color { color: #305f97; }

body { background: #fff; }

ul.err_mes {
	margin: 0 auto;
	padding: 0.5rem;
	background: #f8d7da;
	border: solid 1px #f5c6cb;
	font-size: 0.9rem;
	color: #721c24;
	box-sizing: border-box;
	border-radius: 0.25rem;
	text-align: left;
}

ul.err_mes li {
	margin: 0.3rem 0;
}

.btn {
	width: 100%;
	height: 3rem;
	margin: 0 auto;
	border-radius: 0.4rem;
	color: #fff;
	cursor: pointer;
	display: inline-block;
}

.btn_large {
	width: 100%;
	height: 4rem;
	margin: 0 0 10px;
	border-radius: 0.4rem;
	color: #fff;
	font-size: 1.3rem;
	cursor: pointer;
	display: inline-block;
}

.btn_box {
	width: 100%;
	text-align: center;
}

ruby.telruby {}

input[type="text"].input,
input[type="email"].input,
input[type="tel"].input {
	width: 100%;
	height: 3rem;
	padding: 0 1rem;
	border: solid 1px #d7d7d7;
	box-sizing: border-box;
	border-radius: 0.4rem;
	background-color: white;
  margin-bottom: 0.5rem;
}

input[type="text"].hidden {
	display: none!important;
}

textarea {
	width: 100%;
	padding: 1rem;
	border: solid 1px #d7d7d7;
	box-sizing: border-box;
	border-radius: 0.4rem;
}

select {
	width: 100%;
	height: 3rem;
	padding: 0 1rem;
	border: solid 1px #d7d7d7;
	box-sizing: border-box;
	border-radius: 0.4rem;
	background-image: url('../img/icon_arrow_down.svg');
	background-repeat: no-repeat;
	background-size: 1.5rem;
	background-position: right 0.7rem center;
	background-color: white;
}

select {
	min-width: 115px;
}

.selectReadonly {
  display: inline-block;
  width: 40%!important;
  position: relative;
}
.selectReadonly::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
}
.selectReadonly select {
  width: 100%!important;
  background-color: #eeeeee;
}



input[type="radio"] {
  display: inline-block;
  width: 1px;
  height: 1px;
  margin: 0;
  opacity: 0;
}

.radio label {
	position: relative;
	display: inline-block;
	padding: 3px 3px 3px 28px;
	cursor: pointer;
}

.radio label::before {
	position: absolute;
	content: '';
	top: 50%;
	left: 0;
	width: 20px;
	height: 20px;
	margin-top: -10px;
	background: #fff;
	border: 1px solid #837b55;
	border-radius: 100%;
}

input[type="radio"]:disabled + label {
	color: gray;
	cursor: auto;
}

input[type="radio"]:checked + label::after {
	position: absolute;
	content: '';
	top: 50%;
	left: 5px;
	width: 12px;
	height: 12px;
	margin-top: -5px;
	background: #305F97;
	border-radius: 100%;
}

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

.checkbox label {
	position: relative;
	display: inline-block;
	padding: 3px 3px 3px 28px;
	cursor: pointer;
}

.checkbox label::before {
	position: absolute;
	content: '';
	top: 50%;
	left: 0;
	width: 20px;
	height: 20px;
	margin-top: -10px;
	background: #fff;
	border: 1px solid #837b55;
}

input[type="checkbox"]:checked + label::after {
	position: absolute;
	content: '';
	top: 6px;
	left: 3px;
	width: 13px;
	height: 8px;
	border-left: 3px solid #305F97;
	border-bottom: 3px solid #305F97;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

input[disabled] {
  background: #efefef;
}
input[type="submit"]:not(.confirm_submit){
	width: 0!important;
	height: 0!important;
	opacity: 0!important;
}

input[type="submit"].confirm_submit{
  background: #d40404;
}
.confirm_textarea{
	width: 0!important;
	height: 0!important;
	opacity: 0!important;
}

article{
  display: none;
}
article#scene{
  display: block;
}
article#type{
  display: block;
}
article#open{}
article#close{}
article#button{}

article.notChange{
  position: relative;
}
article.notChange::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99;
  display: block;
  width: 100%;
  height: 100%;
}

article#error{
  display: block;
  border: solid 3px red;
  background: #fbd8d8;
  color: black;
  padding: 20px 20px;
  margin-bottom: 40px;
}
article#error ul{}
article#error ul li{
  font-size: 16px;
  line-height: 1.6;
  list-style: disc;
  margin-left: 20px;
}


@media (max-width: 749px) {
 .ui-widget.ui-widget-content{
  max-width: 80%!important;
 }
 .ui-datepicker-multi .ui-datepicker-group {
  float: none!important;
  width: 100%!important;
 }
}


table.form {
	width: 100%;
	border: solid 1px #E1DBC7;
	text-align: left;
}

table.form th {
	padding: 1.2rem 1.2rem 1.2rem 1.2rem;
	background: #eef2fa;
	font-weight: normal;
	border-top: solid 1px #E1DBC7;
	box-sizing: border-box;
  text-align: left;
}

table.form th.required {
	padding: 1.2rem 0.4rem 1.2rem 0;
	border-top: solid 1px #E1DBC7;
  text-align: right;
}

table.form th.required .required {
  min-width: 3.8rem;
  max-width: 4.8rem;
  padding: 0.2rem 0.4rem;
  background: #C6768D;
  text-align: center;
  color: #fff;
  font-size: 0.85rem;
  display: inline-block;
  border-radius: 0.2rem;
}

table.form th a.area_notice {
  display: inline-block;
  margin-top: 6px;
}

table.form td {
	width: 70%;
	padding: 1.2rem;
	border-top: solid 1px #E1DBC7;
	border-left: solid 1px #E1DBC7;
	box-sizing: border-box;
}

table.form td.type {
	width: 58%;
}

table.form tr.error{}
table.form tr.error th{
  background: #faeeee;
}
table.form tr.error td{
  background: #faeeee;
}


/*------------------------
title
------------------------*/
.title {
	width: 100%;
	margin: 2rem 0 0;
	padding: 1.2rem 0;
	background: #eef2fa;
	border-top: solid 1px #E1DBC7;
	border-bottom: solid 1px #E1DBC7;
}

.title .container {
	width: 100%;
	max-width: 960px;
	margin:  0 auto;
}

.title h1 {
	text-align: center;
	font-size: 2rem;
	font-weight: bold;
	color: #305f97;
}

.title p {
	text-align: center;
	line-height: 1.5;
}


/*------------------------
contents
------------------------*/
.contents {
	width: 95%;
	max-width: 960px;
	margin: 0 auto 3rem;
}

.contents h2 {
	padding: 0.2rem 0.5rem;
	font-size: 1.5rem;
	border-left: solid 0.4rem #305f97;
}

.contents .notes {
	margin: 0.4rem 0 0 0;
	font-size: 0.9rem;
	color: #777;
}
.contents input +.notes {
  margin-top: -0.4rem;
  display: block;
}
.contents input[type="button"] +.notes {
  margin-top: 0.4rem;
  display: block;
}

.contents .notes_red {
	margin: 0.4rem 0 0 0;
	font-size: 0.9rem;
	color: #e13333;
}

.contents table.type {
	border: solid 3px #E1DBC7;
}

.contents table.type td.type {
	font-size: 1.2rem;
}
.contents table.type span.notes{
  margin-left: 1.6rem;
  display: block;
  margin: 0 0 1rem 1.6rem;
  line-height: 1.6;
}

.contents table.form th p {
	display: inline-block;
	float: left;
}

.contents .receipt_number {
	font-size: 1.2rem;
	font-weight: bold;
}
td div.tdCaution{
  color: red;
  margin-bottom: 10px;
}

.O_copy_C_em{
  height: 3rem;
  margin: 0 auto 1.5rem;
  border-radius: 0.4rem;
  color: #fff;
  cursor: pointer;
  padding: 0 0.5rem;
  background-color: #305f97;
  display: inline-block;
  display: none;
}

.scene_inquiry_box,
.zip_other_box {
  border: solid 5px red;
  margin: 20px 0 0 30px;
  padding: 10px 10px;
  font-size: 0.9rem;
  background: #fbd8d8;
  display: none;
}
.zip_other_box {
  margin: 20px 0 0 0;
}

.addNotChange td{
  position: relative;
}
.addNotChange td::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
}
.address input[readonly]{
  background: #eeeeee;
}

/*------------------------
SmartPhone
------------------------*/
@media (max-width: 749px) {

	.title h1 {
		text-align: center;
		font-size: 1.6rem;
		font-weight: bold;
		color: #305f97;
	}

	.title .container {
		width: 95%;
	}

	.contents h2 {
		padding: 0.2rem 0.5rem;
		font-size: 1.3rem;
		border-left: solid 0.4rem #305f97;
	}

	.btn_large {
		width: 100%;
		height: 3rem;
		border-radius: 0.4rem;
		color: #fff;
		font-size: 1rem;
		cursor: pointer;
		display: inline-block;
	}

	table.form {
		width: 100%;
		text-align: left;
		border-top: none;
	}

	table.form td.type {
		width: 100%;
	}


	table.form tr {
		display: block;
		position: relative;
	}

	table.form th {
		width: 100%;
		border-bottom: solid 1px #E1DBC7;
		display: block;
  padding-right: 5rem;
	}

	table.form th.required {
		background: none;
		border: none;
		text-align: right;
		display: block;
		position: absolute;
		top: 0;
  padding-top: 0.8rem;
	}

	table.form th.required .required {
  max-width: 8rem;
	}

	table.form td {
		width: 100%;
		display: block;
		border: none;
	}

	select {
		background-size: 1rem;
	}

	th.required br {
		display: none;
	}

 ruby.telruby {
  display: block;
  margin: 0 0 5px;
 }

}

@media (max-width: 415px) {

html select.w40 {
  width: auto!important;
  padding-right: 2rem;
  margin-left: 0px!important;
}
.selectReadonly {
  width: auto!important;
}

}

@media (max-width: 375px) {

html {
  font-size: 13px;
}

}

@media (max-width: 320px) {

html {
  font-size: 11px;
}

}
