/*
Theme Name: sela-forms
Description: セラサービスのフォーム類用
Author: Arrows-yoshi
*/

@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?&family=Noto+Sans+JP:wght@400;500;700&display=swap");

:root {
	--fwr: 400;
	--fwm: 500;
	--fwb: 700;
}
html {
	--14px: 0.875rem;
	--16px: 1rem;
	--18px: 1.125rem;
	scroll-behavior: smooth;
	scroll-padding-top: 6rem;
}
body {
	font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
	font-size: var(--18px);
	font-weight: var(--fwr);
	color: #000;
	position: relative;
	z-index: 1;
	margin: 0;
}

section {
	width: 80%;
	margin: 0 auto;
}

@media screen and (max-width: 992px) {
	section {
		width: 90%;
	}
	.sp {
		display: none;
	}
}

section > h1 {
	text-align: center;
}
section > h1 > span {
	font-weight: normal;
	font-size: var(--16px);
}
.taCenter {
	text-align: center;
}

a {
	text-decoration: none;
	color: #ff6600;
}


/*--------------------------------------------------------------
	header
---------------------------------------------------------------- */
header {
	border-bottom: 2px solid #00ccff;
	padding: 1rem 0;
	margin-bottom: 3rem;
	background: #009bd7;
	color: #fff;
	text-align: center;
}


/*--------------------------------------------------------------
	linklist
---------------------------------------------------------------- */
.linklist {
	display: grid;
	gap: 10px;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	place-items: stretch;
	margin-bottom: 3rem;
}
.linklist div {
}
.linklist a {
	color: #fff;
	font-weight: bold;
	border-radius: 10px;
	display: block;
	text-align: center;
	padding: 1rem .5rem;
}
.linklist a:hover {
	opacity: 0.8;
}
.linklist a {
	background: #009843;
}


/*--------------------------------------------------------------
	contact form7
---------------------------------------------------------------- */
/* チェックボックスとラジオボタンを縦並びに */
span.wpcf7-list-item {
	margin-bottom: 5px;
	display: block;
}

.wpcf7-free-text {
	display: block;
	margin-top: .25rem;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="email"],
.wpcf7 textarea {
	padding: 0.6rem 0.4rem;
	width: 100%!important;
}
.wpcf7 select {
	padding: 0.6rem 0.4rem;
	font-size: var(--16px);
}


.wpcf7-submit,
.wpcf7-previous {
	width: 50%;
	font-size: var(--18px);
	padding: 1rem;
	border-radius: 5px;
}

.wpcf7-submit {
	background: #009843;
	color: #fff;
	font-weight: var(--fwb);
}

.wpcf7-spinner {
	display: block;
}

.enqform dl {
	margin-bottom: 2rem;
}
.enqform dt {
	padding-left: 1.2rem;
	text-indent: -1.2rem;
	margin-bottom: .5rem;
}
.enqform dd {
	margin-left: 0;
}

.enqform ul {
	display: flex;
	justify-content: center;
	list-style: none;
	margin-top: 2rem;
}
.enqform li {
	width: 100%;
	text-align: center;
}

@media screen and (max-width: 576px) {
	.enqform ul {
		display: block;
	}
	.enqform li {
		margin-bottom: 1rem;
	}
}

.form {
	margin-top: 3rem;
}
.form div {
	margin-bottom: 2rem;
}
.form div p {
	margin-bottom: .5rem;
	font-weight: bold;
}
.form dl {
	margin-left: 2rem;
}
.form dd {
	margin-left: 0;
	margin-top: .5rem;
}



.form div ul.file_list {
	list-style: none;
	padding-left: 0;
	margin-top: 0;
}
.form div ul.file_list li {
	margin-bottom: .5rem;
}
.form .dotline {
	border-top: 2px dotted #000;
	padding-top: 1rem;
}
.form .separeter {
	border-top: 1px dotted #000;
	margin-top:2rem;
}

.wpcf7 input[type="text"].number {
	width: 10rem !important;
}
.wpcf7 input[type="text"].number_s {
	width: 5rem !important;
}



.red {
	color: #ff0000;
}
.small {
	font-size: var(--14px);
}


/*--------------------------------------------------------------
	arrow
---------------------------------------------------------------- */
.arrow {
	position: relative;
	display: inline-block;
	padding: 10px 35px 10px 10px;
	transition: ease .2s;
	font-weight: var(--fwb);
}
.arrow::before,
.arrow::after {
	content:'';
	position: absolute;
	/*z-index: 1;*/
	bottom: 0;
	left: 0;
	background: #fff;
	width: 100%;
	height: 2px;
	transition: all 0.3s ease-in-out;
}
.arrow::after {
	width: 0;
	background: #ff6600;
}
.arrow:hover::after {
	width:100%;
}
.arrow span::after{
	content: '';
	position: absolute;
	top: 1rem;
	right: 18px;
	width: 12px;
	height: 12px;
	border-top: 2px solid #ff6600;
	border-right: 2px solid #ff6600;
	transform: rotate(45deg);
	transition: all .3s;
}
.arrow:hover span::after{
	right: 14px;
}


/*--------------------------------------------------------------
	footer
---------------------------------------------------------------- */
footer {
	border-top: 2px solid #00ccff;
	padding: 1rem 0 2rem;
	margin-top: 3rem;
	background: #009bd7;
	color: #fff;
	text-align: center;
}

footer .copyright {
	font-size: var(--14px);
}


/*--------------------------------------------------------------
	404
---------------------------------------------------------------- */
.nopage {
	text-align: center;
	margin-bottom: 3rem;
}

