@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: url(../images/bg-body.png) repeat center center;
	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: 1024px;
	margin: 0 auto;
	box-shadow: 0 0 8px #ccc;
}
img {
	margin: 0 auto;
	width: 100%;
	height: auto;
}

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

/* ----------------------------------------------------
    CTA
---------------------------------------------------- */
.btn,
button {
	transition: all .2s;
	filter: drop-shadow(5px 5px 5px rgba(153,153,153,0.75));
	position: relative;
	animation: pulse 2s ease-in-out infinite;
	overflow: hidden;
}
.btn a {
	display: inline-block;
	position: relative;
	overflow: hidden;
}
.btn a::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 50%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.8),
		rgba(255, 255, 255, 0.6),
		transparent
	);
	animation: shine 5s ease-in-out infinite;
	z-index: 10;
	pointer-events: none;
	transform: skewX(-20deg);
}
.btn:hover {
	opacity: 0.8;
}
.sec02,
.sec04,
.sec11,
.sec31,
.sec35 {
	position: relative;
}
.sec02-btn {
	position: absolute;
	bottom: 130px;
	left: 50%;
	transform: translateX(-50%);
	width: 700px;
	height: auto;
}
.sec04-btns {
	position: absolute;
	bottom: 110px;
	left: 50%;
	transform: translateX(-50%);
	width: 700px;
	height: auto;
}
.sec11-btns {
	position: absolute;
	bottom: 180px;
	left: 50%;
	transform: translateX(-50%);
	width: 700px;
	height: auto;
}
.sec31-btns {
	position: absolute;
	bottom: 115px;
	left: 50%;
	transform: translateX(-50%);
	width: 700px;
	height: auto;
}
.sec35-btn {
	position: absolute;
	bottom: 225px;
	left: 50%;
	transform: translateX(-50%);
	width: 700px;
	height: auto;
}
.sec04-btns .btn:not(:first-child) {
	margin-top: 230px;
}
.sec11-btns .btn:not(:first-child) {
	margin-top: 230px;
}
.sec31-btns .btn:not(:first-child) {
	margin-top: 230px;
}

@media screen and (max-width: 640px) {
	.sec02-btn {
		bottom: 15%;
		width: 81%;
	}
	.sec04-btns {
		bottom: 8%;
		width: 91%;
	}
	.sec11-btns {
		bottom: 10.8%;
		width: 91%;
	}
	.sec31-btns {
		bottom: 7.8%;
		width: 91%;
	}
	.sec35-btn {
		bottom: 21.5%;
		width: 90%;
	}
	.sec04-btns .btn:not(:first-child) {
		margin-top: 47%;
	}
	.sec11-btns .btn:not(:first-child) {
		margin-top: 47%;
	}
	.sec31-btns .btn:not(:first-child) {
		margin-top: 47%;
	}
}

/* ----------------------------------------------------
    main
---------------------------------------------------- */
.sec17 {
	position: relative;
}
.video-container {
	position: absolute;
	left: 50%;
	bottom: 20px;
	transform: translateX(-50%);
	width: 560px;
	height: auto;
	border: 8px solid #c17a9a;
	line-height: 100%;
	display:flex;
	align-items: end;
}
.video-container video {
	width: 100%;
	height: auto;
	object-fit: cover;
}
.sec36 {
	background-color: #eee3e7;
	padding-bottom: 80px;
}
.sec36-text {
	width: 626px;
	margin: 0 auto;
	font-family: 'ヒラギノ角ゴシック','Hiragino Sans','Meiryo UI',sans-serif;
	line-height: 1.8;
	font-size: 18px;
	letter-spacing: 0em;
}

@media screen and (max-width: 640px) {
	.video-container {
		bottom: 5%;
		width: 88%;
		height: auto;
		border: 6px solid #c17a9a;
	}
	.sec36-text {
		width: 98%;
		line-height: 1.8;
		letter-spacing: 0.02em;
	}
}

/* ----------------------------------------------------
    横スクロール
---------------------------------------------------- */
.sec27 {
	position: relative;
}
.scroll {
	position: absolute;
	bottom: -30px;
	left: 50%;
	transform: translateX(-50%);
	overflow: auto;
	width: 922px;
	height: auto;
	-ms-overflow-style: none; /* IE, Edge */
	scrollbar-width: none; /* Firefox */
}
.scroll::-webkit-scrollbar {
	display: none; /* Chrome, Safari, Opera */
}

@media screen and (max-width: 640px) {
	.scroll {
		position: absolute;
		bottom: -1.4%;
		right: 0;
		left: auto;
		transform: translateX(0);
		overflow: auto;
		width: 96%;
		height: auto;
		max-width: 600px;
	}
	.scroll img {
		width: auto !important;
		max-width: calc(100vw * 1.43) !important;
		min-width: 100% !important;
		height: auto !important;
		transform: none;
		transform-origin: left top;
		padding-right: 20px !important;
	}
}

