/*
Template:twentytwentyone
Theme Name:Twenty Twenty-One Child
*/


/*--------------------------------
COMMON FRONT PAGE
--------------------------------*/
body {
	position: relative;
	margin: 0;
	padding: 0;
	color: #595757;
	font-family: Koburina Gothic W3 JIS2004, sans-serif;
}
body.active {
    position: fixed;
    width: 100%;
    height: 100%;
}
img {
	width: 100%;
}
.ab {
	position: absolute;
}
.ov {
	opacity: 1;
	transition: 200ms;
}
.ov:hover {
	opacity: .7;
	transition: 200ms;
}

/* aos調整 */
[data-aos=fade-up] {
    transform: translate3d(0,30px,0);
}
[data-aos=zoom-out] {
    transform: scale(1.12);
}

/* PC
---------------------------------*/
@media (min-width: 751px) {
	html {
		background: url("https://review-trend.com/wp-content/uploads/2022/01/bg.jpg") no-repeat;
		background-size: cover;
		background-attachment: fixed;
	}
	body {
		margin: 0 auto;
		padding-top: 100px;
		width: 750px;
		background: #FFF;
		box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
	}
	body.active {
		left: 0;
		right: 0;
		width: 750px;
		height: 1000%;
		background: #FFF;
		overflow-y: scroll;
	}
}



/*--------------------------------
FLOATING BANNER
--------------------------------*/
.floating-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 100%;
	z-index: 9;
	animation: floatingBanner 2000ms infinite forwards;

}
@keyframes floatingBanner {
	0%   {bottom: 0px;}
	10%  {bottom: 6px;}
	20%  {bottom: 0px;}
	30%  {bottom: 6px;}
	40%  {bottom: 0px;}
	100% {bottom: 0px;}
}

/* PC
---------------------------------*/
@media (min-width: 751px) {
	.floating-banner {
		width: 750px;
	}
}


/*--------------------------------
HEADER
--------------------------------*/
.header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: fixed;
	top: 0;
	padding: 0 6vw;
	width: 100%;
	height: 22.5vw;
	background: #FFF;
	z-index: 10;
}
.header::after {
	position: absolute;
	bottom: -6vw;
	left: 0;
	content: "";
	width: 100%;
	height: 6vw;
	background: url("https://review-trend.com/wp-content/uploads/2022/01/header_shadow.png") no-repeat;
	background-size: contain;
	pointer-events: none;
}
.header-logo-block {
	display: flex;
	align-items: center;
	width: 62vw;
}
.header-logo {
	margin: -1.5% 5% 0 0;
	width: 45%;
}
.header-logo-text {
	width: 50%;
}

/* HAMBURGER MENU */
.menu-trigger,
.menu-trigger span {
  display: inline-block;
  transition: all 300ms;
  box-sizing: border-box;
}
.menu-trigger {
  position: relative;
  width: 11.5vw;
  height: 9vw;
  background: none;
  border: none;
  appearance: none;
  cursor: pointer;
}
.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #707070;
  border-radius: 4px;
}
.menu-trigger span:nth-of-type(1) {
  top: 0;
}
.menu-trigger span:nth-of-type(2) {
  top: 4vw;
	/* transform: translateY(-50%); */
}
.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}
.menu-trigger.active span:nth-of-type(1) {
  transform: translateY(4vw) rotate(-45deg);
}
.menu-trigger.active span:nth-of-type(2) {
  left: 50%;
  opacity: 0;
  animation: active-menu-bar02 .8s forwards;
}
@keyframes active-menu-bar02 {
  100% {
    height: 0;
  }
}
.menu-trigger.active span:nth-of-type(3) {
  transform: translateY(-4vw) rotate(45deg);
}

/* MENU MODAL */
.menu-modal {
	display: none;
	position: fixed;
	top: 22.5vw;
	left: 0;
	width: 100%;
	height: 100%;
	background: #FFF;
	z-index: 3;
}
.menu-main {
	margin: 6vw 6vw 9vw;
}
.menu-main li {
	display: flex;
	align-items: center;
	position: relative;
	width: 100%;
	height: 16vw;
	border-bottom: 1px solid #595757;
}
.menu-main li::after {
	position: absolute;
	right: 2vw;
	content: "";
	width: 3vw;
	height: 5vw;
	background: url("https://review-trend.com/wp-content/uploads/2022/01/menu_arrow.svg") no-repeat;
	background-size: contain;
	pointer-events: none;
}
.menu-main li a {
	display: flex;
	align-items: center;
	width: 100%;
	height: 100%;
}
.menu-en {
	width: 20vw;
	font-family: dunbar-low, sans-serif;
	font-size: 3.4vw;
	letter-spacing: .1em;
	color: #da88b1;
}
.menu-jp {
	font-family: Koburina Gothic W6 JIS2004, sans-serif;
	font-size: 4.0vw;
	letter-spacing: .1em;
}
.menu-main li:last-of-type .menu-jp {
	letter-spacing: 0;
}

