@charset "utf-8";
/* =========================================================
	Sct-Main
========================================================= */


/* =========================================================
	Sct-About
========================================================= */
.sct-about {
	background: #F53C7F;
	padding: 30px 0;
	overflow: hidden;
}
/* 768px以上 */
@media only screen and (min-width: 768px) {
	.sct-about {
		padding: 60px 0 75px;
	}
}

.sct-about h2,
.sct-about h3 {
	text-align: center;
}
.sct-about h2 {
	margin-bottom: 15px;
}
	.sct-about h2 img {
		max-width: 80%;
	}
	/* 768px以上 */
	@media only screen and (min-width: 768px) {
		.sct-about h2 img {
			max-width: 100%;
		}
	}

/* Frame Sct-About
----------------------------------------------------*/
.sct-about .frame {
	border: 5px solid #1C1C1C;
	border-radius: 10px;
	background: #fff;
	padding: 36px 13px 28px;
	width: 98%;
	margin: 0 auto;
	position: relative;
}
/* 768px以上 */
@media only screen and (min-width: 768px) {
	.sct-about .frame {
		width: 80%;
		padding: 36px 44px 28px;
	}
}
.sct-about .frame .mark-note {
	width: 80%;
}
.sct-about .mark-note li {
	font-size: 14px;
}

/* Icons
----------------------------------------------------*/
/*---- アイコン時計 ----*/
.sct-about .frame:before {
	content: '';
}
/* 768px以上 */
@media only screen and (min-width: 768px) {
	.sct-about .frame:before {
		content: url(/static/img/feature/reservation-order/icon-time_white.png);
		position: absolute;
		left: -130px;
		top: -60px;
	}
}
/*---- アイコン走る人 ----*/
.sct-about .frame:after {
	content: '';
}
/* 768px以上 */
@media only screen and (min-width: 768px) {
	.sct-about .frame:after {
		content: url(/static/img/feature/reservation-order/icon-run_white.png);
		position: absolute;
		right: -150px;
		bottom: -10px;
	}
}
/*---- MB時 アイコン ----*/
.img-icons {
	display: flex;
	justify-content: space-between;
	width: 70%;
	margin: 30px auto 0;
}
	.img-icons img {
		width: 23%;
		height: 23%;
	}
	.img-icons img + img {
		width: 37%;
		height: 37%;
	}
/* 768px以上 */
@media only screen and (min-width: 768px) {
	.img-icons {
		display: none;
	}
}

.sct-about h3 {
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 1.5rem;
}
/* 768px以上 */
@media only screen and (min-width: 768px) {
	.sct-about h3 {
		font-size: 26px;
	}
}

/* List: Mark-Check
----------------------------------------------------*/
ul + .mark-check {
	margin-top: 1rem;
}
.mark-check li {
	position: relative;
	padding-left: 2.1rem;
	font-size: 16px;
	font-weight: bold;
}
/* 768px以上 */
@media only screen and (min-width: 768px) {
	.mark-check li {
		padding-left: 2.5rem;
		font-size: 18px;
	}
}
.mark-check li:before {
	position: absolute;
	content: "\f058";
	font-family: "Font Awesome 5 Free";
	font-weight: 400;
	font-size: 26px;
	color: #F53C7F;
	left: 0;
	top: -8px;
}
/* 768px以上 */
@media only screen and (min-width: 768px) {
	.mark-check li:before {
		font-size: 30px;
		top: -10px;
	}
}
.mark-check li + li {
	margin-top: 1rem;
}
/* 768px以上 */
@media only screen and (min-width: 768px) {
	.mark-check li + li {
		margin-top: 0.5rem;
	}
}
/* List: Mark-Note(※)
----------------------------------------------------*/



/* =========================================================
	Sct-Sample
========================================================= */
.sct-sample {
	padding-bottom: 54px;
}
/* 768px以上 */
@media only screen and (min-width: 768px) {
	.sct-sample {
		padding-bottom: 80px;
	}
}
.img-arrow {
	width: 100%;
	margin: 0 auto 20px;
}
/* 768px以上 */
@media only screen and (min-width: 768px) {
	.img-arrow {
		width: 80%;
	}
}

/* Img Sample
----------------------------------------------------*/
.img-sample {
	width: 98%;
	margin: 0 auto;
}
/* 768px以上 */
@media only screen and (min-width: 768px) {
	.img-sample {
		width: 70%;
	}
}

/* Balloon(吹き出し)
----------------------------------------------------*/
.balloon {
	position: relative;
}
.balloon img {
	position: absolute;
	left: 0;
	top: -36px;
}
/* 768px以上 */
@media only screen and (min-width: 768px) {
	.balloon img {
		position: absolute;
		left: -40px;
		top: -36px;
	}
}
/* Megaphone「\〇〇〇〇/」
----------------------------------------------------*/
.megaphone {
	position: relative;
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-pack: right;
	-ms-flex-pack: right;
	justify-content: right;
	text-align: center;
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 1rem;
}
/* 768px以上 */
@media only screen and (min-width: 768px) {
	.megaphone {
		font-size: 22px;
	}
}
.megaphone:before,
.megaphone:after {
	content: "";
	display: inline-block;
	width: 3px;
	height: 30px;
	background: #F2BD1D;
	border-radius: 2px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}
