@charset "utf-8";

/* ---------------------------------------- 
 - html
---------------------------------------- */
html,
body {
  margin: 0;
  padding: 0;
}
html{
	font-size: 62.5%;
	scroll-behavior: smooth;
}

@media screen and (max-width: 320px) {
	html{
		font-size: 52.5%;
	}
}
.clearfix::after {
	content: "";
	display: block;
	clear: both;
}


/* ---------------------------------------- 
 - img
---------------------------------------- */
img {
	width: 100%;
}
/* ホバー */
a,
a::after {
	transition: all 0.4s ease-in-out;
}
.sp_only {
	display: none;	
}
.pc_only {
	display: block;	
}
span.pc_only {
	display: inline-block;	
}
.tb_only {
	display: none;
}
.tb_none {
	display: block;
}

@media screen and (max-width : 1024px) {
	.tb_only {
		display: block;
	}
	.tb_none {
		display: none;
	}
}

@media screen and (max-width: 980px) {
	.sp_only {
		display: block;	
	}
	.pc_only,
	span.pc_only {
		display: none;	
	}
}

/* ---------------------------------------- 
 - body #282828
---------------------------------------- */
body{
	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	font-size:17px;
	font-size:1.7em;
	font-weight: var(--font_Regular);
	text-align: justify;
	color: var(--color_black);
	line-height:1.0;
	letter-spacing: 0.06em;
	font-feature-settings: "palt";
	-webkit-text-size-adjust: 100%; /* 文字の拡大縮小を防ぐ */
	text-size-adjust: 100%; /* 文字の拡大縮小を防ぐ */
}
:root {
	--color_black: #000000;
	--color_white: #FFFFFF;
	--color_pink: #f22f8e;
	--color_yellow: #e7e864;
	--color_orange: #ffad08;
	--color_green: #29bb16;
	--color_skyblue: #1dc2c3;
	--color_yellow_line: #ffe85f;
	--color_blue: #00469b;
	--inner_width: 1280px;
	--inner_width_out: 1680px;
	--inner_padding: 0 3%;
	--font_14: 82.35%;
	--font_18: 105.88%;
	--font_20: 117.65%;
	--font_23: 135.29%;
	--font_25: 147.06%;
	--font_28: 164.71%;
	--font_30: 176.47%;
	--font_35: 205.88%;
	--font_38: 223.53%;
	--font_42: 247.06%;
	--font_50: 294.12%;
	--font_Light: 300;
	--font_Regular: 400;
	--font_medium: 500;
	--font_bold: 700;
	--font_black: 900;
}
@media screen and (max-width : 1024px) {
}

@media screen and (max-width : 980px) {
	body {
		font-size: 1.6rem;
	}
	:root {
		--inner_padding: 0 6%;
	}
}
/* ---------------------------------------- 
 - common
---------------------------------------- */
.sec {
	padding: var(--inner_padding);
	overflow: hidden;
}
.sec .inner {
	width: 100%;
	max-width: var(--inner_width);
	margin: 0 auto;
}


@media screen and (max-width : 1024px) {
}
@media screen and (max-width : 980px) {
}