.menu-sub {
	margin: 0 6vw;
	font-family: Koburina Gothic W6 JIS2004, sans-serif;
	font-size: 3.4vw;
	letter-spacing: .1em;
}
.menu-sub li {
	margin-bottom: 6vw;
}

/* PC
---------------------------------*/
@media (min-width: 751px) {
	.header {
		padding: 0 30px;
		max-width: 750px;
		height: 100px;
	}
	.header-logo-block {
		width: 72%;
	}
	.header-logo {
		width: 28%;
	}
	.header-logo-text {
		width: 30%;
	}
	/* HAMBURGER MENU */
	.menu-trigger {
	  width: 55px;
	  height: 47px;
	}
	.menu-trigger span {
		height: 5px;
	}
	.menu-trigger span:nth-of-type(2) {
	  top: 21px;
		transform: none;
	}
	.menu-trigger.active span:nth-of-type(1) {
	  transform: translateY(21px) rotate(-45deg);
	}
	.menu-trigger.active span:nth-of-type(3) {
	  transform: translateY(-21px) rotate(45deg);
	}
	/* MENU MODAL */
	.menu-modal {
		top: 100px;
		right: 0;
		margin: 0 auto;
		width: 750px;
	}
	.menu-main {
		margin: 50px 45px 55px;
	}
	.menu-main li {
		height: 100px;
	}
	.menu-main li::after {
		position: absolute;
		right: 20px;
		width: 20px;
		height: 35px;
	}
	.menu-en {
		width: 20.5%;
		font-size: 23px;
		letter-spacing: .1em;
	}
	.menu-jp {
		font-size: 29px;
		letter-spacing: .15em;
	}
	.menu-main li:last-of-type .menu-jp {
		letter-spacing: .04em;
	}
	.menu-sub {
		margin: 0 45px;
		font-size: 24px;
	}
	.menu-sub li {
		margin-bottom: 38px;
	}
}




/*--------------------------------
MV
--------------------------------*/
.mv {
	position: relative;
	margin: 22.5vw auto 0;
}
.mv-text-rl {
	top: 2.2%;
	left: 5.8%;
	width: 13.75%;
	animation: mvText 2500ms 0ms infinite alternate;
}
.mv-text-e01 {
	top: 4.1%;
	left: 24%;
	width: 9.1%;
	animation: mvTextR 1900ms 250ms infinite alternate;
}
.mv-text-v {
	top: 9.3%;
	left: 40.3%;
	width: 9.3%;
	animation: mvText 1600ms 300ms infinite alternate;
}
.mv-text-i {
	top: 1.8%;
	left: 57.5%;
	width: 1.27%;
	animation: mvTextR 2000ms 0ms infinite alternate;
}
.mv-text-e02 {
	top: 9%;
	left: 67.4%;
	width: 9.1%;
	animation: mvText 1800ms 0ms infinite alternate;
}
.mv-text-w {
	top: 4.5%;
	left: 81.3%;
	width: 13%;
	animation: mvTextR 1700ms 150ms infinite alternate;
}
.mv-text-t {
	bottom: 1.7%;
	left: 13.5%;
	width: 9.85%;
	animation: mvTextR 2300ms 0ms infinite alternate;
}
.mv-text-r {
	bottom: 6.5%;
	left: 32.2%;
	width: 3.8%;
	animation: mvText 1800ms 0ms infinite alternate;
}
.mv-text-e03 {
	bottom: 1.2%;
	left: 44.1%;
	width: 9.3%;
	animation: mvTextR 1900ms 400ms infinite alternate;
}
.mv-text-n {
	bottom: 6.5%;
	left: 61.7%;
	width: 7.2%;
	animation: mvText 1500ms 120ms infinite alternate;
}
.mv-text-d {
	bottom: 1.2%;
	left: 77.2%;
	width: 9.45%;
	animation: mvTextR 2000ms 230ms infinite alternate;
}

@keyframes mvText {
	0% {transform: translateY(-5%);}
	100% {transform: translateY(5%);}
}
@keyframes mvTextR {
	0% {transform: translateY(5%);}
	100% {transform: translateY(-5%);}
}


/* PC
---------------------------------*/
@media (min-width: 751px) {
	.mv {
		margin: 0 auto 0;
	}
}




