@charset "utf-8";
#hpplan_wrap {
	clear: both;
	width: 1100px;
	margin: 0px auto 30px;
}
.plan_caps {
	text-align: center;
	font-size: 14px;
	color: #454545;
	margin-bottom: 10px;
}

.plan-img {
  display: block;
  max-width: 1100px;
  margin: 0 auto;
}

.plan-img img {
  display: block;
  width: 100%;
  height: auto;
}
.reserve-btn-wrap {
  width: 800px;
  margin: 30px auto 50px;
  padding: 0 20px;
}

.reserve-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex-direction: column;
  width: 600px;
  min-height: 120px;
  background: linear-gradient(
    135deg,
    #ffb300 0%,
    #f39800 50%,
    #ea7f00 100%
  );
  border-radius: 12px;
  color: #fff;
  text-decoration: none;
  box-shadow:
    0 10px 30px rgba(243,152,0,.25),
    inset 0 2px 0 rgba(255,255,255,.3);
  transition: .3s;
  overflow: hidden;
	margin: 0px auto;
}

.reserve-btn::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -150%;
  width: 80%;
  height: 200%;
  background: rgba(255,255,255,.25);
  transform: rotate(25deg);
  transition: .8s;
}

.reserve-btn:hover::before {
  left: 150%;
}

.reserve-btn:hover {
	text-decoration: none;
  transform: translateY(-5px);
  box-shadow:
    0 18px 40px rgba(243,152,0,.35),
    inset 0 2px 0 rgba(255,255,255,.3);
}

.reserve-btn__sub {
  font-size: 16px;
  letter-spacing: .1em;
  font-weight: 700;
  opacity: .95;
}

.reserve-btn__main {
  font-size: 42px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: .05em;
}

.reserve-btn__arrow {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);

  font-size: 60px;
  line-height: 1;
  font-weight: 300;
}

.tel-btn {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
	flex-direction: column;
	width: 600px;
	min-height: 120px;
	margin-top: 20px;
	background: linear-gradient(
		135deg,
		#39b54a 0%,
		#28a745 50%,
		#1e8c3a 100%
	);
	border-radius: 12px;
	color: #fff;
	text-decoration: none;
	box-shadow:
		0 10px 30px rgba(40,167,69,.25),
		inset 0 2px 0 rgba(255,255,255,.3);
	transition: .3s;
	overflow: hidden;
	margin: 0px auto;
}

.tel-btn::before {
	content: "";
	position: absolute;
	top: -50%;
	left: -150%;
	width: 80%;
	height: 200%;
	background: rgba(255,255,255,.25);
	transform: rotate(25deg);
	transition: .8s;
}

.tel-btn:hover::before {
	left: 150%;
}

.tel-btn:hover {
	text-decoration: none;
	transform: translateY(-5px);

	box-shadow:
		0 18px 40px rgba(40,167,69,.35),
		inset 0 2px 0 rgba(255,255,255,.3);
}

.tel-btn__sub {
	font-size: 16px;
	letter-spacing: .1em;
	font-weight: 700;
	opacity: .95;
}

.tel-btn__main {
	font-size: 42px;
	line-height: 1;
	font-weight: 700;
	letter-spacing: .05em;
}

.tel-btn__arrow {
	position: absolute;
	right: 40px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 60px;
	line-height: 1;
	font-weight: 300;
}


@media screen and (max-width: 767px) {

  .reserve-btn-wrap {
		width: 90%;
    margin: 1.5vh auto 3.5vh;
    padding: 0 15px;
  }

  .reserve-btn {
    min-height: 90px;
  }

  .reserve-btn__sub {
    font-size: 13px;
  }

  .reserve-btn__main {
    font-size: 28px;
  }

  .reserve-btn__arrow {
    right: 20px;
    font-size: 40px;
  }

}

@media screen and (max-width: 767px) {
	#hpplan_wrap {
		width: 100%;
		margin: 0px auto 2.0vh;
	}
	.plan-img {
		width: 100%;	
	}
}

@media screen and (max-width: 768px) {

	.reserve-btn-wrap {
		width: 90%;
		padding: 0 15px;
	}

	.reserve-btn,
	.tel-btn {
		min-height: 90px;
	}

	.reserve-btn__main,
	.tel-btn__main {
		font-size: 28px;
	}

	.reserve-btn__sub,
	.tel-btn__sub {
		font-size: 13px;
	}

	.reserve-btn__arrow,
	.tel-btn__arrow {
		right: 20px;
		font-size: 40px;
	}
}


/* ==========================
   予約カード共通
========================== */