/* ---------------------------------------- 
 - main
---------------------------------------- */
.btn a {
	color: var(--color_white);
	font-weight: var(--font_bold);
	font-size: var(--font_30);
	letter-spacing: 0.18em;
	text-align: center;	
	width: 90%;
	max-width: 600px;
	height: 80px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 40px;
	background-color: var(--color_blue);
	position: relative;
	margin: 0 auto;
	transition: opacity 0.4s ease-in-out,color 0.4s ease-in-out,background-color 0.4s ease-in-out;
}
.btn a::after {
	content: "";
	width: 52px;
	height: 40px;
	background-image: url(../img/eye_left.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	transform: rotate(180deg);
	position: absolute;
	top: -13px;
	left: 37px;
	transition: opacity 0.4s ease-in-out,color 0.4s ease-in-out,background-color 0.4s ease-in-out;
}
.btn a:hover {
	background-color: var(--color_white);
	color: var(--color_blue);
}
.btn a:hover::after {
	transform: rotate(0deg);
}
@media screen and (max-width : 980px) {
	.btn a {
		font-size: 2.0rem;
		width: 100%;
		max-width: 310px;
		height: 55px;
	}
	.btn a::after {
		width: 30px;
	}
}

/* ---------------------------------------- #visual ---------------------------------------- */
#visual {
}
#visual .inner {
}
#visual .inner video {
	width: 100%;
	border-radius: 50px;
}
#visual .catch_box {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 40px;
	margin-top: -80px;
}
#visual .catch_box .ttl {
	font-size: var(--font_23);
	text-align: center;
}
#visual .catch_box .catch {
	font-weight: var(--font_bold);
	font-size: var(--font_38);
	line-height: 1.57;
	letter-spacing: 0.18em;
	text-align: justify;
	text-align-last: justify;
	width: 8em;
}
#visual .img_box {
	margin: 120px auto 0;
	width: 350px;
}
@media screen and (max-width : 1024px) {
	#visual {
	}
}
@media screen and (max-width : 980px) {
	#visual {
	}
	#visual .inner {
		padding-top: 100px;
	}
	#visual .catch_box {
		margin-top: 0;
	}
	#visual .catch_box .ttl {
		font-size: 1.6rem;
		line-height: 1.6;
	}
	#visual .catch_box .catch {
		font-size: 2.5rem;
	}
	#visual .img_box {
		margin-top: 50px;
		width: 60%;
	}
}

/* ---------------------------------------- #profile ---------------------------------------- */
#profile {
	background-color: var(--color_yellow);
	overflow: unset;
}
#profile .inner {
	padding-top: 85px;
}
#profile .balloon {
	width: 100%;
	max-width: 850px;
	margin: -85px auto 0;
}
#profile .balloon img {
	width: 256px;
	margin-top: -175px;
}
#profile .txt_box .ttl {
	font-weight: var(--font_bold);
	font-size: var(--font_30);
	line-height:2.0;
	letter-spacing: 0.18em;
	text-align: center;
}
#profile .txt_box .txt {
	line-height: 2.17;
	letter-spacing: 0.18em;
	margin: 30px auto 0;
	max-width: 600px;
}
#profile .point_list {
	margin: 85px auto 0;
	max-width: 880px;
	display: flex;
	flex-direction: row;
	gap: 20px;
}
#profile .point_item {
	width: calc((100% - 40px) / 3);
	aspect-ratio: 1;
	border: 1px solid var(--color_pink);
	border-radius: 50%;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	gap: 20px;
	padding-top: 6.8%;
}
#profile .point_item .ttl {
	font-weight: var(--font_bold);
	font-size: var(--font_20);
	line-height:1.5;
	letter-spacing: 0.1em;
	color: var(--color_pink);
	text-align: center;
	height: 3em;
	display: flex;
	justify-content: center;
	align-items: center;
}
#profile .point_item .txt {
	line-height: 1.76;
	text-align: center;
}
@media screen and (max-width : 1024px) {
	#profile {
	}
}
@media screen and (max-width : 980px) {
	#profile {
	}
	#profile .balloon img {
		width: 35%;
		margin-left: -10%;
	}
	#profile .txt_box .ttl {
		font-size: 2.2rem;
		line-height: 1.6;
	}
	#profile .point_list {
		flex-direction: column;
		align-items: center;
		margin-top: 50px;
	}
	#profile .point_item {
		width: 240px;
		padding-top: 0;
		justify-content: center;
	}
	#profile .point_item .ttl {
		font-size: 1.6rem;
	}
	#profile .point_item .txt {
		font-size: 1.4rem;
	}
}

