@charset "UTF-8";

/* ===== mv ===== */
#mv{
/*  width: 100vw;*/
  height: 600px;
  position: relative;
}
#mv p{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 240px;
  height: 240px;
  z-index: 1;
}

/* ===== main ===== */
main{
  padding-top: 120px;
  background: url("../img/bg_01.png") center top no-repeat;
}
article header h2{
  font-family: "SawarabiMincho";
  color: #6f6858;
  font-size: 38px;
  text-align: center;
  letter-spacing: 3px;
  box-sizing: border-box;
  padding-left: 3px;
  background: url("../img/h2_line.png") center bottom no-repeat;
  padding-bottom: 10px;
  margin-bottom: 40px;
}
article header h2 span{
  display: block;
  font-family: "Oswald";
  font-size: 19px;
  line-height: 2.5;
}  

/* ===== news ===== */
#news{
  padding: 0 20px 80px;
}
#news .inner{
  padding: 0 0 18px;
  border-bottom: 1px solid #d5cebe;
}
/*#news p{
  float: left;
  width: 144px;
  box-sizing: border-box;
  background: url("../img/news_line.png") right center no-repeat;
  font-family: "SawarabiMincho";
  font-size: 18px;
  line-height: 24px;
  text-align: center;
  letter-spacing: 3px;
  padding: 0 30px;
}*/
/*#news p span{
  display: block;
  font-family: "Oswald";
  font-size: 12px;
}*/
#news ul{
/*  float: left;
  width: calc(100% - 144px);
  box-sizing: border-box;
  padding-left: 30px;
  height: 48px;*/
  height: 174px;
  overflow-y: scroll;
}
#news ul::-webkit-scrollbar{
  width: 10px;
}
#news ul::-webkit-scrollbar-track{
  background: #fff;
  border: none;
}
#news ul::-webkit-scrollbar-thumb{
  background: #d5cebe;
  border-radius: 10px;
  box-shadow: inset 0 0 0 2px #fff;
}
#news li{
  margin-bottom: 1em;
}
#news li:last-child{
  margin-bottom: 0;
}
#news h3{
  background: #f3ecdc;
  color: #6f6858;
  padding: 8px;
  font-weight: bold;
  margin-bottom: 4px;
  position: relative;
}
#news h3 span{
  position: absolute;
  right: 8px;
  top: 10px;
  font-size: 15px;
  font-weight:normal;
}
#news h4{
  padding: 8px;
  font-size: 16px;
  line-height: 1.5;
  font-weight: bold;
}
#news p{
  padding: 0 8px;
  font-size: 16px;
  line-height: 1.5;
}

