@charset "UTF-8";
/* BOX MAIN
-------------------------------------------------- */
.box-main {
	height: 100vh;
}
.box-main__inner {
	display: flex;
	padding: 2rem;
	box-sizing: border-box;
	height: 100%;
}
.box-main__image {
	width: 55.48%;
	box-sizing: border-box;
	line-height: 0;
	visibility: hidden;
	animation-name: none;
}
.box-main__content {
	width: calc(100% - 55.48%);
	box-sizing: border-box;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	flex-flow: column;
	padding: 5vw 4.667vw;
}
.box-main__title--clone {
	display: block;
	width: 100%;
	padding-left: 0.2rem;
}
.box-main__text {
	display: block;
	width: 100%;
	box-sizing: border-box;
	margin-top: 3.2rem;
	font-size: 1.8rem;
	line-height: 2.22em;
	letter-spacing: 0.2em;
	color: #2D2F30;
	visibility: hidden;
	animation-name: none;
}
.box-main__logo {
	-webkit-transition: all .5s ease;
	transition: all .5s ease;
}
.box-main__title {
	padding-left: 0.2em;
	visibility: hidden;
	animation-name: none;
}
.box-main__title--clone {
	position: fixed;
	left: 0;
	top: -10rem;
	width: 100%;
	line-height: 0;
	padding: 1.516rem 0;
	text-align: center;
	-webkit-transition: top .5s ease;
	transition: top .5s ease;
	z-index: 100;
	visibility: hidden;
	animation-name: none;
	z-index: 9999;
}
.box-main__title--clone.is-fixed {
	top: 0;
}
.box-main__title--clone .box-main__logo {
	width: 7.5rem;
}
.js-logo-fixed{
	position: relative;
}
.js-logo-fixed:after{
	content: '';
	position: fixed;
	background: #F2EFEA;
	height: 5rem;
	left: 0;
	top: -10rem;
	width: 100%;
	z-index: 9998;
	-webkit-transition: all .5s ease;
	transition: all .5s ease;
	opacity: 0;
	pointer-events: none;
}
.js-logo-fixed.is-fixed:after{
	top: 0;
	opacity: 1;
}


.box-contact {
	padding: 0.4rem;
	display: flex;
	justify-content: center;
	background-color: #F2EFEA;
	position: fixed;
	bottom: -100px;
	width: 100%;
	left: 0;
	z-index: 100;
	-webkit-transition: bottom .5s linear;
	transition: bottom .5s linear;
	box-sizing: border-box;
}
.box-contact .btn {
	box-sizing: border-box;
	height: 4rem;
}
.box-contact.is-fixed{
	bottom: 0;
}
.box-contact .btn-mail{
	font-size: 1.2rem;
}
@supports (padding-top: constant(safe-area-inset-bottom)) {
	.box-contact.is-fixed{
		--safe-area-inset-bottom: constant(safe-area-inset-bottom);
		padding-bottom:  calc(0.4rem + var(--safe-area-inset-bottom));
	}
}
@supports (padding-bottom: env(safe-area-inset-bottom)) {
	.box-contact.is-fixed{
		--safe-area-inset-bottom: env(safe-area-inset-bottom);
		padding-bottom:  calc(0.4rem + var(--safe-area-inset-bottom));
	}
}

