@charset "UTF-8";

/* ----------------------------------------------------------------------------------------------------
*  基本情報
* --------------------------------------------------------------------------------------------------*/

html,body{	height:100%;}
html{
	font-size:62.5%;
    overflow-y: scroll;
}

@font-face {
  font-family: 'Noto Sans Japanese';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(//fonts.gstatic.com/ea/notosansjapanese/v6/NotoSansJP-DemiLight.woff2) format('woff2'),
        url(//fonts.gstatic.com/ea/notosansjapanese/v6/NotoSansJP-DemiLight.woff) format('woff'),
        url(//fonts.gstatic.com/ea/notosansjapanese/v6/NotoSansJP-DemiLight.otf) format('opentype');
}

body, h1, h2, h3, h4, h5, h6, p, address,
ul, ol, li, dl, dt, dd,
table, th, td, img, form {
	margin: 0;
	padding: 0;
	border: none;
	line-height: 1.6;
	list-style-type: none;
	font-style: normal;
	font-weight: normal;
  font-family: "Noto Sans Japanese", sans-serif;
  font-size: 1.4rem;
	text-align: left;
	color: #24396e;
	letter-spacing: 1px;
}
img{
  vertical-align: bottom;
}
 button, textarea{
  margin: 0;
  padding: 0;
  font-family: "Noto Sans Japanese", sans-serif;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

*, *:before, *:after{
    box-sizing: border-box;
}
a{
  text-decoration: none;
  color: #24396e;
}
.inner{
  width: 900px;
  margin: auto;
}
.hover {
 transition: opacity 0.3s ease-out;
}

.hover:hover {
 opacity: 0.7;
}

.flex{
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}
.just-center{
  justify-content: center;
}
.just-space{
  justify-content: space-between;
}
.align-center{
  align-items: center;
}
.bold{
  font-weight: bold;
}
.tac{
  text-align: center;
}
.tar{
  text-align: right;
}

/* ------------------------------
    header
------------------------------ */
#header{
  min-width: 950px;
  padding: 85px 0;
  background-color: #4b6cb3;
}
#header .ttl_page:before,
#header .ttl_page:after{
  content: "";
  display: inline-block;
  width: 42px;
  height: 12px;
  margin: 0 30px;
  background: url(../img/line_circle.png) no-repeat;
}
#header .ttl_page .ttl_inner{
  display: inline-block;
  font-size: 4.0rem;
  color: #fff;
}

/* ------------------------------
    contents
------------------------------ */
#contents{
  display: block;
  padding: 25px 0 0;
}
.txt_lead{
  margin-bottom: 30px;
  font-size: 1.5rem;
}
.txt_lead .lg{
  font-size: 1.9rem;
}
.txt_lead a {
    border: 1px #c3c3c3 solid;
    padding: 1% 1%;
    color: black;
    border-radius: 15px;
    font-weight: lighter;
    background-color: #f5f5f57d;
    width: 28%;
    font-size: x-small;
}
.txt_lead a span{
	border: 1px solid black;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display:inline-block;
	}
	.phone-only{
		display: none;
	}
	@media all and (max-width:450px){
		.phone-only{
			display: block;
		}
	}
.sec_content + .sec_content{
  margin-top: 45px;
}
.ttl_sec{
  height: 50px;
  margin-bottom: 20px;
  padding-left: 30px;
  background-color: #24396e;
}
.ttl_sec .ttl_inner{
  font-size: 2.0rem;
  color: #fff;
}