/*--------------------------------
COMMON CONTENTS
--------------------------------*/
h2 {
	position: relative;
	margin: 0 auto;
	width: fit-content;
	font-family: dunbar-low, sans-serif;
	font-size: 7vw;
	text-align: center;
	letter-spacing: .1em;
}
h2::after {
	position: absolute;
	bottom: -1vw;
	left: 0;
	right: 0;
	content: "";
	width: calc(100% - .1em);
	height: 1px;
}

/* PC
---------------------------------*/
@media (min-width: 751px) {
	.contents {
		background: #FFF;
	}
	h2 {
		font-size: 46px;
	}
	h2::after {
		bottom: -5px;
		height: 2px;
	}
}





/*--------------------------------
ABOUT
--------------------------------*/
.about {
	position: relative;
	margin: 12vw auto 0;
}
.about h2 {
	color: #987eb8;
}
.about h2::after {
	background: #987eb8;
}
.about-title {
	display: block;
	margin: 6vw auto 0;
	width: 55vw;
}
.about-text {
	margin: 6vw auto 0;
	font-size: 4.5vw;
	text-align: center;
	line-height: 1.8;
}
.about-text span {
	font-family: Koburina Gothic W6 JIS2004, sans-serif;
	color: #987eb8;
}
.about-image {
	display: block;
	margin: 5vw auto 0;
	width: 90%;
}


/* PC
---------------------------------*/
@media (min-width: 751px) {
	.about {
		margin: 80px auto 0;
	}
	.about-title {
		margin: 35px auto 0;
		width: 365px;
	}
	.about-text {
		margin: 40px auto 0;
		font-size: 34px;
		line-height: 1.7;
	}
	.about-image {
		margin: 40px auto 0;
		width: 91%;
	}
}





/*--------------------------------
POINT
--------------------------------*/
.point {
	position: relative;
	margin: 12vw auto;
}
.point h2 {
	color: #f2768f;
}
.point h2::after {
	background: #f2768f;
}
.point-title {
	display: block;
	margin: 3.8vw auto 0;
	width: 67vw;
}
.point-list {
	margin: 11vw auto 0;
}
.point-list li {
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
	padding: 0 10vw;
	height: 46.82vw;
	background: #f69ca1;
}
.point-number {
	position: absolute;
	top: -4.3vw;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 12vw;
}
.point-list-title {
	font-family: Koburina Gothic W6 JIS2004, sans-serif;
	font-size: 4.8vw;
	line-height: 1.3;
	letter-spacing: .1em;
}
.point-list-title span {
	color: #FFF;
}
.point-list-text {
	margin-top: 1.6vw;
	font-size: 3.6vw;
	text-align: justify;
	line-height: 1.6;
	font-feature-settings: "palt";
	letter-spacing: .08em;
}


/* .point-list-01 {
	background: url("https://review-trend.com/wp-content/uploads/2022/01/point1_test.jpg") no-repeat !important;
	background-size: contain !important;
}
.point-list-02 {
	background: url("https://review-trend.com/wp-content/uploads/2022/01/point2_test.jpg") no-repeat !important;
	background-size: contain !important;
}
.point-list-04 {
	background: url("https://review-trend.com/wp-content/uploads/2022/01/point3_test.jpg") no-repeat !important;
	background-size: contain !important;
} */


.point-list-01 .point-list-textblock {
	margin-top: 1vw;
}
.point-img-01 {
	margin: 0vw -3vw 0 0;
	width: 26vw;
}
.point-list li.point-list-02 {
	flex-direction: row-reverse;
	background: #FFF;
}
.point-list-02 .point-list-title span {
	color: #f2768f;
}
.point-list-02 .point-list-textblock {
	margin-top: 0vw;
	width: 52vw;
}
.point-list-02 .point-list-text {
	letter-spacing: .02em;
}
.point-img-02 {
	margin: -1vw 0vw 0 -4vw;
	width: 28vw;
}
.point-list-03 .point-list-textblock {
	margin-top: 2vw;
}
.point-img-03 {
	margin: 0 -6vw 0 1vw;
	width: 27.5vw;
}
.point-list-03 .point-list-title {
	font-size: 4.3vw;
} 
.point-list li.point-list-04 {
	flex-direction: row-reverse;
	background: #FFF;
}
.point-list-04 .point-list-title span {
	color: #f2768f;
}
.point-list-04 .point-list-textblock {
	margin-top: 2vw;
}
.point-img-04 {
	margin: 2vw 6vw 0 0;
	width: 18.5vw;
}


