@charset "UTF-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;600;700;800;900&display=swap');

/*
	common
*/
bbr,address,article,aside,audio,b,blockquote,body,canvas,caption,cite,code,dd,del,details,dfn,div,dl,dt,em,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,p,pre,q,samp,section,small,span,strong,sub,summary,sup,table,tbody,td,tfoot,th,thead,time,tr,ul,var,video{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:0 0}body{line-height:1}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}nav ul{list-style:none}blockquote,q{quotes:none}blockquote:after,blockquote:before,q:after,q:before{content:'';content:none}a{margin:0;padding:0;font-size:100%;vertical-align:baseline;background:0 0}ins{background-color:#ff9;color:#000;text-decoration:none}mark{background-color:#ff9;color:#000;font-style:italic;font-weight:700}del{text-decoration:line-through}abbr[title],dfn[title]{border-bottom:1px dotted;cursor:help}table{border-collapse:collapse;border-spacing:0}hr{display:block;height:1px;border:0;border-top:1px solid #ccc;margin:1em 0;padding:0}input,select{vertical-align:middle}.clearfix::after {content: "";display: block;clear: both;}

html{
	font-size:62.5%;
}

:root {
	--primary-color: #0c044e;
	--primary-light: #2c5282;
	--accent-color: #f14fae;
	--accent-light: #eb046a;
	--text-color: #000;
	--text-light: #718096;
	--bg-color: #f2f2f2;
	--white: #ffffff;
	--border-color: #e2e8f0;
	--error-color: #c53030;
	--success-color: #276749;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	max-height: 99999px;
}

body {
	font-family: 'Noto Sans JP', sans-serif;
	background-color: var(--bg-color);
	color: var(--text-color);
	line-height: 1.8;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

.pc {
	display: block;
}

.sp {
	display: none;
}

.tab {
	display: none;
}

@media screen and (max-width: 750px) {
	.pc {
		display: none;
	}

	.sp {
		display: block;
	}

	.tab {
		display: none;
	}
}

/* ============================================
       ヘッダー
       ============================================ */
.header {
	background: var(--primary-color);
	padding: 20px 0;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-inner {
	max-width: 800px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.logo {
}
.logo img{
	width: 200px;
}
.logo-accent {
	color: var(--accent-color);
}

.header-subtitle {
	font-size: 16px;
	font-weight: 600;
}

/* ============================================
       メインコンテンツ
       ============================================ */
.main {
	flex: 1;
	padding: 40px 20px;
	max-width: 800px;
	margin: 0 auto;
	width: 100%;
}

.page-title {
	text-align: center;
	margin-bottom: 10px;
}

.page-title h1 {
	font-size: 26px;
	font-weight: 700;
	color: var(--text-color);
	position: relative;
	display: inline-block;
}

.page-title h1::after {
	content: '';
	position: absolute;
	bottom: -8px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 3px;
	background: var(--primary-color);
}

.page-description {
	text-align: center;
	color: var(--text-light);
	margin-top: 20px;
	margin-bottom: 30px;
	font-size: 14px;
}

/* ============================================
       電話導線セクション
       ============================================ */
.tel-section {
	text-align: center;
	margin: 30px auto 40px;
	padding: 30px 20px;
	background: #d8dae7;
	border-radius: 8px;
	max-width: 700px;
}

.tel-label {
	font-size: 15px;
	color: #333;
	margin: 0 0 15px;
	letter-spacing: 0.05em;
}

.tel-number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-size: 42px;
	font-weight: 700;
	color: var(--primary-color);
	text-decoration: none;
	transition: opacity 0.3s;
	letter-spacing: 0.02em;
}

.tel-number:hover {
	opacity: 0.8;
}

.tel-icon {
	width: 48px;
	height: auto;
	flex-shrink: 0;
}

.tel-hours {
	font-size: 13px;
	color: #666;
	margin: 12px 0 0;
}

/* 店舗情報カード */
.store-info-card {
	background: var(--white);
	border-radius: 12px;
	padding: 24px;
	margin-bottom: 30px;
	border-left: 4px solid var(--accent-color);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.store-info-card h2 {
	font-size: 18px;
	color: var(--primary-color);
	margin-bottom: 12px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.store-info-card h2::before {
	content: '📍';
}

.store-details {
	font-size: 14px;
	color: var(--text-color);
}

.store-details p {
	margin-bottom: 6px;
}

.store-details .label {
	color: var(--text-light);
	display: inline-block;
	width: 80px;
}

/* ============================================
       フォーム
       ============================================ */
.form-container {
	background: var(--white);
	border-radius: 16px;
	padding: 40px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-group {
	margin-bottom: 28px;
}

.form-label {
	display: block;
	font-weight: 500;
	margin-bottom: 8px;
	font-size: 15px;
	color: var(--text-color);
}

.required {
	color: var(--error-color);
	margin-left: 4px;
}

.form-hint {
	font-size: 12px;
	color: var(--text-light);
	margin-top: 4px;
}

/* テキスト入力 */
.form-input {
	width: 100%;
	padding: 14px 16px;
	border: 2px solid var(--border-color);
	border-radius: 8px;
	font-size: 16px;
	font-family: inherit;
	transition: border-color 0.2s, box-shadow 0.2s;
	background: var(--white);
}

.form-input:focus {
	outline: none;
	border-color: var(--primary-light);
	box-shadow: 0 0 0 3px rgba(44, 82, 130, 0.1);
}

.form-input::placeholder {
	color: #a0aec0;
}

/* 日付・時間入力 */
.datetime-row {
	display: flex;
	gap: 16px;
}

.datetime-row .form-group {
	flex: 1;
}

.form-select {
	width: 100%;
	padding: 15px 16px;
	border: 2px solid var(--border-color);
	border-radius: 8px;
	font-size: 16px;
	font-family: inherit;
	background: var(--white);
	cursor: pointer;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23718096' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 16px center;
	transition: border-color 0.2s, box-shadow 0.2s;
}

.form-select:focus {
	outline: none;
	border-color: var(--primary-light);
	box-shadow: 0 0 0 3px rgba(44, 82, 130, 0.1);
}

/* チェックボックス */
.checkbox-group {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
	gap: 12px;
}

.checkbox-item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 14px;
	background: var(--bg-color);
	border-radius: 8px;
	cursor: pointer;
	transition: background-color 0.2s;
}

.checkbox-item:hover {
	background: #edf2f7;
}

.checkbox-item input[type="checkbox"] {
	width: 20px;
	height: 20px;
	accent-color: var(--primary-color);
	cursor: pointer;
}

.checkbox-item label {
	font-size: 14px;
	cursor: pointer;
	flex: 1;
}

/* その他テキスト入力 */
.other-input-wrapper {
	margin-top: 12px;
	display: none;
}

.other-input-wrapper.show {
	display: block;
}

.other-input-wrapper .form-input {
	background: #fffdf5;
	border-color: var(--accent-color);
}

/* 送信ボタン */
.submit-btn {
	width: 100%;
	padding: 18px;
	background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent-color) 100%);
	color: var(--white);
	border: none;
	border-radius: 10px;
	font-size: 17px;
	font-weight: 700;
	font-family: inherit;
	cursor: pointer;
	transition: transform 0.2s, box-shadow 0.2s;
	letter-spacing: 0.05em;
}

.submit-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(26, 54, 93, 0.3);
}

.submit-btn:active {
	transform: translateY(0);
}

.submit-btn:disabled {
	opacity: 0.7;
	cursor: not-allowed;
	transform: none;
}

/* ============================================
       完了画面
       ============================================ */
.completion-card {
	background: var(--white);
	border-radius: 16px;
	padding: 60px 40px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	text-align: center;
	animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.completion-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, var(--success-color) 0%, #38a169 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 24px;
}

.completion-icon svg {
	width: 40px;
	height: 40px;
	stroke: var(--white);
	stroke-width: 3;
}

.completion-title {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 12px;
}

.completion-message {
	color: var(--text-light);
	margin-bottom: 30px;
	font-size: 15px;
}

.reservation-summary {
	background: var(--bg-color);
	border-radius: 12px;
	padding: 24px;
	text-align: left;
	margin-bottom: 30px;
}

.reservation-summary h3 {
	font-size: 16px;
	margin-bottom: 16px;
	padding-bottom: 12px;
	border-bottom: 1px solid var(--border-color);
}

.summary-row {
	display: flex;
	padding: 10px 0;
	border-bottom: 1px dashed var(--border-color);
}

.summary-row:last-child {
	border-bottom: none;
}

.summary-label {
	width: 100px;
	color: var(--text-light);
	font-size: 14px;
	flex-shrink: 0;
}

.summary-value {
	flex: 1;
	font-weight: 500;
	font-size: 14px;
}

.back-btn {
	display: inline-block;
	padding: 14px 40px;
	background: var(--white);
	color: var(--accent-color);
	border: 2px solid var(--accent-color);
	border-radius: 8px;
	font-size: 15px;
	font-weight: 500;
	text-decoration: none;
	transition: all 0.2s;
}

.back-btn:hover {
	background: var(--accent-color);
	color: var(--white);
}

/* ============================================
       フッター
       ============================================ */
.footer {
	background: #444;
	color: rgba(255, 255, 255, 0.8);
	padding: 30px 20px;
	text-align: center;
	font-size: 13px;
}

.footer-inner {
	max-width: 800px;
	margin: 0 auto;
}

.footer-store-name {
	font-size: 16px;
	font-weight: 700;
	color: var(--white);
	margin-bottom: 12px;
}

.footer-info {
	margin-bottom: 16px;
}

.footer-copyright {
	font-size: 11px;
	color: rgba(255, 255, 255, 0.6);
}

/* ============================================
       固定フッター（スマホのみ）
       ============================================ */
.fixed-footer {
	display: none;
}

/* ============================================
       エラー表示
       ============================================ */
.error-box {
	background: #fff5f5;
	border: 1px solid #fc8181;
	border-radius: 8px;
	padding: 16px 20px;
	margin-bottom: 24px;
}

.error-box p {
	color: var(--error-color);
	font-size: 14px;
	margin-bottom: 4px;
}

.error-box p:last-child {
	margin-bottom: 0;
}

/* ============================================
       ローディング
       ============================================ */
.loading-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(255, 255, 255, 0.9);
	z-index: 1000;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.loading-overlay.show {
	display: flex;
}

.loading-spinner {
	width: 50px;
	height: 50px;
	border: 4px solid var(--border-color);
	border-top-color: var(--primary-color);
	border-radius: 50%;
	animation: spin 1s linear infinite;
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

.loading-text {
	margin-top: 16px;
	color: var(--text-color);
	font-size: 14px;
}

/* ============================================
       レスポンシブ
       ============================================ */
@media (max-width: 768px) {
	/* 電話導線セクション */
	.tel-section {
		margin: 20px 0 30px;
		padding: 24px 15px;
		border-radius: 0;
		max-width: 100%;
	}

	.tel-label {
		font-size: 13px;
	}

	.tel-number {
		font-size: 28px;
		gap: 8px;
	}

	.tel-icon {
		width: 32px;
	}

	.tel-hours {
		font-size: 11px;
	}

	/* 固定フッター */
	.fixed-footer {
		display: flex;
		position: fixed;
		bottom: 0;
		left: 0;
		right: 0;
		z-index: 1000;
		background: #fff;
		box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
	}

	.cta-fixed__content {
	padding: 1rem;
	padding-right: 5.5rem;
	position: relative;
	width: 100%;
	}

.cta-fixed__button {
  box-shadow: 0.3rem 0.3rem 1rem rgba(0, 0, 0, 0.15);
}

.cta-fixed__link {
  background: linear-gradient(96.08deg, #ee0c0c 0%, #ad0000 54.81%);
  border-bottom: 0.5rem solid #940000;
  border-right: 0.5rem solid #940000;
  box-shadow: inset 0.5rem 0.5rem 0 rgba(255, 255, 255, 0.25);
  display: -ms-grid;
  display: grid;
  padding: 1.4rem 0.4rem 0.4rem;
  place-items: center;
  position: relative;
text-decoration: none;
}

.cta-fixed__tag-text {
  align-items: center;
  background-color: #faff00;
  border: 0.1rem solid #000;
  border-radius: 100vmax;
  color: #000;
  display: flex;
  font-size: 1.2rem;
  font-weight: 700;
  justify-content: center;
  left: 50%;
  letter-spacing: -0.05em;
  padding: 0 1rem;
  position: absolute;
  top: 0;
  translate: -50% -1.5rem;
  width: 27.5rem;
}

.cta-fixed__tag-text .number {
  font-family: "Heebo", sans-serif;
  font-size: 1.6rem;
}

.cta-fixed__text {
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.cta-fixed__text::before {
  aspect-ratio: 18/25;
  background-image: url(https://lp.kaitori-daikichi.jp/kaitorishucho_lp_parts/img/tel.png);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
  margin-right: 0.4rem;
  translate: 0 0.2rem;
  width: 1.6rem;
}

.cta-fixed__text .large {
  font-size: 2.7rem;
  letter-spacing: 0;
}

.cta-fixed__image {
  bottom: 0;
  position: absolute;
  right: 0;
  width: 6rem;
  z-index: 5;
}

.cta-fixed__image img {
  aspect-ratio: 60/86;
}

	/* フッターが固定フッターに隠れないように余白追加 */
	.footer {
		padding-bottom: 130px;
	}
}

@media (max-width: 600px) {
	.form-container {
		padding: 24px 20px;
	}

	.datetime-row {
		flex-direction: column;
		gap: 0;
	}

	.checkbox-group {
		grid-template-columns: 1fr;
	}

	.page-title h1 {
		font-size: 22px;
	}

	.store-info-card {
		padding: 18px;
	}

	.header{
		padding: 10px 0;
	}
	.header-inner{
		display: flex;
		flex-direction:row;
		padding: 0 15px;
		justify-content: space-between;
	}
	.logo{
		margin-right: 15px;
	}
	.logo img{
		width: 120px;
	}
	.header-subtitle{
		font-size: 12px;
	}
	.page-description{
		text-align: left;
	}
	.submit-btn{
		font-size: 14px;
	}

	.completion-card {
		padding: 40px 20px;
	}

	.completion-title {
		font-size: 20px;
	}
}