@media screen and (max-width: 959px) {
	.box-main__inner {
		display: block;
		padding: 0;
	}
	.box-main__content {
		width: 100%;
		padding: 5.2rem 13.333vw 3.6rem;
	}
	.box-main__image {
		text-align: center;
		width: auto;
		min-height: 37.5rem;
	}
	.box-main__title--clone {
		text-align: center;
		padding: 0;
		line-height: 0;
		position: absolute;
		background: none;
		top: 0;
		left: 0;
		width: 100%;
	}
	.box-main__title--clone.is-fixed{
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		line-height: 0;
		padding: 1.516rem 0;
		text-align: center;
	}
	.box-main__title{
		opacity: 0;
		padding: 0;
		visibility: hidden!important;
	}
	.box-main__logo{
		width: 26rem;
		-webkit-transition: all .5s ease;
		transition: all .5s ease;
	}
	.box-main__title--clone{
		visibility: hidden;
		animation-name: none;
	}
	.box-main__title--clone .box-main__logo{
		width: 26rem;
	}
	.box-main__title--clone.is-fixed .box-main__logo{
		width: 7.5rem;
	}
	.box-main__text {
		margin-top: 3rem;
		padding: 0;
		font-size: 3.2vw;
		line-height: 2.166em;
	}
	.box-contact {
		flex-wrap: nowrap;
		padding: 0.2rem 0.2rem;
	}
	.box-contact .btn {
		box-sizing: border-box;
		width: 50%;
		margin: 0 0.1rem;
		flex-basis: calc(50% - 0.2rem);
		height: 5rem;
	}
	.js-logo-fixed:after{
		top: 0;
	}
	
	@supports (padding-top: constant(safe-area-inset-bottom)) {
		.box-contact.is-fixed{
			--safe-area-inset-bottom: constant(safe-area-inset-bottom);
			padding-bottom:  calc(0.2rem + var(--safe-area-inset-bottom));
		}
	}
	@supports (padding-bottom: env(safe-area-inset-bottom)) {
		.box-contact.is-fixed{
			--safe-area-inset-bottom: env(safe-area-inset-bottom);
			padding-bottom:  calc(0.2rem + var(--safe-area-inset-bottom));
		}
	}
}
@media screen and (min-height: 737px) and (orientation: portrait) {
	.box-main__logo,
	.box-main__title--clone .box-main__logo{
		width: 28rem;
	}
	.box-main__content {
		width: 100%;
		padding: 12rem 13.333vw 10.3rem;
	}
	.box-main__text {
		margin-top: 4.2rem;
	}
}

.is-large-screen .box-main__logo,
.is-large-screen .box-main__title--clone .box-main__logo{
	width: 28rem;
}
.is-large-screen .box-main__title--clone.is-fixed .box-main__logo{
	width: 7.5rem;
}
.is-large-screen .box-main__content {
	width: 100%;
	padding: 9rem 13.333vw 7.3rem;
}
.is-large-screen .box-main__text {
	margin-top: 4.2rem;
}

/* BOX STATEMENT
-------------------------------------------------- */
.box-statement {
	margin-top: 54rem;
}
.box-statement__image {
	margin-top: 11rem;
	text-align: center;
}
.box-statement__image img {
	width: 700px;
	max-width: 100%;
	height: auto;
}
.box-statement__title {
	text-align: center;
	max-width: 45rem;
	margin: 6rem auto 0;
	padding: 0 2rem;
	font-size: 2.5rem;
	line-height: 1.88em;
	letter-spacing: 0.2em;
	color: #2D2F30;
}
.box-statement__text {
	max-width: 45rem;
	margin: 5.2rem auto 0;
	padding: 0 2rem;
	font-size: 1.5rem;
	line-height: 2.667em;
	letter-spacing: 0.07em;
}
@media screen and (max-width: 959px) {
	.box-statement {
		margin-top: 18rem;
	}
}
@media screen and (max-width: 559px) {
	
	.box-statement__image {
		margin-top: 3rem;
	}
	.box-statement__title {
		margin-top: 2.5rem;
		text-align: left;
		font-size: 2.2rem;
		line-height: 1.68em;
	}
	.box-statement__text {
		margin: 3rem 0 0;
		max-width: 100%;
		font-size: 1.3rem;
		line-height: 2.462em;
		letter-spacing: 0.1em;
	}
}

/* BOX CASE
-------------------------------------------------- */
.box-case {
	margin-top: 56rem;
}
.box-case__slider {
	margin-top: 11.2rem;
}
.box-case__slider + .box-case__slider {
	margin-top: 23.5rem;
}
@media screen and (max-width: 959px) {
	.box-case {
		margin-top: 17.6rem;
	}
	.box-case__slider {
		margin-top: 7.4rem;
	}
	.box-case__slider + .box-case__slider {
		margin-top: 9.5rem;
	}
}

