@charset "utf-8";
/* CSS Document */



/* ---------------------------------------------------------------------------------------------

   特定箇所指定

--------------------------------------------------------------------------------------------- */

#contact{
	margin-bottom: 75px;
}

@media screen and (max-width:550px) {

#contact{
	margin-bottom: 50px;
}
	
}

#confirm_contact,
#complete_contact {
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

#complete_contact p {
	display: inline-block;
}


/* ---------------------------------------------------------------------------------------------

   Privacy h1,H2

--------------------------------------------------------------------------------------------- */
#contact h1{
	font-size: clamp(24px, 3vw, 36px);
	font-weight: normal;
	text-align: center;
	letter-spacing: 0.25em;
	margin-bottom: 75px;
}

#contact h2{
	text-align: center;
	letter-spacing: 0.25em;
	font-size: clamp(20px, 2vw, 24px);
}



/* Privacy-Contact-link
------------------------------------------------------------*/
.flex-nav{
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	margin-bottom: 100px;
}

.flex-nav .pr-co-link{ 
	text-align: center;
	line-height: 1;
	border: 5px solid #e7e1e9;
	font-size: clamp(14px, 2vw, 16px);
	letter-spacing: 0.25em;
	height: auto;
	border-radius: 5px;
}
.flex-nav .link2{ 
	width: 50%;
}

.flex-nav .pr-co-link a{
	display: block;
	color: #333;
	padding: 15px;
	background: #fff;
	border-radius: 5px;
}
.flex-nav .pr-co-link a:hover{
	background: #666;
	color: #fff;
}

@media screen and (max-width:750px) {

.flex-nav .link2{
	width: 100%;
}
	
}


/* ---------------------------------------------------------------------------------------------

   Tel-box

--------------------------------------------------------------------------------------------- */
.tel-box{
	width: 100%;
	padding: 25px;
	background: #fff;
	text-align: center;
	margin-top: 75px;
	border-radius: 10px;
}

.tel-box .text-20,
.tel-box .text-16,
.tel-box .text-24{
	letter-spacing: 0.25em;
}


/* ---------------------------------------------------------------------------------------------

   Flow-box

--------------------------------------------------------------------------------------------- */
.flow-box{
	width: 100%;
	padding: 10px;
	border: 0.5px solid #ccc;
	margin-bottom: 75px;
}

.flow-box ul{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	width: 100%;
}
	
.flow-box ul li{
	width: 33.3%;
	text-align: center;
	line-height: 1.75;
	font-size: clamp(16px, 3vw, 18px);
}

.flow-box ul li .fa-angle-right{
	float: right;
	font-size: clamp(20px, 3vw, 24px);
	line-height: 1.5;
	color: #999;
}

.flow-box ul li .fa-angle-down{
	display: none;
	font-size: clamp(20px, 3vw, 24px);
	line-height: 1.5;
	color: #999;
}

.flow-box li.active {
	position: relative;
	overflow: visible;
}

.flow-box li.active::after {
	content: '';
	position: absolute;
	left: 1em;
	right: 1em;
	bottom: -0.2em;
	border-bottom: 1px solid #ccc;
}

@media screen and (max-width:700px) {
	
.flow-box{
	padding: 10px 10px 0 10px;
}

.flow-box ul{
	flex-wrap: nowrap;
	display: inline-block;
}
	
.flow-box ul li{
	width: 100%;
}
	
.flow-box ul li .fa-angle-right{
	display: none;
}
	
.flow-box ul li .fa-angle-down{
	display: block;
}

.flow-box li.active::after {
	left: 2em;
	right: 2em;
	bottom: 1.7em;
}
	
}



/* ---------------------------------------------------------------------------------------------

   Form

--------------------------------------------------------------------------------------------- */
.contact-form  {
	width:100%;
}

.contact-form dl {
	width:100%;
	margin: 0 auto;
	overflow: hidden;
}

