body {
	position: relative;
	font-family: "Yu Gothic Medium", sans-serif;
}
*:focus {
	outline: none;
}
.rel {
	position: relative;
}
.ab {
	position: absolute;
}
.bold {
	font-family: "Yu Gothic", sans-serif;
	font-weight: bold;
}
a {
	text-decoration: none;
	color: #000;
}
a > img:hover {
	opacity: .8;
}

.ofh {
	overflow: hidden;
}

.br-sp {
	display: none !important;
}
.br-pc {
	display: block !important;
}
@media screen and (max-width: 559px) {
	.br-sp {
		display: block!important;
	}
	.br-pc {
		display: none !important;
	}
}



/*=========================
OPENING
=========================*/
body {
	position: relative;
}
.opening {
	display: flex;
	align-items: center;
	justify-content: center;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	content: "";
	background: #fff;
	transform: translateX(0);
	transform-origin: right;
	z-index: 10;
}
.opening.load {
	transform: translateX(100%);
	transition: 800ms;
}

.op-logo {
	overflow: hidden;
	width: 20%;
	padding: 6%;
}
.op-logo img {
	filter: blur(100px);
}
.op-logo.load img {
	filter: blur(0px);
	transition: 400ms;
}
#menu.show {
	top: 0;
	transition: 800ms;
}

@media screen and (max-width: 559px) {
	.op-logo {
		transform: translateY(-35%);
		width: 40%;
	}
}



/*=========================
menu
=========================*/
#menu {
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: absolute;
	top: -7vw;
	padding: 1% 10% 0;
	width: 100%;
	height: 7vw;
	background: rgba(0,0,0,.8);
	z-index: 99999;
}

#menu .logo {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 9vw;
}
#menu .logo img {
	width: 80%;
}
#menu .logo a:hover {
	opacity: .8;
}
.menu-list {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	width: 42%;
	color: #fff;
	font-family: 'Oswald', sans-serif;
	letter-spacing: .1em;
}
#menu .menu-list .logo {
	display: none;
}
.menu-list li {
	display: flex;
	position: relative;
}
.menu-list > li > a,
.menu-service {
	padding: .5vw 0;
	height: 60%;
	color: #fff;
	font-size: 1.05vw;
}
.menu-list > li a::after {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0%;
	height: 100%;
	content: "";
	border-bottom: 2px solid #fff;
	transition: 200ms;
	cursor: pointer;
}
.menu-list > li a:hover::after {
	width: 100%;
}
.menu-arrow.hover .menu-service::after {
	width: 100%;
}
.menu-arrow .menu-service {
	display: flex;
	align-items: center;
	cursor: pointer;
}
.menu-arrow .menu-arrow-link {
	margin-left: .4vw;
	width: 1vw;
}

/* slide */
.menu-slide {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	padding: 0 0 0 50%;
	height: 5vw;
	background: #000;
}
.menu-slide li a {
	padding: 0 0 .5vw;
	font-family: 'Oswald', sans-serif;
	font-size: 1.05vw;
	letter-spacing: .1em;
	color: #fff;
	z-index: 1;
}
.menu-slide li {
	display: flex;
	position: relative;
	margin-right: 3.5vw;
}
.menu-slide > li::after {
	display: inline-table;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0%;
	height: 100%;
	content: "";
	border-bottom: 2px solid #fff;
	transition: 200ms;
	cursor: pointer;
}
.menu-slide > li:hover::after {
	width: 100%;
}
.menu-slide-block {
	position: absolute;
	top: 7vw;
	left: 0;
	width: 100%;
	height: 0vw;
	overflow: hidden;
	transition: 200ms;
}
.menu-slide-block-sp {
	display: none;
}
#nav-open {
	display: none;
}
.menu-list li.menu-close {
	display: none;
}

