@charset "utf-8";
body{padding-top: 0;}
/* safariリセット */
input[type="button"],input[type="text"],input[type="submit"],textarea,select{
   /* -webkit-appearance: none;
   border-radius: 0;
   border: none;
   font-size: 16px;
   color: #000;
   background: #fff; */
}
input[type="text"],
textarea{
	display: block;
	width: 100%;
	/* border: 1px solid #ddd; */
}
input[name="zip_1"]{
	width: 85px;
}
input[name="zip_2"],
input[name="pref"]{
	width: 100px;
}
label{
	cursor: pointer;
	user-select: none;
}
select{
	cursor: pointer;
	display: block;
	width: 100%;
	height: 100%;
}
#mainarea{
	margin-bottom: var(--sec-spc);
}
h1.g-heading{
	padding: 0;
}
.sec-ttl{
	text-align: center;
}
.contact-table *{
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
.contact-table{
	border-collapse: collapse;
}
.contact-table th,
.contact-table td{
	display: block;
}
.contact-table .post-code{
	display: flex;
	align-items: center;
	gap: 10px;
}
.confirm-table td{
	background: #fff;
}
.contact-table th{
	text-align: left;
	font-weight: 500;
	font-family: var(--FF_MINCHO);
}
.contact-table th .must::after{
	content: '*';
	color: #ff0000;
	margin-left: 3px;
	position: relative;
	top: -2px;
}
.contact-table td p{
	width: 100%;
}
textarea#option{
	height: 130px;
}
textarea#comment{
	height: 250px;
}
.choice-area{
	width: 100%;
	display: grid;
	grid-template-columns: repeat(2,1fr);
}
.choice-area li{
	display: inline-block;
}
.choice-area li:not(:last-child){
	margin-bottom: 3px;
}
.check-label > input{
	margin-right: 5px;
	position: relative;
	top: 1px;
}
.select-area-td{
	justify-content: flex-start;
}
.select-area{
	width: 50%;
	margin: 0 auto 0 0;
	min-width: 220px;
	position: relative;
}
.select-area::after{
	content: "";
	display: inline-block;
	background: url(../images/arrow.svg) no-repeat;
	background-size: contain;
	width: 12px;
	height: 12px;
	position: absolute;
	right: 8px;
	top: 12px;
	z-index: 1;
}
.select-area select{
	padding: 10px;
	border: 1px solid #ddd;
	position: relative;
	background-color: rgba(0, 0, 0, 0);
	z-index: 2;
}
.to-top,
.sendbutton{
	margin: 0 auto;
	width: 90%;
	max-width: 300px;
}
.to-top a,
.sendbutton input{
	width: 100%;
	display: block;
	text-align: center;
	padding: 15px 0;
	background-color: var(--c-white);
	border: 1px solid var(--theme-c-primary);
	border-radius: 70px;
	color: var(--theme-c-primary);
	cursor: pointer;
	transition: .5s all;
}
.bac{
	text-align: center;
	margin-top: 10px;
}
.bac a{
	text-decoration: underline;
	color: #333;
	transition: .5s all;
}
.complete_p{
	text-align: center;
}
.confirm-table td{
	border: 1px solid #ddd;
	padding: 10px;
	min-height: 40.5px;
}
.contact-table td.harf{
	display: grid;
	grid-template-columns: repeat(2,1fr);
	gap: 10px;
}
.check-label[for="check-pp"]{
	display: block;
	width: fit-content;
	margin: 0 auto 10px;
}
@media screen and (min-width: 768px){
	.contact-form{
		width: 720px;
		margin: 0 auto;
	}
	.contact-table{
		width: 600px;
		margin: 0 auto 50px;
	}
	.contact-table th{
		margin-bottom: 5px;
		font-size: 14px;
	}
	.contact-table td{
		margin-bottom: 30px;
	}
	.contact-table input,
	.contact-table textarea{
		padding: 10px;
	}
	.to-top a:hover,
	.sendbutton input:hover{
		opacity: 1;
		color: var(--c-white);
		background: var(--txt-c-blue);
	}
	.bac a:hover{
		opacity: 0.7;
	}
	.complete_p{
		margin-bottom: 40px;
	}
}
@media screen and (max-width: 767px){
	#mainarea{
		margin-top: 40px;
	}
	.contact-form{
		width: var(--inner-w);
		margin: 0 auto;
		padding: 20px 0;
	}
	.contact-table{
		width: 100%;
		margin: 0 auto 30px;
	}
	.contact-table th,
	.contact-table td{
		width: 100%;
	}
	.contact-table tr{
		padding: 15px 15px 15px 15px;
	}
	.contact-table th{
		font-size: 14px;
		text-align: left;
		margin-bottom: 5px;
	}
	.contact-table td{
		margin-bottom: 15px;
	}
	.confirm-table td{
		min-height: 44px;
	}
	.contact-table input,
	.contact-table textarea{
		padding: 7px;
	}
	.complete_p{
		margin-bottom: 30px;
	}
	.choice-area{
		font-size: 12px;
		letter-spacing: -1px;
	}
	.contact-table th small{
		display: block;
	}
}
.contact-area-ttl{
	text-align: center;
	border-bottom: 1px solid var(--theme-c-secondary);
	font-size: var(--fz-18);
	padding-bottom: 7px;
	margin-bottom: 15px;
}