.dp {
	width: 700px;
	margin: 0 auto 30px;
	padding: 35px;
	border-radius: 20px;
	box-sizing: border-box;
	position: relative;
	overflow: hidden;
}

/* 背景装飾 */
.dp::after {
	content: "";
	position: absolute;
	right: -80px;
	top: -80px;
	width: 220px;
	height: 220px;
	border-radius: 50%;
	background: rgba(255,255,255,.5);
	pointer-events: none;
}

/* WEB予約カード */
#detail_plan01 {
	background: linear-gradient(
		135deg,
		#fff8e8 0%,
		#fff3d0 100%
	);
	border: 1px solid rgba(243,152,0,.15);
}

/* 電話予約カード */
#detail_plan02 {
	background: linear-gradient(
		135deg,
		#f4fff6 0%,
		#eaf8ee 100%
	);
	border: 1px solid rgba(40,167,69,.15);
}

/* 見出し */
#detail_plan01::before {
	content: "WEB RESERVATION";
	display: block;
	margin-bottom: 15px;
	font-size: 25px;
	font-weight: 700;
	letter-spacing: .2em;
	color: #f39800;
	position: relative;
	z-index: 2;
}

#detail_plan02::before {
	content: "PHONE RESERVATION";
	display: block;
	margin-bottom: 15px;
	font-size: 25px;
	font-weight: 700;
	letter-spacing: .2em;
	color: #28a745;
	position: relative;
	z-index: 2;
}

/* 説明文 */
.dp p {
	margin: 0 0 25px;
	font-size: 18px;
	line-height: 1.6em;
	color: #353535;
	font-weight: normal;
	position: relative;
	z-index: 2;
}

/* ==========================
   ボタン共通
========================== */

.reserve-btn,
.tel-btn {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 15px;
	width: 100%;
	min-height: 120px;
	border-radius: 12px;
	color: #fff;
	text-decoration: none;
	overflow: hidden;
	transition: .3s;
	box-sizing: border-box;
	z-index: 2;
}

/* 光エフェクト */
.reserve-btn::before,
.tel-btn::before {
	content: "";
	position: absolute;
	top: -50%;
	left: -150%;
	width: 80%;
	height: 200%;
	background: rgba(255,255,255,.25);
	transform: rotate(25deg);
	transition: .8s;
}

.reserve-btn:hover::before,
.tel-btn:hover::before {
	left: 150%;
}

/* WEB予約ボタン */
.reserve-btn {
	background: linear-gradient(
		135deg,
		#ffb300 0%,
		#f39800 50%,
		#ea7f00 100%
	);

	box-shadow:
		0 10px 30px rgba(243,152,0,.25),
		inset 0 2px 0 rgba(255,255,255,.3);
}

.reserve-btn:hover {
	transform: translateY(-5px);

	box-shadow:
		0 18px 40px rgba(243,152,0,.35),
		inset 0 2px 0 rgba(255,255,255,.3);
}

/* 電話ボタン */
.tel-btn {
	background: linear-gradient(
		135deg,
		#39b54a 0%,
		#28a745 50%,
		#1e8c3a 100%
	);

	box-shadow:
		0 10px 30px rgba(40,167,69,.25),
		inset 0 2px 0 rgba(255,255,255,.3);
}

.tel-btn:hover {
	transform: translateY(-5px);

	box-shadow:
		0 18px 40px rgba(40,167,69,.35),
		inset 0 2px 0 rgba(255,255,255,.3);
}

/* ボタン内テキスト */

.reserve-btn__sub,
.tel-btn__sub {
	font-size: 16px;
	font-weight: 700;
	letter-spacing: .1em;
	opacity: .95;
}

.reserve-btn__main,
.tel-btn__main {
	font-size: 42px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: .05em;
}

.reserve-btn__arrow,
.tel-btn__arrow {
	position: absolute;
	right: 40px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 60px;
	font-weight: 300;
	line-height: 1;
}

/* ==========================
   SP
========================== */

@media screen and (max-width: 768px) {

	.dp {
		width: 100%;
		padding: 20px;
		margin-bottom: 20px;
	}

	#detail_plan01::before, #detail_plan02::before {
		font-size: 4.8vw;
	}
	.dp p{
		font-size: 3.4vw;
		line-height: 1.8;
		margin-bottom: 18px;
	}

	.reserve-btn,
	.tel-btn {
		min-height: 90px;
	}

	.reserve-btn__sub,
	.tel-btn__sub {
		font-size: 12px;
	}

	.reserve-btn__main,
	.tel-btn__main {
		font-size: 28px;
	}

	.reserve-btn__arrow,
	.tel-btn__arrow {
		right: 20px;
		font-size: 40px;
	}
}
