@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;
}

@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;
}
.btns {
	position: absolute;
	width: 670px; /*要調整*/
	left: 50%;
	transform: translateX(-50%);
	bottom: 181px; /*要調整*/
	display: flex;
	flex-direction: column;
	gap: 104px; /*要調整*/
}

@media screen and (max-width: 640px) {
		.btns {
			width: 83%; /*要調整*/
			bottom: 16%; /*要調整*/
			gap: 10px; /*要調整*/
		}
		.mail {
			margin-top: 16%;
		}
	}

/* ----------------------------------------------------
    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: #041E32;
	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 {
	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: #041E32;
}
.fixed-bottom-link.show {
	display: block; /* クラスが付与されたら表示 */
}
.fixed_btns {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 8px;
	/*width: 944px;*/
	width: 800px;
	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: 8px;
        justify-content: center;
	}
    .fixed_btn{
        max-width: 46%;
    }
}

/* ----------------------------------------------------
    サブページ共通（お問い合わせ・プライバシーポリシー）
---------------------------------------------------- */
.page-header-title {
	font-size: 1.5rem;
	font-weight: 600;
	color: #fff;
	background-color: #041E32;
	text-align: center;
	padding: 1rem 1.5rem;
	letter-spacing: 0.02em;
}
.container {
	background-color: #fff;
}

/* ----------------------------------------------------
    お問い合わせフォーム
---------------------------------------------------- */
.contact {
	background-color: #fff;
	padding: 3rem 0 4rem;
}
.contact .inner {
	width: 92%;
	max-width: 560px;
	margin: 0 auto;
}
.contact > .inner > p {
	font-size: 15px;
	line-height: 1.8;
	text-align: center;
	color: #555;
	margin-bottom: 2.5rem;
}
.contact-form {
	text-align: left;
	margin: 0 auto;
}
.contact .form-item {
	margin-bottom: 1.5rem;
}
.contact .form-item:last-of-type {
	margin-bottom: 2rem;
}
.contact label {
	font-size: 14px;
	font-weight: 500;
	color: #333;
	display: block;
	margin-bottom: 0.5rem;
}
.contact input,
.contact textarea,
.contact select {
	outline: none;
	font-family: 'ヒラギノ角ゴシック','Hiragino Sans','Meiryo UI',sans-serif;
	font-size: 16px;
	font-weight: 400;
	box-sizing: border-box;
	line-height: 1.5;
	margin: 0;
	border-radius: 2px;
	border: 1px solid #e0e0e0;
	display: block;
	width: 100%;
	height: 2.75rem;
	background-color: #fff;
	transition: border-color 0.2s;
}
.contact input,
.contact textarea{
	padding: 0.75rem 1rem;
}
.contact select {
	padding: 0.2rem 1rem;
}
.contact input:focus,
.contact textarea:focus,
.contact select:focus {
	border-color: #041E32;
	outline: none;
}
.contact textarea {
	height: auto;
	min-height: 120px;
	resize: vertical;
}
.contact-form-button {
	cursor: pointer;
	transition: opacity 0.2s;
	display: block;
	text-align: center;
	color: #fff;
	background-color: #041E32;
	border: none;
	font-size: 1rem;
	font-weight: 500;
	padding: 1rem 2rem;
	margin: 0 auto;
	width: 100%;
	max-width: 320px;
	border-radius: 2px;
	letter-spacing: 0.05em;
}
.contact-form-button:hover {
	opacity: 0.88;
}
.contact .badge {
	color: #fff;
	background-color: #041E32;
	font-weight: 500;
	font-size: 10px;
	padding: 2px 6px;
	border-radius: 2px;
	margin-left: 6px;
	line-height: 1.2;
	display: inline-block;
	vertical-align: middle;
}
.contact ::placeholder {
	color: #999;
	font-size: 15px;
}
.contact .form-item-privacy {
	margin-bottom: 2rem;
}
.contact .privacy-check-label {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
	cursor: pointer;
	font-size: 14px;
	color: #444;
	line-height: 1.6;
}
.contact .privacy-check {
	width: 1.125rem;
	height: 1.125rem;
	margin: 0.2rem 0 0;
	flex-shrink: 0;
	accent-color: #041E32;
}
.contact .privacy-check-label a {
	color: #041E32;
	text-decoration: underline;
}
.contact .privacy-check-label a:hover {
	text-decoration: none;
}
/* チェックボックスグループ */
.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    font-size: 15px;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #2563eb;
    cursor: pointer;
}
p.contact_text{
	font-size: 12px;
	text-align: left !important;
}
p.contact_text strong{
	font-weight: bold !important;
	color: #FF0000;
}
span.kome{
    font-size: 14px;
    line-height: 1.6;
    font-weight: bold;
}
p.amazon_pre{
	width: 100%;
    font-size: 11px !important;
    line-height: 1.8;
	padding: 1.0em;
	box-sizing: border-box;
	text-align: left !important;
}