/* ===== services ===== */
#menu1{
  padding: 80px 0 0px;
}
#menu1 li{
  float: left;
  width: 48.959%;
  margin-right: 2.082%;
  margin-bottom: 20px;
  height: 290px;
  overflow: hidden;
  position: relative;
}
#menu1 li:nth-child(even){
  margin-right: 0;
}
#menu1 li::after{
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  -webkit-filter: brightness(.7);
  -moz-filter: brightness(.7);
  -ms-filter: brightness(.7);
  filter: brightness(.7);
  -webkit-transition: all .5s ease-out;
  -moz-transition: all .5s ease-out;
  -ms-transition: all .5s ease-out;
  transition: all .5s ease-out;
}
#menu1 li:nth-child(1)::after{
  background: url("../img/services_01.jpg") center center no-repeat;
  background-size: cover;
}
#menu1 li:nth-child(2)::after{
  background: url("../img/services_02.jpg") center center no-repeat;
  background-size: cover;
}
#menu1 li:nth-child(3)::after{
  background: url("../img/services_03.jpg") center center no-repeat;
  background-size: cover;
}
#menu1 li:nth-child(4)::after{
  background: url("../img/services_04.jpg") center center no-repeat;
  background-size: cover;
}
#menu1 li:hover::after{
  -webkit-filter: brightness(1);
  -moz-filter: brightness(1);
  -ms-filter: brightness(1);
  filter: brightness(1);
  -webkit-transition: scale(1.2);
  -moz-transition: scale(1.2);
  -ms-transition: scale(1.2);
  transform: scale(1.2);
}
#menu1 li a{
  display: block;
  height: 100%;
  z-index: 1;
  position: relative;
}
#menu1 li a div{
  position: absolute;
  bottom: -35px;
  width: 100%;
  box-sizing: border-box;
  padding: 10px;
  background-color: rgba(255, 255, 255, .8);
  text-align: center;
  -webkit-transition: all .5s ease;
  -moz-transition: all .5s ease;
  -ms-transition: all .5s ease;
  transition: all .5s ease;
}
#menu1 li a:hover div{
  bottom: 0;
}
#menu1 li a div h3{
/*  background: url("../img/blank.png") right 5px top 10px no-repeat;*/
  background-size: 22px;
  font-size: 22px;
  font-weight: bold;
  padding: 10px 0;
}
#menu1 li a div p{
  font-size: 15px;
  line-height: 21px;
  font-weight: bold;
  padding: 7px 0;
}
#menu1 li a::before,
#menu1 li a::after{
  position: absolute;
  content: '';
  width: 0;
  height: 0;
  border: 3px solid transparent;
  z-index: 1;
}
#menu1 li a:hover::before,
#menu1 li a:hover::after{
  width: 100%;
  height: 100%;
  transition: width .3s .3s, height .3s;
}
#menu1 li a:hover::before{
  left: 0;
  top: -6px;
  border-left-color: #6f6858;
  border-bottom-color: #6f6858;
}
#menu1 li a:hover::after{
  right: 0;
  bottom: -6px;
  border-right-color: #6f6858;
  border-top-color: #6f6858;
}
#menu1 input{
  margin-top: 20px !important;
}

/* ===== greeting ===== */
#menu2 header{
  background: #f3ecdc;
}
#menu2 header .inner{
  padding: 80px 20px;
  background: url("../img/menu2_img.png") left 20px bottom no-repeat;
}
#menu2 header h2{
  float: right;
  width: 500px;
}
#menu2 header p{
  text-align: right;
}
#menu2 section{
  padding: 0 20px;  
}
#menu2 section .inner{
  max-width: 800px;
  box-sizing: border-box;
  padding: 40px;
  margin-top: -40px;
  background: #fff;
  box-shadow: 0 1px 5px rgba(0, 0, 0, .4);
}
#menu2 section p{
  line-height: 1.8;
  margin-bottom: .5em;
}
#menu2 section p:last-child{
  text-align: right;
  margin-bottom: 0;
}

/* ===== outline ===== */
#menu3{
  margin-top: 60px;
  padding: 300px 0 240px;
  background: url("../img/bg_02.png") left top 60px no-repeat, url("../img/bg_03.png") right bottom no-repeat, url("../img/bg_04.png") left bottom no-repeat;
  position: relative;
}
#menu3 header{
  position: absolute;
  top: 60px;
  left: 0;
  width: 290px;
  height: 262px;
  background: url("../img/h2_bg_l.png") left top no-repeat;
}
#menu3 header h2{
  width: 180px;
  margin-top: 50px;
  background: url("../img/h2_line_w.png") center bottom no-repeat;
  color: #fff;
  font-size: 34px;
}
#menu3 header h2 span{
  font-size: 18px;
}
#menu3 section{
  background: #f3ecdc;
}
#menu3 table{
  margin: 0 auto;
}
#menu3 table th{
  padding: .5em;
  padding-right: 1.5em;
  color: #6f6858;
  line-height: 1.5;
  font-weight: bold;
  text-align: center;
  white-space: nowrap;
  vertical-align: top;
}
#menu3 table td{
  padding: .5em;
  line-height: 1.5;
}
#menu3 table td span{
  display: inline-block;
  margin-right: .5em;
  font-size: .8em;
}
#menu3 table td li{
  line-height: 1.5;
  margin-bottom: .5em;
}
#menu3 table td li:last-child{
  margin-bottom: 0;
}
#menu3 table td li a{
	display: inline-block;
	background: url(../img/blank.png) right center no-repeat;
	background-size: 18px;
	padding-right: 24px;
}
#menu3 table td li span{
  display: block;
  font-size: .8em;
}

