
main {
	min-width: 375px;
	background: url(../img/contents-bg.png);
	background-repeat: repeat;
	background-size: 200px;
	padding-bottom: 120px;
}


.l-content {
	width: 100%;
	min-width: 375px;
	padding: 16px 0;
}
.l-content-bgimg {
	background: url(../img/contents-bg-cloud.svg);
	background-size: 200vw;
	background-repeat: no-repeat;
	background-origin: border-box;
	background-position: 45% 62vh;
}
@media screen and (max-width: 768px) {
	.l-content-bgimg {
		background: url(../img/contents-bg-cloud.png);
		background-size:450%;
		background-repeat: no-repeat;
		background-origin: border-box;
		background-position: 50% 300px;
	}
}

/* MV */
.c-mv {
	width: 100%;
	margin: 0 auto;
	padding: 0;
	font-family: 'M PLUS Rounded 1c', sans-serif;

}
@media screen and (min-width: 768px) {
	.c-mv {
		max-width: 840px;
	}
}
	.c-mv p {
		width: 220px;
		margin: 0 auto 15px;
		font-size: 0.875rem;
		text-align: center;
		font-weight: bold;
		line-height: 1.25;
		position: relative;
		margin-top: -20px;
	}
	.c-mv p span {
		display: block;
	}
	@media screen and (min-width: 768px) {
		.c-mv p {
			width: 494px;
			font-size: 1.375rem;
			margin-top: -40px;
		}
		.c-mv p span {
			display: inline-block;
		}
	}
	
	.c-mv p::before  {
		content:"";
		background: url(../img/comment.png) no-repeat;
		background-size: 70%;
		position: absolute;
		left: 0;
		top: 0;
		width: 30px;
		height: 31px;
	}
	.c-mv p::after {
		content:"";
		background: url(../img/comment.png) no-repeat;
		background-size: 70%;
		position: absolute;
		width: 30px;
		height: 31px;
		transform: scale(-1, 1);
		right: 0;
		top: 0;
	}
	.c-mv__logo {
		height: 251px;
		background: url(../img/mv-logo-bg.png) no-repeat;
		background-size: 100%;
		position: relative;
	}
	@media screen and (max-width: 560px) {
		.c-mv__logo {
			height: 18vh;
			background-size: 100%;
		}
	}
	.image {
		position: absolute;
		width: 100%;
		opacity: 0;
		animation: change-img-anim 10s infinite;
	}
		.image:nth-of-type(1) {
		animation: change-img-anim-first 10s infinite;
		  animation-delay: 0s;
		}
		.image:nth-of-type(2) {
			animation-delay: 5s;
		}
		@keyframes change-img-anim-first {
			0%{ opacity: 0;}
			20%{ opacity: 0;}
			50%{ opacity: 1;}
		  60%{ opacity: 1;}
		  80%{ opacity: 0;}
		  100%{ opacity: 0;}
		}
		@keyframes change-img-anim {
		  0%{ opacity: 0;}
		  20%{ opacity: 0;}
		  50%{ opacity: 1;}
		  60%{ opacity: 1;}
		  80%{ opacity: 0;}
		  100%{ opacity: 0;}
		}
	.c-mv__book {
		width:270px;
		margin: 0 auto;
		position: relative;
	}
	.c-mv__book img {
		width: 100%;
	}
	.c-mv__book::before {
		content:"";
		background: url(../img/ashirai.png) no-repeat;
		background-size: cover;
		position: absolute;
		left: -50px;
		top: -35px;
		width: 70px;
		height: 70px;
	}
	.c-mv__book::after {
		content:"";
		background: url(../img/ashirai.png) no-repeat;
		background-size: cover;
		position: absolute;
		right: -50px;
		top: -35px;
		width: 70px;
		height: 70px;
		transform: scale(-1, 1);
	}
	@media screen and (min-width: 768px) {
		.c-mv__book {
			width:400px;
		}
		.c-mv__book::before {
			top: -10px;
			left: -50px;
			width: 70px;
			height: 70px;
		}
		.c-mv__book::after {
			top: -10px;
			right: -50px;
			width: 70px;
			height: 70px;
		}
	}

.c-main-book {
	width: 340px;
	margin: 0 auto 32px;
	border-radius: 24px;
	border: solid 5px #0180CB;
	background-color:rgba(255,255,255,0.85);
	padding: 20px;
	text-align: center;
}
	@media screen and (min-width: 768px) {
		.c-main-book {
			width: 560px;
		}
	}
.c-main-book-list {
	display: flex;
	justify-content:space-around;
}
	.c-main-book-list li {
		width: 45%;
		
	}
	.c-main-book-list p {
		width: 80%;
		font-size: 0.85rem;
		line-height: 1.5rem;
		vertical-align: middle;
		background: #ED377D;
		display: inline-block;
		border-radius: 50px;
		color: #fff;
		font-weight: bold;
	}
	.c-main-book-list__middle p {
		background: #0180CB;
	}
	.c-main-book-list img {
		width: 80%;
		margin: 8px auto;
	}
	.c-main-book-list a {
		width: 100%;
		border-radius: 7px;
		background-color: #ED367D;
		padding:5px;
		display: inline-block;
		color: #fff;
		position: relative;
		font-size: 0.8rem;
		font-weight:bold;
	}
	.c-main-book-list a::after {
		content: '';
		width: 8px;
		height: 8px;
		border-top: solid 2px #fff;
		border-right: solid 2px #fff;
		position: absolute;
		right: 12px;
		top:0;
		bottom:0;
		margin: auto 0;
		transform: rotate(45deg);
	}
	.c-main-book-list .c-main-book-list__middle a {
		background-color: #0180CB;
	}
	@media screen and (min-width: 768px) {
		.c-main-book-list p {
			width: 122px;
			height: 30px;
			line-height: 30px;
		}
		.c-main-book-list a {
			font-size: 1.125rem;
		}
	}

	.c-content__white {
		width: 760px;
		margin: 0 auto;
		background-color: #fff;
		border-radius: 24px;
		padding: 24px;
		box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
		display: flex;
		flex-direction: column;
	}
	@media screen and (max-width: 768px) {
		.c-content__white {
			width: 90vw;
		}
	}
	.c-content__white h2,
	.l-content-link h2 {
		font-family: 'Zen Maru Gothic', serif;
		font-size: 1.8rem;
		text-align: center;
		margin: 0 auto 20px;
		text-decoration-line: underline;
		text-decoration-thickness: .5em;
		text-underline-offset: -.3em;
  	 text-decoration-skip-ink: none;
		text-decoration-color: rgba(255, 234, 97, 1);
		display: inline;
	}
	.c-content__white h3 {
		color: #0080CB;
		font-weight: bold;
		font-size: 1.25rem;
		margin-bottom: 20px;
	}
.p-recommend__title {
	width: 280px;
	border-radius: 50px;
	background-color: #333333;
	padding:5px;
	display: inline-block;
	color: #fff;
	position: relative;
	font-size: 1.125rem;
	font-weight:bold;
	text-align: center;
	margin: 20px auto;
}
.p-recommend ul {
	display: flex;
	justify-content: space-around;
}
	.p-recommend ul li {
		width: 130px;
		text-align: center;
		font-size: 0.875rem;
	}
	.p-recommend ul li p:first-child {
		font-weight: bold;
		font-size: 1.125rem;
	}
	.p-recommend ul li img {
		width: 100%;
		margin-bottom: 8px;
	}
	.p-recommend .c-content__white {
		padding: 40px 120px;
		position: relative;
	}
	.p-recommend .c-content__white::before {
		content:'';
		width: 128px;
		height:125px;
		background: url(../img/curio1.png) no-repeat;
		background-size: cover;
		position: absolute;
		right: -20px;
		top: -20px;
	}
	@media screen and (max-width: 768px) {
		.p-recommend .c-content__white {
			margin-top: 40px;
			padding: 40px 20px;
		}
		.p-recommend .c-content__white::before {
			width: 90px;
			height:90px;
			right: 0;
			left: 0;
			top: -60px;
			margin: 0 auto;
		}
	}

.c-contents__text {
	width: 100%;
	background-color: #E4F5FA;
	margin: 0 auto;
}
.c-contents__text-grad {
	width: 100%;
	background: linear-gradient(180deg, rgb(228, 244, 250), rgb(252, 250, 229));
	margin: 0 auto;
}
.c-contents__text p,
.c-contents__text-grad p {
	width: 300px;
	display: block;
	position: relative;
	text-align: center;
	font-family: 'Zen Maru Gothic', serif;
	font-size: 1.5rem;
	margin: 0 auto;
	padding: 32px 0;
}
.c-contents__text p::before,
.c-contents__text-grad p::before {
	content: "";
	position: absolute;
	width: 50px;
	height: 50px;
	left: 0;
	background: url(../img/arrow.png) no-repeat;
	background-size: 50%;
}
.c-contents__text p::after,
.c-contents__text-grad p::after {
	content: "";
	position: absolute;
	width: 50px;
	height: 50px;
	right: 0;
	background: url(../img/arrow.png) no-repeat;
	background-position: right 0;
	background-size: 50%;
}