/* PC
---------------------------------*/
@media screen and (min-width: 768px) {
	.point {
		margin: 80px auto 0;
	}
	.point-title {
		margin: 20px auto 0;
		width: 430px;
	}
	.point-list {
		margin: 80px auto 0;
	}
	.point-list li {
		display: flex;
		padding: 0 75px;
		height: 350px;
	}
	.point-number {
		top: -33px;
		width: 80px;
	}
	.point-list-title {
		font-size: 36px;
		letter-spacing: .05em;
	}
	.point-list-text {
		margin-top: 10px;
		font-size: 27px;
	}
	.point-list-01 .point-list-textblock {
		margin-top: 10px;
	}
	.point-img-01 {
		margin: 0 -20px 0 0;
		width: 200px;
	}
	.point-list-02 .point-list-textblock {
		margin-top: 0vw;
		width: 380px;
	}
	.point-list-02 .point-list-text {
		letter-spacing: .02em;
	}
	.point-img-02 {
		margin: -15px 0 0 -32px;
		width: 210px;
	}
	.point-list-03 .point-list-textblock {
		margin-top: 5px;
	}
	.point-list-03 .point-list-title {
		font-size: 34px;
	}
	.point-list-04 .point-list-textblock {
		margin-top: 5px;
		line-height: 2;
	}
	.point-img-03 {
		margin: -8px -32px 0 0;
		width: 187px;
	}
	.point-img-04 {
		margin: 10px 42px 0 0;
		width: 143px;
	}
}



/*--------------------------------
RECOMMEND
--------------------------------*/
.recommend {
	position: relative;
}
.recommend-block {
	margin: 12vw auto 0;
}
.recommend h2 {
	color: #987eb8;
}
.recommend h2::after {
	background: #987eb8;
}
.recommend-title {
	display: block;
	margin: 5.5vw auto 0;
	width: 58vw;
}
.recommend-list-block {
	position: relative;
	margin: 6vw auto 0;
}
.recommend-list {
	position: absolute;
	top: 52.25%;
	left: 17.7%;
}
.recommend-list li {
	position: relative;
	font-family: Koburina Gothic W6 JIS2004, sans-serif;
	font-size: 3.5vw;
	font-feature-settings: "palt";
	letter-spacing: .1em;
}
.recommend-list li span {
	font-size: 4.6vw;
	color: #987eb8;
}
.recommend-list li:first-of-type {
	margin-top: 0;
}
.recommend-list li:nth-of-type(2) {
	margin-top: 6.4vw;
}
.recommend-list li:nth-of-type(3) {
	margin-top: 6.95vw;
}
.recommend-list li:nth-of-type(4) {
	margin-top: 6.75vw;
	line-height: 1.6;
}
.recommend-list li::before {
	position: absolute;
	top: 0vw;
	left: -7.2vw;
	content: "";
	width: 5.4vw;
	height: 5vw;
	background: url("https://review-trend.com/wp-content/uploads/2022/01/check.png?q=001") no-repeat;
	background-size: contain;
}
.recommend-list li:nth-of-type(4)::before {
	top: 1vw;
}

/* PC
---------------------------------*/
@media (min-width: 751px) {
	.recommend {
		margin: 80px auto 0;
	}
	.recommend-title {
		margin: 40px auto 0;
		width: 390px;
	}
	.recommend-list-block {
		margin: 45px auto 0;
	}
	.recommend-list {
		top: 493px;
		left: 135px;
	}
	.recommend-list li {
		font-size: 26px;
		letter-spacing: .1em;
	}
	.recommend-list li span {
		font-size: 33px;
	}
	.recommend-list li:first-of-type {
		margin-top: 0;
	}
	.recommend-list li:nth-of-type(2) {
		margin-top: 50px;
	}
	.recommend-list li:nth-of-type(3) {
		margin-top: 55px;
	}
	.recommend-list li:nth-of-type(4) {
		margin-top: 45px;
	}
	.recommend-list li::before {
		left: -55px;
		width: 41px;
		height: 39px;
	}
	.recommend-list li:nth-of-type(4)::before {
		top: 8px;
	}
}