/* ----------------------------------------------------
    footer
---------------------------------------------------- */
.footer {
	background-color: #42210b;
	color: #fff;
	padding: 30px 0;
	font-size: 14px;
	font-weight: 200;
	text-align: center;
}
.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: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	z-index: 100;
	display: none; /* 初期状態では非表示 */
	text-align: center;
	background-color: rgba(238, 227, 231, 0.7);
	padding: 8px 0;
}
.fixed-bottom-link.show {
	display: block; /* クラスが付与されたら表示 */
}
.fixed_btn {
	width: 750px;
	height: auto;
	display: inline-block;
	position: relative;
}
.fixed_btn a {
	display: inline-block;
	transition: .2s;
}
.fixed_btn a:hover {
	transform: scale(1.03);
	cursor: pointer;
}
@keyframes pulse {
	0%, 100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.08);
	}
}
@keyframes shine {
	0% {
		left: -100%;
		opacity: 0;
	}
	10% {
		opacity: 1;
	}
	20% {
		left: 150%;
		opacity: 0;
	}
	100% {
		left: 150%;
		opacity: 0;
	}
}

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

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

/* ----------------------------------------------------
    お問い合わせフォーム
---------------------------------------------------- */
.contact-form {
	margin-top: 50px;
}
.inner {
	width: 700px;
	margin: 0 auto;
}
label {
	font-size: 16px;
	position: relative;
	font-weight: 600;
}
.contact-container-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;
	border: none;
	background-color: transparent;
	width: 630px;
	height: auto;
	display: block;
	margin: 0 auto;
	padding: 0;
	position: relative;
	overflow: hidden;
	animation: pulse 2s ease-in-out infinite;
}
button:hover {
	opacity: 0.8;
}
.contact-form-button {
	animation: none !important;
}
.contact-form-button::before {
	display: none !important;
}
.badge {
	position: absolute;
	top: 50%;
	right: -48px;
	transform: translateY(-50%);
	color: #fff;
	background-color: #c1272d;
	font-weight: 500;
	padding: 4px 6px 3px 6px;
	font-size: 80%;
	line-height: 1;
}
:focus {
	outline: 1px solid rgb(148, 119, 81);
	border-radius: 3px;
}
::placeholder {
	color: #ccc;
	font-weight: 200;
	font-size: 16px;
}
.check {
	margin-top: 20px;
}
.checkbox-item {
	display: flex;
	align-items: center;
	gap: 10px;
}
input[type="checkbox"] {
	width: 1em !important;
	height: 1em !important;
	margin: 0 !important;
}
input[type="checkbox"]:focus {
	outline: none;
}
.textarea-item {
	margin-top: 16px;
}

/* ----------------------------------------------------
    個人情報取り扱い 縦スクロール小窓
---------------------------------------------------- */
.privacy-scroll-box {
	margin-top: 60px;
	width: 100%;
	max-height: 200px;
	overflow-y: auto;
	border: 1px solid #CCCCCC;
	border-radius: 4px;
	padding: 20px;
	background-color: #f9f9f9;
	box-sizing: border-box;
}
.privacy-scroll-content {
	font-size: 14px;
	line-height: 1.8;
	color: #333;
}
.privacy-title {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 15px;
	text-align: center;
}
.privacy-scroll-content p {
	margin-bottom: 12px;
}
.privacy-contact-title {
	font-weight: 600;
	margin-top: 20px;
	margin-bottom: 10px;
}

@media screen and (max-width: 640px) {
	.privacy-scroll-box {
		max-height: 200px;
		padding: 15px;
		margin-top: 30px;
	}
	.privacy-scroll-content {
		font-size: 14px;
	}
	.privacy-title {
		font-size: 14px;
	}
	button {
		width: 100%;
		padding: 0;
	}
	textarea {
		margin-bottom: 50px;
	}
	.checkbox-item {
		line-height: 1.8;
	}
	.checkbox-item:not(:first-of-type) {
		margin-top: 0.3em;
	}
	.inner {
		width: 92%;
	}
	.contact-form {
		margin-top: 40px;
	}
	.textarea-item {
		margin-top: 20px;
	}
}