#menu3 p{
  text-align: center;
}

/* ===== history ===== */
#menu4{
  margin-top: -120px;
  padding: 240px 0 360px;
  background: url("../img/bg_05.jpg") center center fixed;
  background-size: cover;
}
#menu4 table{
  margin: 0 auto;
}
#menu4 table th{
  padding: .25em .5em;
  color: #6f6858;
  font-size: .9em;
  line-height: 1.7;
  font-weight: bold;
  white-space: nowrap;
  vertical-align: top;
}
#menu4 table td{
  padding: .25em .5em;
  line-height: 1.5;
}
#menu4 table td li{
  line-height: 1.5;
  margin-bottom: .5em;
}
#menu4 table td li:last-child{
  margin-bottom: 0;
}

#menu4 p{
  text-align: center;
}

/* ===== office ===== */
#menu5{
  margin-top: -300px;
  padding: 300px 0 240px;
  background: url("../img/bg_06.png") right top 60px no-repeat, url("../img/bg_07.png") left bottom no-repeat, url("../img/bg_08.png") right bottom no-repeat;
  position: relative;
}
#menu5 header{
  position: absolute;
  top: 60px;
  right: 0;
  width: 290px;
  height: 262px;
  background: url("../img/h2_bg_r.png") right top no-repeat;
}
#menu5 header h2{
  float: right;
  width: 180px;
  margin-top: 50px;
  background: url("../img/h2_line_w.png") center bottom no-repeat;
  color: #fff;
  font-size: 36px;
}
#menu5 header h2 span{
  font-size: 18px;
}
#menu5 section{
  background: #f3ecdc;
}
#menu5 .inner{
  max-width: 800px;
}
#menu5 .inner > ul > li{
  margin-bottom: 80px;
}
#menu5 .inner > ul > li:last-child{
  margin-bottom: 0;
}
#menu5 li img{
  float: left;
  width: 43.75%;
  box-sizing: border-box;
  padding: 0 20px 20px 0;
  filter: drop-shadow(20px 20px 0 #d5cebe);
}
#menu5 li:nth-child(2) img{
  float: right;
}
.slick{
  float: left;
  width: 43.75%;
}
#menu5 li:nth-child(3) img{
  float: none;
  width: 100%;
}
#menu5 address{
  float: right;
  width: 53.75%;
}
#menu5 li:nth-child(2) address{
  float: left;
}
#menu5 address p{
  color: #6f6858;
  font-size: 28px;
  font-weight: bold;
  margin: 18px 0 40px;
}
#menu5 address p span{
  font-size: .7em;
}
#menu5 address li{
  margin-bottom: 40px;
}
#menu5 address li:last-child{
  margin-bottom: 0;
}
#menu5 address li span{
  font-size: .8em;
  margin-left: 1em;
}
#menu5 address li span:first-child{
  margin-left: 0;
}
#menu5 address li:first-child span:first-child{
  margin-right: .5em;
}
#menu5 address li:first-child span:last-child{
  font-size: 1em;
  margin: 0 0 0 .5em;
}
#menu5 address li:first-child span:last-child a{
  margin: 0 .125em;
}
#menu5 address li:nth-child(2) a{
  color: #333;
  text-decoration: none;
  pointer-events: none;
}
#menu5 .inner > ul > li:nth-child(2){
  text-align: right;
}

#menu5 p{
  text-align: center;
}