/* ------------------------------
    demo_form
------------------------------ */
.box{
  position: relative;
  margin: 0 35px 20px;
  padding: 20px 25px 25px;
  background-color: #efefef;
}
.box.box_error,
.box_enquete.box_error{
  background-color: #feec7b;
}
.box + .error,
.box_enquete + .error{
  margin-left: 47px;
  margin-top: -20px;
  font-weight: bold;
  font-size: 1.5rem;
}
.box.box_error + .error,
.box_enquete.box_error + .error{
  display: block;
}
.ttl_box{
  width: 160px;
  margin-right: 20px;
  font-size: 1.5rem;
}
.box .txt_box{
  width: 280px;
  margin-right: 20px;
}
.txt_form{
  width: 310px;
  padding: 0 15px 0 7px;
}
.txt_form + .txt_form{
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #24396e;
}
.txt_form.mobile{
  width: auto;
}
.txt_form.mobile.other{
  justify-content: space-between;
}
.box_form{
  width: 310px;
}
.checkbox{
  position: relative;
  display: block;
  vertical-align: middle;
  font-size: 1.5rem;
}
.checkbox:before{
  content: "";
  position: absolute;
  display: block;
  width: 25px;
  height: 25px;
  top: 50%;
  right: 5px;
  border: 3px solid #24396e;
  border-radius: 1px;
  transform: translateY(-50%);
}
input:checked + .checkbox:after{
  position: absolute;
  content: "\f00c";
  right: 2px;
  top: -3px;
  line-height: 1;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 2.5rem;
  color: #4b6cb3;
}
input[type="text"],
input[type="mail"],
input[type="tel"],
select[class="time"]{
  padding-left: 15px;
  height: 25px;
  line-height: 25px;
  font-size: 1.5rem;
  background-color: #fff;
  border: 3px solid #24396e;
}
.ie input[type="text"],
.ie input[type="mail"],
.ie input[type="tel"]{
  line-height: 15px;
}
.box_datepicker{
  margin-right: -10px;
}
.box_datepicker .js_tohalf{
  width: 173px;
}
.box_datepicker .js_tohalf,
.box_datepicker .txt_post{
  margin-top: 10px;
}
.ui-datepicker th{
  color: #454545;
}
.box_datepicker .txt_post{
  padding-left: 3px;
}
.box_pulldown{
  position: relative;
  margin-left: auto;
  width: 50px;
  height: 22px;
  font-size: 0;
  background-color: #fff;
  border: 3px solid #24396e;
}
.box_pulldown:before{
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  top: -3px;
  right: -3px;
  background-color: #24396e;
  pointer-events: none;
  z-index: 5;
}
.box_pulldown:after{
  position: absolute;
  content: "\f107";
  top: 50%;
  right: 3px;
  line-height: 1;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 1.0rem;
  color: #fff;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 6;
}
.ie .box_pulldown:after{
  right: 2px;
  margin-top: 1px;
}
.box_pulldown select{
  width: 50px;
  height: 22px;
}
.box_pulldown input[type="radio"]{
  position: absolute;
  top: -3px;
  left: -3px;
  display: block;
  width: 50px;
  height: 22px;
  opacity: 0;
  cursor: pointer;
  z-index: 1;
}
.box_pulldown > input:not(:checked) {
  z-index: 4;
}
.mobile .box_pulldown input[type="radio"],
.mobile .box_pulldown {
  width: 90px;
}
.defa_pulldown, .txt_pulldown{
  position: relative;
  display: block;
  width: 100%;
  height: 16px;
  line-height: 16px;
  font-size: 1.4rem;
  cursor: pointer;
}
.defa_pulldown{
  display: inline-block;
  margin-bottom: 3px;
  color: #24396e;
  background-color: #fff;
  border-top: 0;
  z-index: 0;
}
.txt_pulldown{
  position: relative;
  padding-left: 10px;
  color: #fff;
  background: #24396e;
  border-left: 3px solid #24396e;
  z-index: 10;
}
.box_pulldown .option:last-child .txt_pulldown{
  height: 19px;
}
.box_pulldown > input:not(:checked) ~ .option .txt_pulldown {
  display: none;
}
.txt_pulldown:hover{
  background: #0a195f;
  border-left: 3px solid #0a195f;
}
.box_pulldown .option input:checked ~ .txt_pulldown {
  position: absolute;
  top: 0;
  display: block;
  width: 100%;
  height: 16px;
  line-height: 16px;
  color: inherit;
  background: #fff;
  box-shadow: none;
  z-index: 3;
}
.box_pulldown .option{
  display: block;
  width: 50px;
  margin: 0 0 0 -3px;
  padding: 0;
  overflow: hidden;
  background-color: #fff;
  z-index: 1;
}
.mobile .box_pulldown .option{
  width: 90px;
}
.fullw_pulldown01, .fullw_pulldown01 select, .fullw_pulldown01 input[type="radio"], .fullw_pulldown01 .option{
  width: 260px;
}
.fullw_pulldown02, .fullw_pulldown02 select, .fullw_pulldown02 input[type="radio"], .fullw_pulldown02 .option{
  width: 156px;
}
.fullw_pulldown01 .txt_pulldown,
.fullw_pulldown02 .txt_pulldown{
  height: 20px;
  line-height: 20px;
}
.fullw_pulldown01 .option:last-child .txt_pulldown,
.fullw_pulldown02 .option:last-child .txt_pulldown{
  height: 23px;
}
#ui-datepicker-div{
  z-index: 100 !important;
}

