@charset "UTF-8";


/* ページ全体調整 
-------------------------------------------------*/

.container_main {
	font-family: "M PLUS Rounded 1c", sans-serif;
}

.container_wrap {
	width: 100%;
	max-width: 1320px;
	margin-right: auto;
	margin-left: auto;
	padding-right: 40px;
	padding-left: 40px;
}

.contents_wrap {
	padding: 0 200px;
}

.contents_wrap.--lg {
	padding: 0 100px;
}

@media screen and (max-width: 750px) {
	.container_wrap {
		padding-right: 0;
		padding-left: 0;
	}

	.contents_wrap,
	.contents_wrap.--lg {
		padding: 0 20px;
	}

	.contents_wrap-sp {
		padding: 0 20px;
	}

	.contents_wrap-sp-0 {
		padding: 0 !important;
	}
}

.container_main p {
	font-size: 1.8rem;
	font-weight: 400;
	color: #000;
	line-height: 1.5;
}

@media screen and (max-width: 750px) {
	.container_main p {
		font-size: 1.4rem;
	}
}

.o-grid {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
}


.o-grid.gap-40 {
	gap: 40px;
}


.o-grid .o-grid-item-6 {
	grid-column: auto / span 6;
}

.o-grid .o-grid-item-4 {
	grid-column: auto / span 4;
}

.o-grid .o-grid-item-12 {
	grid-column: auto / span 12;
}

@media screen and (max-width: 750px) {
	.o-grid .o-grid-item-12-sp {
		grid-column: auto / span 12;
	}

	.o-grid.gap-40 {
		gap: 20px;
	}
}

.o-block-120 {
	padding: 120px 0;
}

.o-block-100 {
	padding: 100px 0;
}

.o-block-80 {
	padding: 80px 0;
}

.o-block-60 {
	padding: 60px 0;
}

.o-block-40 {
	padding: 40px 0;
}

.o-pb120 {
	padding-bottom: 120px;
}

.o-pb300 {
	padding-bottom: 300px;
}

.o-mb80 {
	margin-bottom: 80px;
}

.o-mb60 {
	margin-bottom: 60px;
}

.o-mt60 {
	margin-top: 60px;
}

.o-mb40 {
	margin-bottom: 40px;
}

.o-mt40 {
	margin-top: 40px;
}

.o-mb20 {
	margin-bottom: 20px;
}

.o-mt20 {
	margin-top: 20px;
}

@media screen and (max-width: 750px) {
	.o-block-120 {
		padding: 60px 0;
	}

	.o-block-100 {
		padding: 50px 0;
	}

	.o-block-80 {
		padding: 40px 0;
	}

	.o-block-60 {
		padding: 30px 0;
	}

	.o-block-0-sp {
		padding: 0 !important;
	}

	.o-pb120 {
		padding-bottom: 60px;
	}

	.o-pb300 {
		padding-bottom: 200px;
	}

	.o-mb60 {
		margin-bottom: 30px;
	}

	.o-mb60-sp {
		margin-bottom: 60px;
	}

	.o-mt60 {
		margin-top: 30px;
	}

	.o-mb40 {
		margin-bottom: 20px;
	}

	.o-mt40 {
		margin-top: 20px;
	}

	.o-mb20 {
		margin-bottom: 10px;
	}

	.o-mt20 {
		margin-top: 10px;
	}

	.o-pb300-sp {
		padding-bottom: 300px;
	}
}

/* PARTS
------------------------------------------------- */

.u-font-32 {
	font-size: 32px;
}

.u-font-b {
	font-weight: bold;
}

@media screen and (max-width: 750px) {


	.u-font-32 {
		font-size: 18px;
	}
}

.color-red {
	color: #eb4124 !important;
}

.u-align-center {
	text-align: center;
}




/* MV
------------------------------------------------- */

.container_mv {
	background-color: #F6F5F0;
}

.contents_mv {
	background-image: url(../images/top_bg_pc.png);
	background-size: 120vw 90%;
	background-repeat: no-repeat;
	background-position: center;
	padding: 150px 0;
}