/* ===== inquiry ===== */
#inquiry{
  margin-top: -120px;
  padding: 240px 0 160px;
}
#inquiry header h2{
  margin-bottom: 20px;
}
#inquiry .inner{
  max-width: 800px;
}
#inquiry table{
	width: 100%;
	border-collapse: separate;
	border-spacing: 0px 20px;
}
#inquiry table th{
	width: 240px;
	box-sizing: border-box;
	background: #d5cebe;
  color: #6f6858;
	line-height: 1.5;
	font-weight: bold;
	padding: .75em 1em;
	position: relative;
}
#inquiry table th span{
	position: absolute;
	right: 12px;
	display: inline-block;
	background: #6f6858;
	color: #fff;
	font-size: 14px;
	line-height: 1;
	padding: 5px 10px;
	margin-top: 2px;
	border-radius: 12px;
}
#inquiry table th span.gray{
	background: #aaa;
}
#inquiry table td{
	border-top: 1px solid #d5cebe;
	background: #f3ecdc;
}
#inquiry table td input,
#inquiry table td textarea{
	width: 100% !important;
	box-sizing: border-box;
	padding: .7em;
	border: none;
	background: #f3ecdc;
	line-height: 1.5;
}
#inquiry table td textarea{
	height: 150px !important;
}
#inquiry table td input::placeholder{
	color: #d5cebe;
}
#inquiry table td input.short{
	width: calc(100% - 285px) !important;
}
#inquiry table td span{
	font-size: 15px;
}
#inquiry #agree{
	margin: 10px 0 30px;
	text-align: center;
}
#inquiry #agree a{
	display: inline-block;
/*	background: url(../img/blank.png) right center no-repeat;
	background-size: 18px;
	padding-right: 24px;*/
	margin-bottom: 30px;
}
#inquiry #agree label{
	font-size: 14px;
  cursor: pointer;
}
#inquiry #agree input{
  position: relative;
  top: -1px;
	margin-right: 4px;
}
#inquiry #agree + input,
#menu1 input{
	display: block;
	width: 300px;
  box-sizing: border-box;
  border: 3px solid #6f6858;
	margin: 0 auto;
	background: #fff url(../img/arrow.png) right 15px top 15px no-repeat;
  font-family: "LogoType";
	color: #6f6858;
	font-size: 26px;
	line-height: 54px;
  letter-spacing: 5px;
	cursor: pointer;
	border-radius: 0;
	padding: 0;
	text-shadow: none;
	transition-duration: .3s;
	-webkit-transition-duration: .3s;
  -moz-transition: .3s;
}
#inquiry #agree + input:hover,
#menu1 input:hover{
	background: #6f6858 url(../img/arrow_on.png) right 15px top 15px no-repeat;
	color: #fff;
}
div.mfp_err{
	background-position: 4px 6px !important;
}
div.center{
  width: 276px !important;
  margin: 5px auto 0 !important;
}

/* ===== thanks ===== */
#thanks{
  min-height: calc(100vh - 240px);
  box-sizing: border-box;
  padding: 90px 0 160px;
  text-align: center;
}
#thanks h3{
  font-family: "LogoType";
  color: #6f6858;
  font-size: 30px;
  line-height: 1.3;
  margin: 80px 0 40px;
}
#thanks p{
  line-height: 1.5;
}
#thanks p a{
  display: block;
  width: 300px;
  box-sizing: border-box;
  border: 3px solid #6f6858;
  margin: 80px auto 0;
  background: #fff url(../img/arrow.png) right 15px top 15px no-repeat;
  font-family: "LogoType";
  color: #6f6858;
  font-size: 26px;
  line-height: 54px;
  letter-spacing: 5px;
  text-decoration: none;
  transition-duration: .3s;
  -webkit-transition-duration: .3s;
  -moz-transition: .3s;
}
#thanks p a:hover{
  background: #6f6858 url(../img/arrow_on.png) right 15px top 15px no-repeat;
  color: #fff;
}