@media screen and (max-width: 559px) {
	#menu {
		position: absolute;
		top: -80px;
		padding: 0% 0% 0 5%;
		width: 100%;
		height: 60px;
		background: rgba(0,0,0,.8);
		z-index: 99999;
	}
	#menu .logo {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 70px;
	}
	#menu .logo img {
		width: 100%;
	}
	#nav-open {
		display: flex;
		align-items: center;
		position: fixed;
		top: -58px;
		right: 10px;
		width: 45px;
		height: 37px;
		z-index: 4;
		-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	}
	#nav-open span,
	#nav-open span::before,
	#nav-open span::after {
		position: absolute;
		left: 0;
		right: 0;
		margin: 0 auto;
		width: 30px;
		height: 2px;
		background: #fff;
		display: block;
		content: '';
		cursor: pointer;
		transition: 300ms;
		transform-origin: left;
	}
	#nav-open span::before {
		bottom: 10px;
	}
	#nav-open span:after {
		bottom: -10px;
	}
	#menu.show #nav-open {
		top: 11px;
		transition: 800ms;
	}
	#nav-open.cross span,
	#nav-open.cross span::before,
	#nav-open.cross span::after,
	#nav-open.nav-black span,
	#nav-open.nav-black span::before,
	#nav-open.nav-black span::after{
		background: #000;
	}
	.menu-list {
		display: block;
		position: fixed;
		top: -100vh;
		left: 0;
		padding: 3% 5% 0;
		width: 100%;
		height: 100vh;
		background: #fff;
		transition: 300ms;
	}
	.menu-list.menu-show {
		top: 0;
		transition: 300ms;
	}
	#menu .menu-list .logo {
		display: block;
		border: none;
		margin-bottom: 10%;
		z-index: 1;
	}
	.menu-list > li {
		border-bottom: 1px solid #ccc;
	}
	.menu-list > li > a:not(.menu-logo-link),
	.menu-service {
		padding: 5% 3% 5% 2%;
		width: 100%;
		letter-spacing: .02em;
		font-size: 4.5vw;
		font-weight: bold;
		color: #000;
	}
	.menu-list li.menu-arrow {
		display: block;
	}
	.menu-arrow .menu-service {
		display: flex;
		justify-content: space-between;
	}
	.menu-arrow .menu-arrow-link {
		width: 5vw;
		transition: 300ms;
	}
	.menu-arrow .menu-arrow-link.rotate {
		transform: rotate(180deg);
		transition: 300ms;
	}
	.menu-slide-block {
		display: none;
	}
	.menu-slide-block-sp {
		display: none;
		margin-bottom: 5%;
		width: 100%;
	}
	.menu-slide {
		display: block;
		padding: 0 0 0 2%;
		width: 100%;
		height: auto;
		background: none;
	}
	.menu-slide li {
		margin-right: 0;
		width: 100%;
	}
	.menu-slide li a {
		padding: 2.5% 0 2.5% 5%;
		width: 100%;
		letter-spacing: .03em;
		font-size: 3.8vw;
		font-weight: bold;
		color: #000;
	}
	.menu-list li.menu-close {
		display: flex;
		align-items: center;
		justify-content: center;
		margin: 13% auto 0;
		padding: 1.5% 0;
		width: 6em;
		border: 1px solid #ccc;
		border-radius: 2vw;
		font-size: 4vw;
		color: #9c9c9c;
	}
}



/*=========================
mv
=========================*/
#mv-pc {
	position: relative;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	background-size: cover;
	width: 100%;
	height: 100vh;
}
.bcbx {
	position: absolute;
	top: 45%;
	width: 80vw;
	max-width: 600px;
	transform: translateY(-30%);
	z-index: 2;
}
.mv-text {
	position: absolute;
	bottom: 0%;
	left: 4%;
	letter-spacing: .2em;
	font-family: 'Oswald', sans-serif;
	font-size: 22px;
	color: #fff;
	z-index: 1;
}
canvas {
	width: 100%;
	height: 100%;
	background-color: none;
	z-index: 1;
}
#mv-sp,
#mv-sp-bg {
	display: none;
}