@media screen and (max-width: 640px) {
	.page-header-title {
		font-size: 1.25rem;
		padding: 1rem;
	}
	.contact {
		padding: 2rem 0 3rem;
	}
	.contact > .inner > p {
		font-size: 14px;
		text-align: left;
	}
	.contact-form-button {
		font-size: 0.9375rem;
		padding: 0.875rem;
	}
}

/* ----------------------------------------------------
    サンクスページ
---------------------------------------------------- */
.thanks {
	text-align: center;
	background-color: #fff;
	padding: 4rem 0 5rem;
	min-height: 60vh;
	box-sizing: border-box;
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
}
.thanks-inner {
	width: 92%;
	max-width: 560px;
	margin: 0 auto;
}
.thanks .dli-check-circle {
	display: inline-block;
	vertical-align: middle;
	color: #fff;
	background-color: #041E32;
	line-height: 1;
	position: relative;
	width: 56px;
	height: 56px;
	border: 2px solid #041E32;
	border-radius: 50%;
	box-sizing: border-box;
	margin: 0 0 1.5rem;
}
.thanks .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;
}
.thanks-title {
	font-size: 1.375rem;
	font-weight: 600;
	color: #333;
	line-height: 1.5;
	margin: 0 0 1.5rem;
	letter-spacing: 0.02em;
}
.thanks-lead {
	text-align: center;
	line-height: 1.9;
	font-size: 15px;
	color: #444;
	margin: 0 0 1.5rem;
}
.thanks-note {
	text-align: center;
	font-size: 14px;
	color: #666;
	line-height: 1.7;
	margin: 0 0 2.5rem;
}
.thanks .top {
	margin: 0;
}
.thanks-link {
	display: inline-block;
	font-size: 15px;
	color: #041E32;
	text-decoration: none;
	padding: 0.75rem 1.5rem;
	border: 1px solid #041E32;
	border-radius: 2px;
	transition: background-color 0.2s, color 0.2s;
}
.thanks-link:hover {
	background-color: #041E32;
	color: #fff;
}

@media screen and (max-width: 640px) {
	.thanks {
		padding: 3rem 0 4rem;
	}
	.thanks-title {
		font-size: 1.25rem;
	}
	.thanks-lead {
		font-size: 14px;
		text-align: left;
	}
	.thanks-note {
		font-size: 13px;
		text-align: left;
	}
	.thanks-link {
		font-size: 14px;
		padding: 0.625rem 1.25rem;
	}
}

/* ----------------------------------------------------
    プライバシーポリシー
---------------------------------------------------- */
.privacy-policy {
	background-color: #fff;
	padding: 3rem 0 4rem;
}
.privacy-policy .inner {
	width: 92%;
	max-width: 640px;
	margin: 0 auto;
}
.privacy-intro {
	margin-bottom: 2.5rem;
	font-size: 15px;
	line-height: 1.85;
	color: #444;
}
.privacy-policy h2 {
	font-size: 1rem;
	font-weight: 600;
	color: #041E32;
	margin: 2.5rem 0 1rem;
	padding-bottom: 0.5rem;
	border-bottom: 1px solid #e0e0e0;
	letter-spacing: 0.02em;
}
.privacy-policy h2:first-of-type {
	margin-top: 0;
}
.privacy-policy p {
	font-size: 15px;
	line-height: 1.85;
	margin-bottom: 1rem;
	color: #444;
}
.privacy-policy ul {
	margin: 0 0 1.5rem 1.25rem;
	padding: 0;
	list-style: disc;
}
.privacy-policy ul li {
	font-size: 15px;
	line-height: 1.85;
	margin-bottom: 0.35rem;
	color: #444;
}
.privacy-contact {
	margin-top: 2rem;
	padding: 1.5rem;
	background-color: #f8f9fa;
	border: 1px solid #e8e8e8;
	border-radius: 2px;
}
.privacy-contact p {
	margin-bottom: 0.35rem;
	font-size: 15px;
	line-height: 1.7;
}
.privacy-contact p:last-child {
	margin-bottom: 0;
}
.privacy-contact strong {
	color: #333;
	font-weight: 600;
}

@media screen and (max-width: 640px) {
	.privacy-policy {
		padding: 2rem 0 3rem;
	}
	.privacy-policy .inner {
		width: 94%;
	}
	.privacy-policy h2 {
		font-size: 0.9375rem;
		margin-top: 2rem;
	}
	.privacy-contact {
		padding: 1.25rem;
	}
}