@charset "utf-8";

body .sp-item {
	display: none;
}
body .pc-item {
  display: block;
}

@media screen and (max-width: 640px) {
	body {
		min-width: inherit;
		height:100%;
	}
	body .sp-item {
		display: block;
	}
	body .pc-item {
		display: none;
	}
	body .sp-item img {
		width:100%;
	}
}

/* ----------------------------------------------------
    共通
---------------------------------------------------- */
body {
	max-width: inherit;
	height: 100%;
	background-attachment: fixed;
}
.main {
	font-family: 'ヒラギノ角ゴシック','Hiragino Sans','Meiryo UI',sans-serif;
	font-weight: 400;
	line-height: 1.7;
	font-size: 20px;
	color:#333;
	background-color: #fff;
	text-align: justify;
	font-feature-settings: "palt";
	overflow-x: hidden;
	max-width: 2000px; /*横幅調整*/
	margin: 0 auto;
	box-shadow: 0 0 8px #ccc;
}
img {
	margin: 0 auto;
	width: 100%;
	height: auto;
}
.inner {
	width: 724px;
	margin: 0 auto;
}

@media screen and (max-width: 640px) {
	img {
		max-width: 100%;
		height: auto;
	}
	body {
		width: 100%;
	}
	.inner {
		width: 94%;
	}
}

/* ----------------------------------------------------
    CTA
---------------------------------------------------- */
.btn {
	transition: all .2s;
	filter: drop-shadow(5px 5px 5px rgba(153,153,153,0.75));
}
.btn:hover {
	opacity: 0.8;
}
.cta {
	position: relative;
}
.btns01 {
	position: absolute;
	width: 350px; /*要調整*/
	height: auto;
	left: 50%;
	top: 50%; /*要調整*/
	transform: translate(35%, -50%);
}
.btns02 {
	position: absolute;
	width: 724px; /*要調整*/
	height: auto;
	left: 50%;
	transform: translateX(-50%);
	bottom: 16%;
}

@media screen and (max-width: 640px) {
		.btns01 {
			width: 94%; /*要調整*/
			transform: translate(-50%, -1%);
		}
		.btns02 {
			width: 94%; /*要調整*/
	bottom: 11%;
		}
	}

/* ----------------------------------------------------
    main
---------------------------------------------------- */
.sec {
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}
.sec > img {
	width: auto;
	height: 100%;
	object-fit: cover;
}
h2 {
	background-color: #017653;
	color: #fff;
	padding: 0.8em 0;
	font-size: 54px;
	font-weight: 600;
	text-align: center;
	width: 100%;
	display: block;
	margin: 0 auto;
}
.sec14 {
	display: block;
	padding-bottom: 100px;
}
.sec14 p {
	text-align: center;
	font-size: 16px;
	line-height: 2;
	margin-top: 40px;
	margin-bottom: 0;
	max-width: 924px;
	margin-left: auto;
	margin-right: auto;
}

@media screen and (max-width: 640px) {
	.sec {
		height: auto;
	}
	.sec > img {
		width: 100%;
		height: auto;
	}
	.sec14 {
		padding-bottom: 80px;
	}
	h2 {
		font-size: 8vw;
		padding: 1em 0;
	}
	.sec14 p {
		font-size: 14px;
		line-height: 1.8;
		margin-top: 30px;
		padding: 0 20px;
		text-align: justify;
		font-size: 18px;
		font-weight: 300;
	}
}

/* ----------------------------------------------------
    footer
---------------------------------------------------- */
.footer {
	background-color: #333;
	color: #fff;
	padding: 30px 0;
	font-size: 14px;
	font-weight: 200;
	text-align: center;
	font-family: 'ヒラギノ角ゴシック','Hiragino Sans','Meiryo UI',sans-serif;
}
.footer-link {
	width: 92%;
	margin: 0 auto;
}
.footer-link a {
	color: #fff;
	text-decoration: none;
	display: inline-block;
	line-height: 1.8;
}
.footer-link a:hover {
	opacity: 0.8;
}
.copy-right {
	margin-top: 16px;
	text-align: center;
}

/* @media screen and (max-width: 640px) {} */