/*--------------------------------
STEP
--------------------------------*/
.step {
	position: relative;
	margin: 8vw auto 0;
}
.step h2 {
	letter-spacing: .2em;
	color: #f2768f;
}
.step h2::after {
	background: #f2768f;
	width: calc(100% - .2em);
}
.step-title {
	display: block;
	margin: 5.5vw auto 0;
	width: 53vw;
}
.step-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 7.5vw auto 0;
	width: 88%;
}
.step-list li {
	margin-bottom: 7vw;
	width: 44%;
}
.step-list li:nth-of-type(n+3) {
	margin-bottom: 0;
}
.step-list li p {
	margin-top: 2.5vw;
	font-family: Koburina Gothic W6 JIS2004, sans-serif;
	font-size: 4.1vw;
	text-align: center;
	line-height: 1.5;
	font-feature-settings: "palt";
	letter-spacing: .12em;
}
.step-up-block {
	overflow: hidden;
}
.step-up {
	position: relative;
	margin: 10vw auto 0;
}
.step-up-text {
	position: absolute;
	top: 22%;
	left: 0;
	right: 0;
	font-family: Koburina Gothic W6 JIS2004, sans-serif;
	font-size: 4.1vw;
	text-align: center;
	line-height: 1.5;
	letter-spacing: .08em;
}

[data-aos="custom-anime"] {
    opacity: 0;
    /* transition-property: transform, opacity; */
}
[data-aos="custom-anime"].aos-animate {
    opacity: 1;
		animation: stepCustomAnime;
		animation-duration: 800ms;
		animation-iteration-count: 1;
		animation-fill-mode: forwards;
}
@keyframes stepCustomAnime {
	0% {opacity: 0; transform: scale(.3);}
	50% {opacity: 1; transform: scale(1.1);}
	100% {opacity: 1; transform: scale(1);}
}

/* PC
---------------------------------*/
@media (min-width: 751px) {
	.step {
		margin: 80px auto 0;
	}
	.step-title {
		margin: 42px auto 0;
		width: 390px;
	}
	.step-list {
		margin: 55px auto 0;
	}
	.step-list li {
		margin-bottom: 50px;
	}
	.step-list li p {
		margin-top: 15px;
		font-size: 30px;
		letter-spacing: .1em;
	}
	.step-up {
		margin: 80px auto 0;
	}
	.step-up-text {
		top: 22%;
		font-size: 30px;
	}
}



/*--------------------------------
CONTACT
--------------------------------*/
.contact {
	position: relative;
	margin: 0 auto 0;
	padding: 8vw 0 9vw;
	background: #ba9783;
}
.contact h2 {
	font-size: 5.8vw;
	color: #FFF;
}
.contact h2::after {
	content: none;
}
.contact-link {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 4.5vw auto 0;
	width: fit-content;
	transition: 200ms;
}
.contact-link:hover {
	opacity: .8;
}
.icon-mail {
	width: 6vw;
}
.contact-text {
	position: relative;
	margin-left: 1.5vw;
	font-family: Koburina Gothic W1 JIS2004, sans-serif;
	font-size: 4vw;
	letter-spacing: .13em;
	color: #FFF;
}
.contact-text::after {
	position: absolute;
	bottom: -1px;
	left: 0;
	content: "";
	width: 100%;
	height: 1px;
	background: #FFF;
}

/* PC
---------------------------------*/
@media (min-width: 751px) {
	.contact {
		margin: 0 auto 0;
		padding: 55px 0 65px;
	}
	.contact h2 {
		font-size: 43px;
	}
	.contact-link {
		margin-top: 30px;
	}
	.icon-mail {
		width: 40px;
	}
	.contact-text {
		margin-left: 10px;
		font-size: 29px;
	}
}



/*--------------------------------
FOOTER
--------------------------------*/
.footer {
	margin: 9vw auto 33vw;
	background: #FFF;
}
.footer-flex {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 0 auto;
	width: 79%;
}
.footer-logo {
	display: block;
	margin-left: -.5vw;
	width: 45%;
}
.footer-menu li:first-of-type {
	margin-bottom: 6vw;
}
.footer-menu li a {
	font-family: Koburina Gothic W1 JIS2004, sans-serif;
	font-size: 3.2vw;
	letter-spacing: .1em;
}
.footer-copy {
	margin-top: 9vw;
	font-family: Koburina Gothic W1 JIS2004, sans-serif;
	font-size: 3.1vw;
	text-align: center;
	font-feature-settings: "palt";
	letter-spacing: .1em;

}
.footer-copy span {
	font-family: dunbar-low, sans-serif;
}

/* PC
---------------------------------*/
@media (min-width: 751px) {
	.footer {
		margin: 65px auto 0;
		padding-bottom: 245px;
	}
	.footer-flex {
		width: 79%;
	}
	.footer-logo {
		margin-left: 0;
		width: 45%;
	}
	.footer-menu li:first-of-type {
		margin-bottom: 40px;
	}
	.footer-menu li a {
		font-size: 23px;
	}
	.footer-copy {
		margin-top: 60px;
		font-size: 21px;
	}
}