/* ---------------------------------------- #needs ---------------------------------------- */
#needs {
	background-color: var(--color_yellow);
}
#needs .inner {
	padding-top: 140px;
}
#needs .slid_list {
	margin: 100px -4% 0;
}
.slick-list {
  margin: 0 -15px;
}
.slick-slide {
  margin: 0 15px;
}
#needs .ttl_box {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 35px;
}
#needs .ttl_box .ttl_h1 {
	width: 90%;
	max-width: 730px;
}
#needs .ttl_box .txt {
	line-height: 1.76;
	text-align: center;
}
#needs .needs_list {
	margin-top: 100px;
	display: flex;
	flex-direction: column;
	gap: 50px;
}
#needs .needs_item {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	height: 410px;
	position: relative;
}
#needs .needs_item .need_in {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: flex-start;
	padding-top: 145px;
	width: 100%;
	position: relative;
	z-index: 10;
}
#needs .needs_item .txt_box {
	width: 50%;
}
#needs .needs_item .txt_box .ttl {
	font-weight: var(--font_bold);
	font-size: var(--font_42);
	letter-spacing: 0.1em;
	text-align: right;
}
#needs .needs_item .txt_box .txt {
	font-size: var(--font_18);
	line-height: 1.66;
	text-align: right;
	margin-top: 25px;
}
#needs .needs_item .needs_point {
	color: var(--color_white);
	font-weight: var(--font_bold);
	font-size: var(--font_20);
	line-height: 2.0;
	letter-spacing: 0.1em;
	width: 50%;
	padding-left: 50px;
}
#needs .needs_item .needs_point ul {
	list-style-type: disc;
	padding-left: 2em;
}
#needs .eye {
	position: absolute;
	top: -11px;
	width: 52px;
}
#needs_01 .eye, #needs_03 .eye { right: 207px;}
#needs_02 .eye, #needs_04 .eye { left: 207px;}
#needs .icon {
	position: absolute;
	width: 131px;
}
#needs_01 .icon {
	left: 75px;
	bottom: 130px;
}
#needs_02 .icon {
	right: 78px;
	bottom: 68px;
}
#needs_03 .icon {
	left: 140px;
	bottom: 125px;
	width: 125px;
}
#needs_04 .icon {
	right: 90px;
	top: 145px;
}
#needs_01 {
	background-color: var(--color_pink);
	border-radius: 0 205px 205px 0;
}
#needs_02 {
	background-color: var(--color_orange);
	border-radius: 205px 0 0 205px;
}
#needs_03 {
	background-color: var(--color_green);
	border-radius: 0 205px 205px 0;
}
#needs_04 {
	background-color: var(--color_skyblue);
	border-radius: 205px 0 0 205px;
}
#needs_01::after,
#needs_03::after {
	content: "";
	position: absolute;
	height: 410px;
	width: calc((100vw - 1280px) / 2);
	background-color: #000;
	left: calc((-100vw + 1280px) / 2);
}
#needs_01::before,
#needs_03::before {
	content: "";
	position: absolute;
	height: 410px;
	width: 3%;
	background-color: #FFF;
	left: -3%;
}
#needs_02::after,
#needs_04::after {
	content: "";
	position: absolute;
	height: 410px;
	width: calc((100vw - 1280px) / 2);
	background-color: #000;
	right: calc((-100vw + 1280px) / 2);
}
#needs_02::before,
#needs_04::before {
	content: "";
	position: absolute;
	height: 410px;
	width: 3%;
	background-color: #FFF;
	right: -3%;
}
#needs_01::after,
#needs_01::before {
	background-color: var(--color_pink);
}
#needs_02::after,
#needs_02::before {
	background-color: var(--color_orange);
}
#needs_03::after,
#needs_03::before {
	background-color: var(--color_green);
}
#needs_04::after,
#needs_04::before {
	background-color: var(--color_skyblue);
}
#needs .btn {
	margin-top: 200px;
}
#needs .btn a:hover {
	background-color: var(--color_pink);
	color: var(--color_yellow);
}