/* ----------------------------------------------------
    サンクスページ
---------------------------------------------------- */
.page-header-title {
	font-size: 2em;
	font-weight: 600;
	color: #fff;
	background-color: #30211e;
	text-align: center;
	padding: 2em 0.5em;
	line-height: 1.4;
}
.thanks {
	text-align: center;
	background-color: #fff;
	padding: 0 0 100px;
	height: 100vh;
	box-sizing: border-box;
	font-family: 'ヒラギノ角ゴシック','Hiragino Sans','Meiryo UI',sans-serif;
}
.thanks h2 {
	font-size: 24px;
	font-weight: 600;
	line-height: 1.5;
	margin-top: 8px;
}
.thanks p {
	text-align: justify;
	line-height: 27px;
	font-size: 16px;
}
.thanks p:not(:first-child) {
	margin-top: 30px;
}
.thanks-text {
	width: 630px;
	padding: 40px 30px;
	background-color: #eee3e7;
	border-radius: 10px;
	margin: 40px auto 0;
}
.top {
	margin-top: 60px;
}
.dli-check-circle {
  display: inline-block;
  vertical-align: middle;
  color: #fff;
	background-color: #c17a9a;
  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;
}

@media screen and (max-width: 640px) {
	.thanks {
		padding: 40px 20px 80px;
		min-height: 100vh;
		height: auto;
	}
	.thanks h2 {
		font-size: 20px;
		margin-top: 20px;
	}
	.thanks p {
		font-size: 16px;
		line-height: 1.8;
		margin-top: 20px;
		padding: 0 10px;
	}
	.thanks-text {
		width: 90%;
		padding: 40px 20px;
		margin: 40px auto 0;
	}
	.dli-check-circle {
		margin-top: 10px;
		width: calc(40px + 6px);
		height: calc(40px + 6px);
	}
	.top {
		margin-top: 50px;
	}
}

/* ----------------------------------------------------
    特定商取引法ページ
---------------------------------------------------- */
.tokusho-section {
	background-color: #fff;
	padding: 60px 0 80px;
	font-family: 'ヒラギノ角ゴシック','Hiragino Sans','Meiryo UI',sans-serif;
	text-align: center;
}
.tokusho-inner {
	width: 700px;
	margin: 0 auto;
}
.tokusho-content {
	text-align: left;
}
.tokusho-item {
	margin-bottom: 40px;
}
.tokusho-item:last-child {
	margin-bottom: 0;
}
.tokusho-heading {
	font-size: 20px;
	font-weight: 600;
	color: #333;
	margin-bottom: 12px;
	line-height: 1.6;
	border-bottom: 2px solid #c17a9a;
	padding-bottom: 8px;
}
.tokusho-text {
	font-size: 16px;
	line-height: 1.8;
	color: #333;
	margin-top: 8px;
}
.tokusho-list {
	list-style: none;
	padding-left: 0;
	margin-top: 8px;
}
.tokusho-list li {
	font-size: 16px;
	line-height: 1.8;
	color: #333;
	padding-left: 1.2em;
	position: relative;
	margin-bottom: 8px;
}
.tokusho-list li:before {
	content: "・";
	position: absolute;
	left: 0;
}
.tokusho-list li:last-child {
	margin-bottom: 0;
}
.tokusho-list-numbered {
	list-style: decimal;
	padding-left: 1.5em;
	margin-top: 8px;
}
.tokusho-list-numbered li {
	font-size: 16px;
	line-height: 1.8;
	color: #333;
	margin-bottom: 8px;
}
.tokusho-list-numbered li:last-child {
	margin-bottom: 0;
}
.tokusho-list-numbered .tokusho-list {
	margin-top: 8px;
	margin-bottom: 8px;
}
.tokusho-note {
	font-size: 14px;
	line-height: 1.8;
	color: #666;
	margin-top: 8px;
	padding-left: 1em;
}
.tokusho-subsection {
	margin-top: 20px;
	margin-bottom: 20px;
}
.tokusho-subsection:first-child {
	margin-top: 12px;
}
.tokusho-subsection:last-child {
	margin-bottom: 0;
}
.tokusho-subheading {
	font-size: 18px;
	font-weight: 600;
	color: #333;
	margin-bottom: 10px;
	line-height: 1.6;
}

@media screen and (max-width: 640px) {
	.page-header-title {
		padding: 1.5em 0.5em;
		font-size: 8vw;
		letter-spacing: 0.05em;
	}
	.tokusho-section {
		padding: 40px 0 60px;
	}
	.tokusho-inner {
		width: 92%;
	}
	.tokusho-item {
		margin-bottom: 35px;
	}
	.tokusho-heading {
		font-size: 18px;
		margin-bottom: 10px;
	}
	.tokusho-text {
		font-size: 15px;
		line-height: 1.7;
	}
	.tokusho-list li {
		font-size: 15px;
		line-height: 1.7;
	}
	.tokusho-list-numbered {
		padding-left: 1.2em;
	}
	.tokusho-list-numbered li {
		font-size: 15px;
		line-height: 1.7;
	}
	.tokusho-note {
		font-size: 13px;
		line-height: 1.7;
	}
	.tokusho-subheading {
		font-size: 16px;
	}
}