@charset "utf-8";
/*各ページ共通
------------------------------------------------------------*/
#main_area {
    padding: 30px 0 20px;
}
#main_area p {
    margin: auto;
    width:80%;
    max-width:500px;
    text-align: center;
    font-weight: 600;
    background: rgba(255,255,255,0.6);
    padding:clamp(1.875rem, 0.564rem + 2.73vw, 3.125rem) 0;/*最小20最大30px*/
    border-radius: 12px;
    font-size:clamp(1.125rem, 0.538rem + 2.09vw, 1.875rem);/*最小18最大30px*/
}
/*パンくず*/
#pankuzu {display:flex;justify-content:  flex-end; margin:10px auto 0; list-style: none; width:95%;max-width:1500px;}
#pankuzu li:not(:last-child)::after{content:">";padding:0 5px;}


table{overflow: hidden; max-width:1000px;width:100%; margin:auto;border: 1px solid #d9d2c5;border-radius: 12px; border-spacing: 0;}
table tbody{background:#FFF;}
th{background:#f9f4e7;width:clamp(11.25rem, 9.107rem + 7.62vw, 16.25rem);vertical-align: top;padding-top:15px;}
th,td{padding:10px;}
tr:not(:last-child) th,tr:not(:last-child) td{border-bottom: 1px solid #d9d2c5;}
.flexbox.c2 {column-gap: 1.1em;grid-row-gap: 0;}
input[type=text],input[type=email],input[type=tel],textarea,select{
	border: none;
	background-color: #f6f7f7 !important;
	outline: none;
	padding: 10px;
	border-radius: 5px;
    width:100%;
    max-width:500px;
}
input.short,select{width:100%;max-width:200px;}
textarea{width:100% !important; min-height:150px;}
form input[type=checkbox]  {
  display: none;
}
form label {
  cursor: pointer !important;
  display: inline-block !important;
  padding: 5px 30px;
  position: relative;
  width: auto;
  color: #666;
  user-select:none;
}
form label:before {
  content:"";
  position: absolute;
  top: 50%;
  left: 5px;
  display: block;
  height: 16px;
  width: 16px;
  margin-top: -8px;
  border-radius: 3px;
  background: #fff;
  border: 1px solid #aaa;
}
form label:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 10px;
  display: block;
  height: 9px;
  width: 6px;
  margin-top: -6px;
  border-right: 2px solid #d8a7a0;
  border-bottom: 2px solid #d8a7a0;
  opacity: 0;
  transform: rotate(45deg);
}
input[type=checkbox]:checked ~ label::after {
  opacity: 1;
}
.form_btn button,.mfp_button_send ,.mfp_button_cancel{
	position: relative;
	max-width: 400px;
	width: 100%;
	display: block;
	margin: 0 auto;
	font-size: 20px;
	color: #fff;
	text-align: center;
	background-color: #d8a7a0;
	padding: 15px 0;
	border-radius: 10px;
	border: none;
	cursor: pointer;
	transition: 0.3s;
}
.form_btn button:hover {
	background-color: #8e6f6b;
}
/* プライバシーポリシー */
.privacy{
    border:1px solid #b4b4b5;
	width: 95%;
    max-width: 1000px;
	margin: 0 auto;
    padding:10px 0;
    background:#FFF;
    border-radius: 10px;
}

.privacy-inner{
	overflow-y: scroll;
	height: 300px;
	padding: 15px;
}
.privacy-inner::-webkit-scrollbar{width:10px;}
.privacy-inner::-webkit-scrollbar-track{
	background: #ebebeb;
}
.privacy-inner::-webkit-scrollbar-thumb{
	background: #cccccc;
	border-radius: 20px;
}
.privacy-inner li:not(:last-child){margin-bottom: 30px;}
/* ------------------------------ レスポンシブ------------------------------------------------------------*/

/* 870px以下から------------------------------------------------------------*/
@media only screen and (max-width:870px){
    .day li{width:100%;margin-bottom: 10px;}
}
/* 450px以下から------------------------------------------------------------*/
@media only screen and (max-width:450px){
    th,td{width:100%;display:block;}
}