.megaphone:before {
	-webkit-transform: rotate(-30deg);
	-ms-transform: rotate(-30deg);
	transform: rotate(-30deg);
}
.megaphone:after {
	-webkit-transform: rotate(30deg);
	-ms-transform: rotate(30deg);
	transform: rotate(30deg);
}
.megaphone > span {
	padding: 0 20px;
}


/* =========================================================
	Sct-Detail
========================================================= */
.sct-detail {
	background: #F3F3F3;
	padding-top: 40px;
	padding-bottom: 5px;
}
/* 768px以上 */
@media only screen and (min-width: 768px) {
	.sct-detail {
		padding-top: 60px;
	}
}
	.sct-detail h2 {
		margin-bottom: 1rem;
	}
.sct-detail .txt-lead {
	width: 92%;
	margin: 20px auto 50px;
}
/* 768px以上 */
@media only screen and (min-width: 768px) {
	.sct-detail .txt-lead {
		width: 60%;
	}
}
.sct-detail .txt-lead p,
.sct-detail .mark-note {
	font-size: 14px;
}
.sct-detail .mark-note {
	margin-left: 0.9rem;
}
/* 768px以上 */
@media only screen and (min-width: 768px) {
	.sct-detail .txt-lead p,
	.sct-detail .mark-note {
		font-size: 16px;
	}
}
/* Frame Sct-Detail
----------------------------------------------------*/
.sct-detail .frame {
	border-radius: 10px;
	background: #fff;
	padding: 26px 13px 28px;
	width: 98%;
	margin: 0 auto;
}
/* 768px以上 */
@media only screen and (min-width: 768px) {
	.sct-detail .frame {
		width: 80%;
		padding: 30px 44px 28px;
	}
}
	.sct-detail h3 {
		margin-bottom: 1rem;
	}


.sct-detail .btn-pink {
	width: 90%;
	margin: 30px auto;
}
/* 768px以上 */
@media only screen and (min-width: 768px) {
	.sct-detail .btn-pink {
		width: 60%;
		margin: 50px auto;
	}
}

/* =========================================================
	Common
========================================================= */
/* Img-Fluid2
----------------------------------------------------*/
.img-fluid2 {
	width: 100%;
	height: auto;
}

/* Marker Line
----------------------------------------------------*/
.marker-orange {
	background-image: linear-gradient(transparent 65%, #FCBA64 50%, #FCBA64 80%, transparent 80%);
}

/* Icon Attention
----------------------------------------------------*/
.ico-attention {
	position: relative;
	text-align: center;
	font-size: 18px;
	font-weight: bold;
}
.ico-attention:before {
	content: "\f071";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	font-size: 26px;
	color: #F53C7F;
	margin-right: 0;
	margin-bottom: 1rem;
	display: block;
}
/* 768px以上 */
@media only screen and (min-width: 768px) {
	.ico-attention:before {
		content: "\f071";
		margin: 0 5px 0 0;
		display: inline-block;
	}
}
/* Button Pink
----------------------------------------------------*/
.btn-pink {
	position: relative;
}
.btn-pink a:after {
	position: absolute;
	content: "\f054";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	font-size: 18px;
	color: #FFF;
	margin-left: 5px;
	right: 4%;
	top: 50%;
	-webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
/* 768px以上 */
@media only screen and (min-width: 768px) {
	.btn-pink a:after {
		font-size: 16px;
	}
}
.btn-pink a {
	background: #F53C7F;
	color: #fff;
	width: 100%;
	padding: 22px 24px 20px 8px;
	display: block;
	text-decoration: none;
	text-align: center;
	font-size: 18px;
	font-weight: bold;
	border: 1px solid #F53C7F;
	border-radius: 10px;
	line-height: 1.3;
	white-space: nowrap;
}
/* 768px以上 */
@media only screen and (min-width: 768px) {
	.btn-pink a {
		font-size: 20px;
	}
}

/* List
----------------------------------------------------*/
/* ----- Note(※) ----- */
.mark-note {
	margin: 1rem auto 0;
}
	.mark-note li {
		text-indent: -0.9rem;
	}
	.mark-note li:before {
		content: '※';
	}


/* ----- Disc ----- */
.mark-disc > li {
	list-style: disc;
	margin-left: 1.3rem;
	font-size: 14px;
}

.mark-disc.w-80 {
    width: 80%;
    margin: 1rem auto 0;
}
.mark-disc.w-80 > li {
    margin-left: 0;
    list-style: none;
    padding-left: 10px;
    position: relative;
}
.mark-disc.w-80 > li::before {
    content: '・';
    position: absolute;
    left: -10px;
    font-size: 16px;
    font-weight: bold;
}
/* 768px以上 */
@media only screen and (min-width: 768px) {
	.mark-disc > li  {
		font-size: 16px;
	}
}
.mark-disc > li + li {
	margin-top: 0.5rem;
}