@media screen and (max-width: 559px) {
	#mv-pc {
		display: none;
	}
	#mv-sp {
		display: flex;
		justify-content: center;
		position: relative;
		width: 100%;
		height: 100vh;
	}
	#mv-sp-bg {
		position: fixed;
		top: 0;
		display: flex;
		align-items: flex-end;
		justify-content: center;
		background: url(../img/sp/mv_bg.jpg) no-repeat;
		background-size: cover;
		background-position: 100% 50%;
		height: 100vh;
	}
	.bcbx {
		position: absolute;
		top: 50%;
		left: 3%;
		right: 0;
		margin: 0 auto;
		width: 80vw;
		transform: translateY(-60%);
		z-index: 1;
	}
	.mv-text {
		position: absolute;
		bottom: -1%;
		left: 3%;
		font-size: 3.1vw;
	}
	.contents {
		position: relative;
	}
}



/*=========================
bg
=========================*/
#bg {
	padding: 9% 0 0 9%;
	background: url(../img/service_bg.jpg) no-repeat;
	background-size: 45%;
	background-position: top right;
}
.bg-img01 {
	top: 5%;
	left: 7%;
	margin: 0;
	width: 16%;
}
.bg-img02 {
	top: 28%;
	width: 27%;
	left: 38%;
}

@media screen and (max-width: 559px) {
	#bg {
		padding: 18% 7% 0 7%;
		background: url(../img/sp/service_bg.jpg) no-repeat;
		background-size: 72%;
		background-position: 170% 4.7%;
		background-color: #fff;
	}
	.bg-img01 {
		display: none;
	}
	.bg-img02 {
		top: 16%;
		left: 0;
		right: 0;
		margin: 0 auto;
		width: 85%;
	}
}



/*=========================
about
=========================*/
#about h2 {
	margin-right: 7.8vw;
	font-family: 'Oswald', sans-serif;
	font-size: 2vw;
	letter-spacing: .1em;
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
}
#about {
	display: flex;
	width: 70vw;
}
.about-text {
	position: relative;
	margin-top: 0;
	z-index: 1;
}
.about-text p:first-of-type {
	margin-top: -.5em;
	line-height: 2;
	font-size: 1.8vw;
	font-weight: bold;
}
.about-text p:last-of-type {
	margin-top: 7%;
	line-height: 2.2;
	text-align: justify;
	font-size: .86vw;
}

@media screen and (max-width: 559px) {
	#about h2 {
		margin-bottom: 10%;
		margin-left: -1%;
		height: 5em;
		font-size: 5vw;
		letter-spacing: .05em;
		word-break: keep-all;
	}
	#about {
		display: block;
		width: 100%;
	}
	.about-text {
		position: relative;
		margin-top: 0;
		width: 100%;
		z-index: 1;
	}
	.about-text p:first-of-type {
		margin-top: -.5em;
		line-height: 2;
		font-size: 4.5vw;
		font-weight: bold;
	}
	.about-text p:last-of-type {
		margin-top: 5%;
		line-height: 2.2;
		text-align: justify;
		font-size: 3.1vw;
	}
}



/*=========================
service
=========================*/
#service {
	position: relative;
	margin-top: 30%;
	z-index: 1;
}
#service h2 {
	font-family: 'Oswald', sans-serif;
	font-size: 2vw;
	letter-spacing: .1em;
}
#service h2 span {
	margin-left: 1em;
	letter-spacing: .1em;
	font-size: .55em;
}
#service ul {
	display: flex;
	margin-top: 2%;
	padding-right: 9%;
	height: 100%;
}
#service ul li {
	margin-right: 2%;
	width: 27vw;
	top: 0;
}
#service ul li:last-of-type {
	margin-right: 0;
}
#service .service-bg {
	width: 100%;
}
#service .service-title {
	top: 11%;
	left: 0;
	right: 0;
	text-align: center;
	letter-spacing: .05em;
	font-family: 'Oswald', sans-serif;
	font-size: 1.5vw;
	font-weight: bold;
}
#service .service-title span {
	margin-left: .5em;
	letter-spacing: .05em;
	font-family: "Yu Gothic", sans-serif;
	font-size: 1vw;
}
#service .service-text {
	bottom: 21%;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 80%;
	text-align: justify;
	line-height: 2;
	font-size: .78vw;
}
#service .view-more {
	bottom: 11%;
	left: 0;
	right: 0;
	margin: 0 auto;
	padding-bottom: .5em;
}