/* ===== policy ===== */
#policy{
  padding: 40px 20px;
  font-size: 16px;
}
#policy p,
#policy li,
#policy dt,
#policy dd,
#policy th,
#policy td{
  line-height: 1.5;
}
#policy header h2{
  font-size: 30px;
}
#policy header h2 span{
  font-size: 15px;
}
#policy dl dt{
  margin-top: 40px;
	padding: .25em .5em;
	background: #6f6858;
	color: #fff;
	font-size: 17px;
	font-weight: bold;
  padding-left: 31px;
  text-indent: -19px;
}
#policy dl dd{
	margin-top: .75em;
}
#policy .list > li{
	margin-bottom: 20px;
}
#policy .list > li p{
  padding-left: 25px;
  text-indent: -25px;
}
#policy .list_sub{
	margin: .5em 0 0 25px;
}
#policy .list_sub li{
	font-size: 14px;
  padding-left: 18px;
  text-indent: -18px;  
}
#policy #data > li{
  margin-top: 20px;
}
#policy #data h3{
	font-weight: bold;
}
#policy #data p span{
  display: block;
	font-size: 12px;
  padding-left: 1em;
  text-indent: -1em;
}
#policy #data ol{
	margin: .75em 20px;
}
#policy #data ol > li{
	margin-bottom: .75em;
}
#policy #data ol p{
	font-size: 14px;
}
#policy #data ol table{
  width: 100%;
	margin-top: 6px;
	font-size: 14px;
}
#policy #data ol table th{
	padding: .25em .5em;
	border: 1px solid #ddd;
	background: #f0f0f0;
	text-align: center;
	white-space: nowrap;
}
#policy #data ol table td{
	padding: .25em .5em;
	border: 1px solid #ddd;
}
#policy #data ol table td li{
  padding-left: 18px;
  text-indent: -18px;
}
#policy address{
	margin: 20px 20px 0;
	padding: .3em .6em;
  background: #f3ecdc;
}
#policy address p,
#policy address li{
	font-size: 14px;
  line-height: 1.6;
}

/* ===== modal ===== */
.modal{
  display: none;
  position: fixed;
  top: 0;
  width: 100%;
  height: 100vh;
  z-index: 1000;
}
.modal_bg{
  position: absolute;
  width: 100%;
  height: 100vh;
  background: rgba(0,0,0,.8);
}
.modal_content{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: calc(100% - 40px);
  max-width: 800px;
  height: 80%;
  box-sizing: border-box;
  background: #fff;
  overflow-y: scroll;
}
a.js-modal-close{
  position: fixed;
  top: 15px;
  right: 15px;
}

@media screen and (max-width:999px){
#menu1 li{
  height: 29vw;
}
#menu2 header .inner{
  background-size: 45vw;
}
#menu2 header h2,
#menu2 header p img{
  width: 50vw;
}
}

@media screen and (max-width:899px){
#menu1 li a div{
  bottom: -50px;
  padding: 7px;
}
#menu1 li a div h3{
  background-position: right 4px top 7px;
  background-size: 19px;
  font-size: 19px;
  padding: 7px 0;
}
#menu1 li a div p{
  padding: 4px 0;
}
#menu1 li a div p span{
  display: block;
}
#menu5 address p{
  font-size: 25px;
  margin-bottom: 4.444vw;
}
#menu5 address li{
  font-size: 16px;
  margin-bottom: 4.444vw;
}
}

@media screen and (max-width:767px){
#menu1 li a div h3{
  background-size: 16px;
  font-size: 16px;
}
#menu1 li a div p{
  font-size: 14px;
}
#menu5 address p{
  font-size: 22px;
}
#menu5 address li{
  font-size: 14px;
}
}

@media screen and (max-width:667px){
#mv{
  width: 100vw;
  height: 300px;
}
#mv p{
  width: 120px;
  height: 120px;
}

main{
  padding-top: 80px;
  background-size: 1280px auto;
}
article header h2{
  background-size: auto 2px !important;
  font-size: 28px;
  margin-bottom: 20px;
}
article header h2 span{
  font-size: 14px;
}