.contact-form dl dt {
	clear: both;
	width: 30%;
	float: left;
	border-top: 1px solid #ccc;
	padding: 15px 0;
	overflow: hidden;
	font-weight: normal;
	color:#555;
	font-size: 16px;
}
.contact-form dl dt span.kome {
	color:#f00;
	font-weight: normal;
}

.contact-form dl dd {
	width: 65%;
	float: right;
	border-top: 1px solid #cccccc;
	padding: 15px 0 20px 5%;
	font-size: 16px;
}

.contact-form dl dt:first-child,
.contact-form dl dt:first-child+dd {
	border: none;
}

.contact-form #privacy-link{
	color:#369;
	text-decoration:underline;
}
.contact-form #privacy-link:hover{
	color:#F60;
}

.error-message {
  color: #f00;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form input[type="date"] {
	max-width: 90%;
	height: 2em;
	padding: 2px 2%;
	border: 1px solid #cccccc;
	border-radius: 3px;
	background: #fafafa;
	-webkit-appearance: none;
	font-size: 16px;
	margin-top: 7px;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form input[type="tel"]:focus,
.contact-form textarea:focus {
	box-shadow: 0px 0px 5px #55ccff;
	border: 1px solid #55ccff;
	background: #ffffff;
}

.contact-form ul li input[type="radio"],
.contact-form ul li input[type="checkbox"] {
	margin-right: 10px;
	margin-top: 7px;
}

.contact-form ul li:first-child input[type="radio"],
.contact-form ul li:first-child input[type="checkbox"] {
	margin-top: 0px;
}

.contact-form select {
	font-size: 16px;
	margin-top: 10px;
	height: 2em;
	padding: 2px 2%;
	border: 1px solid #cccccc;
}

.contact-form textarea {
	display: block;
	width: 90%;
	max-width: 90%;
	height: 200px;
	padding: 2px 2%;
	resize: vertical;
	border: 1px solid #cccccc;
	border-radius: 3px;
	background: #fafafa;
	-webkit-appearance: none;
	font-size: 16px;
}

.contact-form ul {
	list-style-type: none;
}

.contact-form ul li label:hover {
	cursor: pointer;
}

#subject {
  margin-top: 0;
  color: #555;
}

#subject,
#name,
#kana,
#email {
  width: 80%;
  margin-bottom:10px;
}

#tel {
  width: 50%;
  margin-bottom:10px;
}

.contact-form p#form_submit {
	width:100%;
	margin: 0 auto;
	padding: 15px 0;
	border-top: 1px solid #cccccc;
}

.contact-form input[type="button"] {
	padding: 20px;
	vertical-align: middle;
	line-height: 1;
	background: #666;
	border: 1px solid #666;
	color: #ffffff;
	-webkit-appearance: none;
	font-size: 100%;
	width: 300px;
	letter-spacing: 0.25em;
	margin-top: 25px;
}

.form-buttons {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 2rem;
	width:100%;
	margin: 0 auto;
	padding: 15px 0;
	border-top: 1px solid #ccc;
}

.form-button {
	padding: 20px;
	vertical-align: middle;
	line-height: 1;
	background: #666;
	border: 1px solid #666;
	color: #ffffff;
	-webkit-appearance: none;
	font-size: 100%;
	max-width: 90%;
	width: 350px;
	letter-spacing: 0.25em;
	margin-top: 25px;
}

.form-button:hover {
	cursor: pointer;
	background: #fff;
	color: #333;
}

@media screen and (max-width:900px) {

.contact-form input:not([type="button"]) {
	width: 100% !important;
	max-width: 100% !important;
}

#subject {
	width: 100%;
}

.contact-form dl {
	overflow: visible;
}

.contact-form dl dt {
	width: auto;
	float: none;
	text-align: left;
	padding: 10px 0 20px 0;
}

.contact-form dl dd {
	width: auto;
	float: none;
	border-top: none;
	padding: 0px 0 20px 0px;
}

.contact-form dl dt span {
	font-weight: normal;
}

}

.honeypot {
  display: none;
  position: absolute;
  left: -9999px;
}