@media screen and (max-width: 559px) {
	#service {
		position: relative;
		margin-top: 120%;
		z-index: 1;
	}
	#service h2 {
		margin-bottom: 10%;
		font-size: 5vw;
		letter-spacing: .05em;
	}
	#service h2 span {
		display: block;
		margin-left: 0;
		letter-spacing: .05em;
		font-size: .6em;
	}
	#service ul {
		display: block;
		padding-right: 0;
	}
	#service ul li {
		margin-bottom: 10%;
		margin-right: 0;
		width: 100%;
	}
	#service .service-title {
		top: 9%;
		font-size: 5vw;
	}
	#service .service-title span {
		font-size: 70%;
	}
	#service .service-text {
		bottom: 20%;
		width: 80%;
		line-height: 1.5;
		letter-spacing: .05em;
		font-size: 3.1vw;
	}
	#service .view-more {
		bottom: 8%;
	}
}



/*=========================
photo
=========================*/
#photo {
	margin-top: 10%;
}
#photo h2 {
	margin: 2% 0 2% 9%;
	font-family: 'Oswald', sans-serif;
	font-size: 2vw;
	letter-spacing: .1em;
}
.slider {
	overflow: hidden;
}
.slider img {
	width: 100%;
	height: 100%;
}

@media screen and (max-width: 559px) {
	#photo {
		margin-top: 18%;
	}
	#photo h2 {
		margin: 2% 0 5% 7%;
		font-size: 5vw;
		letter-spacing: .05em;
	}
}



/*=========================
news
=========================*/
#news {
	position: relative;
	padding: 9%;
}
#news .title {
	width: 34vw;
}
#news h2 {
	margin-bottom: 4%;
	font-family: 'Oswald', sans-serif;
	font-size: 2vw;
	letter-spacing: .1em;
}
#news h2 span {
	margin-top: 4em;
	letter-spacing: .1em;
	vertical-align: text-top;
	font-size: .55em;
}
#news ul li {
	display: flex;
	align-items: center;
	padding: 1.3em 1em 1.3em 0;
	border-bottom: 1px solid #000;
	line-height: 2;
	font-size: .86vw;
	transition: 100ms;
}
#news ul li:first-of-type {
	border-top: 1px solid #000;
}
#news .news-date {
	margin-right: 3em;
	font-weight: bold;
}

#news .view-more {
	position: absolute;
	right: 11%;
	margin-top: 4%;
}

@media screen and (max-width: 559px) {
	#news {
		margin: 20% auto 0;
		padding: 0 7% 0;
	}
	#news h2 {
		margin-bottom: 10%;
		font-size: 5vw;
		letter-spacing: .05em;
	}
	#news h2 span {
		letter-spacing: .05em;
		font-size: .6em;
	}
	#news ul li {
		letter-spacing: .02em;
		font-size: 3.1vw;
	}

	#news .view-more {
		right: 11%;
		margin-top: 10%;
	}
}



/*=========================
recruit
=========================*/
#recruit {
	position: relative;
	margin: 0 auto 0;
	padding: 9%;
}
#recruit .parallax-window {
	position: relative;
	height: 33vw;
}
#recruit .title {
	position: absolute;
	top: 24%;
	left: 0;
	padding: 5.7% 0 5.8% 9%;
	width: 38vw;
	background: #f5f5f5;
}
#recruit h2 {
	font-family: 'Oswald', sans-serif;
	font-size: 2vw;
	letter-spacing: .1em;
}
#recruit h2 span {
	display: block;
	margin-top: 0;
	letter-spacing: .0em;
	vertical-align: text-top;
	font-family: "Yu Gothic Medium", sans-serif;
	font-size: .55em;
	font-weight: normal;
}
.join {
	bottom: 13%;
	left: 41.5%;
	width: 18vw;
	z-index: 1;
}
.recruit-view-more {
	position: absolute;
	bottom: 0;
	right: 0;
	padding: 2.5% 3%;
	background: #000;
}
.recruit-view-more .view-more {
	color: #fff;
}
#recruit .view-more::after {
	border-bottom: 1px solid #fff;
}

