@charset "UTF-8";


/* reset ---------------------------------------*/

div,dl,dt,dd,ul,ol,
li,h1,h2,h3,h4,h5,
h6,pre,code,form,fieldset,legend,
input,textarea,p,blockquote,
th,td{margin:0;padding:0;}
table{border-collapse:collapse;border-spacing:0;word-break: break-all;font-size:inherit;width:100%;}
fieldset,img{border:0;}
address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;font-weight:normal;}
li{list-style:none;}
caption,th{text-align:left;}
h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal;}
q::before,q::after{content:'';}
abbr{border:0;font-variant:normal;}
sup{vertical-align:text-top;}
sub{vertical-align:text-bottom;}
input,textarea,select{font-family:inherit;font-size:inherit;font-weight:inherit;}
input,textarea,select{font-size:100%;}
legend{color:#000;}
select,input,button,textarea{font-size:inherit;font-family:inherit;box-sizing: border-box;}
pre,code,kbd,samp{font-family:monospace;font-size:108%;line-height:100%;}
figure{padding:0;margin:0;}
input[type="submit"],
input[type="button"],
button {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration,
button::-webkit-search-decoration {display: none;}
input[type="submit"]::focus,
input[type="button"]::focus,
button::focus {outline-offset: -2px;}


/* base ---------------------------------------*/

*{box-sizing:border-box;}

html,body{height:100%;}

body{
	position: relative;
	-webkit-text-size-adjust: 100%;
	padding:0;
	margin: 0;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
	line-height: 1.7;
	letter-spacing: 0.05em;
	font-feature-settings: "palt" 1;
	-webkit-font-feature-settings: "palt" 1;
}

a{
	text-decoration: none;
	color:inherit;
	transition: all 0.6s ease;
	-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}

a:hover{opacity: 0.7;}

img{
	vertical-align: bottom;
	line-height: 1;
	max-width:100%;
	height:auto;
}


/* common item ---------------------------------------*/

.clearfix::after,
.inner::after {
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
}

.font-mincho {font-family: "Zen Old Mincho", serif;}


/* layout ---------------------------------------*/
.wrapper {
	overflow: hidden;
}

.inner{
	max-width: 1080px;
	width: 100%;
	margin:0 auto;
}

.marker-orange {
	padding: 0 6px;
	background: linear-gradient(rgba(255, 255, 255, 0) 65%, rgba(231, 147, 60, 0.5) 65%);
}


/* btn ---------------------------------------*/
.btn {
	display: inline-block;
	max-width: 467px;
	width: 100%;
	border-radius: 20px;
	overflow: hidden;
}

.btn-shadow {
	box-shadow: 0 0 30px 0 rgba(4, 0, 0, 0.2);
}


/* kv ---------------------------------------*/
.kv {
	background: url('../img/kv.jpg') no-repeat;
	background-position: top center;
	background-size: 100% auto;
	overflow: hidden;
	padding: 0 0 50px;
}

.kv-top {
	position: relative;
	z-index: 1;
	width: 100%;
	aspect-ratio: 1440 / 1240;
}

.kv-top-title {
	position: absolute;
	top: 5.8vw;
	right: 6.9vw;
	z-index: 2;
	width: calc(866 / 1440 * 100vw);
	opacity: 0;
	transform: translateX(-80px);
	transition: all .5s ease;
}

.kv-top-title img {
	width: 100%;
}

.kv-top-image {
	position: absolute;
	top: 51.9vw;
	left: 34.4vw;
	z-index: 2;
	width: calc(414 / 1440 * 100vw);
	opacity: 0;
	transform: translateY(-80px);
	transition: all .5s ease;
	transition-delay: 0.5s;
}

.kv-top-image img {
	width: 100%;
}

.kv-top-deco-title {
	position: absolute;
	top: 52.4vw;
	left: 3.5vw;
	z-index: 2;
	width: calc(506 / 1440 * 100vw);
	opacity: 0;
	transform: translateY(50px);
	transition: all .4s ease;
	transition-delay: 0.9s;
}

.kv-top-deco-title img {
	width: 100%;
}

.kv-top-deco-text {
	position: absolute;
	top: 65vw;
	left: 11.2vw;
	z-index: 2;
	width: calc(290 / 1440 * 100vw);
	opacity: 0;
	transform: translateY(50px);
	transition: all .4s ease;
	transition-delay: 1s;
}

.kv-top-deco-text img {
	width: 100%;
}

.kv-top.is-show .kv-top-title,
.kv-top.is-show .kv-top-image,
.kv-top.is-show .kv-top-deco-title,
.kv-top.is-show .kv-top-deco-text {
	opacity: 1;
	transform: translate(0);
}

.kv-text {
	margin: 0 auto 58px;
	width: min(calc(613 / 1440 * 100vw), 613px);
}

.kv-text img {
	width: 100%;
}

.kv-schedule {
	margin: 0 auto 36px;
	width: min(calc(577 / 1440 * 100vw), 577px);
}

.kv-schedule img {
	width: 100%;
}

.kv-schedule-text {
	font-size: min(calc(60 / 1440 * 100vw), 60px);
	font-weight: 700;
	line-height: 1.636;
	text-align: center;
	color: #d6616a;
}

.kv-btn {
	text-align: center;
	margin: 0 auto;
}


/* intro ---------------------------------------*/
.intro {
	background: rgba(207, 207, 207, 0.2);
	padding: 60px 20px;
}

.intro-inner {
	max-width: 1000px;
	width: 100%;
	margin: 0 auto;
}

.intro-text {
	font-size: 30px;
	font-weight: 600;
	line-height: 1.636;
	text-align: center;
	letter-spacing: 0.1em;
	color: #343e4a;
	margin-bottom: 30px;
}

.intro-title {
	font-size: 44px;
	font-weight: 700;
	line-height: 1.384;
	text-align: center;
	letter-spacing: 0.1em;
	color: #343e4a;
	margin-bottom: 50px;
}

.intro-btn {
	margin: 70px auto 80px;
	text-align: center;
}

.intro-lead {
	margin: 0 auto;
	max-width: 691px;
	width: 100%;
}


/* feature ---------------------------------------*/
.feature {
	padding: 100px 0 70px;
}

.feature-image-01 {
	max-width: 1440px;
	width: 100%;
	margin: 0 auto 40px;
}

.feature-image-02 {
	max-width: 1440px;
	width: 100%;
	margin: 0 auto;
}

.feature-image-03 {
	max-width: 1440px;
	width: 100%;
	margin: 0 auto 70px;
}

.feature-image-04 {
	max-width: 1440px;
	width: 100%;
	margin: 0 auto;
}


/* cta ---------------------------------------*/
.cta {
	padding: 80px 20px 70px;
	background: url('../img/bg_cta.jpg') no-repeat;
	background-size: cover;
	background-position: top right;
}

.cta-title {
	max-width: 761px;
	margin: 0 auto 110px;
}

.cta-text {
	max-width: 777px;
	margin: 0 auto 80px;
}

.cta-list {
	display: flex;
	gap: calc(calc(56 / 1150) * 100%);
	max-width: 1150px;
	margin: 0 auto 80px;
}

.cta-list > li {
	width: calc(547 / 1150 * 100%);
	border-radius: 10px;
	overflow: hidden;
}

.cta-lead {
	font-size: min(calc(40 / 1150 * 100vw), 40px);
	font-weight: 700;
	line-height: 1.5;
	text-align: center;
	letter-spacing: 0.1em;
	color: #fff;
	text-shadow: 3.5px 6px 6px rgba(4, 0, 0, 0.2);
	margin-bottom: 40px;
}

.cta-btn {
	text-align: center;
}

/* story ---------------------------------------*/
.story {
	padding: 70px 20px 80px;
	background: url('../img/bg_story.png') no-repeat;
	background-size: 100% auto;
}

.story-inner {
	max-width: 1186px;
	margin: 0 auto;
}

.story-book {
	position: relative;
	max-width: 813px;
	width: 100%;
	margin: 0 auto;
}

.story-book-image {
	width: 100%;
}

.story-book-btn {
	display: inline-block;
	position: absolute;
	bottom: 4%;
	left: 40%;
	width: calc(215 / 813 * 100%);
}

.story-block {
	display: flex;
	max-width: 1150px;
	margin-top: -30px;
}

.story-title {
	width: calc(732 / 1150 * 100%);
	margin: 8% 0 0 1%;
}

.story-image {
	width: calc(281 / 1150 * 100%);
}

.story-member {
	margin: -6% auto 0;
}

.story-member + .story-member {
	margin-top: 80px;
}

.story-member-lead {
	font-size: min(calc(40 / 1186 * 100vw), 40px);
	font-weight: 700;
	line-height: 1.5;
	text-align: center;
	letter-spacing: 0.1em;
	color: #2b2b2b;
	margin-bottom: 30px;
}

.story-member-title {
	width: min(calc(287 / 1186 * 100%), 287px);
	margin-bottom: 24px;
}

.story-member-list {
	display: flex;
	flex-wrap: wrap;
	gap: 40px calc(calc(126 / 4) / 1186 * 100%);
	position: relative;
	z-index: 2;
}

.story-member-list > li {
	display: flex;
	flex-direction: column;
	width: calc(212 / 1186 * 100%);
}

.story-member-list figure {
	width: 100%;
	margin-bottom: 6px;
}

.story-member-list img {
	margin-bottom: 2px;
}

.story-member-list figcaption {
	font-size: min(calc(24 / 1226 * 100vw), 24px);
	font-weight: 500;
	line-height: 1.5;
	text-align: center;
	letter-spacing: 0.1em;
	color: #221815;
}

.story-member-list-text {
	font-size: min(calc(14 / 1226 * 100vw), 14px);
	font-weight: 500;
	line-height: 1.5;
	text-align: center;
	letter-spacing: 0.1em;
	color: #221815;
	margin-bottom: 6px;
}

.story-member-list-link {
	display: block;
	width: fit-content;
	margin: auto auto 0;
	font-size: min(calc(16 / 1226 * 100vw), 16px);
	font-weight: 500;
	line-height: 1.3;
	text-align: center;
	letter-spacing: 0.1em;
	color: #d6616a;
	text-decoration: underline;
}

.story-member-list-link:hover {
	opacity: 1;
	text-decoration: none;
}


/* profile ---------------------------------------*/
.profile {
	background: rgba(238, 238, 238, 0.24);
	padding: 130px 20px 110px;
}

.profile-inner {
	max-width: 1050px;
	margin: 0 auto;
}

.profile-block {
	display: flex;
	justify-content: flex-end;
	gap: calc(64 / 1050 * 100%);
}

.profile-image {
	width: 247px;
}

.profile-summary {
	flex: 1;
	max-width: 590px;
}

.profile-title {
	font-size: 38px;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: 0.1em;
	color: #2c2c2c;
	margin-bottom: 25px;
}

.profile-lead {
	font-size: 14px;
	font-weight: 700;
	line-height: 1.571;
	letter-spacing: 0.1em;
	color: #d6616a;
	margin-bottom: 14px;
}

.profile-text {
	font-size: 14px;
	font-weight: 700;
	line-height: 1.571;
	letter-spacing: 0.1em;
	color: #2c2c2c;
}


/* footer ---------------------------------------*/
.footer {
	padding: 28px 20px 10px;
	background: linear-gradient(-137deg, #e46e85 0%, #cd595a 100%);
}

.footer-inner {
	max-width: 1350px;
	margin: 0 auto;
}

.footer-block {
	display: flex;
	justify-content: space-between;
	gap: 40px;
	margin-bottom: 14px;
}

.footer-title {
	margin-bottom: 14px;
	max-width: 436px;
	width: 100%;
}

.footer-summary {
	margin-right: 10%;
	max-width: 325px;
	width: 100%;
}

.footer-text {
	font-size: min(calc(15 / 810 * 100vw), 15px);
	font-weight: 700;
	line-height: 1.571;
	text-align: center;
	letter-spacing: 0.1em;
	color: #fff;
	margin-bottom: 8px;
}

.footer-btn {
	width: 100%;
}

.copyright {
	display: block;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.333;
	text-align: center;
	letter-spacing: 0.07em;
	color: #fff;
}




/* animation ---------------------------------------*/
.animation {
	transition: all 0.5s ease;
	transform:translate(0,60px);
	opacity:0;
}

.animation.animation-left {
	transform:translate(60px,0);
}

.animation.animation-right {
	transform:translate(-60px,0);
}

.animation.animation-angle {
	transform:translate(-120px, 10px);
}

.animation.on {
	transform:translate(0,0);
	opacity:1;
}



/* pc only */
@media screen and (min-width: 768px){
	.sp{display: none !important;}
	.spbr{display: none;}
}


/* small pc */
@media screen and (min-width: 768px) and (max-width: 1000px){

}


/* sp only */
@media screen and (max-width: 767px){

	/* common item ---------------------------------------*/
	.pc{display: none !important;}
	.pcbr{display: none;}



	/* layout ---------------------------------------*/
	.inner{
		max-width: unset;
	}


	/* btn ---------------------------------------*/
	.btn {
		max-width: 235px;
	}


	/* kv ---------------------------------------*/
	.kv {
		background: url('../img/kv_sp.jpg') no-repeat;
		background-position: top center;
		background-size: 100% auto;
		padding: 0 0 30px;
	}

	.kv-top {
		aspect-ratio: 750 / 970;
	}

	.kv-top-title {
		top: 6.2vw;
		right: 2.5vw;
		width: calc(250 / 375 * 100vw);
	}

	.kv-top-image {
		top: 76vw;
		left: 12.4vw;
		width: calc(158 / 375 * 100vw);
	}

	.kv-top-deco-title {
		top: 60.6vw;
		left: 6vw;
		width: calc(192 / 375 * 100vw);
	}

	.kv-top-deco-text {
		top: 81.8vw;
		left: 51.8vw;
		width: calc(150 / 375 * 100vw);
	}

	.kv-text {
		margin: 0 auto 44px;
		width: calc(294 / 375 * 100vw);
	}

	.kv-schedule {
		margin: 0 auto 32px;
		width: calc(266 / 375 * 100vw);
	}

	.kv-schedule-text {
		font-size: calc(28 / 375 * 100vw);
	}


	/* intro ---------------------------------------*/
	.intro {
		padding: 30px 16px 50px;
	}

	.intro-inner {
		max-width: unset;
	}

	.intro-text {
		font-size: 16px;
		margin-bottom: 10px;
	}

	.intro-title {
		font-size: 24px;
		margin-bottom: 50px;
	}

	.intro-btn {
		margin: 30px auto 50px;
	}

	.intro-lead {
		max-width: 294px;
	}


	/* feature ---------------------------------------*/
	.feature {
		padding: 50px 0;
	}

	.feature-image-01 {
		max-width: 375px;
		margin: 0 auto;
	}

	.feature-image-02 {
		max-width: 375px;
		margin: 0 auto 40px;
	}

	.feature-image-03 {
		max-width: 375px;
		margin: 0 auto 54px;
	}

	.feature-image-04 {
		max-width: 375px;
	}


	/* cta ---------------------------------------*/
	.cta {
		padding: 75px 12px 40px;
		background: url('../img/bg_cta_sp.jpg') no-repeat;
		background-size: cover;
	}

	.cta-title {
		max-width: 348px;
		margin: 0 auto 60px;
	}

	.cta-text {
		max-width: 280px;
		margin: 0 auto 40px;
	}
	
	.cta-list {
		display: block;
		max-width: 273px;
		margin: 0 auto 50px;
	}
	
	.cta-list > li {
		width: 100%;
	}

	.cta-list > li + li {
		margin-top: 24px;
	}

	.cta-lead {
		font-size: min(calc(16 / 375 * 100vw), 16px);
		text-shadow: 2px 3px 3px rgba(4, 0, 0, 0.2);
		margin-bottom: 20px;
	}


	/* story ---------------------------------------*/
	.story {
		padding: 30px 0 60px;
		background: url('../img/bg_story_sp.png') no-repeat;
		background-size: 100% auto;
		background-position: top 66vw right;
	}

	.story-inner {
		max-width: unset;
	}

	.story-book {
		max-width: unset;
		width: calc(339 / 375 * 100vw);
	}

	.story-book-image img {
		width: 100%;
	}

	.story-book-btn-wrapper {
		margin: 30px auto 0;
		text-align: center;
	}

	.story-book-btn {
		position: unset;
		width: calc(215 / 375 * 100vw);
	}

	.story-book-btn img {
		width: 100%;
	}

	.story-block {
		display: block;
		max-width: unset;
		margin-top: 19vw;
	}

	.story-title {
		position: relative;
		z-index: 2;
		width: 100%;
		margin: 0 auto;
	}

	.story-title img {
		width: 100%;
	}

	.story-image {
		position: relative;
		z-index: 1;
		width: calc(162 / 375 * 100vw);
		margin: -85vw 1vw 0 auto;
	}

	.story-image img {
		width: 100%;
	}

	.story-member {
		width: calc(337 / 375 * 100vw);
		margin: -6vw auto 0;
	}
	
	.story-member + .story-member {
		margin-top: 14vw;
	}

	.story-member-lead {
		font-size: calc(26 / 375 * 100vw);
		margin-bottom: 24px;
	}
	
	.story-member-title {
		width: calc(200 / 337 * 100%);
		margin-bottom: 5vw;
	}

	.story-member-title img {
		width: 100%;
	}

	.story-member-list {
		gap: 28px calc(17 / 337 * 100%);
	}

	.story-member-list > li {
		width: calc(160 / 337 * 100%);
	}

	.story-member-list figure {
		margin-bottom: 0.5vw;
	}

	.story-member-list img {
		width: 100%;
		margin-bottom: 0.5vw;
	}

	.story-member-list figcaption {
		font-size: calc(16 / 375 * 100vw);
	}

	.story-member-list-text {
		font-size: calc(14 / 375 * 100vw);
		margin-bottom: 2vw;
	}
	
	.story-member-list-link {
		font-size: calc(14 / 375 * 100vw);
	}


	/* profile ---------------------------------------*/
	.profile {
		padding: 50px 18px;
	}

	.profile-inner {
		max-width: unset;
	}

	.profile-block {
		display: block;
	}

	.profile-image {
		width: 247px;
		margin: 0 auto 16px;
	}

	.profile-summary {
		width: 100%;
		max-width: unset;
	}

	.profile-title {
		margin-bottom: 16px;
	}

	.profile-lead {
		margin-bottom: 16px;
	}

	.profile-text {
		font-size: 16px;
	}


	/* footer ---------------------------------------*/
	.footer {
		padding: 20px 20px 10px;
	}

	.footer-inner {
		max-width: unset;
	}

	.footer-block {
		display: block;
		margin-bottom: 22px;
	}

	.footer-title {
		margin: 0 auto 40px;
		max-width: 314px;
	}

	.footer-summary {
		margin: 0 auto;
		max-width: unset;
	}

	.footer-text {
		font-size: min(calc(14 / 375 * 100vw), 14px);
		margin-bottom: 8px;
	}

	.footer-btn {
		margin: 0 auto;
		max-width: 235px;
	}

}


/* iphone5 iphoneSE用 */
@media screen and (max-width: 370px){

}