@media screen and (max-width : 1024px) {
	#needs {
	}
}
@media screen and (max-width : 980px) {
	#needs {
	}
	#needs .slid_list {
		margin-top: 70px;
	}
	#needs .ttl_box .txt {
		font-size: 1.4rem;
	}
	#needs .needs_list {
		margin: 100px -4% 0;
	}
	#needs .needs_item { 
		align-items: center;
	}
	#needs .needs_item .need_in {
		flex-direction: column;
		padding-top: 0;
		gap: 20px;
		width: 90%;
	}
	#needs #needs_02.needs_item .need_in ,
	#needs #needs_04.needs_item .need_in  {
		width: 60%;
	}
	#needs .needs_item .txt_box {
		width: 100%;
	}
	#needs .needs_item .needs_point {
		width: 100%;
		padding-left: 0;
		font-size: 1.6rem;
	}
	#needs .needs_item .txt_box .ttl {
		font-size: 3.2rem;
		line-height: 1.2;
		text-align: left;
	}
	#needs .needs_item .txt_box .txt {
		font-size: 1.4rem;
		text-align: left;
	}
	#needs .eye {
		width: 38px;
	}
	#needs_01 .eye,
	#needs_03 .eye {
		right: 280px;
	}
	#needs_02 .eye,
	#needs_04 .eye {
		left: 280px;
	}
	#needs .icon {
		width: 78px;
	}
	#needs_01 .icon {
		left: 265px;
		bottom: 30px;
	}
	#needs_02 .icon {
		right: 8px;
		bottom: 20px;
	}
	#needs_03 .icon {
		left: 260px;
		bottom: 25px;
	}
	#needs_04 .icon {
		right: 10px;
		top: 325px;
	}
	#needs .btn {
		margin-top: 80px;
	}
}

/* ---------------------------------------- #service ---------------------------------------- */
#service {
	background-color: var(--color_yellow);
}
#service .inner {
	padding-top: 210px;
	padding-bottom: 240px;
}
#service .ttl_box {
	display: flex;
	flex-direction: column;
	align-items: center;
}
#service .ttl_box .ttl_h1 {
	width: 90%;
	max-width: 580px;
}
#service .ttl_box .ttl {
	font-weight: var(--font_bold);
	font-size: var(--font_20);
	line-height: 2.0;
	letter-spacing: 0.18em;
	margin-top: 25px;
}
#service .ttl_box .txt {
	line-height: 1.76;
	text-align: center;
	margin-top: 20px;
}
#service .service_list {
	width: 100%;
	max-width: 1050px;
	margin: 70px auto 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 48px;
}
#service .service_item {
	display: flex;
	flex-direction: column;
	align-items: center;
	background-color: var(--color_white);
	border-radius: 1000px;
	width: 100%;
	padding: 80px 50px 50px;
}
#service .service_item .catch {
	font-weight: var(--font_bold);
	font-size: var(--font_28);
	line-height: 1.53;
	letter-spacing: 0.18em;
	text-align: center;
}
#service .service_item .catch span {
	display: inline-block;
	background: linear-gradient(transparent 40%, var(--color_yellow_line) 40%, var(--color_yellow_line) 90%,transparent 90%);
}
#service .service_item .h2_ttl {
	font-weight: var(--font_bold);
	font-size: var(--font_50);
	letter-spacing: 0.18em;
	text-align: center;
	margin-top: 30px;
}
#service .service_item .service_point {
	font-size: var(--font_20);
	line-height: 1.75;
	margin-top: 40px;
	list-style-type: "✓";
}
#service .service_item .service_point li {
	padding-left: 0.5em;
}
#service .service_item .price {
	line-height: 2.35;
	text-align: center;
	margin: 40px auto 0;
	display: block;
	width: 95%;
	max-width: 400px;
	border-top: 1px solid var(--color_black);
	padding-top: 10px;
}
#service .service_item .target {
	color: var(--color_white);
	font-weight: var(--font_bold);
	font-size: var(--font_20);
	line-height: 2.0;
	letter-spacing: 0.1em;
	text-align: center;
	background-color: var(--color_pink);
	height: 52px;
	width: 90%;
	max-width: 312px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 10px;
	border-radius: 30px;
}
#service .service_item:nth-child(2) .target {
	background-color: var(--color_blue);

}