@media screen and (max-width: 559px) {
	#recruit {
		margin: 40% auto 0;
		padding: 0 7%;
	}
	#recruit .parallax-window {
		position: relative;
		height: 70vw;
		background-image: url(../img/sp/recruit_bg.jpg) !important;
		background-size: cover;
		background-position: center top;
		background-repeat: no-repeat;
	}
	#recruit .title {
		position: absolute;
		top: 10%;
		padding: 11.7% 0 11.8% 8%;
		width: 48vw;
		background: #f5f5f5;
		z-index: 1;
	}
	#recruit h2 {
		font-size: 5vw;
		letter-spacing: .05em;
	}
	#recruit h2 span {
		display: block;
		margin-top: 0;
		letter-spacing: .05em;
		vertical-align: text-top;
		font-family: "Yu Gothic Medium", sans-serif;
		font-size: .6em;
		font-weight: normal;
	}
	.join {
		bottom: 7%;
		left: 8.5%;
		width: 39.5vw;
		z-index: 1;
	}
	.recruit-view-more {
		padding: 4% 4%;
	}
}



/*=========================
contact
=========================*/
#contact h2 {
	margin: 3% auto 0;
	width: 100%;
	font-family: 'Oswald', sans-serif;
	font-size: 2.5vw;
	line-height: .8;
	letter-spacing: .1em;
	text-align: center;
}
#contact h2 a {
	position: relative;
	display: block;
	padding: 4%;
	width: 100%;
	height: 100%;
	background: #1f1f1f;
	font-weight: normal;
	color: #fff;
	transition: 200ms;
}
#contact h2 a:hover {
	background: #fff;
	color: #1f1f1f;
}
#contact h2 a:hover::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-top: 1px solid #1f1f1f;
}
#contact h2 span {
	font-family: "Yu Gothic Medium", sans-serif;
	font-size: .8vw;
	font-weight: normal;
}

@media screen and (max-width: 559px) {
	#contact h2 {
		margin: 25% auto 0;
		width: 100%;
		font-family: 'Oswald', sans-serif;
		font-size: 5vw;
		line-height: .8;
		letter-spacing: .1em;
		text-align: center;
	}
	#contact h2 a {
		display: block;
		padding: 12% 0;
		width: 100%;
		height: 100%;
		background: #1f1f1f;
		font-weight: normal;
		color: #fff;
		transition: 200ms;
	}
	#contact h2 a:hover {
		background: #3a3a3a;
		color: #fff;
	}
	#contact h2 span {
		letter-spacing: .05em;
		font-size: .6em;
	}
}