.mv_logo {
	width: 80%;
	height: auto;
}

@media screen and (max-width: 750px) {
	.contents_mv {
		background-image: url(../images/top_bg_sp.png);
		padding: 80px 0;
		background-size: 100vw 100%;
	}
}




/* INTRO
------------------------------------------------- */

.container_intro {
	background-color: #EB6E96;
}

.contents_intro {
	background-image: url(../images/intro_bg.png);
	background-size: 100vw auto;
	background-repeat: no-repeat;
	background-position: bottom;
}

.intro_txt {
	text-align: center;
}

.intro_txt p {
	font-size: 2.0rem;
	color: #fff;
	line-height: 1.7;
	font-weight: 400;
	margin-bottom: 40px;
}

.intro_txt strong {
	font-size: 3.0rem;
	color: #fff;
	line-height: 1.5;
	font-weight: bold;
}

@media screen and (max-width: 750px) {

	.intro_txt {
		padding-bottom: 60px;
	}

	.contents_intro {
		background-size: 200vw auto;
	}

	.intro_txt p {
		font-size: 1.6rem;
		margin-bottom: 20px;
		text-align: left;
	}

	.intro_txt strong {
		font-size: 1.8rem;
		text-align: center;
	}
}




/* brand
------------------------------------------------- */

.container_brand {
	background-color: #F6F5F0;
}

.brand_btn {
	display: inline-block;
	background-color: #fff;
	border-radius: 20px;
	border: solid 2px #00AED9;
	box-shadow: 10px 10px 0px 0px rgba(0, 174, 217, 1);
	position: relative;
	padding: 30px 0;
	text-align: center;
}

.brand_btn:hover {
	transform: translateY(10px);
	box-shadow: none;
	opacity: 0.7;
}

.brand_img {
	display: flex;
	justify-content: center;
	width: 100%;
}

.brand_img img {
	width: 60%;
}

i.blue_arrow {
	position: absolute;
	background-color: #00AED9;
	border-radius: 50vw;
	width: 50px;
	height: 50px;
	top: calc(50% - 25px);
	right: 90px;
	display: flex;
	justify-content: center;
	align-items: center;
}

i.blue_arrow span {
	display: inline-block;
	vertical-align: middle;
	color: #fff;
	line-height: 1;
	width: 12px;
	height: 12px;
	border: 4px solid currentColor;
	border-left: 0;
	border-bottom: 0;
	box-sizing: border-box;
	transform: translateX(-25%) rotate(45deg);
}

@media screen and (max-width: 750px) {
	.brand_btn {
		padding: 15px 20px;
		border-radius: 10px;
		box-shadow: 5px 5px 0px 0px rgba(0, 174, 217, 1);
	}

	.brand_img {
		display: flex;
		justify-content: left;
		width: 100%;
	}

	.brand_img img {
		width: 100%;
	}

	i.blue_arrow {
		right: 20px;
	}

	.brand_btn i.blue_arrow {
		top: 20px;
		right: 20px;
	}
}


/* plan
------------------------------------------------- */

.container_plan {
	background-color: #F6F5F0;
}

.container_plan .o-grid{
	padding: 0 150px;
}


.title_lv1 {
	padding: 20px 0;
	background-image: url(../images/heart.png);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	margin-bottom: 40px;
}

.title_lv1 h1 {
	font-size: 4.3rem;
	font-weight: bold;
	text-align: center;
}

.title_lv1 h1 .blue {
	color: #00AFDA;
}

.title_lv1 h1 .pink {
	color: #EB6E96;
}

.title_lv3 {
	font-size: 2.4rem;
	font-weight: bold;
	color: #EB6E96;
	text-align: center;
}


@media screen and (max-width: 750px) {
	.title_lv1 {
		margin-bottom: 20px;
	}

	.title_lv1 h1 {
		font-size: 3.0rem;
	}

	.title_lv3 {
		font-size: 2.0rem;
	}

	.plan_txt{
		font-size: 1.6rem !important;
	}

	.container_plan .o-grid{
	padding: 0;
	row-gap: 40px;
}
}