/* BOX CONSULTING
-------------------------------------------------- */
.box-consulting {
	margin-top: 56rem;
}
.box-consulting__inner {
	max-width: 78rem;
	box-sizing: border-box;
	margin: 0 auto;
	padding: 0 2rem;
}
.box-consulting__text {
	text-align: center;
	margin-top: 4rem;
}
.lst-consulting {
	margin-top: 3.5rem;
	margin-bottom: 5.4rem;
	padding: 0 2rem;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.lst-consulting li span {
	width: 17.3rem;
	height: 17.3rem;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2rem;
	background-color: #fff;
	text-align: center;
	font-size: 1.7rem;
	box-sizing: border-box;
	letter-spacing: 0.2em;
	line-height: 1.76em;
	color: #2D2F30;
}
.box-consulting__link {
	display: flex;
	justify-content: center;
	margin-left: -1rem;
	margin-right: -1rem;
}
.box-consulting__link .btn {
	flex-basis: 34rem;
	font-size: 1.8rem;
	padding: 1.3rem 2rem;
	margin: 0 1rem;
	position: relative;
}
.box-consulting__link .btn:after {
	content: '';
	display: inline-block;
	width: 0.4rem;
	height: 0.4rem;
	border-top: 0.1rem solid #fff;
	border-right: 0.1rem solid #fff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	position: absolute;
	left: 1.4rem;
	top: 50%;
	margin-top: -0.2rem;
}
.box-consulting__link .btn--02 {
	font-size: 1.2rem;
	letter-spacing: 0.1em;
	padding: 1.1rem 2rem 1.5rem;
}
.box-consulting__link .btn--02 .btn__number {
	font-size: 2.2rem;
	margin-top: 1rem;
	letter-spacing: 0.1em;
}
@media screen and (max-width: 959px) {
	.box-consulting {
		margin-top: 18.8rem;
	}
	.lst-consulting {
		justify-content: center;
		padding: 0;
	}
	.lst-consulting li {
		margin: 0 1rem;
	}
	.box-consulting__text {
		text-align: left;
		margin: 2.8rem 0 0;
	}
}
@media screen and (max-width: 767px) {
	.box-consulting__link {
		margin: 0;
		flex-direction: column-reverse;
	}
	.box-consulting__link .btn {
		flex-basis: 100%;
		font-size: 1.6rem;
		min-height: 6rem;
		margin: 0;
	}
	.box-consulting__link .btn--02 {
		font-size: 1.2rem;
	}
	.box-consulting__link .btn + .btn {
		margin-bottom: 3rem;
	}
}
@media screen and (max-width: 559px) {
	.lst-consulting {
		margin-bottom: 3rem;
	}
	.lst-consulting li span {
		font-size: 1.6rem;
		width: 13.8rem;
		height: 13.8rem;
		padding: 1rem;
	}
	
}
@media screen and (max-width: 374px) {
	.lst-consulting li {
		margin-bottom: 1rem;
	}
}

/* BOX PLAN
-------------------------------------------------- */
.box-plan {
	margin-top: 56rem;
}
.box-plan__inner {
	max-width: 88rem;
	margin: 0 auto;
	padding: 0 2rem;
}
.box-plan__text {
	text-align: center;
	max-width: 74.6rem;
	margin: 4rem auto 0;
}
.box-plan__slider {
	margin-top: 13.3rem;
}
.box-plan__slider .hdg-lv3 {
	font-size: 2.7rem;
}
.box-plan__slider  + .box-plan__slider {
	margin-top: 16rem;
}
@media screen and (max-width: 959px) {
	.box-plan{
		margin-top: 18rem;
	}
	.box-plan__text {
		text-align: left;
	}
}
@media screen and (max-width: 559px) {
	.box-plan .txt-lead{
		margin-top: 2rem;
	}
	.box-plan__text {
		margin-top: 2.5rem;
	}
	.box-plan__slider {
		margin-top: 6.5rem;
	}
	.box-plan__slider  + .box-plan__slider {
		margin-top: 10rem;
	}
	.box-plan__slider .hdg-lv3 {
		font-size: 1.8rem;
	}
}

/* BOX CONCEPT
-------------------------------------------------- */
.box-concept {
	margin-top: 56rem;
}
.box-concept__text {
	text-align: center;
	margin-top: 5rem;
	max-width: 74.6rem;
	margin: 4rem auto 0;
}
.box-concept__item {
	margin-top: 14.7rem;
}
.box-concept__item + .box-concept__item {
	margin-top: 2rem;
}
.box-concept__item___inner {
	background-color: #fff;
	display: flex;
	justify-content: space-between;
}
.box-concept__item.box-concept__item--ltr .box-concept__item___inner {
	flex-direction: row;
}
.box-concept__item.box-concept__item--rtl .box-concept__item___inner {
	flex-direction: row-reverse;
}
.box-concept__item__image {
	width: 50%;
	line-height: 0;
	margin: 0;
	position: relative;
	padding-bottom: 40.66%;
}
.box-concept__item__image span {
	display: inline-block;
	font-size: 6.5rem;
	color: #fff;
	font-weight: 200;
	letter-spacing: 0.13em;
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.box-concept__item__content {
	width: 50%;
	padding: 2rem 7.5% 2rem 8.5%;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.box-concept__item__title {
	font-size: 2.4rem;
	letter-spacing: 0.25em;
	color: #2D2F30;
}
.box-concept__item__text {
	text-align: left;
	margin-top: 1.5rem;
}
@media screen and (max-width: 959px){
	.box-concept{
		margin-top: 18rem;
	}
	.box-concept__text {
		margin-top: 2.5rem;
		padding: 0 2rem;
		text-align: left;
	}
	.box-concept__item.box-concept__item--ltr .box-concept__item___inner,.box-concept__item.box-concept__item--rtl .box-concept__item___inner {
		flex-direction: column;
		margin-left: -2rem;
		margin-right: -2rem;
	}
	.box-concept__item__title {
		font-size: 2rem;
	}
	.box-concept__item__content {
		width: 100%;
		padding: 0 2rem;
		margin-top: 4rem;
		margin-bottom: 7rem;
	}
	.box-concept__item__image {
		width: 100%;
	}
	.box-concept__item__image span {
		font-size: 5rem;
	}
	.box-concept__item__text {
		margin-top: 0;
		line-height: 2.5em;
	}
}
@media screen and (max-width: 559px){
	.box-concept__item {
		margin-top: 5rem;
	}
	.box-concept__item + .box-concept__item {
		margin-top: 1rem;
	}
	.box-concept__item__image {
		padding-bottom: 100vw;
	}
}

/* BOX PROCESS
-------------------------------------------------- */
.box-process {
	margin-top: 56rem;
}
.box-process__inner {
	max-width: 100rem;
	margin: 0 auto;
	padding: 0 2rem;
}
.box-process__text {
	text-align: center;
	max-width: 74.6rem;
	margin: 4.4rem auto 0;
}
.lst-process {
	margin-top: 6rem;
}
.lst-process li + li {
	margin-top: 1rem;
}
.box-step {
	padding: 3.8rem 5rem 3.4rem;
	display: table;
	width: 100%;
	table-layout: fixed;
	background-color: #fff;
	box-sizing: border-box;
}
.box-step__title {
	font-size: 1.7rem;
	letter-spacing: 0.18em;
	line-height: 1;
	padding-right: 2rem;
	display: table-cell;
	width: 14%;
	vertical-align: middle;
	box-sizing: border-box;
}
.box-step__content {
	display: table-cell;
	vertical-align: middle;
}
.box-step__content__title {
	font-size: 1.6rem;
	font-weight: bold;
	line-height: 2.25em;
	letter-spacing: 0.1em;
}
.box-step__content__text {
	line-height: 2em;
	letter-spacing: 0.1em;
}
@media screen and (max-width: 959px){
	.box-process {
		margin-top: 18.7rem;
	}
	.box-process__inner {
		padding: 0;
	}
	.box-process__text {
		margin-top: 3rem;
		padding: 0 2rem;
		text-align: left;
	}
	.box-process__item__title {
		font-size: 2rem;
	}
	.lst-process {
		margin-top: 5rem;
	}
	.box-step {
		padding: 2.5rem 2rem 2rem;
	}
	.box-step__content__title {
		font-size: 1.4rem;
		line-height: 1.87em;
		margin-top: 2.2rem;
		letter-spacing: 0.07em;
	}
	.box-step__title {
		display: block;
		width: 100%;
		font-size: 1.4rem;
		padding-right: 0;
	}
	.box-step__content {
		display: block;
	}
	.box-step__content__text {
		margin-top: 1.4em;
		line-height: 2.15em;
	}
}

/* BOX PRICE
-------------------------------------------------- */
.box-price {
	margin-top: 56rem;
}
.box-price__inner {
	max-width: 70rem;
	margin: 0 auto;
	padding: 0 2rem;
}
.box-price__text {
	text-align: center;
	max-width: 74.6rem;
	margin: 4rem auto 0;
}
@media screen and (max-width: 959px) {
	.box-price__text {
		text-align: left;
	}
	.box-price {
		margin-top: 18.6rem;
	}
}
@media screen and (max-width: 559px) {
	.box-price__text {
		margin-top: 2.5rem;
	}
	.box-price-table {
		margin-left: -2rem;
		margin-right: -2rem;
	}
}

/* BOX DESIGNER
-------------------------------------------------- */
.box-designer{
	margin-top: 56rem;
}
.box-designer__inner {
	max-width: 87rem;
	margin: 0 auto;
	padding: 0 2rem;
}
.box-designer__text {
	text-align: center;
	max-width: 74.6rem;
	margin: 4rem auto 0;
}
.box-designer__content{
	margin-top: 4.5rem;
	display: table;
	width: 100%;
	table-layout: fixed;
}
.box-designer__image,.box-designer__accordion{
	display: table-cell;
	vertical-align: top;
}
.box-designer__image{
	width: 27rem;
	padding: 0 3.5rem 0 0;
	box-sizing: border-box;
}
.box-designer__capption{
	margin-top: 2rem;
	margin-left: 0.5rem;
}
.box-designer__name{
	font-size: 1.4rem;
	line-height: 1;
	letter-spacing: 0.2em;
}
.box-designer__fullname{
	margin-top: 0.3rem;
	font-size: 1.2rem;
	letter-spacing: 0.18em;
}
.box-designer__company {
	font-size: 1.2rem;
	letter-spacing: 0.18em;
}
.box-designer__accordion{
	padding-top: 0.6rem;
}
.box-designer__accordion__item{
	padding: 2.6rem 3.5rem 2.6rem 0.5rem;
	box-sizing: border-box;
	border-top: 0.1rem solid rgba(112, 112, 112, 0.28);
	cursor: pointer;
}
.box-designer__accordion__item:last-child{
	border-bottom: 0.1rem solid rgba(112, 112, 112, 0.28);
}
.box-designer__accordion__title__inner{
	position: relative;
}
.box-designer__accordion__icon{
	width: 1.4rem;
	height: 1.4rem;
	background-color: #2D2F30;
	border-radius: 50%;
	position: absolute;
	top:50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	right: -1.7rem;
}
.box-designer__accordion__icon span {
	display: inline-block;
	width: 0.7rem;
	height: 0.1rem;
	background-color: #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.box-designer__accordion__icon span:nth-child(2) {
	height: 0.7rem;
	width: 0.1rem;
}
.box-designer__accordion__item.is-opened .box-designer__accordion__icon span:nth-child(2) {
	display: none;
}
.box-designer__accordion__content{
	margin-top: 3rem;
	display: none;
}
@media screen and (max-width: 959px) {
	.box-designer{
		margin-top: 19.5rem;
	}
	.box-designer__text {
		text-align: left;
	}
}
@media screen and (max-width: 559px) {
	.box-designer__text {
		margin-top: 2.5rem;
	}
	.box-designer__content {
		margin-top: 4.8rem;
	}
	.box-designer__image {
		display: flex;
		width: 100%;
		padding: 0;
		align-items: center;
	}
	.box-designer__image img {
		width: 18.4rem;
	}
	.box-designer__accordion {
		display: block;
		width: 100%;
		padding-top: 4rem;
	}
	.box-designer__capption {
		margin: 0 0 0 2.5rem;
	}
	.box-designer__name {
		font-size: 2.2rem;
	}
	.box-designer__accordion__item{
		padding: 28px 3.5rem 2.6rem 0.5rem;
	}
	.box-designer__accordion__icon{
		right: -2.5rem;
	}
}
@media screen and (max-width: 374px) {
	.box-designer__image img {
		width: 14rem;
	}
}


/* BOX SLIDER 01
-------------------------------------------------- */
.box-slider01 {
	max-width: 140rem;
	padding: 0 4rem 0 6rem;
	margin: 10rem auto 0;
}
.box-slider01__inner {
	position: relative;
}
.box-slider01__inner::after {
	content: '';
	display: block;
	clear: both;
}
.box-slider01__content {
	position: relative;
	float: left;
	width: 75.36%;
	box-sizing: border-box;
}
.box-slider01__info {
	float: left;
	padding: 0 0 0 3.333vw;
	margin-top: -1rem;
	width: calc(100% - 75.36%);
	box-sizing: border-box;
}
.box-slider01__title {
	font-size: 2.1rem;
	line-height: 2.333em;
	letter-spacing: 0.25em;
	color: #2D2F30;
}
.box-slider01__title span {
	display: inline-block;
}
.box-slider01__text {
	margin-top: 3.8rem;
}
.box-slider01__nav {
	position: absolute;
	right: 0;
	bottom: 1.8rem;
	z-index: 2;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column-reverse;
}
.box-slider01__next,
.box-slider01__prev {
	cursor: pointer;
	font-size: 1.8rem;
	letter-spacing: 0.18em;
	color: #2D2F30;
	display: block;
	-webkit-transition: opacity .3s ease;
	transition: opacity .3s ease;
}
.box-slider01__next:hover,
.box-slider01__prev:hover {
	opacity: .7;
}
.mobile .box-slider01__next:hover,
.mobile .box-slider01__prev:hover{
	opacity: 1;
}
.box-slider__thumbnail {
	max-width: 85%;
	margin-top: 0.9rem;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	margin-left: -0.2rem;
}
.box-slider__thumbnail__inner{
	text-align: left;
}
.box-slider__thumbnail__item {
	cursor: pointer;
	position: relative;
	display: block;
	line-height: 0;
	-webkit-transition: opacity .3s ease;
	transition: opacity .3s ease;
	float: left;
	margin: 0 0.2rem 1rem;
}
.box-slider__thumbnail__item.is-current:after {
	content: '';
	height: 2px;
	width: 100%;
	background-color: #2D2F30;
	position: absolute;
	left: 0;
	bottom: -0.5rem;
}
.box-slider__thumbnail__item:hover {
	opacity: 0.7;
}
.mobile .box-slider__thumbnail__item:hover{
	opacity: 1;
}
.box-slider__thumbnail__item {
	width: 6.5rem;
	height: 6.5rem;
}
@media screen and (min-width: 960px) and (max-width: 1259px) {
	.box-slider01__content {
		width: 67%;
	}
	.box-slider01__info {
		width: 33%;
	}
}
@media screen and (max-width: 959px) {
	.box-slider01 {
		margin-top: 3.3rem;
		padding: 0;
	}
	.box-slider01__content {
		width: 100%;
		padding: 0 0 7rem;
		padding: 0;
	}
	.box-slider01__info {
		width: 100%;
		margin-top: 3rem;
		padding: 0 2rem;
	}
	.box-slider01__title {
		font-size: 1.8rem;
		line-height: 2.1em;
	}
	.box-slider01__text {
		margin-top: 2.2rem;
	}
	.box-slider__thumbnail {
		margin: 0.5rem auto 0;
		justify-content: center;
	}
	.box-slider__thumbnail__item.is-current:after {
		bottom: -0.4rem;
	}
	.box-slider01__nav {
		position: static;
		text-align: center;
		margin-top: 2.9rem;
		display: block;
	}
	.box-slider01__nav span {
		margin: 0 5px;
	}
	.box-slider01__next {
		display: inline;
	}
	.box-slider01__prev {
		display: inline;
	}
}
@media screen and (max-width: 559px) {
	.box-slider__thumbnail {
		width: auto;
		text-align: center;
		max-width: 90%;
		margin: 0.2rem auto 0;
	}
	.box-slider__thumbnail__item {
		width: 3.5rem;
		height: 3.6rem;
		margin: 0 0.1rem 0.8rem;
	}
}

/* BOX SLIDER 02
-------------------------------------------------- */
.box-slider02 {
	margin-top: 4rem;
}
.box-slider02__inner:after {
	content: '';
	display: block;
	clear: both;
}
.box-slider02__content {
	float: left;
	width: 51.7%;
	padding-right: 13rem;
	box-sizing: border-box;
}
.box-slider02__title {
	font-size: 2.1rem;
	line-height: 2.333em;
	margin-top: 2.8rem;
	letter-spacing: 0.25em;
	color: #2D2F30;
}
.box-slider02__info {
	float: left;
	width: calc(100% - 51.7%);
	box-sizing: border-box;
}
.box-slider02__content__item {
	text-align: center;
}
.box-slider02__text {
	margin-top: 2rem;
}
.slick-arrow__wrapper {
	display: flex;
	justify-content: space-between;
	max-width: 21.2rem;
	margin: 4rem auto 0;
	text-align: center;
	border-radius: 1.6rem;
	background-color: #fff;
	color: #2D2F30;
	font-size: 1rem;
	letter-spacing: 0.07em;
	line-height: 1em;
}
.slick-arrow__wrapper > span {
	width: calc(50% - 0.6rem);
	color: #2D2F30;
	cursor: pointer;
	padding: 0.4rem 0;
	position: relative;
}
.slick-arrow__wrapper .box-slider02__prev {
	position: relative;
}
.slick-arrow__wrapper .box-slider02__prev:after {
	content: '';
	width: 100%;
	height: 1.8rem;
	border-radius: 1.6rem;
	background-color: #2D2F30;
	position: absolute;
	top: 0;
	left: calc(100% + 1.2rem);
	z-index: 1;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
.slick-arrow__wrapper .box-slider02__prev.slick-disabled:after {
	left: 0;
}
.slick-arrow__wrapper span.slick-disabled span {
	position: relative;
	z-index: 2;
	color: #fff;
}
@media screen and (max-width: 959px) {
	.box-slider02 {
		margin-top: 3rem;
	}
	.box-slider02__content {
		width: 100%;
		padding: 0;
	}
	.box-slider02__title {
		font-size: 1.8rem;
		line-height: 2.1em;
	}
	.box-slider02__info {
		width: 100%;
		padding: 0.5rem 0 0;
	}
	.box-slider02__content__item img {
		margin: 0 auto;
	}
	.box-slider02__text{
		margin-top: 2.5rem;
	}
}
@media screen and (max-width: 559px) {
	.slick-arrow__wrapper {
		max-width: 100%;
		margin-top: 3.6rem;
	}
	.slick-arrow__wrapper span {
		padding: 0.2rem 0;
	}
	.slick-arrow__wrapper .box-slider02__prev:after {
		height: 1.4rem;
	}
}

/*Print*/
@media print {
	.box-contact{
		display: none;
	}
	.box-main__title--clone{
		display: none;
	}
	.wow{
		visibility: visible!important;
		opacity: 1!important;
	}
}