@media screen and (max-width : 1024px) {
	#service {
	}
}
@media screen and (max-width : 980px) {
	#service {
	}
	#service .inner {
		padding-top: 150px;
		padding-bottom: 100px;
	}
	#service .ttl_box .ttl {
		font-size: 1.6rem;
	}
	#service .ttl_box .txt {
		font-size: 1.4rem;
	}
	#service .service_list {
		margin-top: 40px;
		gap: 30px;
	}
	#service .service_item { 
		padding: 70px 20px 70px;
		border-radius: 150px;
	}
	#service .service_item .catch {
		font-size: 1.6rem;
	}
	#service .service_item .h2_ttl {
		font-size: 2.7rem;
		margin-top: 20px;
	}
	#service .service_item .service_point {
		font-size: 1.4rem;
		margin-top: 30px;
	}
	#service .service_item .price {
		font-size: 1.4rem;
		line-height: 1.4;
		margin-top: 30px;
		padding-top: 15px;
	}
	#service .service_item .target {
		font-size: 1.4rem;
		margin-top: 20px;
	}
}

/* ---------------------------------------- #history ---------------------------------------- */
#history {
}
#history .inner {
	padding-top: 80px;
	padding-bottom: 80px;
	max-width: 850px;
}
#history .ttl {
	font-weight: var(--font_bold);
	font-size: var(--font_30);
	line-height: 2.16;
	letter-spacing: 0.18em;
	text-align: center;
}
#history .list {
	display: flex;
	flex-direction: column;
	gap: 0.8em;
	margin-top: 50px;
	line-height: 1.4;
	list-style-type: disc;
	padding-left: 1em;
}
@media screen and (max-width : 1024px) {
	#history {
	}
}
@media screen and (max-width : 980px) {
	#history {
	}
	#history .inner {
		padding-top: 50px;
		padding-bottom: 50px;
	}
	#history .ttl {
		font-size: 2.0rem;
	}
	#history .txt {
		font-size: 1.4rem;
		margin-top: 20px;
	}
}

/* ---------------------------------------- #contact ---------------------------------------- */
#contact {
	background-color: var(--color_pink);
}
#contact .inner {
	padding-top: 50px;
	padding-bottom: 65px;
	max-width: 600px;
}
#contact .ttl {
	color: var(--color_white);
	font-weight: var(--font_bold);
	font-size: var(--font_30);
	line-height: 2.16;
	letter-spacing: 0.18em;
	text-align: center;
}
#contact .txt {
	color: var(--color_white);
	font-size: var(--font_18);
	line-height: 1.6;
	letter-spacing: 0.04em;
	margin-top: 15px;
	text-align: center;
}
#contact .btn {
	margin-top: 40px;
}
#contact .btn a:hover {
	background-color: var(--color_yellow);
	color: var(--color_pink);
}
@media screen and (max-width : 1024px) {
	#contact {
	}
}
@media screen and (max-width : 980px) {
	#contact {
	}
	#contact .ttl {
		font-size: 2.0rem;
		line-height: 1.4;
	}
	#contact .txt {
		font-size: 1.4rem;
		line-height: 2;
	}
}


/* ---------------------------------------- 
 - header
---------------------------------------- */
#header {
	height: 100vh;
	overflow: hidden;
//	padding: var(--inner_padding);
}
#header .inner {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
}
#header .inner video {
	width: 101%;
	height: 100vh;
	object-fit: cover;
	object-position: center;
}

