@charset "UTF-8";


* {
	margin: 0;
	padding: 0;
	line-height: 1;
	font-family: source-han-sans-japanese, sans-serif;
}

body,
html {
	overflow-x: hidden;
	/* 横スクロールを禁止 */
}

h2,
h3,
h4 {
	font-weight: 700;
}

p {
	font-weight: 400;
}


img {
	width: 100%;
	height: auto;
}

a {
	color: #000;
	text-decoration: none;
}

a:hover {
	cursor: pointer;
	opacity: 0.5;
}

a:visited {
	color: #000;
}

ul {
	list-style: none;
}

/*-------------------------------
 
　共通項目 / 文字色の指定など
 
-------------------------------*/
.pc_br,
.pc_only {
	display: block !important;
}

.tb_br {
	display: none !important;
}

.sp_br,
.sp_only {
	display: none !important;
}

@media (max-width:1024px) {


	.tb_br {
		display: block !important;
	}
}

@media (max-width:580px) {
	.tb_br {
		display: none !important;
	}

	.pc_br,
	.pc_only {
		display: none !important;
	}

	.sp_br,
	.sp_only {
		display: block !important;
	}
}

.en {
	font-family: "Outfit", sans-serif;
	font-weight: 100;
}

/*-------------------------------
 
ヘッダーナビ（PC）
 
-------------------------------*/