/*#news p{
  float: none;
  width: auto;
  background: url("../img/h2_line.png") center bottom no-repeat;
  background-size: auto 2px;
  line-height: 1;
  padding: 0 0 5px 3px;
  margin-bottom: 10px;
}
#news p span{
  line-height: 2.5;
}
#news ul{
  float: none;
  width: 100%;
  padding-left: 0;
  height: 42px;
}
#news li{
  font-size: 14px;
}
#news li span{
  padding-right: 5px;
}*/
#news .inner{
  padding: 0 0 14px;
}
#news ul{
  height: 132px;
}
#news h3{
  padding: 6px;
  margin-bottom: 3px;
}
#news h3 span{
  right: 6px;
  top: 7px;
  font-size: 11px;
}
#news h4{
  padding: 6px;
  font-size: 12px;
}
#news p{
  padding: 0 6px;
  font-size: 12px;
}

#menu1{
  padding: 40px 0 0;
}
#menu1 li{
  float: none;
  width: 100%;
  margin-right: 0;
  height: 54vw;
}
#menu1 li::after{
  -webkit-filter: brightness(1);
  -moz-filter: brightness(1);
  -ms-filter: brightness(1);
  filter: brightness(1);
}
#menu1 li:hover::after{
  -webkit-transition: scale(1);
  -moz-transition: scale(1);
  -ms-transition: scale(1);
  transform: scale(1);
}
#menu1 li a div{
  bottom: 0;
}
#menu1 li a div p{
  display: none;
}
#menu1 li a::before,
#menu1 li a::after{
  border: 0;
}

#menu2 header .inner{
  padding: 40px 20px 70vw;
  background-position: center bottom;
  background-size: 75vw;
}
#menu2 header h2{
  float: none;
  width: 100%;
}
#menu2 header p img{
  width: 100%;
}
#menu2 section .inner{
  padding: 20px;
  margin-top: -20px;
}
#menu2 section p:last-child img{
  height: 16px;
}

#menu3{
  margin-top: 0;
  padding: 180px 0 120px;
  background-size: auto 120px, auto 120px, auto 120px;
}
#menu3 header{
  width: 200px;
  height: 180px;
  background-size: auto 180px;
}
#menu3 header h2{
  width: 130px;
  margin-top: 35px;
  font-size: 24px;
}
#menu3 header h2 span{
  font-size: 13px;
}
#menu3 table th{
  float: left;
  width: 100%;
  padding: .5em 0;
  background: url(../img/h2_line.png) center bottom no-repeat;
  background-size: auto 1px;
}
#menu3 table td{
  float: left;
  width: 100%;
  padding: .5em 0;
  margin-bottom: .5em;
  font-size: 13px;
  text-align: center;
}
#menu3 table tr:last-child td{
  margin-bottom: 0;
}
#menu3 table td span{
  display: block;
  margin-right: 0;
}
#menu3 table td li a{
	background-size: 14px;
	padding-right: 18px;
}

#menu4{
  margin-top: -60px;
  padding: 120px 0 180px;
}
#menu4 table th{
  float: left;
  width: 100%;
  padding: .5em 0;
  background: url(../img/h2_line.png) center bottom no-repeat;
  background-size: auto 1px;
  text-align: center;
}
#menu4 table td{
  float: left;
  width: 100%;
  padding: .5em 0;
  margin-bottom: .5em;
  font-size: 13px;
  text-align: center;
}
#menu4 table tr:last-child td{
  margin-bottom: 0;
}

#menu5{
  margin-top: -180px;
  padding: 180px 0 120px;
  background-size: auto 120px, auto 120px, auto 120px;
}
#menu5 header{
  width: 200px;
  height: 180px;
  background-size: auto 180px;
}
#menu5 header h2{
  width: 130px;
  margin-top: 35px;
  font-size: 26px;
}
#menu5 header h2 span{
  font-size: 13px;
}
#menu5 .inner{
  padding: 40px 10px 0;
}
#menu5 .inner > ul > li{
  margin-bottom: 60px;
  text-align: center !important;
}
#menu5 li img{
  float: none !important;
  width: 75vw;
  padding: 0 4vw 4vw 0;
  filter: drop-shadow(4vw 4vw 0 #d5cebe);
}
.slick{
  float: none;
  width: 75vw;
  margin: 0 auto;
}
#menu5 address{
  float: none !important;
  width: 100%;
}
#menu5 address p{
  margin: 4vw 0;
}
/*#menu5 address p span{
  display: block;
  margin-top: 5px;
}*/
#menu5 address li{
  margin-bottom: 4vw;
}
#menu5 address li:first-child span:first-child{
  display: block;
  margin: 0 0 .5em 0;
}
#menu5 address li:nth-child(2) a{
  color: #6f6858;
  text-decoration: underline;
  pointer-events: auto;
}