/* related
------------------------------------------------- */

.container_related {
	background-color: #F6F5F0;
}

.title_lv2 {
	font-size: 3.2rem;
	font-weight: bold;
	text-align: center;
	color: #EB6E96;
	margin-bottom: 40px;
}

.related_box {
	background-color: #FCE9EF;
	display: flex;
	align-items: center;
}

.related_img {
	width: 40%;
	height: 100%;
}

.related_txt {
	width: 60%;
	height: auto;
	padding: 15px;
}

.related_txt strong {
	font-size: 1.8rem;
	font-weight: bold;
	margin-bottom: 10px;
}

.related_txt p {
	font-size: 1.6rem;
}


@media screen and (max-width: 750px) {
	.title_lv2 {
		font-size: 2.4rem;
		margin-bottom: 20px;
	}


	.related_box {
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.related_img {
		width: 100%;
		height: 70%;
	}

	.related_txt {
		width: 100%;
		height: 30%;
	}

	.related_txt strong {
		font-size: 1.6rem;
	}

	.related_txt p {
		font-size: 1.4rem;
	}

}


/* past
------------------------------------------------- */

.container_past {
	background-color: #F6F5F0;
}

.past_box {
	background-color: #fff;
	border: solid 2px #EB6E96;
	box-shadow: 7px 7px 0px 0px rgba(235, 110, 150, 1);
	padding: 20px;
	display: flex;
	align-items: center;
	position: relative;
}

.past_box:hover {
	transform: translateY(7px);
	box-shadow: none;
	opacity: 0.7;
}

.past_img {
	width: 40%;
	height: auto;
	margin-right: 20px;
}

.past_txt {
	width: 60%;
	height: auto;
	padding: 20px 0;
	padding-right: 50px;
}

.past_txt strong {
	font-size: 1.8rem;
	font-weight: bold;
}

.past_txt p {
	margin-top: 10px;
}

.past_box i.blue_arrow {
	width: 40px;
	height: 40px;
	right: 20px;
	top: calc(50% - 20px);
}

@media screen and (max-width: 750px) {
	.past_box {
		padding: 10px;
		box-shadow: 4px 4px 0px 0px rgba(235, 110, 150, 1);
	}

	.past_txt strong {
		font-size: 1.4rem;
	}

	.past_img {
		margin-right: 10px;
	}

	.past_txt {
		padding: 10px 0;
		padding-right: 40px;
	}

	.past_txt p {
		margin-top: 0;
	}

	.past_box i.blue_arrow {
		width: 30px;
		height: 30px;
		right: 10px;
		top: calc(50% - 15px);
	}
}


.button {
	width: 100%;
	height: auto;
	padding: 10px 20px;
	background-color: #fff;
	border-radius: 50vw;
	border: solid 2px #00AED9;
	box-shadow: 4px 4px 0px 0px rgba(0, 174, 217, 1);
	font-size: 1.8rem;
	color: #00AED9;
	font-weight: bold;
	position: relative;
	display: inline-block;
	text-align: center;
	max-width: 400px;
}

.button i.blue_arrow {
	width: 30px;
	height: 30px;
	right: 10px;
	top: calc(50% - 15px);
}

.button:hover {
	transform: translateY(7px);
	box-shadow: none;
	opacity: 0.7;
}

@media screen and (max-width: 750px){
	.button{
		font-size: 1.6rem;
	}
}








.animation {
	animation: fadeTop .5s ease-out forwards;
}

/* フェードイン */
@-webkit-keyframes fadeIn {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@keyframes fadeIn {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

/* 上方向フェード */
@-webkit-keyframes fadeTop {
	0% {
		transform: translate3d(0, 100px, 0);
		opacity: 0;
	}

	100% {
		transform: translate3d(0, 0, 0);
		opacity: 1;
	}
}

@keyframes fadeTop {
	0% {
		transform: translate3d(0, 100px, 0);
		opacity: 0;
	}

	100% {
		transform: translate3d(0, 0, 0);
		opacity: 1;
	}
}