/*=========================
footer
=========================*/
footer {
	padding: 3% 10% 3%;
	background: #000;
}
footer .top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	flex-wrap: wrap;
}
footer .logo {
	margin-top: .7%;
	width: 50%;
}
footer .logo a {
	display: block;
	width: 20%;
}
footer .menu-list > li > a {
	padding: .5vw 0;
}
.menu-pulldown {
	position: relative;
}
.menu-pulldown p {
	padding: .5vw 0;
	font-size: 1.05vw;
}
.menu-pulldown ul {
	position: absolute;
	top: 100%;
	left: 0;
	width: 9vw;
	pointer-events: none;
}
.menu-pulldown:hover ul {
	pointer-events: all;
}
.menu-pulldown ul li {
	margin-top: 7%;
	font-size: .8vw;
}
.menu-pulldown ul li a {
	position: relative;
	padding: .5vw 0;
	color: #fff;
}
footer .menu-list > li::after {
	border-bottom: 2px solid #fff;
}
footer .menu-list > li a::after {
	bottom: 5%;
}
.menu-pulldown p {
	position: relative;
}
.menu-pulldown p::after {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0%;
	height: 100%;
	content: "";
	border-bottom: 2px solid #fff;
	transition: 200ms;
	cursor: pointer;
}
.menu-pulldown p:hover::after {
	width: 100%;
}
.menu-pulldown li a {
	left: -.5vw;
	transition: 200ms;
	opacity: 0;
}
.menu-pulldown:hover li a {
	left: 0;
	transition: 200ms;
	opacity: 1;
}
.menu-pulldown li a::after {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0%;
	height: 100%;
	content: "";
	border-bottom: 2px solid #fff;
	transition: 200ms;
	cursor: pointer;
}
.menu-pulldown li a:hover::after {
	width: 100%;
}
/*
footer .bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 15%;
}
*/
.footer-copy {
	margin-top: 15%;
	font-size:min(1.4vw,16px);
	color: #fff;
}
footer .menu-sns {
	display: flex;
	justify-content: space-between;
	margin-top: 15%;
	width: 42%;
}
.menu-sns .sns-icon li {
	display: flex;
	align-items: center;
	width: 100%;
}
.menu-sns .sns-icon a {
	display: block;
	width: 1.5em;
	text-align: center;
	color: #fff;
	transition: 70ms;
}
.menu-sns .sns-icon a:hover {
	transform: scale(1.2);
	transition: 70ms;
}
.sns-icon {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.sns-icon li {
	margin-right: 10px;
	font-size: 1.28vw;
}
.sns-icon li:last-of-type {
	margin-right: 0;
}
.fa-twitter:before {
    content: '𝕏' !important;
    font-family: sans-serif !important;
    font-weight: bold;
}
ul.privacy-menu {
	display: flex;
	align-items: center;
	margin: 0 0 0;
	width: 100%;
}
.privacy-menu li:first-of-type {
	margin-right: 1.2em;
}
.privacy-menu li a {
	position: relative;
	font-size:min(1.1vw,12px);
	color: #FFF;
}
.privacy-menu li a::after {
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0%;
	height: 100%;
	content: "";
	border-bottom: 1px solid #fff;
	transition: 200ms;
	cursor: pointer;
}
.privacy-menu li a:hover::after {
	width: 100%;
}
.logo-bottom {
	display: none;
}

@media screen and (max-width: 559px) {
	footer .menu-list {
		display: none;
	}
	footer {
		position: relative;
		padding: 10% 5% 6%;
	}
/*
	footer .top {
		display: block;
	}
*/
	footer .logo {
		order: 2;
		margin: 0 auto 8%;
		width: 100%;
	}
	footer .logo a {
		margin: 0 auto;
		width: 25%;
	}
/*
	footer .bottom {
		display: block;
		margin-top: 10%;
	}
*/
/*
	footer .bottom p {
		text-align: center;
		letter-spacing: .1em;
		font-size: 3.5vw;
	}
*/
/*
	footer .bottom .menu-sns {
		justify-content: center;
		position: absolute;
		top: 15%;
		left: 0;
		right: 0;
		width: 100%;
	}
*/
	.footer-copy {
		order: 2;
		margin: 7% auto 0;
		font-size: 3.5vw;
		letter-spacing: .1em;
	}
	footer .menu-sns {
		flex-wrap: wrap;
		order: 1;
		margin-top: 0;
		width: 100%;
	}
	footer .menu-sns li {
		width: auto;
	}
	.menu-sns .sns-icon {
		justify-content: center;
		order: 1;
		width: 100%;
		margin-bottom: 6%;
	}
	.menu-sns .sns-icon li {
		width: auto;
		font-size: 6.5vw;
	}
	ul.privacy-menu {
		display: block;
		order: 3;
		margin: 0 0 0;
		width: 100%;
		text-align: center;
	}
	.privacy-menu li:first-of-type {
		margin-right: 0;
	}
	.privacy-menu li a {
		font-size: 3vw;
	}
	.privacy-menu li a::after {
		content: none;
	}
	.logo-top {
		display: none;
	}
	.logo-bottom {
		display: block;
		order: 2;
	}
}



/*=========================
VIEW MORE
=========================*/
.view-more {
	display: flex;
	padding-bottom: .5em;
	width: 6.8vw;
	align-items: center;
	letter-spacing: .1em;
	font-family: 'Oswald', sans-serif;
	font-size: 1vw;
	font-weight: bold;
}
.view-more p {
	margin-right: 3%;
}
.view-more img {
	margin-right: -1.5%;
	width: .7vw;
}
.view-more img:nth-of-type(1) {
	opacity: .2;
}
.view-more img:nth-of-type(2) {
	opacity: .4;
}
.view-more::after {
	position: absolute;
	bottom: 0;
	left: 0;
	content: "";
	width: 100%;
	border-bottom: 1px solid #000;
	transform: scaleX(0);
	transform-origin: left;
	transition: 200ms;
}
.view-more:hover::after {
	transform: scaleX(1);
	transition: 200ms;
}
.view-more:hover img {
	animation: viewMore 1000ms infinite;
}
.view-more:hover img:nth-of-type(1) {
	animation-delay: 0;
}
.view-more:hover img:nth-of-type(2) {
	animation-delay: 100ms;
}
.view-more:hover img:nth-of-type(3) {
	animation-delay: 200ms;
}

@keyframes viewMore {
	0%   {opacity: 0;}
	100% {opacity: 1;}
}

@media screen and (max-width: 559px) {
	.view-more {
		padding-bottom: .5em;
		width: 30vw;
		align-items: center;
		letter-spacing: .0em;
		font-size: 4.5vw;
	}
	.view-more::after {
		bottom: 10%;
		transform: scaleX(1);
	}
	.view-more p {
		margin-right: 8%;
	}
	.view-more img {
		margin-right: -1.5%;
		width: 3vw;
	}
}



/*=========================
PAGE COMMON
=========================*/
.page-mv img {
	width: 100%;
}



/*=========================
221025 P-mark
=========================*/
footer .menu-sns {
	justify-content: flex-end;
	margin-top: 11%;
	margin-left: auto;
	margin-right: 0;
}
ul.privacy-menu {
	width: auto;
}
.privacy-menu li a::after {
	border-bottom: 1px solid #000;
}

.p-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 10%;
	background: #FFF;
}
.p-footer-right {
	display: flex;
	width: 42%;
}
.footer-copy {
	margin-top: 0;
	color: #000;
}
.privacy-menu li a {
	color: #000;
}
.p-image {
	display: block;
	margin: 0 auto;
	margin-right: 0;
	width: 60px;
}