.txt_unit{
  padding-left: 5px;
}

/* ------------------------------
    person_form
------------------------------ */
.dl_form{
  margin: 0 110px 0 105px;
}
.dl_form + .dl_form{
  margin-top: 20px;
}
.dl_form dt{
  width: 190px;
  padding-right: 10px;
}
.dl_form dd{
  position: relative;
}
.dl_form dd .error{
  position: absolute;
  top: 40px;
  left: 12px;
  font-weight: bold;
  font-size: 1.5rem;
}
.dl_form input[type="text"],
.dl_form input[type="tel"],
.dl_form input[type="mail"]{
  width: 510px;
  height: 42px;
  line-height: 42px;
  border: 6px solid #24396e;
}
.ie .dl_form input[type='text'], .ie .dl_form input[type='tel'], .ie .dl_form input[type='mail']{
  line-height: 30px;
}
.error,
.dl_form input:focus:valid + .error {
  display : none;
}
.dl_form input:focus:invalid{
  background-color: #feee72;
}
.dl_form input:focus:invalid + .error{
  display: block;
}
.txt_person{
  margin-top: 40px;
}
.check_person{
  height: 25px;
  margin-top: 20px;
}
.check_person:before{
  left: 50%;
  right: auto;
  transform: translate(-50%,-50%);
}
input:checked + .check_person:after{
  left: 50%;
  right: auto;
  transform: translateX(calc(-50% + 2px));
}
.ie input:checked + .check_person:after{
  margin-left: 2px;
  transform: translateX(-50%);
}

#another {
	display: none;
}

/* ------------------------------
    enq_form
------------------------------ */
.box_enquete{
  margin: 0 50px 20px;
  padding: 15px 35px 20px 40px;
  background-color: #efefef;
}
.q_enquete{
  width: 355px;
  margin-bottom: -2px;
  font-size: 1.5rem;
}
.q_enquete label{
  white-space: nowrap;
}
.a_enquete{
  width: 370px;
}
.list_check .checkbox{
  margin-right: -5px;
  padding-right: 35px;
}
.list_check li + li{
  margin-top: 20px;
}
.list_check input[type="text"]{
  width: 300px;
  margin-top: 10px;
}
.enq_purpose .box_pulldown,
.enq_purpose .box_pulldown .easy-select-box,
.enq_purpose .box_pulldown select{
  width: 260px;
}
.enq_wl_date .box_pulldown,
.enq_wl_date .box_pulldown .easy-select-box,
.enq_wl_date .box_pulldown select{
  width: 156px;
}
.ttl_enquete{
  margin: 40px 0 20px;
  padding-left: 30px;
  border-bottom: 10px solid #24396e;
}
.ttl_enquete .ttl_inner{
  font-size: 2.0rem;
}
.ttl_enquete + .box_enquete{
  margin-top: 30px;
}
textarea{
  width: 800px;
  height: 190px;
	margin: 0 50px 25px;
  padding: 7px;
  line-height: 1.5;
  font-size: 1.5rem;
  resize: none;
  border: 7px solid #24396e;
}
.box_attention{
  width: 800px;
  margin: 0 50px 85px;
  padding: 20px 15px 45px 15px;
  border: 5px solid #24396e;
}
.ttl_att{
  position: relative;
  width: 650px;
  height: 22px;
  margin: 0 auto 35px;
  border-bottom: 1px solid #24396e;
}
.list_att li{
  line-height: 2.1;
}
.ttl_att .ttl_inner{
  position: absolute;
  display: inline-block;
  width: 200px;
  height: 40px;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  font-size: 2.5rem;
  background-color: #fff;
}
.txt_att{
  margin-bottom: 40px;
  font-size: 1.5rem;
}
.btn_submit{
  width: 402px;
  height: 86px;
  margin-bottom: 75px;
  font-size: 2.0rem;
  color: #24396e;
  border: 10px solid #24396e;
  cursor: pointer;
  transition: all 0.3s ease-out;
}
.btn_submit:hover{
  color: #fff;
  background-color: #24396e;
}