#inquiry{
  margin-top: -60px;
  padding: 120px 0 80px;
}
#inquiry header h2{
  margin-bottom: 5px;
}
#inquiry table{
	border-spacing: 0px 15px;
}
#inquiry table th{
	float: left;
	width: 100%;
}
#inquiry table th span{
	right: 10px;
	font-size: 12px;
	margin-top: -1px;
}
#inquiry table td{
	float: left;
	width: 100%;
	border-top: none;
}
#inquiry table td input,
#inquiry table td textarea{
	padding: .75em 1em;
}
#inquiry table td input.short{
	width: 100% !important;
}
#inquiry table td span{
	display: block;
	font-size: 12px;
	padding: 0 0 1em 14px;
}
#inquiry #agree{
	margin: 5px 0 20px;
}
#inquiry #agree a{
/*	background-size: 14px;
	padding-right: 18px;*/
	margin-bottom: 20px;
}
#inquiry #agree label{
	font-size: 12px;
}
#inquiry #agree input{
  top:2px;
}
#inquiry #agree + input,
#menu1 input{
	width: 200px;
  border: 2px solid #6f6858;
  background-size: 20px auto;
	font-size: 18px;
	line-height: 40px;
}
#inquiry #agree + input:hover,
#menu1 input:hover{
  background-size: 20px auto;
}

#thanks{
  min-height: calc(100vh - 220px);
  padding: 40px 0 80px;
}
#thanks h3{
  font-size: 24px;
  margin: 40px 0 20px;
}
#thanks h3 span{
  display: block;
}
#thanks p a{
  width: 240px;
  border: 2px solid #6f6858;
  margin: 40px auto 0;
  background-size: 30px auto;
  font-size: 22px;
  line-height: 46px;
}
#thanks p a:hover{
  background-size: 30px auto;
}

#policy{
  padding: 20px 10px;
  font-size: 14px;
}
#policy header h2{
  font-size: 24px;
}
#policy header h2 span{
  font-size: 12px;
}
#policy dl dt{
  margin-top: 20px;
	font-size: 15px;
  padding-left: 29px;
  text-indent: -17px;
}
#policy dl dd{
	margin-top: .5em;
}
#policy .list > li{
	margin-bottom: 10px;
}
#policy .list > li p{
  padding-left: 22px;
  text-indent: -22px;
}
#policy .list_sub{
	margin: .25em 0 0 22px;
}
#policy .list_sub li{
	font-size: 12px;
  padding-left: 15px;
  text-indent: -15px;  
}
#policy #data > li{
  margin-top: 10px;
}
#policy #data p span{
	font-size: 10px;
}
#policy #data ol{
	margin: .5em 10px;
}
#policy #data ol > li{
	margin-bottom: .5em;
}
#policy #data ol p{
	font-size: 12px;
}
#policy #data ol table{
	margin-top: 3px;
	font-size: 12px;
}
#policy #data ol table th{
  display: block;
	width: 100%;
  box-sizing: border-box;
	border-bottom: none;
}
#policy #data ol table td{
  display: block;
	width: 100%;
  box-sizing: border-box;
}
#policy #data ol table tr:first-child td{
	border-bottom: none;
}
#policy #data ol table td li{
  padding-left: 15px;
  text-indent: -15px;
}
#policy address{
	margin: 10px 10px 0;
}
#policy address p,
#policy address li{
	font-size: 12px;
}

.modal_content{
  width: calc(100% - 20px);
}
}

/*@media screen and (max-width:359px){
#menu1 li a div h3{
  background-size: 14px;
  font-size: 14px;
}
}*/