@media screen and (max-width: 559px) {
	footer .logo {
		margin: 0 auto 6%;
	}
	footer .menu-sns {
		margin-top: 0;
	}
	.p-footer {
		display: flex;
		flex-direction: column;
		padding: 5% 0;
		background: #FFF;
	}
	.footer-copy {
		order: 2;
		font-size: 3vw;
	}
	.p-footer-right {
		display: block;
		order: 1;
		margin-bottom: 8%;
	}
	ul.privacy-menu {
		margin-bottom: 8%;
	}
	.p-image {
		display: block;
		margin: 0 auto;
		width: 13vw;
	}
}


/*----------------------------
250106 new
----------------------------*/

.insta-logo {
	width: 1.2%;
    position: absolute;
    bottom: 2.75%;
    right: 24%;
	margin-left: auto;
}
.new-sns-icon {
	position: absolute;
}
.new-sns-icon {
	display: flex;
	align-items: baseline;
	position: absolute;
	right: 7.5%;
    width: 18%;
    bottom: 2%;
	column-gap: 5%;
}
.new-sns-icon li {
    width: 26%;
}

.now-sns-icon-a  {
	display: block;
    padding: 14% 10% 0%;
}
.now-sns-icon-ff img {
	margin-bottom: -9.5%;
}

@media screen and (max-width: 559px) {
	footer {
        padding: 16% 5% 10%;
    }
	footer .logo {
        margin: 20% auto 0%;
    }
	.insta-logo {
		bottom: auto;
		top: 18%;
		margin: 0 auto;
		left: 0;
		right: 0;
		width: 5%;
	}
	.new-sns-icon {
		width: 100%;
		justify-content: center;
		left: 0;
		right: 0;
		bottom: auto;
	}
	footer .menu-sns li {
        width: 20%;
    }
	.brand-text ul li {
		text-align: left;
	}
}

/* landinghub適用時の高さ指定 */
.parallax-slider {
	height: auto !important;
}