@media screen and (max-width : 1024px) {
}
@media screen and (max-width : 980px) {
	#header {
		height: auto;
	}
	#header .inner video {
		width: 100%;
		height: auto;
		object-fit: contain;
	}
}



/* ---------------------------------------- 
 - footer
---------------------------------------- */
#footer {
	padding: var(--inner_padding);
	overflow: hidden;
}
#footer .inner {
	width: 100%;
	max-width: var(--inner_width);
	margin: 0 auto;
	padding-top: 50px;
	padding-bottom: 50px;
	position: relative;
}
#footer .logo {
	width: 50%;
	max-width: 300px;
	margin: 0 auto;
}
#footer .txt_box {
	position: absolute;
	bottom: 50px;
	right: 0;
}
#footer .sns_list {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 15px;
}
#footer .sns_list a {
	display: block;
	width: 30px;
}
#footer .sns_list li:nth-child(2) a {
	width: 25px;
}
#footer .sns_list a:hover {
	transform: rotate(360deg);	
}
#footer .txt_box .txt {
	color: var(--color_pink);
	letter-spacing: 0.1em;
	text-align: right;
	margin-top: 15px;
}
#footer .copy {
	color: var(--color_white);
	font-size: var(--font_14);
	text-align: center;
	background-color: var(--color_black);
	width: 108%;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 -4%;
}

@media screen and (max-width : 1024px) {
}
@media screen and (max-width : 980px) {
	#footer .inner {
		padding-bottom: 30px;
	}
	#footer .txt_box {
		position: static;
		margin-top: 70px;
	}
	#footer .txt_box .txt {
		font-size: 1.2rem;
	}
	#footer .copy {
		font-size: 1.0rem;
		margin: 0 -7%;
		width: 114%;
		height: 37px;
	}
}


/* 1) 親 .needs_item：左から出現 */
.needs_item {
  opacity: 1;
  transform: translateX(-80%);
  transition: opacity 1.15s ease, transform 1.15s ease;
  will-change: opacity, transform;
}
/* 右から登場させたい要素 */
.needs_item#needs_02,
.needs_item#needs_04 {
  transform: translateX(80%);
}
/* 2) 子要素の初期状態 */
.needs_item .eye,
.needs_item .need_in,
.needs_item .icon {
  opacity: 0;
}

.needs_item .eye img {
  display: block;
  transform: rotate(180deg);
}

/* 入ったら発火 */
.needs_item.animate-in,
.needs_item#needs_02.animate-in,
.needs_item#needs_04.animate-in {
  opacity: 1;
  transform: translateX(0);
}

/* 2) eye を表示しつつ 0→180° 回転（0.35s） */
.needs_item.animate-in .eye {
  animation: eyeIn 0.45s ease forwards 0.45s; /* 表示＋最初の半回転 */
}

/* 3) 0.35s 後に need_in と icon を表示（フェード＋軽く上がる） */
.needs_item.animate-in .need_in,
.needs_item.animate-in .icon {
  animation: fadeUp 1.15s ease forwards 1.05s;
}

/* 3) 同タイミングで eye をさらに 180°（合計360°） */
.needs_item.animate-in .eye img {
  /* 2本目のアニメを遅延で積む */
  animation: eyeStep 1.2s steps(1, end) forwards;
}

/* --- keyframes --- */
@keyframes eyeIn {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes eyeStep {
  0%   { transform: rotate(180deg); }
  100% { transform: rotate(0deg); }
}

@keyframes rotateHalf {
  0%   { transform: rotate(180deg); }
  100% { transform: rotate(360deg); }
}

@keyframes fadeUp {
  0%   { opacity: 0; transform: translateY(8px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* reduce-motion 配慮（即時表示） */
@media (prefers-reduced-motion: reduce) {
  .needs_item,
  .needs_item .eye,
  .needs_item .need_in,
  .needs_item .icon {
	transition: none !important;
	animation: none !important;
	opacity: 1 !important;
	transform: none !important;
  }
}