.p-question {
	position: relative;
	background-color:#E4F4FA;
}
.p-question ul {
	width: 1500px;
	padding: 0 24px;
	display: flex;
	justify-content: space-around;
	gap: 20px;
	margin: 0 auto;
}
	.p-question ul li img {
		margin: 16px 0;
	}
	.p-question ul li {
		width: 28%;
		min-width: 300px;
	}
	.p-question .p-question__title {
		font-size: 1.25rem;
		font-weight: bold;
		text-align: center;
		margin-bottom: 8px;
	}
	.p-question-bg {
		background: #F0FCFD!important;
	}

.l-content-solution {
	background-color: #FCFAE5;
	overflow: hidden;
	position: relative;
}

.p-solution .c-content__white {
	margin-bottom: 56px;
}
.p-solution p {
	text-align: center;
	margin-bottom: 16px;
}
.p-solution p img{
	margin: 10px auto;
}
.p-solution .c-content__white li {
	border-bottom: 2px dashed #909090;
	margin-bottom: 40px;
}
	.p-solution .c-content__white li:last-child {
		border: none;
		margin-bottom: 20px;
	}
.p-solution__text {
	font-weight: bold;
}
.p-solution__text::before {
	content:'＼';
}
.p-solution__text::after {
	content:'／';
}
.p-solution__img {
	margin: 0 auto 64px;
}
.p-solution__title {
	font-size: 1.25rem;
	font-weight: bold;
	margin-bottom: 8px;
}
	.solution1::before {
		content: "1";
		width: 30px;
		height: 30px;
		margin: 0 auto 8px;
		display: block;
		color: #FFEC61;
		background-color: #333333;
		border-radius: 30px;
	}
	.solution2::before {
		content: "2";
		width: 30px;
		height: 30px;
		margin: 0 auto 8px;
		display: block;
		color: #FFEC61;
		background-color: #333333;
		border-radius: 30px;
	}
	.solution3::before {
		content: "3";
		width: 30px;
		height: 30px;
		margin: 0 auto 8px;
		display: block;
		color: #FFEC61;
		background-color: #333333;
		border-radius: 30px;
	}
	.p-solution .c-content__white {
		position: relative;
	}
	.p-solution .c-content__white::before {
		content:'';
		width: 100px;
		height:120px;
		background: url(../img/curio2.png) no-repeat;
		background-size: contain;
		position: absolute;
		left: -20px;
		top: -20px;
	}
	@media screen and (max-width: 768px) {
		.p-solution .c-content__white {
			margin-top: 40px;
			padding: 40px 16px ;
		}
		.p-solution .c-content__white::before {
			width: 90px;
			height:90px;
			right: 0;
			left:auto;
			top: -50px;
			margin: 0 auto;
			padding: 5px;
			transform:rotate(20deg); 
		}
	}


.c-buttons {
	margin-bottom: 32px;
}
.c-buttons ul {
	width: 100vw;
	max-width: 1000px;
	margin: 0 auto;
	display: flex;
	gap: 20px;
	justify-content: space-around;
}
.c-buttons ul li {
	margin:0;
}
@media screen and (max-width: 768px) {
	.c-buttons ul {
		width: 90vw;
	}
}
	.c-buttons ul li {
		width: 100%;
		font-weight: bold;
		color: #fff;
		padding: 8px;
		border-radius: 5px;
	}
	.c-buttons .c-buttons__elementary {
		background: #ED367D;
	}
	.c-buttons .c-buttons__middle {
		background: #0180CB;
	}
	.c-buttons ul li a {
		width: 100%;
		height: 100%;
		position: relative;
		display: inline-block;
		padding: 16px 20px;
		font-size: 1.4rem;
	}
	@media screen and (max-width: 768px) {
		.c-buttons ul li a {
			padding: 0;
			font-size: 1rem;
		}
	}
	.c-buttons ul li a::after {
		content: '';
		width: 14px;
		height: 14px;
		border-top: solid 2px #fff;
		border-right: solid 2px #fff;
		position: absolute;
		right: 20px;
		top:0;
		bottom:0;
		margin: auto 0;
		transform: rotate(45deg);
	}
	@media screen and (max-width: 768px) {
		.c-buttons ul li a::after {
			right:5px;
		}
	}

.l-content-history {
	background-color: #E7F6EE;
	padding: 40px 0;
	overflow: hidden;
	position: relative;
}
.p-history {
}
	.p-history h2 {
		position: relative;
		text-align: center;
		font-family: 'Zen Maru Gothic', serif;
		font-size: 1.8rem;
		padding: 40px 0 8px;
	}
	.p-history h2::before {
		content:'';
		width: 153px;
		height: 31px;
		background: url(../img/history.png) no-repeat;
		background-size: cover;
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		margin: 0 auto;
	}
	.p-history h2 span {
		font-size: 1.6rem;
	}
	.p-history p {
		text-align: center;
		position: sticky;
	}
	.p-history .p-history__curio {
		width: 379px;
		position: absolute;
		right: -4vw;
		top: 50px;
	}
	@media screen and (max-width: 1100px){
		.p-history .pc {
			display: none;
		}
	}
	@media screen and (max-width: 1099px){
		.p-history .sp {
			max-width: 375px;
			margin: 0 auto;
			display: block;
		}
	}
.c-contents__history {
	width: 90vw;
	margin: 40px auto;
	background: #fff;
	padding: 40px 0;
	border-radius: 7px;
	border: solid #1D884B 2px;
}
.c-contents__history ul {
	width: 90%;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 40px;
}
.c-contents__history ul li {
	width: 114px;
	height: 240px;
	text-align: center;
	font-size: 1.25rem;
	font-weight: bold;
	color: #fff;
}
.c-contents__history ul li img {
	margin-bottom: 16px;
}
.c-contents__history ul li p {
	background-color: #DD2292;
	padding: 2px 20px;
	border-radius: 30px;
	display: inline-block;
}
.c-contents__history h3 {
	font-family: 'Zen Maru Gothic', serif;
	font-size: 1.8rem;
	text-align: center;
	margin: 0 auto 20px;
	text-decoration-line: underline;
	text-decoration-thickness: .5em;
	text-underline-offset: -.3em;
	text-decoration-skip-ink: none;
	text-decoration-color: #F5BDDE;
	display: block;
}
.history-middle h3 {
	text-decoration-color: #B2D9EF;
}
.history-middle ul li p {
	background-color: #0080CB;
}
	@media screen and (max-width: 768px) {
		.c-contents__history h3 {
			font-size: 1.5rem;
		}
		.history-scroll ul {
			width: 1700px;
			display: flex;
			flex-direction: row;
		}
		.history-scroll-middle ul {
			width: 1550px;
			display: flex;
			flex-direction: row;
		}
	}
	.c-contents__history .scroll-hint.is-right-scrollable {
		background: none;

	}
.middle h3 {
	text-decoration-color: #B2D9EF;
}
.middle ul li p {
	background-color: #0080CB;
}

.l-content-qa {
	background-color: #F6F6F6;
	margin: 0 0 54px;
	padding: 40px 0;
	overflow: hidden;
	position: relative;
	text-align: center;
}
	.l-content-qa h2 {
		font-size: 1.5rem;
		border-top: 1px solid #333;
		border-bottom: 1px solid #333;
		display: inline-block;
		margin: 30px 0;
		padding:  4px 4rem 8px;
	}
	.l-content-qa h3 {
		position: relative;
		padding-bottom: 8px;
	}
	.l-content-qa h3::before {
		padding-right: 0.3rem;
	}
	.p-qa-list {
		width: 760px;
		padding: 40px 64px;
		margin: 0 auto 20px;
		background: #fff;
		box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
		color: #333333;
		text-align: left;
		display: flex;
		gap: 10px;
		flex-direction: column;
	}
	@media screen and (max-width: 768px) {
		.p-qa-list {
			width: 90vw;
			padding: 16px;
			font-size: 0.875rem;

		}
	}
	.p-qa-list p {
		font-size: 0.875rem;
		margin-bottom: 16px;
	}

.l-content-link {
	width: 760px;
	margin: 40px auto 0;
	text-align: center;
}
@media screen and (max-width: 768px) {
	.l-content-link {
		width: 90vw;
	}
}
.l-content-link h2 {
	margin: 40px 0 30px;
	display: inline-block;
}
.l-content-link ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	gap: 20px;
}
.l-content-link ul li {
	width: 45%;
	max-width: 370px;
}
@media screen and (max-width: 768px) {
	.l-content-link ul li {
		min-width: 358px;
	}
}
.l-content-link h3 {
	position: relative;
}
.title {
    position: relative;/*+マークの位置基準とするためrelative指定*/
    cursor: pointer;
    transition: all .5s ease;
}
	/*アイコンの＋と×*/
.title::before,
.title::after{
    position: absolute;
    content:'';
    width: 15px;
    height: 2px;
    background-color: #333;
    
}
.title::before{
    top: 45%;
    right: 15px;
    transform: rotate(0deg);
    
}
.title::after{    
    top: 45%;
    right: 15px;
    transform: rotate(90deg);

}

/*　closeというクラスがついたら形状変化　*/

