@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,
.cta02,
.cta03 {
	position: relative;
}
.btns {
	position: absolute;
	width: 800px; /*要調整*/
	left: 50%;
	transform: translateX(-50%);
	bottom: 100px; /*要調整*/
	display: flex;
	flex-direction: column;
	gap: 20px; /*要調整*/
	z-index: 100;
}
.cta02 .btns {
	bottom: 410px; /*要調整*/
}
.cta03 .btns {
	bottom: 200px; /*要調整*/
}
.btn-flex {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.btn-flex .btn {
	width: 48.5%;
}

@media screen and (max-width: 640px) {
		.btns {
			width: 94%; /*要調整*/
			bottom: 14%; /*要調整*/
			gap: 10px; /*要調整*/
		}
		.cta02 .btns {
			bottom: 50%; /*要調整*/
		}
		.cta03 .btns {
			bottom: 17%; /*要調整*/
		}
	}

/* ----------------------------------------------------
    main
---------------------------------------------------- */
.sec {
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}
.sec > img {
	width: auto;
	height: 100%;
	object-fit: cover;
}

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

/* ----------------------------------------------------
    footer
---------------------------------------------------- */
.footer {
	background-color: #43423C;
	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;
}
.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: 10px 0;
	background-color: rgba(255, 255, 255, 0.3);
}
.fixed-bottom-link.show {
	display: block; /* クラスが付与されたら表示 */
}
.fixed_btns {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
	width: 944px;
	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%;
		padding: 0;
	}
	.fixed_btns {
		width: 94%;
		padding: 10px 0;
		gap: 8px;
	}
}

/* ----------------------------------------------------
    お問い合わせフォーム
---------------------------------------------------- */
.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;
}
input,
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: 16px;
	margin-top: 2px;
	border-radius: 4px;
	border: 1px solid #CCCCCC;
	display: block;
	width: 100%;
	height: 3.2em;
}
textarea {
	width: 100%;
	margin-bottom: 60px;
	margin-top: 5px;
	border-radius: 4px;
	border: 1px solid #CCCCCC;
	height: auto;
}
button {
	cursor: pointer;
	transition: all .2s;
	display: block;
	text-align: center;
	color: #fff;
	background-color: #3cb371;
	border: none;
	font-size: 24px;
	font-weight: 400;
	padding: 16px;
	margin: 0 auto;
	width: 60%;
	border-radius: 5px;
}
button:hover {
	opacity: 0.8;
}
.badge {
	color: #fff;
	background-color: #ce5242;
	font-weight: 500;
	padding: 4px 4px 2px 4px;
	font-size: 80%;
	border-radius: 4px;
	margin-left: 4px;
	line-height: 1;
	display: inline-block;
}
:focus {
	outline: 1px solid rgb(148, 119, 81);
	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;
	}
	button {
		width: 100%;
		font-size: 20px;
		padding: 16px;
	}
	textarea {
		margin-bottom: 50px;
	}
}

/* ----------------------------------------------------
    サンクスページ
---------------------------------------------------- */
.thanks {
	text-align: center;
	background-color: #fff;
	padding: 0 0 100px;
	height: 100vh;
	box-sizing: border-box;
}
.thanks h1 {
	width: auto;
	height: auto;
}
.thanks h2 {
	font-size: 24px;
	font-weight: 600;
	line-height: 1.5;
	margin-top: 8px;
}
.thanks p {
	text-align: center;
	line-height: 27px;
	font-size: 16px;
	font-weight: 400;
	margin-top: 30px;
}
.top {
	margin-top: 60px;
}
.dli-check-circle {
  display: inline-block;
  vertical-align: middle;
  color: #fff;
	background-color: #3cb371;
  line-height: 1;
  position: relative;
  width: calc(50px + 6px);
  height: calc(50px + 6px);
  border: 0.1em solid currentColor;
  border-radius: 50%;
  box-sizing: content-box;
	margin-top: 60px;
}
.dli-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;
}