/* ----------------------------------------------------
    固定ボタン
---------------------------------------------------- */
.fixed-bottom-link {
	position: fixed;
	bottom: 0px;
	width: 100%;
	filter: drop-shadow(3px 3px 4px #999);
	z-index: 100;
	display: none; /* 初期状態では非表示 */
	padding: 8px 0 4px;
	background-color: rgba(255, 255, 255, 0.2);
}
.fixed-bottom-link.show {
	display: block; /* クラスが付与されたら表示 */
}
.fixed_btns {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 724px;
	margin: 0 auto;
}
.fixed_btn a {
	display: inline-block;
	transition: .2s;
}
.fixed_btn a:hover {
	transform: scale(1.03);
	cursor: pointer;
}

/*フッターまでスクロールしたら消す*/
.is-hidden {
  visibility: hidden;
  opacity: 0;
}

@media screen and (max-width: 640px) {
	.fixed-bottom-link {
		bottom: 0px;
		left: 50%;
		transform: translateX(-50%);
		width: 100%;
	}
	.fixed_btns {
		width: 94%;
		padding: 10px 0;
		gap: 0;
	}
}

/* ----------------------------------------------------
    お問い合わせフォーム
---------------------------------------------------- */
.contact {
	background-color: #fff;
	padding: 48px 0 100px;
}
.page-header-title {
	font-size: 2em;
	font-weight: 600;
	color: #333;
	background-color: #F5F0E8;
	text-align: center;
	padding: 1em;
}
.contact p,
label {
	font-size: 16px;
}
.contact p {
	line-height: 1.7em;
	text-align: center;
}
.contact-form {
	text-align: left;
	margin: 40px auto 0;
	max-width: 724px;
	width: 100%;
	padding: 0;
	box-sizing: border-box;
}
.sec14 .contact-form {
	background-color: #fff;
	padding: 0;
	border-radius: 0;
}
.form-group {
	margin-bottom: 24px;
}
.form-group label {
	font-size: 16px;
	font-weight: 400;
	color: #333;
	margin-bottom: 8px;
}
.form-label {
	display: block;
	font-size: 16px;
	font-weight: 400;
	color: #333;
	margin-bottom: 8px;
}
input[type="text"],
input[type="email"],
textarea,
select {
	outline: none;
	font-family: 'ヒラギノ角ゴシック','Hiragino Sans','Meiryo UI',sans-serif;
	font-size: 16px;
	font-weight: 300;
	box-sizing: border-box;
	padding: 0.8em;
	line-height: 1.5em;
	margin-bottom: 0;
	margin-top: 6px;
	border-radius: 4px;
	border: 1px solid #CCCCCC;
	display: block;
	width: 100%;
	height: 3.2em;
	background-color: #fff;
}
textarea {
	width: 100%;
	margin-bottom: 0;
	margin-top: 6px;
	border-radius: 4px;
	border: 1px solid #CCCCCC;
	height: auto;
	min-height: 120px;
	resize: vertical;
}
.select-wrapper {
	position: relative;
}
.select-wrapper::after {
	content: '';
	position: absolute;
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
	width: 0;
	height: 0;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 8px solid #666;
	pointer-events: none;
}
select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	padding-right: 40px;
	cursor: pointer;
}
button {
	cursor: pointer;
	transition: all .2s;
	display: block;
	text-align: center;
	color: #fff;
	background-color: #ff6b35;
	border: none;
	font-size: 24px;
	font-weight: 400;
	padding: 16px;
	margin: 60px auto 0;
	width: 60%;
	border-radius: 5px;
}
button:hover {
	opacity: 0.8;
}
.badge {
	font-weight: 500;
	padding: 2px 8px;
	font-size: 12px;
	border-radius: 4px;
	margin-left: 8px;
	line-height: 1.5;
	display: inline-block;
	vertical-align: middle;
}
.badge-required {
	color: #fff;
	background-color: #ff6b35;
}
.badge-optional {
	color: #666;
	background-color: #e0e0e0;
}
.radio-group {
	display: flex;
	flex-direction: column;
	gap: 4px;
	margin-top: 8px;
}
.radio-label {
	display: flex;
	align-items: center;
	cursor: pointer;
	font-size: 16px;
	font-weight: 300;
}
.radio-label input[type="radio"] {
	width: 20px;
	height: 20px;
	margin: 0 12px 0 0;
	cursor: pointer;
	accent-color: #333;
	flex-shrink: 0;
}
.radio-text {
	display: inline-block;
}
input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus,
select:focus {
	outline: 2px solid #017653;
	outline-offset: 2px;
	border-radius: 3px;
}
::placeholder {
	color: #ccc;
	font-weight: 200;
	font-size: 16px;
}