.title.close::before{
	transform: rotate(45deg);
}

.title.close::after{
	transform: rotate(-45deg);
}

/*アコーディオンで現れるエリア*/
.box {
    display: none;/*はじめは非表示*/
	line-height: 1.5;
	border-top:#AAAAAA 1px solid;
	padding-top: 16px;

}

@media screen and (max-width: 768px) {
	.title {
		padding-right: 50px;
	}
}






















.button,
.button--green {
	background-color: #5a2800;
	border-radius: 0.375rem;
	color: #fff;
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 600;
	line-height: 1;
	padding: 0.75rem 0;
	text-align: center;
	width: 10.25rem;
}

.button--green {
	background-color: #00b900;
	text-transform: uppercase;
}

.concept__content {
	background-color: #fbf0e7;
	margin-top: 1.125rem;
	padding: 1.875rem 1.125rem;
}

.concept__body {
	align-items: center;
	display: flex;
	flex-direction: column;
}

.concept__item1 {
	align-items: flex-start;
	margin-left: -0.75rem;
	margin-top: 1.8125rem;
	max-width: 18.375rem;
}

.concept__item1 img {
	-o-object-fit: cover;
	aspect-ratio: 587/286;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.concept__item2 {
	margin-right: -0.3125rem;
	margin-top: 2rem;
	max-width: 19.4375rem;
}

.concept__item2 img {
	-o-object-fit: cover;
	aspect-ratio: 622/313;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.concept__item3 {
	margin-left: -0.1875rem;
	margin-top: 1.875rem;
	max-width: 18.875rem;
}

.concept__item3 img {
	-o-object-fit: cover;
	aspect-ratio: 604/375;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.contents__content {
	background-color: #fbf0e7;
	margin-top: 1.125rem;
	padding: 1.875rem 1rem 2.5rem;
}

.contents__head {
	margin-left: auto;
	margin-right: auto;
	max-width: 99%;
}

.contents__tab {
	margin-top: 1.8125rem;
}

.cta-button,
.cta-button--line {
	background-color: #358f2b;
	box-shadow: 0 0.3125rem 0 #25641e;
	color: #fff;
	display: inline-block;
	font-size: 1.25rem;
	font-weight: 600;
	letter-spacing: 0.024em;
	line-height: 1;
	/*max-width: 15.375rem;*/
	padding: 0.75rem 0;
	text-align: center;
	transition: 0.2s;
	width: 100%;
}

.cta-button span,
.cta-button--line span {
	padding-left: 1.25rem;
	position: relative;
}

.cta-button span::before,
.cta-button--line span::before {
	-webkit-clip-path: polygon(0 0, 0 100%, 100% 50%);
	background-color: #fff;
	clip-path: polygon(0 0, 0 100%, 100% 50%);
	content: "";
	height: 1rem;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 0.6875rem;
}

.cta-button--line {
	text-transform: uppercase;
}

.description__content {
	background-color: #fbf0e7;
	margin-top: 1.125rem;
	padding: 1.875rem 1.125rem 13.125rem;
}

.description__step,
.description__step--third,
.description__step--second {
	align-items: center;
	display: flex;
	flex-direction: column;
	margin-top: 2rem;
}

.description__step-title {
	color: #105da3;
	font-size: 1.25rem;
	font-weight: 600;
	line-height: 1.35;
	text-transform: uppercase;
}

.description__step-body {
	display: grid;
	justify-content: center;
	margin-top: 0.875rem;
	position: relative;
}

.description__step-body:not(:first-child) {
	margin-top: 1.25rem;
}

.description__step-img {
	border: 1px solid #a5a5a5;
	max-width: 18.25rem;
}

.description__step img,
.description__step--third img,
.description__step--second img {
	-o-object-fit: cover;
	aspect-ratio: 292/357;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.description__point {
	bottom: -6.75rem;
	max-width: 17rem;
	position: absolute;
	right: -0.5rem;
}

.description__point img {
	-o-object-fit: cover;
	aspect-ratio: 272/209;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.description__point::before {
	color: #105da3;
	content: attr(data-point);
	font-size: 1rem;
	font-weight: 600;
	height: auto;
	left: 13%;
	line-height: 1;
	position: absolute;
	top: 78%;
	width: -moz-fit-content;
	width: fit-content;
}

.description__illustrators {
	margin-top: 7.8125rem;
}

.description__illust-title {
	align-items: center;
	color: #105da3;
	display: flex;
	font-size: 1.125rem;
	font-weight: 600;
	justify-content: center;
	line-height: 1.3333333333;
}

.description__illust-title::before,
.description__illust-title::after {
	background: #0068b5;
	content: "";
	height: 0.1875rem;
	width: 1.375rem;
}

.description__illust-title::before {
	margin-right: 0.625rem;
}

.description__illust-title::after {
	margin-left: 0.625rem;
}

.description__illust {
	margin-top: 0.9375rem;
	max-width: 19.1875rem;
}

.description__illust img {
	-o-object-fit: cover;
	aspect-ratio: 307/228;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.description__icon {
	margin-top: 2.5rem;
	width: 2.8125rem;
}

.description__icon img {
	-o-object-fit: contain;
	aspect-ratio: 45/33;
	height: 100%;
	object-fit: contain;
	width: 100%;
}

.description__step--second .description__point {
	bottom: -7rem;
	max-width: 16.125rem;
	right: 0;
}

.description__step--second .description__point img {
	aspect-ratio: 516/374;
}

.description__step--second .description__point::before {
	content: attr(data-point);
	left: 8%;
	top: 75%;
}

.description__step--second .description__icon {
	margin-top: 9.375rem;
}

.description__step--third .description__point {
	bottom: -8.75rem;
	left: -0.25rem;
	max-width: 16.4375rem;
	right: auto;
	right: initial;
}

.description__step--third .description__point img {
	aspect-ratio: 526/430;
}

.description__step--third .description__point::before {
	content: attr(data-point);
	left: 30%;
	line-height: 1.3333333333;
	text-align: center;
	top: 72%;
	width: 9.0625rem;
}

.footer {
	background-image: linear-gradient(to bottom, transparent 0%,transparent 55%, #fbf0e7 55%, #fbf0e7 100%);
	background-image: linear-gradient(to bottom, transparent 0% 55%, #fbf0e7 55% 100%);
}
.footer__pagetop {
	width: 60px;
	height: 60px;
	bottom: 20px;
}

.footer__body {
	position: relative;
}

.footer__icon {
	margin-left: auto;
	max-width: 13.3125rem;
	position: absolute;
	right: calc(50% - 9.8125rem);
	top: -6.25rem;
}

.footer__icon img {
	-o-object-fit: cover;
	aspect-ratio: 213/56;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.footer__img {
	bottom: 2.1875rem;
	left: 43%;
	margin-top: 0.4375rem;
	max-width: 16.75rem;
	position: relative;
	transform: translateX(-50%);
}

.footer__img img {
	-o-object-fit: cover;
	aspect-ratio: 268/177;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.footer__copyright {
	background-color: #fff;
	border-top: 1px solid #707070;
	height: 3.5625rem;
	padding-top: 0.625rem;
	text-align: center;
}

.footer__copyright small {
	color: #333;
	font-size: 0.75rem;
	font-weight: 400;
	line-height: 1.3333333333;
}

.head,
.head--magenta,
.head--green,
.head--blue,
.head--orange {
	background-image: url("../../assets/images/bg-head.webp");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.1294117647));
	padding: 0.6875rem 1.5rem;
	text-align: center;
}

.head__text {
	color: #fc6c08;
	font-size: 1.0625rem;
	font-weight: 600;
	line-height: 1.5294117647;
}

.head--orange .head__text {
	color: #fc6c07;
}

.head--blue .head__text {
	color: #0068b5;
}

.head--green .head__text {
	color: #16a63c;
}

.head--magenta .head__text {
	color: #d8004b;
}

.header {
	background-color: #fff;
	border-bottom: 1px solid #333;
	left: 0;
	padding: 0.75rem 0 0.6875rem;
	/*position: fixed;*/
	right: 0;
	top: 0;
	z-index: 900;
}

.header__inner {
	align-items: center;
	display: flex;
	padding: 0 0.5rem;
}

.header__logo {
	display: flex;
}

.header__logo a {
	display: inline-block;
	height: inherit;
	width: 7.5rem;
}

.header__logo img {
	-o-object-fit: contain;
	aspect-ratio: 120/51;
	height: 100%;
	object-fit: contain;
	width: 100%;
}

.header__buttons {
	display: flex;
	flex-direction: column;
	margin-left: auto;
}

.inner {
	margin-left: auto;
	margin-right: auto;
	max-width: 36.25rem;
	padding-left: 16px;
	padding-right: 16px;
	width: 100%;
}

.lineup__inner.inner {
	padding: 0 2.375rem;
}

.lineup__content {
	margin-left: auto;
	margin-right: auto;
	margin-top: 1.75rem;
}

.lineup__images {
	grid-gap: 0.625rem;
	display: grid;
	gap: 0.625rem;
	grid-template-columns: repeat(2, 1fr);
	justify-content: center;
	padding: 0 0.5rem;
}

.lineup__img {
	border: 1px solid #707070;
	box-shadow: 0 3px 5px rgba(0, 0, 0, 0.06);
}

.lineup__img img {
	-o-object-fit: cover;
	aspect-ratio: 272/332;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.lineup__works-wrap {
	margin-top: 2rem;
}

.lineup__works-read {
	margin-left: 1rem;
	max-width: 14.875rem;
}

.lineup__works-read img {
	-o-object-fit: cover;
	aspect-ratio: 238/42;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.lineup__works-title {
	margin-left: 1rem;
	margin-top: 1rem;
	max-width: 15.75rem;
}

.lineup__works-title img {
	-o-object-fit: cover;
	aspect-ratio: 252/89;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.lineup__text-wrap {
	background-color: #fdf2f6;
	margin-top: 1.5625rem;
	padding: 1.25rem 2.25rem 1.5625rem;
}

.lineup__text {
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.3125;
}

.lineup__cta-block {
	background-color: #d0e2cd;
	margin-top: 6.25rem;
	padding: 2.4375rem 2.375rem;
	position: relative;
	text-align: center;
}

.lineup__cta-block::after {
	background-image: url("../../assets/images/icon-hand.svg");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	bottom: -1.5625rem;
	content: "";
	height: 5.1875rem;
	position: absolute;
	right: 0.625rem;
	width: 5.3125rem;
}

.lineup__cta-body {
	background-color: #fff;
	padding: 3.125rem 1.6875rem 2.5rem;
}

.lineup__cta-head {
	font-size: 1.125rem;
	font-weight: 600;
	letter-spacing: 0.064em;
	line-height: 1.3333333333;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	width: -moz-fit-content;
	width: fit-content;
}

.lineup__cta-head::before {
	background-image: url("../../assets/images/icon-cart.svg");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	height: 1.375rem;
	left: 50%;
	position: absolute;
	top: -1.75rem;
	transform: translateX(-50%);
	width: 1.5rem;
}

.lineup__cta-head::after {
	background-image: url("../../assets/images/icon-deco.svg");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	height: 1.75rem;
	position: absolute;
	right: -1.5625rem;
	top: -1.375rem;
	width: 1.8125rem;
}

.lineup__cta-buttons {
	margin-top: 1rem;
}

.lineup__cta-button {
	flex: 1;
}

.lineup__cta-button:not(:first-child) {
	margin-top: 1.8125rem;
}
.nav__items {
	grid-gap: 0.125rem;
	display: grid;
	gap: 0.125rem;
	grid-template-columns: repeat(2, 1fr);
}

.nav__item,
.nav__item--magenta,
.nav__item--green,
.nav__item--blue,
.nav__item--orange {
	background-color: #fc6c08;
	color: #fff;
	font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
	font-weight: 400;
	letter-spacing: 0.1em;
	text-align: center;
	text-transform: uppercase;
	transition: opacity 0.3s;
}

.nav__item--orange {
	background-color: #fc6c07;
}

.nav__item--blue {
	background-color: #0068b5;
}

.nav__item--green {
	background-color: #16a63c;
}

.nav__item--magenta {
	background-color: #d8004b;
}

.nav__item a,
.nav__item--orange a,
.nav__item--blue a,
.nav__item--green a,
.nav__item--magenta a {
	display: block;
	font-size: 1rem;
	font-weight: 600;
	line-height: 1;
	padding: 0.8125rem 0 0.75rem;
}

.nav__item span,
.nav__item--orange span,
.nav__item--blue span,
.nav__item--green span,
.nav__item--magenta span {
	display: block;
	font-size: 0.625rem;
	font-weight: 600;
	line-height: 1;
	margin-top: 0.25rem;
}

.pagetop {
	bottom: 5.5rem;
	height: 3rem;
	padding: 0;
	position: fixed;
	right: 0.75rem;
	width: 3rem;
	z-index: 100;
}

.pagetop img {
	-o-object-fit: contain;
	aspect-ratio: 179/198;
	height: 100%;
	object-fit: contain;
	width: 100%;
}

.section-title,
.section-title--magenta,
.section-title--green,
.section-title--blue,
.section-title--orange {
	align-items: center;
	display: grid;
	justify-items: center;
	place-items: center;
}

.section-title__en {
	align-items: center;
	display: flex;
	font-size: 1.5rem;
	justify-content: center;
	letter-spacing: 0.1em;
	line-height: 1;
	text-transform: uppercase;
}

.section-title__en::before,
.section-title__en::after {
	background: #fc6c07;
	content: "";
	height: 0.125rem;
	width: min(12.9411764706vw, 3.4375rem);
}

.section-title__en::before {
	margin-right: 1.25rem;
}

.section-title__en::after {
	margin-left: 1.25rem;
}

.section-title__ja {
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: 0.15em;
	line-height: 1.3571428571;
	margin-top: 0.25rem;
}

.section-title--orange .section-title__en::before,
.section-title--orange .section-title__en::after {
	background-color: #fc6c07;
}

.section-title--blue .section-title__en::before,
.section-title--blue .section-title__en::after {
	background-color: #0068b5;
}

.section-title--green .section-title__en::before,
.section-title--green .section-title__en::after {
	background-color: #16a63c;
}

.section-title--magenta .section-title__en::before,
.section-title--magenta .section-title__en::after {
	background-color: #d8004b;
}

.tab__menu {
	display: flex;
	gap: 0.125rem;
	justify-content: center;
}

.tab__menu-item,
.tab__menu-item--magenta,
.tab__menu-item--green,
.tab__menu-item--blue,
.tab__menu-item--orange {
	background-color: #fc6c08;
	color: #fff;
	cursor: pointer;
	flex: 1;
	font-size: 1.5rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	line-height: 1;
	opacity: 0.55;
	padding: 1.4375rem 0 1.25rem;
	text-align: center;
	transition: opacity 0.3s;
}

.tab__menu-item.is-active,
.is-active.tab__menu-item--magenta,
.is-active.tab__menu-item--green,
.is-active.tab__menu-item--blue,
.is-active.tab__menu-item--orange {
	opacity: 1;
}

.tab__content {
	background-color: #fff;
	background-position: right -0.625rem bottom -0.75rem;
	background-repeat: no-repeat;
	background-size: auto;
	border: 2px solid #fc6c08;
	padding: 0.875rem 1rem 2.375rem 1.1875rem;
}

.tab__content {
	display: none;
}

.tab__content.is-active {
	animation: fade 0.3s;
	display: block;
}

.tab__content-item {
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-size: 1rem;
	line-height: 1.25;
	margin-top: 1rem;
	padding-left: 1.75rem;
	position: relative;
}

.tab__content-item::before {
	background-repeat: no-repeat;
	background-size: 100%;
	content: "";
	display: inline-block;
	height: 1.375rem;
	left: 0;
	position: absolute;
	top: 0;
	width: 1.25rem;
}

.tab__text,
.tab__content--magenta .tab__text,
.tab__content--orange .tab__content--magenta .tab__text,
.tab__content--magenta .tab__content--orange .tab__text,
.tab__content--blue .tab__content--magenta .tab__text,
.tab__content--magenta .tab__content--blue .tab__text,
.tab__content--orange .tab__content--blue .tab__content--magenta .tab__text,
.tab__content--magenta .tab__content--orange .tab__content--blue .tab__text,
.tab__content--blue .tab__content--orange .tab__content--magenta .tab__text,
.tab__content--magenta .tab__content--blue .tab__content--orange .tab__text,
.tab__content--green .tab__content--magenta .tab__text,
.tab__content--magenta .tab__content--green .tab__text,
.tab__content--orange .tab__content--green .tab__content--magenta .tab__text,
.tab__content--magenta .tab__content--orange .tab__content--green .tab__text,
.tab__content--green .tab__content--orange .tab__content--magenta .tab__text,
.tab__content--magenta .tab__content--green .tab__content--orange .tab__text,
.tab__content--blue .tab__content--green .tab__content--magenta .tab__text,
.tab__content--magenta .tab__content--blue .tab__content--green .tab__text,
.tab__content--green .tab__content--blue .tab__content--magenta .tab__text,
.tab__content--magenta .tab__content--green .tab__content--blue .tab__text,
.tab__content--orange .tab__content--blue .tab__content--green .tab__content--magenta .tab__text,
.tab__content--magenta .tab__content--orange .tab__content--blue .tab__content--green .tab__text,
.tab__content--green .tab__content--orange .tab__content--blue .tab__content--magenta .tab__text,
.tab__content--magenta .tab__content--green .tab__content--orange .tab__content--blue .tab__text,
.tab__content--blue .tab__content--orange .tab__content--green .tab__content--magenta .tab__text,
.tab__content--magenta .tab__content--blue .tab__content--orange .tab__content--green .tab__text,
.tab__content--green .tab__content--blue .tab__content--orange .tab__content--magenta .tab__text,
.tab__content--magenta .tab__content--green .tab__content--blue .tab__content--orange .tab__text,
.tab__content--green .tab__text,
.tab__content--green .tab__content--magenta .tab__text,
.tab__content--magenta .tab__content--green .tab__text,
.tab__content--green .tab__content--orange .tab__content--magenta .tab__text,
.tab__content--orange .tab__content--magenta .tab__content--green .tab__text,
.tab__content--green .tab__content--magenta .tab__content--orange .tab__text,
.tab__content--magenta .tab__content--orange .tab__content--green .tab__text,
.tab__content--green .tab__content--blue .tab__content--magenta .tab__text,
.tab__content--blue .tab__content--magenta .tab__content--green .tab__text,
.tab__content--green .tab__content--magenta .tab__content--blue .tab__text,
.tab__content--magenta .tab__content--blue .tab__content--green .tab__text,
.tab__content--green .tab__content--orange .tab__content--blue .tab__content--magenta .tab__text,
.tab__content--orange .tab__content--blue .tab__content--magenta .tab__content--green .tab__text,
.tab__content--green .tab__content--magenta .tab__content--orange .tab__content--blue .tab__text,
.tab__content--magenta .tab__content--orange .tab__content--blue .tab__content--green .tab__text,
.tab__content--green .tab__content--blue .tab__content--orange .tab__content--magenta .tab__text,
.tab__content--blue .tab__content--orange .tab__content--magenta .tab__content--green .tab__text,
.tab__content--green .tab__content--magenta .tab__content--blue .tab__content--orange .tab__text,
.tab__content--magenta .tab__content--blue .tab__content--orange .tab__content--green .tab__text,
.tab__content--green .tab__content--magenta .tab__text,
.tab__content--magenta .tab__content--green .tab__text,
.tab__content--orange .tab__content--green .tab__content--magenta .tab__text,
.tab__content--magenta .tab__content--orange .tab__content--green .tab__text,
.tab__content--green .tab__content--orange .tab__content--magenta .tab__text,
.tab__content--magenta .tab__content--green .tab__content--orange .tab__text,
.tab__content--blue .tab__content--green .tab__content--magenta .tab__text,
.tab__content--magenta .tab__content--blue .tab__content--green .tab__text,
.tab__content--green .tab__content--blue .tab__content--magenta .tab__text,
.tab__content--magenta .tab__content--green .tab__content--blue .tab__text,
.tab__content--orange .tab__content--blue .tab__content--green .tab__content--magenta .tab__text,
.tab__content--magenta .tab__content--orange .tab__content--blue .tab__content--green .tab__text,
.tab__content--green .tab__content--orange .tab__content--blue .tab__content--magenta .tab__text,
.tab__content--magenta .tab__content--green .tab__content--orange .tab__content--blue .tab__text,
.tab__content--blue .tab__content--orange .tab__content--green .tab__content--magenta .tab__text,
.tab__content--magenta .tab__content--blue .tab__content--orange .tab__content--green .tab__text,
.tab__content--green .tab__content--blue .tab__content--orange .tab__content--magenta .tab__text,
.tab__content--magenta .tab__content--green .tab__content--blue .tab__content--orange .tab__text,
.tab__content--blue .tab__text,
.tab__content--blue .tab__content--magenta .tab__text,
.tab__content--magenta .tab__content--blue .tab__text,
.tab__content--blue .tab__content--orange .tab__content--magenta .tab__text,
.tab__content--orange .tab__content--magenta .tab__content--blue .tab__text,
.tab__content--blue .tab__content--magenta .tab__content--orange .tab__text,
.tab__content--magenta .tab__content--orange .tab__content--blue .tab__text,
.tab__content--blue .tab__content--magenta .tab__text,
.tab__content--magenta .tab__content--blue .tab__text,
.tab__content--orange .tab__content--blue .tab__content--magenta .tab__text,
.tab__content--magenta .tab__content--orange .tab__content--blue .tab__text,
.tab__content--blue .tab__content--orange .tab__content--magenta .tab__text,
.tab__content--magenta .tab__content--blue .tab__content--orange .tab__text,
.tab__content--blue .tab__content--green .tab__content--magenta .tab__text,
.tab__content--green .tab__content--magenta .tab__content--blue .tab__text,
.tab__content--blue .tab__content--magenta .tab__content--green .tab__text,
.tab__content--magenta .tab__content--green .tab__content--blue .tab__text,
.tab__content--blue .tab__content--orange .tab__content--green .tab__content--magenta .tab__text,
.tab__content--orange .tab__content--green .tab__content--magenta .tab__content--blue .tab__text,
.tab__content--blue .tab__content--magenta .tab__content--orange .tab__content--green .tab__text,
.tab__content--magenta .tab__content--orange .tab__content--green .tab__content--blue .tab__text,
.tab__content--blue .tab__content--green .tab__content--orange .tab__content--magenta .tab__text,
.tab__content--green .tab__content--orange .tab__content--magenta .tab__content--blue .tab__text,
.tab__content--blue .tab__content--magenta .tab__content--green .tab__content--orange .tab__text,
.tab__content--magenta .tab__content--green .tab__content--orange .tab__content--blue .tab__text,
.tab__content--blue .tab__content--green .tab__content--magenta .tab__text,
.tab__content--magenta .tab__content--blue .tab__content--green .tab__text,
.tab__content--green .tab__content--blue .tab__content--magenta .tab__text,
.tab__content--magenta .tab__content--green .tab__content--blue .tab__text,
.tab__content--orange .tab__content--blue .tab__content--green .tab__content--magenta .tab__text,
.tab__content--magenta .tab__content--orange .tab__content--blue .tab__content--green .tab__text,
.tab__content--green .tab__content--orange .tab__content--blue .tab__content--magenta .tab__text,
.tab__content--magenta .tab__content--green .tab__content--orange .tab__content--blue .tab__text,
.tab__content--blue .tab__content--orange .tab__content--green .tab__content--magenta .tab__text,
.tab__content--magenta .tab__content--blue .tab__content--orange .tab__content--green .tab__text,
.tab__content--green .tab__content--blue .tab__content--orange .tab__content--magenta .tab__text,
.tab__content--magenta .tab__content--green .tab__content--blue .tab__content--orange .tab__text,
.tab__content--orange .tab__text,
.tab__content--orange .tab__content--magenta .tab__text,
.tab__content--magenta .tab__content--orange .tab__text,
.tab__content--orange .tab__content--magenta .tab__text,
.tab__content--magenta .tab__content--orange .tab__text,
.tab__content--orange .tab__content--blue .tab__content--magenta .tab__text,
.tab__content--blue .tab__content--magenta .tab__content--orange .tab__text,
.tab__content--orange .tab__content--magenta .tab__content--blue .tab__text,
.tab__content--magenta .tab__content--blue .tab__content--orange .tab__text,
.tab__content--orange .tab__content--blue .tab__content--magenta .tab__text,
.tab__content--magenta .tab__content--orange .tab__content--blue .tab__text,
.tab__content--blue .tab__content--orange .tab__content--magenta .tab__text,
.tab__content--magenta .tab__content--blue .tab__content--orange .tab__text,
.tab__content--orange .tab__content--green .tab__content--magenta .tab__text,
.tab__content--green .tab__content--magenta .tab__content--orange .tab__text,
.tab__content--orange .tab__content--magenta .tab__content--green .tab__text,
.tab__content--magenta .tab__content--green .tab__content--orange .tab__text,
.tab__content--orange .tab__content--green .tab__content--magenta .tab__text,
.tab__content--magenta .tab__content--orange .tab__content--green .tab__text,
.tab__content--green .tab__content--orange .tab__content--magenta .tab__text,
.tab__content--magenta .tab__content--green .tab__content--orange .tab__text,
.tab__content--orange .tab__content--blue .tab__content--green .tab__content--magenta .tab__text,
.tab__content--blue .tab__content--green .tab__content--magenta .tab__content--orange .tab__text,
.tab__content--orange .tab__content--magenta .tab__content--blue .tab__content--green .tab__text,
.tab__content--magenta .tab__content--blue .tab__content--green .tab__content--orange .tab__text,
.tab__content--orange .tab__content--green .tab__content--blue .tab__content--magenta .tab__text,
.tab__content--green .tab__content--blue .tab__content--magenta .tab__content--orange .tab__text,
.tab__content--orange .tab__content--magenta .tab__content--green .tab__content--blue .tab__text,
.tab__content--magenta .tab__content--green .tab__content--blue .tab__content--orange .tab__text,
.tab__content--orange .tab__content--blue .tab__content--green .tab__content--magenta .tab__text,
.tab__content--magenta .tab__content--orange .tab__content--blue .tab__content--green .tab__text,
.tab__content--green .tab__content--orange .tab__content--blue .tab__content--magenta .tab__text,
.tab__content--magenta .tab__content--green .tab__content--orange .tab__content--blue .tab__text,
.tab__content--blue .tab__content--orange .tab__content--green .tab__content--magenta .tab__text,
.tab__content--magenta .tab__content--blue .tab__content--orange .tab__content--green .tab__text,
.tab__content--green .tab__content--blue .tab__content--orange .tab__content--magenta .tab__text,
.tab__content--magenta .tab__content--green .tab__content--blue .tab__content--orange .tab__text {
	color: #fc6c07;
	font-size: 1rem;
	font-weight: 600;
	line-height: 1;
	margin-top: 1rem;
	text-align: right;
}

.tab__menu-item--orange {
	background-color: #fc6c07;
}

.tab__content--orange {
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="255.955" height="264.847" viewBox="0 0 255.955 264.847"><path id="パス_1850" data-name="パス 1850" d="M308.663,4685.726H258.718l-25.134-29.166a136.726,136.726,0,0,1-49.338,8.833c-70.415,0-128.126-48.609-128.126-122.253,0-73.053,57.389-122.261,127.829-122.261,70.737,0,128.126,49.208,128.126,122.261,0,36.522-15.817,71.577-44.983,95.15Zm-68.876-78.659c18.621-15.918,28.856-40.95,28.856-63.927,0-42.718-32.577-84.259-84.694-84.259-51.819,0-84.4,41.541-84.4,84.259,0,43.595,33.2,84.25,84.4,84.25a93.551,93.551,0,0,0,22.02-2.663l-45.6-53.307h48.407Z" transform="translate(-56.12 -4420.878)" fill="%23fc6c07" opacity="0.043"/></svg>');
	border-color: #fc6c07;
}

.tab__content--orange .tab__content-item::before {
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="22" viewBox="0 0 20 22"><path id="パス_609" data-name="パス 609" d="M75.853,4442.882h-3.9l-1.964-2.423a10.133,10.133,0,0,1-3.855.734,10.157,10.157,0,1,1,9.988-10.155,10.372,10.372,0,0,1-3.515,7.9Zm-5.382-6.534a7.367,7.367,0,0,0,2.255-5.31,6.617,6.617,0,1,0-6.618,7,6.915,6.915,0,0,0,1.721-.221l-3.563-4.428h3.782Z" transform="translate(-56.12 -4420.882)" fill="%23fc6c07"/></svg>');
}

.tab__content--orange .tab__text {
	color: #fc6c07;
}

.tab__menu-item--blue {
	background-color: #0068b5;
}

.tab__content--blue {
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="255.955" height="264.847" viewBox="0 0 255.955 264.847"><path id="パス_1850" data-name="パス 1850" d="M308.663,4685.726H258.718l-25.134-29.166a136.726,136.726,0,0,1-49.338,8.833c-70.415,0-128.126-48.609-128.126-122.253,0-73.053,57.389-122.261,127.829-122.261,70.737,0,128.126,49.208,128.126,122.261,0,36.522-15.817,71.577-44.983,95.15Zm-68.876-78.659c18.621-15.918,28.856-40.95,28.856-63.927,0-42.718-32.577-84.259-84.694-84.259-51.819,0-84.4,41.541-84.4,84.259,0,43.595,33.2,84.25,84.4,84.25a93.551,93.551,0,0,0,22.02-2.663l-45.6-53.307h48.407Z" transform="translate(-56.12 -4420.878)" fill="%230068b5" opacity="0.043"/></svg>');
	border-color: #0068b5;
}

.tab__content--blue .tab__content-item::before {
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="22" viewBox="0 0 20 22"><path id="パス_609" data-name="パス 609" d="M75.853,4442.882h-3.9l-1.964-2.423a10.133,10.133,0,0,1-3.855.734,10.157,10.157,0,1,1,9.988-10.155,10.372,10.372,0,0,1-3.515,7.9Zm-5.382-6.534a7.367,7.367,0,0,0,2.255-5.31,6.617,6.617,0,1,0-6.618,7,6.915,6.915,0,0,0,1.721-.221l-3.563-4.428h3.782Z" transform="translate(-56.12 -4420.882)" fill="%230068b5"/></svg>');
}

.tab__content--blue .tab__text {
	color: #0068b5;
}

.tab__menu-item--green {
	background-color: #16a63c;
}

.tab__content--green {
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="255.955" height="264.847" viewBox="0 0 255.955 264.847"><path id="パス_1850" data-name="パス 1850" d="M308.663,4685.726H258.718l-25.134-29.166a136.726,136.726,0,0,1-49.338,8.833c-70.415,0-128.126-48.609-128.126-122.253,0-73.053,57.389-122.261,127.829-122.261,70.737,0,128.126,49.208,128.126,122.261,0,36.522-15.817,71.577-44.983,95.15Zm-68.876-78.659c18.621-15.918,28.856-40.95,28.856-63.927,0-42.718-32.577-84.259-84.694-84.259-51.819,0-84.4,41.541-84.4,84.259,0,43.595,33.2,84.25,84.4,84.25a93.551,93.551,0,0,0,22.02-2.663l-45.6-53.307h48.407Z" transform="translate(-56.12 -4420.878)" fill="%2316a63c" opacity="0.043"/></svg>');
	border-color: #16a63c;
}

.tab__content--green .tab__content-item::before {
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="22" viewBox="0 0 20 22"><path id="パス_609" data-name="パス 609" d="M75.853,4442.882h-3.9l-1.964-2.423a10.133,10.133,0,0,1-3.855.734,10.157,10.157,0,1,1,9.988-10.155,10.372,10.372,0,0,1-3.515,7.9Zm-5.382-6.534a7.367,7.367,0,0,0,2.255-5.31,6.617,6.617,0,1,0-6.618,7,6.915,6.915,0,0,0,1.721-.221l-3.563-4.428h3.782Z" transform="translate(-56.12 -4420.882)" fill="%2316a63c"/></svg>');
}

.tab__content--green .tab__text {
	color: #16a63c;
}

.tab__menu-item--magenta {
	background-color: #d8004b;
}

.tab__content--magenta {
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="255.955" height="264.847" viewBox="0 0 255.955 264.847"><path id="パス_1850" data-name="パス 1850" d="M308.663,4685.726H258.718l-25.134-29.166a136.726,136.726,0,0,1-49.338,8.833c-70.415,0-128.126-48.609-128.126-122.253,0-73.053,57.389-122.261,127.829-122.261,70.737,0,128.126,49.208,128.126,122.261,0,36.522-15.817,71.577-44.983,95.15Zm-68.876-78.659c18.621-15.918,28.856-40.95,28.856-63.927,0-42.718-32.577-84.259-84.694-84.259-51.819,0-84.4,41.541-84.4,84.259,0,43.595,33.2,84.25,84.4,84.25a93.551,93.551,0,0,0,22.02-2.663l-45.6-53.307h48.407Z" transform="translate(-56.12 -4420.878)" fill="%23d8004b" opacity="0.043"/></svg>');
	border-color: #d8004b;
}

.tab__content--magenta .tab__content-item::before {
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="22" viewBox="0 0 20 22"><path id="パス_609" data-name="パス 609" d="M75.853,4442.882h-3.9l-1.964-2.423a10.133,10.133,0,0,1-3.855.734,10.157,10.157,0,1,1,9.988-10.155,10.372,10.372,0,0,1-3.515,7.9Zm-5.382-6.534a7.367,7.367,0,0,0,2.255-5.31,6.617,6.617,0,1,0-6.618,7,6.915,6.915,0,0,0,1.721-.221l-3.563-4.428h3.782Z" transform="translate(-56.12 -4420.882)" fill="%23d8004b"/></svg>');
}

.tab__content--magenta .tab__text {
	color: #d8004b;
}

@media (hover: hover) {

.cta-button:hover,
.cta-button--line:hover {
	box-shadow: none;
	opacity: 1;
	transform: translateY(0.3125rem);
}

.nav__item:hover,
.nav__item--orange:hover,
.nav__item--blue:hover,
.nav__item--green:hover,
.nav__item--magenta:hover {
	opacity: 0.7;
}

}

@media screen and (min-width: 768px) {

.pc {
	display: block;
}

.sp {
	display: none;
}

html {
	font-size: 1.7777777778vw;
}

.layout-concept {
	margin-top: 5.3125rem;
}


.button,
.button--green {
	font-size: 1rem;
	padding: 0.9375rem 1.25rem;
	width: 100%;
}

.concept__content {
	margin-top: 1.75rem;
	padding: 3.125rem 5.75rem 2.9375rem;
}

.concept__item1 {
	margin-left: -2rem;
	margin-top: 2.625rem;
	max-width: 28.0625rem;
}

.concept__item2 {
	margin-right: -1rem;
	margin-top: 2.1875rem;
	max-width: 31.1875rem;
}

.concept__item2 img {
	aspect-ratio: 499/246;
}

.concept__item3 {
	margin-left: -5.5rem;
	margin-top: 1.25rem;
	max-width: 28.375rem;
}

.contents__content {
	margin-top: 1.75rem;
	padding: 3.125rem 4.9375rem;
}

.contents__head {
	max-width: 96.5%;
}

.contents__tab {
	margin-top: 2.1875rem;
	max-width: 46.375rem;
}

.cta-button,
.cta-button--line {
	box-shadow: 0 0.4375rem 0 #25641e;
	padding: 1.3125rem 0;
	width: 100%;
}

.description__content {
	margin-top: 1.75rem;
	padding: 3.125rem 5.75rem 3.75rem;
}

.description__step,
.description__step--third,
.description__step--second {
	margin-top: 2.25rem;
}

.description__step-title {
	font-size: 1.5rem;
	line-height: 1.3333333333;
}

.description__step-wrapper {
	align-items: flex-end;
	display: flex;
	gap: 1.125rem;
}

.description__step-body {
	margin-top: 2.125rem;
}

.description__step-body:not(:first-child) {
	margin-top: 2.9375rem;
}

.description__step-img {
	max-width: 22.25rem;
}

.description__step img,
.description__step--third img,
.description__step--second img {
	aspect-ratio: 356/436;
}

.description__point {
	bottom: auto;
	bottom: initial;
	max-width: 21.3125rem;
	right: -17.8125rem;
	top: 0.3125rem;
}

.description__point img {
	aspect-ratio: 682/217;
}

.description__point::before {
	font-size: 0.9375rem;
	left: 48%;
	top: 59%;
}

.description__illustrators {
	flex: 1;
	margin-top: 0;
	margin-top: initial;
	padding-bottom: 0.625rem;
}

.description__illust {
	margin-top: 1.0625rem;
	max-width: 100%;
}

.description__illust img {
	aspect-ratio: 689/513;
}

.description__icon {
	margin-top: 3.125rem;
	width: 6.6875rem;
}

.description__icon img {
	aspect-ratio: 107/78;
}

.description__step--second .description__step-body {
	padding-left: 16.375rem;
}

.description__step--second .description__point {
	bottom: auto;
	bottom: initial;
	left: 0;
	max-width: 18.875rem;
	right: auto;
	right: initial;
	top: 4.6875rem;
}

.description__step--second .description__point img {
	aspect-ratio: 607/227;
}

.description__step--second .description__point::before {
	top: 50%;
}

.description__step--second .description__icon {
	margin-top: 3.125rem;
}

.description__step--third .description__step-body {
	padding-right: 16.375rem;
}

.description__step--third .description__point {
	bottom: auto;
	bottom: initial;
	left: auto;
	left: initial;
	max-width: 17.9375rem;
	right: 1.875rem;
	top: 48%;
	transform: translateY(-50%);
}

.description__step--third .description__point img {
	aspect-ratio: 573/242;
}

.description__step--third .description__point::before {
	left: 40%;
	top: 43%;
}

.footer {
	background-image: linear-gradient(to bottom, transparent 0%,transparent 63%, #fbf0e7 63%, #fbf0e7 100%);
	background-image: linear-gradient(to bottom, transparent 0% 63%, #fbf0e7 63% 100%);
}

.footer__icon {
	bottom: 4.0625rem;
	right: calc(50% - 18.3125rem);
	top: auto;
	top: initial;
}

.footer__img {
	bottom: 2.5rem;
	left: 48.3%;
	max-width: 24rem;
}

.footer__img img {
	aspect-ratio: 384/252;
}

.footer__copyright {
	height: 4.375rem;
	padding-top: 0.75rem;
}

.head,
.head--magenta,
.head--green,
.head--blue,
.head--orange {
	background-image: url("../../assets/images/pc/bg-head.webp");
	padding: 0.5625rem 1.125rem 0.4375rem;
}

.head__text {
	font-size: 1.5rem;
	line-height: 1.3333333333;
}

.header {
	padding: 0.9375rem 0 0.875rem;
}

.header__inner {
	margin-left: auto;
	margin-right: auto;
	max-width: 63.75rem;
}

.header__logo a {
	width: 10.375rem;
}

.header__buttons {
	flex-direction: initial;
	gap: 1.25rem;
}

.inner {
	max-width: 950px;
	padding-left: 25px;
	padding-right: 25px;
}

.lineup__content {
	align-items: flex-end;
	display: flex;
	gap: 1.9375rem;
	max-width: 37.8125rem;
}

.lineup__images {
	gap: 1.25rem;
	max-width: 17.125rem;
	padding: 0;
	padding: initial;
}

.lineup__img img {
	aspect-ratio: 127/155;
}

.lineup__works-wrap {
	flex: 1;
	margin-top: 0;
	margin-top: initial;
}

.lineup__works-title {
	margin-top: 0.9375rem;
}

.lineup__text-wrap {
	margin-top: 1.875rem;
}

.lineup__cta-block {
	margin-left: auto;
	margin-right: auto;
	margin-top: 7.5rem;
	max-width: 56.25rem;
	padding: 3.125rem 2.5rem;
}

.lineup__cta-block::after {
	height: 6.0625rem;
	right: 1.25rem;
	width: 6.1875rem;
}

.lineup__cta-body {
	padding: 3.625rem 1.875rem 2.625rem;
}

.lineup__cta-head {
	font-size: 1.5rem;
}

.lineup__cta-head::before {
	height: 1.9375rem;
	top: -2.375rem;
	width: 2.1875rem;
}

.lineup__cta-head::after {
	height: 3.5rem;
	right: -3.4375rem;
	top: -2.8125rem;
	width: 3.6875rem;
}

.lineup__cta-buttons {
	display: flex;
	gap: 0.6875rem;
	justify-content: center;
	margin-top: 0.875rem;
}

.lineup__cta-button:not(:first-child) {
	margin-top: 0;
	margin-top: initial;
}


.nav__items {
	grid-template-columns: repeat(4, 1fr);
}

.nav__item a,
.nav__item--orange a,
.nav__item--blue a,
.nav__item--green a,
.nav__item--magenta a {
	font-size: 1.25rem;
	line-height: 1.35;
	padding: 0.8125rem 0 0.8125rem;
}

.nav__item span,
.nav__item--orange span,
.nav__item--blue span,
.nav__item--green span,
.nav__item--magenta span {
	margin-top: 0;
	margin-top: initial;
}

.pagetop {
	bottom: 5rem;
	height: 3rem;
	right: 1.25rem;
	width: 4rem;
}

.section-title__en {
	font-size: 1.75rem;
}

.section-title__en::before {
	margin-right: 1.875rem;
}

.section-title__en::after {
	margin-left: 1.875rem;
}

.section-title__ja {
	margin-top: 0.4375rem;
}

.tab__menu-item,
.tab__menu-item--magenta,
.tab__menu-item--green,
.tab__menu-item--blue,
.tab__menu-item--orange {
	font-size: 1.5rem;
	padding: 0.875rem 0 0.75rem;
}

.tab__content {
	background-position: right 0.4375rem bottom -0.75rem;
	padding: 0.625rem 2.625rem 2.3125rem 1.875rem;
}

.tab__content-item {
	line-height: 1.4375;
	margin-top: 1.3125rem;
}

.tab__text,
.tab__content--magenta .tab__text,
.tab__content--orange .tab__content--magenta .tab__text,
.tab__content--magenta .tab__content--orange .tab__text,
.tab__content--blue .tab__content--magenta .tab__text,
.tab__content--magenta .tab__content--blue .tab__text,
.tab__content--orange .tab__content--blue .tab__content--magenta .tab__text,
.tab__content--magenta .tab__content--orange .tab__content--blue .tab__text,
.tab__content--blue .tab__content--orange .tab__content--magenta .tab__text,
.tab__content--magenta .tab__content--blue .tab__content--orange .tab__text,
.tab__content--green .tab__content--magenta .tab__text,
.tab__content--magenta .tab__content--green .tab__text,
.tab__content--orange .tab__content--green .tab__content--magenta .tab__text,
.tab__content--magenta .tab__content--orange .tab__content--green .tab__text,
.tab__content--green .tab__content--orange .tab__content--magenta .tab__text,
.tab__content--magenta .tab__content--green .tab__content--orange .tab__text,
.tab__content--blue .tab__content--green .tab__content--magenta .tab__text,
.tab__content--magenta .tab__content--blue .tab__content--green .tab__text,
.tab__content--green .tab__content--blue .tab__content--magenta .tab__text,
.tab__content--magenta .tab__content--green .tab__content--blue .tab__text,
.tab__content--orange .tab__content--blue .tab__content--green .tab__content--magenta .tab__text,
.tab__content--magenta .tab__content--orange .tab__content--blue .tab__content--green .tab__text,
.tab__content--green .tab__content--orange .tab__content--blue .tab__content--magenta .tab__text,
.tab__content--magenta .tab__content--green .tab__content--orange .tab__content--blue .tab__text,
.tab__content--blue .tab__content--orange .tab__content--green .tab__content--magenta .tab__text,
.tab__content--magenta .tab__content--blue .tab__content--orange .tab__content--green .tab__text,
.tab__content--green .tab__content--blue .tab__content--orange .tab__content--magenta .tab__text,
.tab__content--magenta .tab__content--green .tab__content--blue .tab__content--orange .tab__text,
.tab__content--green .tab__text,
.tab__content--green .tab__content--magenta .tab__text,
.tab__content--magenta .tab__content--green .tab__text,
.tab__content--green .tab__content--orange .tab__content--magenta .tab__text,
.tab__content--orange .tab__content--magenta .tab__content--green .tab__text,
.tab__content--green .tab__content--magenta .tab__content--orange .tab__text,
.tab__content--magenta .tab__content--orange .tab__content--green .tab__text,
.tab__content--green .tab__content--blue .tab__content--magenta .tab__text,
.tab__content--blue .tab__content--magenta .tab__content--green .tab__text,
.tab__content--green .tab__content--magenta .tab__content--blue .tab__text,
.tab__content--magenta .tab__content--blue .tab__content--green .tab__text,
.tab__content--green .tab__content--orange .tab__content--blue .tab__content--magenta .tab__text,
.tab__content--orange .tab__content--blue .tab__content--magenta .tab__content--green .tab__text,
.tab__content--green .tab__content--magenta .tab__content--orange .tab__content--blue .tab__text,
.tab__content--magenta .tab__content--orange .tab__content--blue .tab__content--green .tab__text,
.tab__content--green .tab__content--blue .tab__content--orange .tab__content--magenta .tab__text,
.tab__content--blue .tab__content--orange .tab__content--magenta .tab__content--green .tab__text,
.tab__content--green .tab__content--magenta .tab__content--blue .tab__content--orange .tab__text,
.tab__content--magenta .tab__content--blue .tab__content--orange .tab__content--green .tab__text,
.tab__content--green .tab__content--magenta .tab__text,
.tab__content--magenta .tab__content--green .tab__text,
.tab__content--orange .tab__content--green .tab__content--magenta .tab__text,
.tab__content--magenta .tab__content--orange .tab__content--green .tab__text,
.tab__content--green .tab__content--orange .tab__content--magenta .tab__text,
.tab__content--magenta .tab__content--green .tab__content--orange .tab__text,
.tab__content--blue .tab__content--green .tab__content--magenta .tab__text,
.tab__content--magenta .tab__content--blue .tab__content--green .tab__text,
.tab__content--green .tab__content--blue .tab__content--magenta .tab__text,
.tab__content--magenta .tab__content--green .tab__content--blue .tab__text,
.tab__content--orange .tab__content--blue .tab__content--green .tab__content--magenta .tab__text,
.tab__content--magenta .tab__content--orange .tab__content--blue .tab__content--green .tab__text,
.tab__content--green .tab__content--orange .tab__content--blue .tab__content--magenta .tab__text,
.tab__content--magenta .tab__content--green .tab__content--orange .tab__content--blue .tab__text,
.tab__content--blue .tab__content--orange .tab__content--green .tab__content--magenta .tab__text,
.tab__content--magenta .tab__content--blue .tab__content--orange .tab__content--green .tab__text,
.tab__content--green .tab__content--blue .tab__content--orange .tab__content--magenta .tab__text,
.tab__content--magenta .tab__content--green .tab__content--blue .tab__content--orange .tab__text,
.tab__content--blue .tab__text,
.tab__content--blue .tab__content--magenta .tab__text,
.tab__content--magenta .tab__content--blue .tab__text,
.tab__content--blue .tab__content--orange .tab__content--magenta .tab__text,
.tab__content--orange .tab__content--magenta .tab__content--blue .tab__text,
.tab__content--blue .tab__content--magenta .tab__content--orange .tab__text,
.tab__content--magenta .tab__content--orange .tab__content--blue .tab__text,
.tab__content--blue .tab__content--magenta .tab__text,
.tab__content--magenta .tab__content--blue .tab__text,
.tab__content--orange .tab__content--blue .tab__content--magenta .tab__text,
.tab__content--magenta .tab__content--orange .tab__content--blue .tab__text,
.tab__content--blue .tab__content--orange .tab__content--magenta .tab__text,
.tab__content--magenta .tab__content--blue .tab__content--orange .tab__text,
.tab__content--blue .tab__content--green .tab__content--magenta .tab__text,
.tab__content--green .tab__content--magenta .tab__content--blue .tab__text,
.tab__content--blue .tab__content--magenta .tab__content--green .tab__text,
.tab__content--magenta .tab__content--green .tab__content--blue .tab__text,
.tab__content--blue .tab__content--orange .tab__content--green .tab__content--magenta .tab__text,
.tab__content--orange .tab__content--green .tab__content--magenta .tab__content--blue .tab__text,
.tab__content--blue .tab__content--magenta .tab__content--orange .tab__content--green .tab__text,
.tab__content--magenta .tab__content--orange .tab__content--green .tab__content--blue .tab__text,
.tab__content--blue .tab__content--green .tab__content--orange .tab__content--magenta .tab__text,
.tab__content--green .tab__content--orange .tab__content--magenta .tab__content--blue .tab__text,
.tab__content--blue .tab__content--magenta .tab__content--green .tab__content--orange .tab__text,
.tab__content--magenta .tab__content--green .tab__content--orange .tab__content--blue .tab__text,
.tab__content--blue .tab__content--green .tab__content--magenta .tab__text,
.tab__content--magenta .tab__content--blue .tab__content--green .tab__text,
.tab__content--green .tab__content--blue .tab__content--magenta .tab__text,
.tab__content--magenta .tab__content--green .tab__content--blue .tab__text,
.tab__content--orange .tab__content--blue .tab__content--green .tab__content--magenta .tab__text,
.tab__content--magenta .tab__content--orange .tab__content--blue .tab__content--green .tab__text,
.tab__content--green .tab__content--orange .tab__content--blue .tab__content--magenta .tab__text,
.tab__content--magenta .tab__content--green .tab__content--orange .tab__content--blue .tab__text,
.tab__content--blue .tab__content--orange .tab__content--green .tab__content--magenta .tab__text,
.tab__content--magenta .tab__content--blue .tab__content--orange .tab__content--green .tab__text,
.tab__content--green .tab__content--blue .tab__content--orange .tab__content--magenta .tab__text,
.tab__content--magenta .tab__content--green .tab__content--blue .tab__content--orange .tab__text,
.tab__content--orange .tab__text,
.tab__content--orange .tab__content--magenta .tab__text,
.tab__content--magenta .tab__content--orange .tab__text,
.tab__content--orange .tab__content--magenta .tab__text,
.tab__content--magenta .tab__content--orange .tab__text,
.tab__content--orange .tab__content--blue .tab__content--magenta .tab__text,
.tab__content--blue .tab__content--magenta .tab__content--orange .tab__text,
.tab__content--orange .tab__content--magenta .tab__content--blue .tab__text,
.tab__content--magenta .tab__content--blue .tab__content--orange .tab__text,
.tab__content--orange .tab__content--blue .tab__content--magenta .tab__text,
.tab__content--magenta .tab__content--orange .tab__content--blue .tab__text,
.tab__content--blue .tab__content--orange .tab__content--magenta .tab__text,
.tab__content--magenta .tab__content--blue .tab__content--orange .tab__text,
.tab__content--orange .tab__content--green .tab__content--magenta .tab__text,
.tab__content--green .tab__content--magenta .tab__content--orange .tab__text,
.tab__content--orange .tab__content--magenta .tab__content--green .tab__text,
.tab__content--magenta .tab__content--green .tab__content--orange .tab__text,
.tab__content--orange .tab__content--green .tab__content--magenta .tab__text,
.tab__content--magenta .tab__content--orange .tab__content--green .tab__text,
.tab__content--green .tab__content--orange .tab__content--magenta .tab__text,
.tab__content--magenta .tab__content--green .tab__content--orange .tab__text,
.tab__content--orange .tab__content--blue .tab__content--green .tab__content--magenta .tab__text,
.tab__content--blue .tab__content--green .tab__content--magenta .tab__content--orange .tab__text,
.tab__content--orange .tab__content--magenta .tab__content--blue .tab__content--green .tab__text,
.tab__content--magenta .tab__content--blue .tab__content--green .tab__content--orange .tab__text,
.tab__content--orange .tab__content--green .tab__content--blue .tab__content--magenta .tab__text,
.tab__content--green .tab__content--blue .tab__content--magenta .tab__content--orange .tab__text,
.tab__content--orange .tab__content--magenta .tab__content--green .tab__content--blue .tab__text,
.tab__content--magenta .tab__content--green .tab__content--blue .tab__content--orange .tab__text,
.tab__content--orange .tab__content--blue .tab__content--green .tab__content--magenta .tab__text,
.tab__content--magenta .tab__content--orange .tab__content--blue .tab__content--green .tab__text,
.tab__content--green .tab__content--orange .tab__content--blue .tab__content--magenta .tab__text,
.tab__content--magenta .tab__content--green .tab__content--orange .tab__content--blue .tab__text,
.tab__content--blue .tab__content--orange .tab__content--green .tab__content--magenta .tab__text,
.tab__content--magenta .tab__content--blue .tab__content--orange .tab__content--green .tab__text,
.tab__content--green .tab__content--blue .tab__content--orange .tab__content--magenta .tab__text,
.tab__content--magenta .tab__content--green .tab__content--blue .tab__content--orange .tab__text {
	font-size: 1.3125rem;
}

}

@media screen and (hover: hover) and (min-width: 768px) {

.cta-button:hover,
.cta-button--line:hover {
	transform: translateY(0.4375rem);
}

}

@media (min-width: 900px) {

html {
	font-size: 16px;
}

}

@media screen and (min-width: 1280px) {

.header__inner {
	max-width: 100%;
	padding: 0 11.4375rem;
}

}

@media (max-width: 375px) {

html {
	font-size: 4.2666666667vw;
}

}

@keyframes fade {

from {
	opacity: 0;
}

to {
	opacity: 1;
}

}


/*# sourceMappingURL=style.css.map */