.header_box {
	width: 100%;
	max-width: 83.333vw;
	margin: 0 auto;
	height: 8.333vw;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.header_logo img {
	max-width: 16.5vw;
}

.header_nav ul {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.header_nav li {
	font-size: clamp(11px, 1.5vw, 17px);
	margin-right: 2.083vw;
	font-weight: 500;
	color: #000;
}




.btn-online a {
	position: relative;
	display: inline-block;
	opacity: 1;

}

.btn-online img {
	max-width: 14.292vw;
	max-height: 37.5px;
	display: block;
	transition: .3s;
}

.btn-online .img-hover {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	pointer-events: none;
}

.btn-online:hover .img-default {
	opacity: 0;
}

.btn-online:hover .img-hover {
	opacity: 1;
}

/*-------------------------------
 

ファーストビュースライダー
 
-------------------------------*/
.slider {
	margin-inline: auto;
	width: 100%;
}

.slider {
	max-width: 100%;
	/* スライダー自体の最大幅を画面幅に */
	box-sizing: border-box;
	/* パディングやボーダーを幅に含める */
}

.slider .slick-list {
	overflow: hidden;
	/* スライドのはみ出し防止 */
}

.slider-img img {
	width: 100%;
	height: auto;
	display: block;
}

.slider .slick-list,
.slider .slick-track,
.slider .slick-slide {
	height: auto;
}

.slick-dots {
	bottom: 3% !important;
}

.slick-dots li button:before {
	color: #FFF !important;
	opacity: .6;
}

.slick-dots li.slick-active button:before {
	font-size: 8px !important;
	opacity: 1 !important;
}

.fv_slider_box {
	position: relative;
}

.fv_intro {
	position: absolute;
	bottom: 10%;
	left: 15%;
	width: 100%;
	max-width: 83.333vw;
	margin: 0 auto;
}

.fv_intro h2 {
	font-weight: 500;
	color: #FFF;
	font-size: clamp(22px, 2.8vw, 34px);
	line-height: 1.5;
	letter-spacing: 0.113vw;
	margin-bottom: 4vw;
}

.fv_intro p {
	font-weight: 500;
	color: #FFF;
	font-size: clamp(14px, 1.3vw, 16px);
	line-height: 2;
	letter-spacing: 0.113vw;
	margin-bottom: 4vw;
}

.fv_intro a {
	display: block;
	width: 22vw;
	max-width: 18.333vw;
	padding: 1.25vw;
	text-align: center;
	font-size: clamp(14px, 1.25vw, 15px);
	font-weight: 500;
	position: relative;
	border-radius: 4.167vw;
	color: #000;
	cursor: pointer;
	overflow: hidden;
	z-index: 1;
	transition: color 0.3s ease;
}

/* 外枠グラデーション */
.fv_intro a::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 4.167vw;
	background: linear-gradient(to right, #F5B234, #EF98B5);
	z-index: -2;

}

/* 内側背景 */
.fv_intro a::after {
	content: '';
	position: absolute;
	left: 0.167vw;
	top: 0.167vw;
	width: calc(100% - 0.333vw);
	height: calc(100% - 0.333vw);
	border-radius: 4.167vw;
	background: #FFF;
	z-index: -1;
	transition: background 0.3s ease;
}

.fv_intro a .intro_arrow {
	position: absolute;
	right: 2.083vw;
	top: 50%;
	transform: translateY(-50%);
	font-size: clamp(14px, 1.25vw, 15px);
	font-weight: 500;
	color: #000;
	transition: color 0.3s ease;
}

/* ホバー時 */
.fv_intro a:hover {
	color: #fff;
	opacity: 1;
}

.fv_intro a:hover .intro_arrow {
	color: #fff;
}

.fv_intro a:hover::after {
	background: linear-gradient(to right, #F5B234, #EF98B5);
}

.slick-dotted.slick-slider {
	margin-bottom: 0;
}

.goto_contact {
	position: absolute;
	bottom: 3.3vw;
	right: 15vw;
}

.goto_contact a {
	position: relative;
	display: inline-block;
	opacity: 1;

}

.goto_contact img {
	max-width: 14vw;
	max-height: 14vw;
	display: block;
	transition: .3s;
}

.goto_contact .img-hover {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	pointer-events: none;
}

.goto_contact:hover .img-default {
	opacity: 0;
}

.goto_contact:hover .img-hover {
	opacity: 1;
}

/*------------------------------- 
アバウト
-------------------------------*/

.content_01_bg {
	width: 100%;
	background-image: url(../../images/about_bg.webp);
	background-image: image-set(url(../../images/about_bg.webp) type("image/webp"),
			url(../../images/about_bg.png) type("image/png"));
	background-size: contain;
	background-repeat: no-repeat;
	padding-top: 15vw;
	padding-bottom: 4.167vw;
	background-position: top right;

}

.about_box {
	width: 90%;
	max-width: 83.333vw;
	margin: 0 auto;
	margin-bottom: 14.583vw;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}

.about_text {
	max-width: 37.5vw;
	position: relative;
	z-index: 1;
}

.about_h2 {
	display: inline-block;
	padding: 0.833vw 2.5vw;
	background: linear-gradient(to right, #F5B234, #EF98B5);
	font-weight: 700;
	color: #FFF;
	font-size: clamp(14px, 1.3vw, 16px);
	margin-top: 1.833vw;
	margin-bottom: 2.5vw;
}

.about_h2 img {
	max-width: 36.667vw;
	position: absolute;
	z-index: -1;
	left: -5.417vw;
	top: -5vw;
}

.about_text h3 {
	font-weight: 400;
	font-size: clamp(22px, 2.8vw, 34px);
	line-height: 1.5;
	margin-bottom: .8em;
}

.about_text p {
	font-size: clamp(14px, 1.5vw, 16px);
	line-height: 2;
	text-align: justify;
}

.about_img {
	max-width: 40.833vw;
	margin-left: 6%;
	box-sizing: border-box;
}


.lineup_text {
	position: relative;
	z-index: 1;
	text-align: center;
}

.lineup_h2 {
	display: inline-block;
	padding: 0.833vw 4.583vw;
	background: linear-gradient(to right, #F5B234, #EF98B5);
	font-weight: 700;
	color: #FFF;
	font-size: clamp(14px, 1.3vw, 16px);
	margin-top: 1.833vw;
	margin-bottom: 2.5vw;
	text-align: center;
}

.lineup_h2 img {
	max-width: 36.667vw;
	position: absolute;
	z-index: -1;
	right: 0;
	left: 0;
	margin: 0 auto;
	top: -4.583vw;
}

.lineup_text h3 {
	font-weight: 400;
	font-size: clamp(22px, 2.8vw, 34px);
	line-height: 1.5;
	margin-bottom: 3.333vw;
}

/*-------------------------------
  共通設定（親・子スライダー共通）
-------------------------------*/
.lineup_slider .slick-track {
	display: flex !important;
}

.lineup_slider .slick-slide {
	display: block !important;
	box-sizing: border-box;
}

.lineup_slide_inner {
	display: flex;
	justify-content: center;
	align-items: stretch;
	max-width: 90%;
}



/* 親スライダー矢印 */

.arrow_box {
	width: 100%;
	max-width: 81.5vw;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	position: relative;
	margin-top: 8%;
}

/* 親スライダー矢印 */
.arrow_box .slick-prev,
.arrow_box .slick-next {
	width: 5.167vw;
	height: 5.167vw;
	display: flex;
	align-items: center;
	justify-content: center;
	position: static !important;
}

/* 左右矢印をバー幅の両端に配置 */
.arrow_box .slick-prev {
	left: 0;
	/* バーの左端 */
}

.arrow_box .slick-next {
	right: 0;
	/* バーの右端 */
}

.parent_slider .slick-prev img,
.parent_slider .slick-next img {
	width: 100%;
	height: 100%;
}

.slick-next:before,
.slick-prev:before {
	content: none;
}

/*-------------------------------
  親スライダー ドット（バー型）
-------------------------------*/
.dots-box {
	flex: 1;
	/* ← 左右の余白を吸収して間にフィット */
	display: flex;
	justify-content: center;
}

.dots-box .slick-dots {
	position: absolute;
	top: 0 !important;
	left: 50%;
	transform: translateX(-50%);
	display: flex !important;
	justify-content: center;
	gap: 1.667vw;
	margin: 0 !important;
}

.dots-box .slick-dots li {
	width: 100% !important;
	max-width: 7.5vw !important;
	height: 4px !important;
	margin: 0 !important;
}

.dots-box .slick-dots li button {
	width: 100% !important;
	height: 100% !important;
	padding: 0 !important;
}

.dots-box .slick-dots li button:before {
	content: "" !important;
	display: block !important;
	width: 100% !important;
	height: 100% !important;
	background-color: #E1E2E2 !important;
	opacity: 1 !important;
}

.dots-box .slick-dots li.slick-active button:before {
	background-color: #A4A6A6 !important;
}

/*-------------------------------
  子スライダー ドット（丸型）
-------------------------------*/
.lineup_images .slick-dots {
	position: absolute;
	bottom: -6% !important;
	left: 50%;
	gap: 1.667vw;
	transform: translateX(-50%);
	text-align: center;
	margin-top: 0 !important;
	z-index: 10;
}

.lineup_images .slick-dots li {
	width: auto !important;
	height: auto !important;
	margin: 0 0.5vw;
}

.lineup_images .slick-dots li button {
	padding: 0;
}

.lineup_images .slick-dots li button:before {
	content: "•" !important;
	font-size: 10px !important;
	color: #ABABAB !important;
	opacity: 1 !important;
}

.lineup_images .slick-dots li.slick-active button:before {
	color: #F5B234 !important;
}

.one_image .slick-dots {
	display: none;
}

/*-------------------------------
  本体レイアウト（商品枠）
-------------------------------*/

.parent_slider {
	width: 100%;
}

.lineup_item {
	display: flex;
	flex-direction: row;
	background-color: #F2F2F2;
	padding: 6.667vw 4.167vw;
	max-width: 83.333vw;
	margin: 0 auto;
	box-sizing: border-box;
}

.lineup_slide_inner {
	margin: 0 2.5vw;
}


.lineup_item_img {
	max-width: 35vw;
}

.lineup_item_text {
	margin-left: 5%;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}

.lineup_item_text h3 {
	font-family: "Outfit", sans-serif;
	font-optical-sizing: auto;
	font-weight: 100;
	font-size: clamp(42px, 4.1vw, 50px);
	position: relative;
	padding-left: 2.542vw;
	/* 棒の幅 4px + 文字との間 26.5px */
	margin-bottom: 1.333vw;
}

.lineup_item_text h3::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 0.333vw;
	height: 100%;
	background: linear-gradient(to bottom, #EF98B8, #F5BA29);
}

.lineup_item_text h4 {
	font-weight: 400;
	font-size: clamp(14px, 1.5vw, 18px);
	line-height: 1.4;
	margin-bottom: 2.833vw;
}

.feature {
	font-weight: 100;
	font-size: clamp(17px, 1.75vw, 21px);
	line-height: 1.5;
	margin-bottom: 2.833vw;
}

.spec {
	font-size: clamp(13px, 1.3vw, 16px);
	line-height: 1.5;
	margin-bottom: 2.833vw;
}

.note {
	font-size: 12px;
	line-height: 1.5;
}


/*-------------------------------
フレグランス
-------------------------------*/

.fragrance_box {
	width: 90%;
	max-width: 83.333vw;
	margin: 0 auto;
	margin-top: 16.667vw;
	margin-bottom: 11.667vw;
	position: relative;

}

.fragrance_box_inner {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.fragrance_text {
	max-width: 37.5vw;

	z-index: 1;
}

.fragrance_h2 {
	display: inline-block;
	padding: 0.833vw 2.5vw;
	background: linear-gradient(to right, #F5B234, #EF98B5);
	font-weight: 700;
	color: #FFF;
	font-size: clamp(14px, 1.3vw, 16px);
	margin-top: 1.833vw;
	margin-bottom: 2.5vw;
}

.fra_h {
	max-width: 62.083vw;
	position: absolute;
	z-index: -1;
	left: -5.417vw;
	top: -5vw;
}

.fragrance_text h3 {
	font-weight: 400;
	font-size: clamp(22px, 2.8vw, 34px);
	line-height: 1.5;
	margin-bottom: .8em;
}

.fragrance_text p {
	font-size: clamp(14px, 1.5vw, 16px);
	line-height: 2;
	text-align: justify;
}

.fragrance_img {
	max-width: 40.833vw;
	margin-left: 6%;
	box-sizing: border-box;
}

.pickup_box {
	margin-bottom: 13.333vw;
}

.pickup_text {
	position: relative;
	z-index: 1;
	text-align: center;
}

.pickup_h2 {
	display: inline-block;
	padding: 0.833vw 4.583vw;
	background: linear-gradient(to right, #F5B234, #EF98B5);
	font-weight: 700;
	color: #FFF;
	font-size: clamp(14px, 1.3vw, 16px);
	margin-top: 1.833vw;
	margin-bottom: 4.167vw;
	text-align: center;
}

.pickup_h2 img {
	max-width: 36.667vw;
	position: absolute;
	z-index: -1;
	right: 0;
	left: 0;
	margin: 0 auto;
	top: -2.917vw;
}

.pickup_item_box {
	width: 90%;
	max-width: 88vw;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;

}

.pickup_item {
	max-width: 15vw;
	margin-bottom: 5vw;
}

.pickup_item h3 {
	text-align: center;
	font-weight: 400;
	font-size: clamp(16px, 1.6vw, 20px);
	padding: 1.667vw 0;

	border-bottom: 2px solid;
}

/* pickup_item順に色を付ける */
.pickup_item_box .pickup_item:nth-child(1) h3 {
	border-bottom-color: #74AFCC;
}

.pickup_item_box .pickup_item:nth-child(2) h3 {
	border-bottom-color: #EF98B8;
}

.pickup_item_box .pickup_item:nth-child(3) h3 {
	border-bottom-color: #FF9884;
}

.pickup_item_box .pickup_item:nth-child(4) h3 {
	border-bottom-color: #51B57F;
}

.pickup_item_box .pickup_item:nth-child(5) h3 {
	border-bottom-color: #89DA71;
}


.fra_list {
	display: flex;
	justify-content: center;
}

.fra_list a {
	position: relative;
	display: inline-block;
	max-width: 26.667vw;
}

.fra_list img {
	display: block;
	max-width: 26.667vw;
	margin: 0 auto;
	transition: .3s;
}

/* 画像の切り替え */
.fra_list .img-hover {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	pointer-events: none;
}

.fra_list img.img-default:hover {
	opacity: 0;
}

.fra_list img.img-default:hover + .img-hover {
	opacity: 1;
}

/*-------------------------------
 フロー 
-------------------------------*/
.flow {
	width: 100%;
	background-image: url(../../images/flow_bg.webp);
	background-image: image-set(url(../../images/flow_bg.webp) type("image/webp"),
			url(../../images/flow_bg.png) type("image/png"));
	background-color: rgba(255, 255, 255, 0.2);
	background-blend-mode: lighten;
	background-size: cover;
	background-repeat: no-repeat;
	padding-top: 15vw;
	padding-bottom: 4.167vw;

}

.flow_box {
	width: 90%;
	max-width: 83.333vw;
	margin: 0 auto;
	margin-bottom: 6.25vw;
	display: flex;
	justify-content: space-between;

}

.flow_text {
	max-width: 41.25vw;
	position: relative;
	z-index: 1;
}

.flow_h2 {
	display: inline-block;
	padding: 0.833vw 3.75vw;
	background: #FFF;
	font-weight: 700;
	color: #000;
	font-size: clamp(14px, 1.3vw, 16px);
	margin-top: 1.833vw;
	margin-bottom: 2.5vw;
}

.flow_h2 img {
	max-width: 28.583vw;
	position: absolute;
	z-index: -1;
	left: -5vw;
	top: -4.167vw;
}

.flow_text h3 {
	color: #FFF;
	font-weight: 400;
	font-size: clamp(22px, 2.8vw, 34px);
	line-height: 1.5;
	margin-bottom: .8em;
}

.flow_text p {
	color: #FFF;
	max-width: 37.5vw;
	font-size: clamp(14px, 1.5vw, 16px);
	line-height: 2;
	text-align: justify;
}

.flow_img {
	max-width: 34.167vw;
	box-sizing: border-box;
}

.step_box {
	width: 90%;
	max-width: 83.333vw;
	margin: 0 auto;
	margin-bottom: 14.583vw;
	display: flex;
	justify-content: space-between;
}

.step_item {
	display: flex;
	flex-direction: column;
	align-items: center;
	max-width: 24.667vw;
}

.step_no {
	max-height: 4.333vw;
	margin-bottom: 1.25vw;
}


.step_arrow {
	margin: auto 0;
	margin-top: 18%;
}

.step_arrow img {
	max-width: 1.333vw;
}

.step_item h4 {
	color: #FFF;
	font-weight: 600;
	font-size: 1.833vw;
	padding: 1.25vw 0;
}

.step_item p {
	color: #FFF;
	font-size: clamp(14px, 1.3vw, 16px);
	line-height: 1.8;
	text-align: justify;
}

.after {
	width: 90%;
	max-width: 83.333vw;
	margin: 0 auto;
	margin-bottom: 6.25vw;

}

.after_text {
	position: relative;
	z-index: 1;
	text-align: center;
}

.after_h2 {
	display: inline-block;
	padding: 0.833vw 1.667vw;
	background: #FFF;
	font-weight: 700;
	color: #000;
	font-size: clamp(14px, 1.3vw, 16px);
	margin-top: 1.833vw;
	margin-bottom: 2.5vw;
	text-align: center;
}

.after_h2 img {
	max-width: 81.333vw;
	position: absolute;
	z-index: -1;
	right: 0;
	left: 0;
	margin: 0 auto;
	top: -4.583vw;
}


.after_item {
	display: flex;
	justify-content: space-between;
	margin-top: 1.667vw;
}

.after_img {
	max-width: 34.167vw;
}

.after_item_text {
	max-width: 43.75vw;
	color: #FFF;
}

.after_item_text h4 {
	font-weight: 400;
	font-size: clamp(22px, 2.8vw, 34px);
	padding: 0.833vw 0;
	line-height: 1.5;

}

.after_item_text p {
	font-size: clamp(14px, 1.3vw, 16px);
	line-height: 1.8;
	text-align: justify;
	margin-top: 2.5vw;
}

/*-------------------------------
インスタグラム
-------------------------------*/

.insta_box {
	background-color: #F2F2F2;
	width: 100%;
	padding: 12.083vw 0;
}

.insta_intro {
	width: 90%;
	max-width: 83.333vw;
	margin: 0 auto;
	text-align: center;
}

.insta_intro img {
	max-width: 47.5vw;
}

/*-------------------------------
会社情報 
-------------------------------*/
.company {
	padding-top: 20vw;
	padding-bottom: 10vw;
}

.company_text {
	position: relative;
	z-index: 1;
	text-align: center;
}

.company_h2 {
	display: inline-block;
	padding: 0.833vw 3.333vw;
	background: linear-gradient(to right, #F5B234, #EF98B5);
	font-weight: 700;
	color: #FFF;
	font-size: clamp(14px, 1.3vw, 16px);
	margin-top: 1.833vw;
	margin-bottom: 7.5vw;
	text-align: center;
}

.company_h2 img {
	max-width: 55.417vw;
	position: absolute;
	z-index: -1;
	right: 0;
	left: 0;
	margin: 0 auto;
	top: -4.583vw;
}


.company_itembox {
	max-width: 70vw;
	margin: 0 auto;
}

.company_itembox dt,
.company_itembox dd {
	text-box-trim: trim-both;
	padding: 1.833vw 0;
	text-align: left;
}

.company_itembox dl {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	justify-content: space-between;
}

.company_itembox dt {
	font-size: clamp(14px, 1.3vw, 16px);
	width: 20%;
	max-width: 16.25vw;
	border-bottom: 1px solid #F5B234;
	line-height: 2;
	font-weight: 100;
	padding-left: 2em;
}

.company_itembox dt:last-of-type {
	border-bottom: none;
}



.company_itembox dd {
	font-size: clamp(14px, 1.3vw, 16px);
	box-sizing: border-box;
	width: 70%;
	max-width: 51.25vw;
	border-bottom: 1px solid #EF98B5;
	padding-left: 2em;
	line-height: 2;
}

.company_itembox dd:last-of-type {
	border-bottom: none;
}

.map_wrap {
	width: 100%;
	height: 33.333vw;
	overflow: hidden;
	position: relative;
}

.map_wrap iframe {
	width: 100%;
	height: calc(100% + 33.333vw);
	margin-top: calc(-33.333vw / 2);
	border: none;
	filter: grayscale(100%);
	transition: 0.3s ease-in-out;
}

.map_wrap iframe:hover {
	filter: grayscale(0%);
}

/*-------------------------------
 
コンタクトフォーム（フォームプラグイン外）
 
-------------------------------*/

.contact_box {
	background: linear-gradient(to right, #F5B234, #EF98B5);
	padding-top: 13.75vw;
	padding-bottom: 11.25vw;
}

.contact_intro {
	width: 90%;
	max-width: 83.333vw;
	margin: 0 auto;
	padding-bottom: 2.917vw;

	text-align: center;
}

.contact_text {
	position: relative;
	z-index: 1;
	text-align: center;
	border-bottom: 1px solid #FFF;
}

.contact_h2 {
	display: inline-block;
	padding: 0.833vw 4.583vw;
	background: #FFF;
	font-weight: 700;
	font-size: clamp(14px, 1.6vw, 16px);
	margin-top: 1.833vw;
	margin-bottom: 6.667vw;
	text-align: center;
}

.contact_h2 img {
	max-width: 53.333vw;
	position: absolute;
	z-index: -1;
	right: 0;
	left: 0;
	margin: 0 auto;
	top: -4.583vw;
}

.contact_text p {
	color: #FFF;
	font-weight: 400;
	font-size: clamp(14px, 1.6vw, 16px);
	line-height: 2;
	padding-bottom: 3.333vw;
}

.con_tel {
	padding-top: 3.333vw;
	text-align: center;
	color: #FFF;
}

.con_tel img {
	max-width: 23.75vw;
}

.con_time_intro {
	margin-top: 2.333vw;
	margin-bottom: 1.417vw;
	font-size: clamp(14px, 1.6vw, 16px);
}

.con_time {
	font-weight: 700;
	font-size: clamp(14px, 1.6vw, 16px);
}

.contact_inner {
	width: 87%;
	max-width: 83.333vw;
	margin: 0 auto;
	background-color: #FFF;
	border-radius: 20px;
}

/*-------------------------------
 
コンタクトフォーム（フォームレイアウト）
 
-------------------------------*/

.ly_form * {
	font-size: clamp(14px, 1.6vw, 16px);
	border-style: solid;
	border-width: 0;
	box-sizing: border-box;
	min-inline-size: 0;

}

:where(button, input, textarea, optgroup, select) {
	appearance: none;
	background-color: transparent;
	border-radius: unset;
	color: inherit;
	font: inherit;
	letter-spacing: inherit;
	vertical-align: middle;
}

:where(textarea) {
	field-sizing: content;
	resize: block;
}

:where(button, [type="button"], [type="submit"], [type="reset"]) {
	text-align: center;
	user-select: none;
	touch-action: manipulation;
}

/* フォーカス時はオリジナルのアウトラインを適用 */
:where(button, input, textarea, select):focus-visible {
	outline: 2px solid #005FCC;
	outline-offset: -2px;
}

:where(button,
	input[type=button],
	input[type=submit],
	input[type=reset])[disabled] {
	cursor: not-allowed;
}

/* レイアウト */
.ly_form {}

.bl_form,
.bl_formConfirm,
.bl_formThanks {
	padding-block: 4.125rem;
	padding-inline: 1.5rem;
	background-color: #FFF;
	border: none;
	border-radius: 25px;
}

.bl_form_group:not(:first-of-type),
.bl_formConfirm_txt + .bl_form_group {
	margin-block-start: .5em;
	margin-bottom: .8em;
}

.bl_form_group fieldset {
	display: contents;
}

.bl_form_control {
	margin-block-start: 0.5em;
}

/* 項目名 */
.bl_form_label {
	color: #000;
	display: block;
	margin-bottom: 1em;
}

/* 必須ラベル */
.bl_form_required {
	color: #000;
	display: inline-block;
	font-weight: 700;
	padding-block: 0.1em;
	padding-inline: 0.2em;
}

/* 入力欄、セレクトボックス */
.bl_form :is(input[type=text], input[type=email], input[type=tel], textarea, select) {
	background-color: #F4F4F4;
	padding: 12px 10px;
}

.bl_form :is(input[type=text], input[type=email], input[type=tel], textarea) {
	inline-size: 100%;
}

.bl_form :is(input[type=text], input[type=email], input[type=tel], textarea)::placeholder {
	color: #C5C5C5;
}

.bl_form textarea {
	height: 180px;
}

/* ラジオボタン、チェックボックス */
.bl_form .wpcf7-list-item {
	margin: unset;
	margin-bottom: .8em;
}

.bl_form_radio,
.bl_form_checkbox {
	display: inline-grid;
	gap: 0.5em 2em;
}

.yuubin {
	display: inline-flex;
	align-items: center;
}

.yuubin p {
	margin-right: 1em;
}

.yuubin :is(input[type=text], input[type=email], input[type=tel], textarea) {
	width: 8em;
}

/* オリジナルのラジオボタンとチェックボックスを作成 */
.bl_form :is(input[type=radio], input[type=checkbox], input[type=checkbox]) {
	background-color: #FFF;
	block-size: 18px;
	border: 2px solid #DDD;
	inline-size: 18px;
	margin-block-end: 3px;
	position: relative;
	left: -8px;
}

.bl_form input[type=radio] {
	border-radius: 50%;
}

/* フォーカス時はlabelタグにアウトラインを適用 */
.bl_form label:has(:where(input[type=radio], input[type=checkbox]):focus-visible) {
	outline: 2px solid #005FCC;
	outline-offset: 2px;
}

/* チェック時のスタイルは擬似要素で再現 */
.bl_form :where(input[type=radio], input[type=checkbox]):checked::before {
	content: "";
	inset-block-start: 2px;
	inset-inline-start: 2px;
	position: absolute;
}

.bl_form :where(input[type=radio]):checked::before {
	background-color: #37952F;
	block-size: 10px;
	border-radius: 50%;
	inline-size: 10px;
}

.bl_form :where(input[type=checkbox]):checked::before {
	block-size: 6px;
	border-block-end: 2px solid #37952F;
	border-inline-start: 2px solid #37952F;
	inline-size: 10px;
	rotate: -50deg;
}

.bl_form_consent {
	text-align: center;
	margin-top: 30px;
}

/* バリデーションメッセージ */
/* .wpcf7-not-valid-tip{} */
/* 確認・戻る・送信ボタン */
.bl_form_btn {
	display: flex;
	gap: 2em;
	justify-content: center;
	margin-block-start: 2.5rem;
}

/* 確認ボタン非活性時 */
.bl_form_confirm[disabled] {
	background-color: #CCC;
}

/* 確認・送信ボタン */
.bl_form_confirm,
.bl_form_submit {
	background: #FFF;
	color: #000;
	border: 1px solid #ef98b5;
	width: 90%;
	max-width: 320px;
	border-radius: 40px;
	padding: 18px 0;
}

.bl_form_confirm:hover,
.bl_form_submit:hover {
	background: linear-gradient(to left, #EF98B8, #F5BA29);
	border: 1px solid #ef98b5;
	color: #FFF;
	opacity: 1;
}


/* 戻るボタン */
.bl_form_back {
	background-color: #B0B0B0;
	color: #FFF;
	width: 90%;
	max-width: 320px;
	border-radius: 40px;
	padding: 18px 0;
}

.bl_form_back:hover {
	opacity: .5;
}

/* 確認画面とメッセージ、スピナーを非表示 */
.bl_formConfirm,
.wpcf7-response-output,
.bl_formConfirm .wpcf7-spinner {
	display: none;
}

/* 送信完了画面 */
.bl_formThanks_ttl,
.bl_formThanks_txt {
	text-align: center;
}

.bl_formThanks_ttl {
	font-size: 24px;
	font-weight: 700;
}

.bl_confirm_message{line-height:1.6;}

.bl_formThanks_txt {
	margin-block-start: 1em;
}

.porcy_box {
	width: 100%;
	margin: 40px 0;
	border-top: 2px solid #000;
	padding-top: 40px;
}

.contact__privacy {
	max-width: 100%;
	max-height: 250px;
	margin: 0 auto;
	border: 2px solid #F4F4F4;
	border-right-width: 1px;
	padding: 1em 1.3em;
	font-weight: 300;
	background-color: #FFF;
	overflow-y: auto;
	scrollbar-width: thin;
	scrollbar-color: #231815 #c7c7c7;
}

.contact__privacy {
	text-align: left;
	font-weight: 400;
	line-height: 1.4;
	margin-bottom: 1em;
	font-size: clamp(14px, 1.6vw, 16px);
}

.contact__privacy p {
	line-height: 1.5;
	font-size: clamp(14px, 1.6vw, 16px);
}

.contact__privacy h3 {
	font-size: clamp(14px, 1.6vw, 16px);
	font-weight: 400;
	margin-bottom: 5px;
}

.contact__privacy::-webkit-scrollbar {
	width: 10px;
}

.contact__privacy::-webkit-scrollbar-track {
	background-color: #c7c7c7;
}

.contact__privacy::-webkit-scrollbar-thumb {
	background-color: #ee7345;

}

.bl_formConfirm_txt {
	text-align: center;
	margin-bottom: 2em;
}

@media (min-width: 768px) {

	.bl_form_group {
		font-size: clamp(14px, 1.6vw, 16px);
		align-items: start;
		display: grid;
		gap: 3%;
		grid-template-columns: 31% 1fr;
	}

	.bl_form_label {

		margin-block-start: 0.5em;
	}

	.bl_form_radio,
	.bl_form_checkbox {
		grid-auto-flow: column;
	}
}

.bl_con_check span::before {
	content: none;
	/* ::beforeを無効にする */
}

.bl_con_check span::after {
	content: none;
	/* ::beforeを無効にする */
}

/*-------------------------------
外部サイト
-------------------------------*/
.external_site {
	display: flex;

}

.online_site {
	width: 50%;
	background-image: url(../../images/online_bg.webp);
	background-image: image-set(url(../../images/online_bg.webp) type("image/webp"),
			url(../../images/online_bg.png) type("image/png"));
	background-size: cover;
	background-repeat: no-repeat;
	padding-top: 7.5vw;
	padding-bottom: 6.25vw;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.online_site img {
	max-width: 31.25vw;
	margin-bottom: 2.917vw;
}

.online_site h3 {
	font-size: 1.333vw;
	padding: 0.833vw 2.5vw;
	background-color: #FFF;
	margin-bottom: 3vw;
}

.company_site {
	width: 50%;
	background-image: url(../../images/company_bg.webp);
	background-image: image-set(url(../../images/company_bg.webp) type("image/webp"),
			url(../../images/company_bg.png) type("image/png"));
	background-size: cover;
	background-repeat: no-repeat;
	padding-top: 7.5vw;
	padding-bottom: 6.25vw;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.company_site img {
	max-width: 23.583vw;
	margin-bottom: 2.917vw;
}

.company_site h3 {
	font-size: 1.333vw;
	padding: 0.833vw 2.5vw;
	background-color: #FFF;
	margin-bottom: 3vw;
}


.external_site a {
	display: block;
	width: 22vw;
	max-width: 18.333vw;
	padding: 1.25vw;
	text-align: center;
	font-size: clamp(14px, 1.25vw, 15px);
	font-weight: 500;
	position: relative;
	border-radius: 5vw;
	color: #000;
	cursor: pointer;
	overflow: hidden;
	z-index: 1;
	transition: color 0.3s ease;
}

/* 外枠グラデーション */
.external_site a::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 5vw;
	background: linear-gradient(to right, #F5B234, #EF98B5);
	z-index: -2;

}

/* 内側背景 */
.external_site a::after {
	content: '';
	position: absolute;
	left: 0.167vw;
	top: 0.167vw;
	width: calc(100% - 0.333vw);
	height: calc(100% - 0.333vw);
	border-radius: 5vw;
	background: #FFF;
	z-index: -1;
	transition: background 0.3s ease;
}

.external_site a .intro_arrow {
	position: absolute;
	right: 2.083vw;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.25vw;
	font-weight: 500;
	color: #000;
	transition: color 0.3s ease;
}

/* ホバー時 */
.external_site a:hover {
	color: #fff;
	opacity: 1;
}

.external_site a:hover .intro_arrow {
	color: #fff;
}

.external_site a:hover::after {
	background: linear-gradient(to right, #F5B234, #EF98B5);
}

/*-------------------------------
フッター
-------------------------------*/
.footer_box {
	padding-top: 5vw;
	padding-bottom: 5.417vw;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.footer_box img {
	max-width: 16.25vw;
	margin-bottom: 2.5vw;
}

.address {
	max-width: 33.333vw;
	position: relative;
}

.address p {
	font-size: 1.333vw;
	line-height: 1.8;
	padding-bottom: 1.667vw;
}

.address::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 0.083vw;
	background: linear-gradient(to left, #EF98B8, #F5BA29);
}

.unei {
	margin-top: 2.083vw;
}

.unei h4 {
	font-size: 1.167vw;
	margin-bottom: 1.25vw;
}

.unei a {
	color: #000;
	font-size: 1.5vw;
}

.copy {
	padding: 1.5vw 0;
	background: linear-gradient(to left, #EF98B8, #F5BA29);
	text-align: center;
	color: #FFF;
	font-weight: 500;
	font-size: 0.917vw;
}



/*-------------------------------
 
ハンバーガーメニューここから
 
-------------------------------*/
/* ハンバーガーボタン */
.menu-button {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	row-gap: 1.25vw;
	cursor: pointer;
	position: fixed;
	top: 3vw;
	right: 5vw;
	z-index: 1001;
	width: 40px;
	height: 40px;
	background: linear-gradient(to left, #EF98B8, #F5BA29);
	border-radius: 50%;
}

/* ハンバーガーの線 */
.menu-button__line,
.menu-button::before,
.menu-button::after {
	content: "";
	width: 20px;
	/* 線の長さを調整 */
	height: 2px;
	background-color: #FFF;
	/* 線の色 */
	transition: transform 0.6s, opacity 0.6s;
}

/* ハンバーガーの線の位置調整 */
.menu-button::before,
.menu-button::after {
	position: absolute;
}

.menu-button::before {
	transform: translateY(-5.5px);
	/* 上の線の位置調整 */
}

.menu-button::after {
	transform: translateY(5.5px);
	/* 下の線の位置調整 */
}



/* メニューが開いているときの状態 */
.menu-toggle:checked + .menu-button .menu-button__line {
	opacity: 0;
}

/* 真ん中のライン（実体）の初期状態 */
.menu-button__line {
	position: relative;
	display: block;
	width: 20px;
	height: 2px;
	background: #fff;
	transition: opacity 0.6s;
}

/* チェック時は完全に消す */
.menu-toggle:checked + .menu-button .menu-button__line {
	opacity: 0;
	visibility: hidden;
}

.menu-toggle:checked + .menu-button::before {
	transform: translateY(0) rotate(45deg);
	/* 上の線が45度回転 */
}

.menu-toggle:checked + .menu-button::after {
	transform: translateY(0) rotate(-45deg);
	/* 下の線が-45度回転 */
}

/* メニューの背景 */
.menu-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #FFF;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.6s;
	z-index: 1000;
	/* ボタンの下 */
}

.menu-toggle:checked ~ .menu-overlay {
	opacity: 0.8;
	pointer-events: auto;
}

.menu {
	position: fixed;
	top: 0;
	height: 100%;
	right: -0.833vw;
	/* 初期状態で画面外 */
	transform: translateX(100%);
	width: 100%;
	background-color: #FFF;
	background-color: rgba(255, 255, 255, 0.8);
	padding: 1.667vw;
	transition: transform 0.6s;
	z-index: 1000;
}

.menu-toggle:checked ~ .menu {
	transform: translateX(0);
}

.menu-list {
	width: 80%;
	margin: 20% auto 0;
	padding: 0;
	list-style: none;
}

.menu-list li {
	font-size: clamp(16px, 4vw, 20px);
	position: relative;
	padding: 25px 0;
	text-align: center;
	font-weight: 500;
}

.menu-list li::before,
.menu-list li::after {
	content: "";
	position: absolute;
	left: 0;
	width: 100%;
	height: 1.5px;
	background: linear-gradient(to left, #EF98B8, #F5BA29);
}

.menu-list li::before {
	top: 0;
}

.menu-list li::after {
	bottom: -1.5px;
}

.menu-list li a {
	color: #000;
	font-weight: bold;
	display: inline-block;
	width: 100%;
	padding: 0;
}

.menu-list li a {
	color: #000;
	font-weight: bold;
}

.menu-list li a:hover {
	color: #2980a0;
}

.menu_online {
	text-align: center;
	max-width: 224px;
	margin: 30px auto;
}

.menu_online a {
	position: relative;
	display: inline-block;
	opacity: 1;

}

.menu_online img {
	display: block;
	width: 100%;
	transition: .3s;
}

.menu_online .img-hover {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	pointer-events: none;
}

.menu_online:hover .img-default {
	opacity: 0;
}

.menu_online:hover .img-hover {
	opacity: 1;
}

.tester {
	width: 80%;
	margin: 0 auto;
}


@media (max-width:840px) {

	.slider-img img {
		max-height: 560px;
	}

	.fv_intro {
		bottom: 15%;
	}

	.fv_intro p {
		margin-bottom: 4vw;
	}

	.fv_intro a {
		width: 30vw;
		max-width: 250px;
	}


}


/*-------------------------------
ここから下スマートフォン向け（767px）
-------------------------------*/
@media (max-width:580px) {
	.header_box {
		height: 17.333vw;
	}

	.header_logo img {
		max-width: 36.8vw;
	}

	.header_nav {
		display: none;
	}

	.fv_intro {
		max-width: 80%;
		top: 24vw;
		left: 10%;
	}

	.intro p {
		margin-bottom: 6.933vw;
	}

	.fv_intro a {
		width: 50.667vw;
		max-width: none;
		margin: 0 auto;
		padding: 2.933vw 0;
	}

	.fv_intro a .intro_arrow {
		font-size: 3.733vw;
		right: 3vw;
	}



	.fv_intro a .intro_arrow {
		font-size: 3.733vw;
		right: 3vw;
	}

	.goto_contact_sp {
		width: 240px;
		position: absolute;
		right: 0;
		left: 0;
		bottom: 8%;
		margin: 0 auto;
	}

	.content_01_bg {
		background-image: url(../../images/sp_content01_bg.webp);
		background-image: image-set(url(../../images/sp_content01_bg.webp) type("image/webp"), url(../../images/sp_content01_bg.png) type("image/png"));
		padding-top: 32vw;
	}

	.about_box {
		width: 87%;
		max-width: none;
		flex-direction: column;
		margin-bottom: 21.333vw;
	}

	.about_h2 {
		margin-bottom: 8vw;
	}

	.about_h2 img {
		max-width: 56vw;
		left: -3vw;
		top: -8vw;
	}

	.about_text {
		max-width: none;
	}

	.about_text p {
		font-size: 3.733vw;
		margin-bottom: 8.533vw;
	}

	.about_img {
		max-width: none;
		margin-left: 0;
	}

	.lineup_h2 {
		margin-bottom: 8vw;
	}

	.lineup_h2 img {
		max-width: 60.533vw;
		left: -3vw;
		top: -8vw;
	}

	.lineup_slide_inner {

		width: 87%;
	}

	.lineup_text h3 {
		margin-bottom: 8vw;
	}

	.lineup_item {
		flex-direction: column;
		max-width: none;
	}

	.lineup_item_text {
		margin-left: 0;
		margin-top: 13%;
	}

	.lineup_item_text.sp_only {
		margin-top: 0;
	}

	.lineup_item_img {
		max-width: none;
		object-fit: cover;
	}

	.lineup_item_text h3 {
		padding-left: 6.667vw;
		margin-bottom: 3.733vw;
	}

	.lineup_item_text h3::before {
		width: 1.067vw;
	}

	.feature {
		font-size: 4.8vw;
	}

	.spec {
		font-size: 3.5vw;
	}

	.note {
		font-size: 3.2vw;
	}

	.lineup_images .slick-dots {
		bottom: -10% !important;
	}

	.arrow_box {
		max-width: 87%;
	}

	.arrow_box .slick-prev,
	.arrow_box .slick-next {
		width: 8vw;
		height: 8vw;
	}

	.dots-box .slick-dots li {
		height: 2px !important;
		max-width: 40px !important;
		gap: 1.333vw;
	}

	.fragrance_box {
		width: 87%;
		max-width: none;
		margin-bottom: 26.667vw;
	}

	.fragrance_box_inner {
		flex-direction: column;
	}

	.fragrance_text {
		max-width: none;
	}

	.fra_h {
		max-width: 95.2vw;
		left: -3vw;
		top: -8vw;
	}

	.fragrance_text p {
		font-size: 3.733vw;
		margin-bottom: 8.533vw;
	}

	.fragrance_img {
		max-width: none;
		margin-left: 0;
	}

	.fragrance_h2 {
		margin-bottom: 8vw;
	}

	.pickup_box {
		margin-bottom: 26.667vw;
	}

	.pickup_h2 img {
		max-width: none;
		width: 87%;
		top: -9vw;
	}

	.pickup_h2 {
		margin-bottom: 10.667vw;
	}

	.pickup_item_box {
		width: 93%;
		max-width: none;
	}

	.pickup_item {
		max-width: 40vw;
		margin-bottom: 10.667vw;
	}

	.fra_list {
		width: 80%;
		margin: 0 auto;
	}

	.fra_list a {
		max-width: none;
		margin-top: 5.333vw;
	}

	.fra_list img {
		max-width: none;

	}

	.flow {
		padding-top: 32vw;
		padding-bottom: 32vw;
		background-image: url(../../images/sp_flow_bg.webp);
		background-image: image-set(url(../../images/sp_flow_bg.webp) type("image/webp"), url(../../images/sp_flow_bg.png) type("image/png"));
		background-color: rgba(255, 255, 255, 0);
	}

	.flow_box {
		flex-direction: column;
		max-width: none;
		width: 87%;
		margin-bottom: 18.667vw;
	}

	.flow_text {
		max-width: none;
	}

	.flow_h2 {
		margin-bottom: 8vw;
	}

	.flow_h2 img {
		max-width: 47.467vw;
		left: -3vw;
		top: -8vw;
	}

	.flow_text p {
		font-size: 3.733vw;
		margin-bottom: 8.533vw;
	}

	.flow_text p,
	.flow_img,
	.flow_img img {
		max-width: none;
	}

	.step_box {
		max-width: none;
		width: 87%;
		flex-direction: column;
		margin-bottom: 29.333vw;

	}

	.step_item {
		max-width: none;
	}

	.step_no {
		max-height: 16vw;
		margin-bottom: 5.333vw;
	}

	.step_item h4 {
		font-size: 5.867vw;
		margin: 4.8vw 0;
	}

	.step_arrow {
		text-align: center;
		margin-top: 0;
		margin: 8vw 0;
	}

	.step_arrow img {
		max-width: 5.067vw;
		transform: rotate(90deg);
	}

	.after_h2 {
		margin-bottom: 10.667vw;
	}

	.after_h2 img {
		max-width: none;
		width: 115%;
		left: -7%;
	}

	.after_item {
		flex-direction: column-reverse;
	}

	.after_img {
		max-width: none;
		margin-top: 7.2vw;
	}

	.after_item_text {
		max-width: none;
	}

	.insta_box {
		padding: 24vw 0;
	}

	.insta_intro img {
		max-width: 74.133vw;
	}

	.company_h2 {
		padding: 0.883vw 25px;
	}

	.company_h2 img {
		max-width: 84.533vw;
		left: 0;
		top: -8vw;
	}

	.company_itembox {
		max-width: 87%;
	}

	.company_itembox dl {
		display: block;
	}

	.company_itembox dt,
	.company_itembox dd {
		max-width: none;
		width: 100%;

		padding: 4.267vw 0;
	}

	.company_itembox dt:last-of-type {
		border-bottom: 1px solid #F5B234;
	}

	.company_itembox dd:last-of-type {
		border-bottom: 1px solid #EF98B5;
	}

	.map_wrap {
		height: 106.667vw;
	}

	.map_wrap iframe {
		width: 100%;
		height: calc(100% + 106.667vw);
		margin-top: calc(-106.667vw / 2);
	}

	.contact_box {
		padding-top: 32vw;
		padding-bottom: 29.333vw;
	}

	.contact_intro {
		max-width: none;
		width: 87%;
		padding-bottom: 13.333vw;

	}

	.contact_h2 {
		margin-bottom: 8vw;
	}

	.contact_h2 img {
		max-width: 81.067vw;
		left: 0;
		top: -8vw;
	}

	.contact_text p {
		padding-bottom: 8vw;
	}

	.con_tel img {
		margin-top: 8vw;
		margin-bottom: 8vw;
		max-width: 61.333vw;
	}

	.con_time_intro {
		margin-top: 0;
		margin-bottom: 4.267vw;
	}

	.external_site {
		flex-direction: column;

	}

	.online_site {
		width: 100%;
		padding-top: 13.333vw;
		padding-bottom: 10.667vw;
	}

	.company_site {
		width: 100%;
	}

	.online_site img {
		max-width: 84.267vw;
		margin-bottom: 5.333vw;
	}

	.online_site h3 {
		font-size: 3.733vw;
		padding: 1.333vw 4vw;
		margin-bottom: 8vw;
	}

	.company_site img {
		max-width: 64vw;
	}

	.external_site a {
		width: 53.333vw;
		max-width: none;
		font-size: 3.467vw;
		padding: 2.667vw;
	}

	.external_site a .intro_arrow {
		font-size: 3.467vw;
		right: 5vw;
	}

	.company_site h3 {
		font-size: 3.733vw;
		padding: 1.333vw 4vw;
		margin-bottom: 8vw;
	}

	.footer_box {
		padding-top: 17.333vw;
		padding-bottom: 12vw;
	}

	.footer_box img {
		max-width: 52.8vw;
		padding-bottom: 12vw;

	}

	.address {
		max-width: none;
		width: 87%;
	}

	.address::before {
		height: 0.267vw;
	}

	.address p {
		font-size: 3.733vw;
		padding-bottom: 8vw;
	}

	.unei {
		margin-top: 8vw;
	}

	.unei h4 {
		font-size: 3.733vw;
		margin-bottom: 5.333vw;
	}

	.unei a {
		font-size: 4.267vw;
	}

	.copy {
		font-size: 2.933vw;
		padding: 5.333vw 0;
	}
}

@media (max-width:430px) {
	.fv_intro {
		top: 36vw;
	}

	.goto_contact_sp {
		bottom: 10%
	}

}


.thanks_wrap {
	display: flex;
	flex-direction: column;
	padding: 5vh 0;

	width: 85%;
	max-width: 1000px;
	margin: 0 auto;
	font-size: clamp(14px, 1.6vw, 16px);
}

.thanks_wrap h3 {
	text-align: center;
	font-size: clamp(18px, 2.3vw, 23px);
	padding-bottom: 18px;
	border-bottom: 2px solid #ee7345;
	margin-bottom: 20px;
}

.thanks_wrap p {
	line-height: 1.7;
}


.page-template-thanks footer {
	margin-top: auto;
}

.con_top_btn a {
	display: block;
	text-align: center;
	background: #FFF;
	border: 1px solid #ef98b5;
	color: #000;
	width: 90%;
	max-width: 320px;
	border-radius: 40px;
	padding: 18px 0;
	margin: 0 auto;
	margin-top: 2.5em;
	text-decoration: none;
}

.con_top_btn a:hover {
	background: linear-gradient(to left, #EF98B8, #F5BA29);
	color: #FFF;
	opacity: 1;
}

/*-------------------------------
 インスタフィード
-------------------------------*/

#sb_instagram.sbi_palette_light,
#sbi_lightbox.sbi_palette_light_lightbox .sbi_lb-outerContainer .sbi_lb-dataContainer,
#sbi_lightbox.sbi_palette_light_lightbox .sbi_lightbox_tooltip,
#sbi_lightbox.sbi_palette_light_lightbox .sbi_share_close,
.sbi_header_outside.sbi_header_palette_light {
	background: #F2F2F2;
}

#sb_instagram #sbi_images {
	padding: 10vw 0;
}



.insta_btn a {
	display: block;
	width: 80%;
	max-width: 30vw;
	padding: 1.5vw;
	margin: 0 auto;
	text-align: center;
	font-size: clamp(15px, 1.25vw, 18px);
	font-weight: 500;
	position: relative;
	border-radius: 8vw;
	color: #000;
	cursor: pointer;
	overflow: hidden;
	z-index: 1;
	transition: color 0.3s ease;
}

/* 外枠グラデーション */
.insta_btn a::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 8vw;
	background: linear-gradient(to right, #F5B234, #EF98B5);
	z-index: -2;

}

/* 内側背景 */
.insta_btn a::after {
	content: '';
	position: absolute;
	left: 0.25vw;
	top: 0.25vw;
	width: calc(100% - 0.45vw);
	height: calc(100% - 0.45vw);
	border-radius: 8vw;
	background: #FFF;
	z-index: -1;
	transition: background 0.3s ease;
}

.insta_btn a .intro_arrow {
	position: absolute;
	right: 2.083vw;
	top: 50%;
	transform: translateY(-50%);
	font-size: clamp(15px, 1.25vw, 18px);
	font-weight: 500;
	color: #000;
	transition: color 0.3s ease;
}

/* ホバー時 */
.insta_btn a:hover {
	color: #fff;
	opacity: 1;
}

.insta_btn a:hover .intro_arrow {
	color: #fff;
}

.insta_btn a:hover::after {
	background: linear-gradient(to right, #F5B234, #EF98B5);
}

@media (max-width:580px) {

	.insta_btn a {
		display: block;
		width: 80%;
		max-width: 50vw;
		padding: 4vw;
		margin: 0 auto;
		text-align: center;
		font-size: 15px;
		border-radius: 8vw;
	}

	.insta_btn a::after {
		content: '';
		position: absolute;
		left: 0.35vw;
		top: 0.35vw;
		width: calc(100% - 0.8vw);
		height: calc(100% - 0.8vw);
		border-radius: 8vw;
		background: #FFF;
		z-index: -1;
		transition: background 0.3s ease;
	}

	.insta_btn a .intro_arrow {
		font-size: 18px;
		right: 3vw;
	}
}