/* ------------------------------
    footer
------------------------------ */
#footer{
  min-width: 950px;
  padding: 50px 0 25px;
  background-color: #4b6cb3;
}
#footer .img_logo{
  margin-bottom: 35px;
}
#footer .txt_copy{
  font-size: 1.4rem;
  color: #fff;
}

/* ------------------------------
    form_add
------------------------------ */
.txt_person + .ttl_enquete{
  margin-top: 30px;
}
.txt_number{
  margin: -5px 0 15px;
}
.box_spot{
  width: 280px;
}
.ttl_spot{
  height: 30px;
  margin-bottom: 10px;
  color: #fff;
  background-color: #24396e;
}
.box_spot .txt_form{
  width: auto;
  font-size: 1.3rem;
}
/* ------------------------------
    confirm
------------------------------ */
#header .ttl_txt{
  margin: 35px 0 -10px;
  color: #fff;
}
.box_btn + .ttl_enquete{
  margin-top: 50px;
}
.box_demo, .box_person, .box_enq{
  margin-top: -5px;
}
.page_confirm .dl_form{
  margin: 0 25px;
  border-top: 2px solid #c7c7c7;
}
.page_confirm .dl_form:last-child{
  border-bottom: 2px solid #c7c7c7;
}
.page_confirm .dl_form01{
  border-top: none;
}
.page_confirm .dl_form dt{
  width: 310px;
  padding: 15px 90px 15px 0;
}
.page_confirm .box_enq .dl_form dt{
  width: 450px;
}
.page_confirm .dl_form dd{
  padding: 15px 0;
}
.page_confirm .box_spot .txt_form label{
  padding-right: 1em;
}
.btn_back{
  width: 265px;
  height: 50px;
  margin-top: 50px;
  padding-bottom: 1px;
  font-size: 1.8rem;
  color: #fff;
  background-color: #4b6cb3;
  cursor: pointer;
}
.page_confirm .btn_submit{
    margin: 130px 0 115px;
}

/* ------------------------------
    complete
------------------------------ */
.sec_comp{
  padding-top: 40px;
}
.sec_comp .txt_lead{
  line-height: 2;
}
.txt_lead + .txt_lead{
  margin-top: 40px;
}
.sec_tel{
  min-width: 950px;
  margin-top: 65px;
  padding: 45px 0 40px;
  background-color: #efefef;
}
.ttl_tel{
  margin-bottom: 40px;
  line-height: 1;
  letter-spacing: 0.05em;
  font-size: 2.5rem;
}
.box_tel .tel_inner{
  position: relative;
  display: inline-block;
}
.box_tel .tel_inner:before{
  content: "";
  position: absolute;
  display: inline-block;
  width: 56px;
  height: 71px;
  top: 50%;
  left: -60px;
  background: url(../img/ico_tel.png) no-repeat;
  transform: translateY(-50%);
}
.box_tel .num_tel{
  display: inline-block;
  margin-bottom: 10px;
  line-height: 1;
  letter-spacing: 0.075em;
  font-size: 4.65rem;
}
.box_tel .txt_tel{
  display: inline-block;
  padding-left: 0.5em;
  line-height: 1;
  letter-spacing: -0.025em;
  font-size: 2.3rem;
}

/* ------------------------------
    clearfix
------------------------------ */

.cf:after{
  content: ".";
  display: block;
  height: 0;
  font-size:0;
  clear: both;
  visibility:hidden;
}

.cf {display: inline-block;}

/* Hides from IE Mac */
* html .cf {height: 1%;}
.cf {display:block;}
/* End Hack */

#box05 .q_enquete{
	width:30%;
}
#box05 .a_enquete{
	width:70%;
}
.hopeselct div{
	margin:.5em auto;
}
.delivery-form{
	margin: 0 auto;
}
.a_enquete{
	justify-content:flex-end;
	flex-wrap: wrap;
}
.a_enquete p{
	margin: .5em 0;
}
.a_enquete textarea{
	width:calc(80% - .5em);
	height:4em;
	background: white;
	margin: 0;
	border:3px solid #24396e;
	margin-left:.5em;
}
.a_enquete label{
	display:flex;
	align-items: center;
min-width: 33%;
}
.demo-check{
	display: flex;
	justify-content: flex-start;
}
.demo-check-other{
	width:100%;
}
#delivery-box{
	display: none;
}
.zoom{
	zoom:1.3;
}