@media screen and (max-width: 640px) {
	.page-header-title {
		font-size: 10vw;
	}
	.contact p {
		font-size: 16px;
		text-align: justify;
	}
	.sec14 .contact-form {
		padding: 20px;
		margin: 20px auto 0;
	}
	.form-group {
		margin-bottom: 20px;
	}
	.form-group label,
	.form-label {
		font-size: 14px;
		margin-bottom: 6px;
	}
	input[type="text"],
	input[type="email"],
	select {
		font-size: 16px;
		padding: 0.7em;
		height: 2.8em;
	}
	textarea {
		font-size: 16px;
		padding: 0.7em;
		min-height: 100px;
	}
	.badge {
		font-size: 11px;
		padding: 2px 6px;
		margin-left: 6px;
	}
	.radio-group {
		gap: 4px;
		margin-top: 6px;
	}
	.radio-label {
		font-size: 14px;
	}
	.radio-label input[type="radio"] {
		width: 18px;
		height: 18px;
		margin-right: 10px;
	}
	button {
		width: 100%;
		font-size: 18px;
		padding: 1.3em;
		margin-top: 30px;
	}
}

/* ----------------------------------------------------
    サンクスページ
---------------------------------------------------- */
.sec-thanks {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 70vh;
	padding: 80px 20px;
	background-color: #fff;
}
.thanks-content {
	max-width: 724px;
	width: 100%;
	text-align: center;
	margin: 0 auto;
}
.thanks-icon {
	margin-bottom: 40px;
}
.check-circle {
	display: inline-block;
	vertical-align: middle;
	color: #fff;
	background-color: #017653;
	line-height: 1;
	position: relative;
	width: 80px;
	height: 80px;
	border: 0.1em solid #017653;
	border-radius: 50%;
	box-sizing: content-box;
	margin: 0 auto;
}
.check-circle > span {
	width: 1.5em;
	height: 0.9em;
	border: 0.3em solid currentColor;
	border-top: 0;
	border-right: 0;
	box-sizing: border-box;
	transform: translateY(-25%) rotate(-45deg);
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
}
.sec-thanks h2 {
	background-color: transparent;
	color: #333;
	padding: 0;
	border-radius: 0;
	font-size: 36px;
	font-weight: 600;
	text-align: center;
	margin-bottom: 30px;
	line-height: 1.5;
}
.thanks-message {
	text-align: center;
	font-size: 16px;
	line-height: 2;
	margin-bottom: 50px;
	color: #333;
}
.thanks-button {
	margin-top: 40px;
}
.btn-top {
	display: inline-block;
	text-align: center;
	color: #fff;
	background-color: #ff6b35;
	border: none;
	font-size: 20px;
	font-weight: 400;
	padding: 16px 60px;
	border-radius: 5px;
	text-decoration: none;
	transition: all .2s;
}
.btn-top:hover {
	opacity: 0.8;
}

@media screen and (max-width: 640px) {
	.sec-thanks {
		min-height: 60vh;
		padding: 60px 20px;
	}
	.thanks-icon {
		margin-bottom: 30px;
	}
	.check-circle {
		width: 60px;
		height: 60px;
	}
	.sec-thanks h2 {
		font-size: 24px;
		margin-bottom: 20px;
	}
	.thanks-message {
		font-size: 14px;
		line-height: 1.8;
		margin-bottom: 40px;
		padding: 0 10px;
	}
	.btn-top {
		font-size: 18px;
		padding: 14px 40px;
		width: 100%;
		max-width: 300px;
		box-sizing: border-box;
	}
}