/* 入力欄のエラー表示 */
.error-field {
	border: 1px solid #dc3b3b !important;
}
.error-message {
	color: #dc3b3b;
	font-size: 12px;
	margin-top: 5px;
}


.s-contact{
	--grid-gap-pc: var(--spc-50);
	--grid-gap-sp: 50px;
	margin-block: var(--spc-50) var(--spc-80);
}
@media screen and (min-width: 768px){
	.s-txt small{
		margin-left: 5px;
	}
}
@media screen and (max-width: 767px){
	.s-subTtl{
		font-size: 18px;
	}
	.s-txt p, .s-txt__list li{
		font-size: 14px;
		letter-spacing: 0.05em;
	}
	.s-txt__note{
		font-size: 11px;
	}
	.s-txt small{
		display: block;
	}
}




/* 個人情報保護方針 */
.fs-c-explainList{
	margin-bottom: 20px;
}
.fs-c-documentColumn__heading {
  color: #7c8790;
  border-color: #7c8790;
  border-style: solid;
  border-width: 0 0 1px 5px;
  font-weight: 500;
  font-size: 1.8rem;
  padding: 8px;
  padding-left: 16px;
  margin-bottom: 8px;
}
.fs-c-documentColumn__content {
  padding: 8px 0;
  display: grid;
  grid-auto-flow: row;
  gap: 32px;
}
.fs-c-documentColumn__contentList {
  padding-left: 1.5em;
}
.fs-c-documentColumn__emphasis {
  font-size: 1.8rem;
  font-weight: 700;
}

.fs-c-documentSubColumn {
  border: 1px dotted #999;
  padding: 1em;
}

.fs-c-documentArticle {
  padding: 8px;
}
.fs-c-documentArticle + .fs-c-documentArticle {
  margin-top: 24px;
}
.fs-c-documentArticle__heading {
  background: #666666;
  color: #ffffff;
  font-size: 13px;
  font-weight: 400;
  margin: 0 0 16px;
  padding: 4px 8px;
  text-align: center;
}
.fs-c-documentArticle__content {
  padding: 8px;
}

.fs-c-documentContent {
  display: grid;
  grid-auto-flow: row;
  gap: 8px;
}
.fs-c-documentContent__heading {
  border-left: 4px solid #7c8790;
  padding-left: 8px;
  font-size: 1.4rem;
  margin: 0;
}
.fs-c-documentContent__content {
  display: grid;
  grid-auto-flow: row;
  gap: 24px;
}

.fs-c-documentSubContent {
  display: grid;
  grid-auto-flow: row;
  gap: 8px;
}
.fs-c-documentSubContent__heading {
  border-bottom: 3px solid #e5e5e5;
  padding-bottom: 4px;
  font-size: 1.4rem;
  margin: 0;
}
.fs-c-documentColumn__heading{
	color: #333;
	border-style: none;
	border-width: 0;
	font-weight: 500;
	font-size: 13px;
	padding: 8px;
	padding-left: 16px;
	margin-bottom: 3px;
	background: #f1f1f1;
}
.fs-c-heading--page{
	font-weight: normal;
	letter-spacing: 2px;
	text-align: center;
	line-height: 1.7;
	margin: 0 0 10px;
	padding: 0 0 0;
	border: none;
	color: #000;
	font-size: 15px;
}
.fs-c-orderedList>li .fs-c-orderedList{
	border-left: none;
}
.fs-c-documentColumn{
	margin-bottom: 25px;
}
.fs-c-orderedList{
	padding: 0;
}
h2.fs-c-documentColumn__heading{
	margin-bottom: 10px;
}
.s-contact__pp{
	background-color: var(--WHITE);
	max-height: 300px;
	overflow-y: scroll;
	padding: 30px 20px;
	font-size: 12px;
	margin-bottom: 10px;

	max-width: 600px;
	border: 1px solid var(--bd-c-gray);
	margin-inline: auto;
}
.fs-p-address{
	display: flex;
	flex-direction: column;
}


@media screen and (min-width: 768px){
	.s-contact__pp{
	width: var(--inner-w);
	}
}





