@charset "UTF-8";
/*==============================================

    STYLE SHEET

==============================================*/
/*==============================================

    RESET

==============================================*/
html, body, div, span, applet, object,
iframe, h1, h2, h3, h4, h5, h6, p, blockquote,
pre, a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp, small,
strike, strong, sub, sup, tt, var, b, u, i, center,
dl, dt, dd, ol, ul, li, fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td, article,
aside, canvas, details, embed, figure, figcaption, footer,
header, hgroup, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	border: 0;
	font-size: 100%;
	font-style: normal;
	font-weight: normal;
	font: inherit;
	margin: 0;
	padding: 0;
	vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}

body {
	line-height: 1;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

th, td {
	text-align: left;
	vertical-align: top;
}

img {
	border: none;
	vertical-align: top;
}

/*==============================================

    SETTING MIXIN

==============================================*/
/*==============================================
    2-1. mixins
==============================================*/
/* font family */
/* opacity */
/* font-weight */
/* font-family */
/*==============================================

    BASE

==============================================*/
html {
	font-size: 14px;
	margin-right: 0 !important;
}

@media screen and (min-width: 769px) {
	html {
		font-size: 15px;
	}
}

body {
	line-height: 1.5;
	letter-spacing: .06em;
	background-color: #ffffff;
	color: #000000;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-overflow-scrolling: touch;
	-webkit-text-size-adjust: 100%;
	margin: 0 auto;
	-webkit-animation: fadeIn 1.5s ease 0s 1 normal;
	animation: fadeIn 1.5s ease 0s 1 normal;
	position: relative;
}

@media screen and (min-width: 769px) {
	body {
		min-width: 1100px;
	}
}

@-webkit-keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

img {
	width: 100%;
	height: auto;
}

a {
	text-decoration: none;
}

li {
	list-style: none;
}

*:focus {
	outline: none;
}

main {
	display: block;
}

/*==============================================

    LAYOUT

==============================================*/
/*==============================================
    COMPONENT COLUMNS
==============================================*/
@media screen and (min-width: 769px) {
	.l-col {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-webkit-justify-content: space-between;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}
}

.l-col--both {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.l-col--flex {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}

@media screen and (min-width: 769px) {
	.l-col--flex-sp {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
	}
}

@media (max-width: 768px) {
	.l-col--sp {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-webkit-justify-content: space-between;
		-ms-flex-pack: justify;
		justify-content: space-between;
		-webkit-box-align: center;
		-webkit-align-items: center;
		-ms-flex-align: center;
		align-items: center;
	}
}

@media screen and (min-width: 769px) {
	.l-col--flex-pc {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
	}
}

@media screen and (min-width: 769px) {
	.l-col--align-center {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-webkit-justify-content: space-between;
		-ms-flex-pack: justify;
		justify-content: space-between;
		-webkit-box-align: center;
		-webkit-align-items: center;
		-ms-flex-align: center;
		align-items: center;
	}
}

.l-col--align-center-both {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}

.l-col--align {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}

.l-col--wrap {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.l-col--no-align {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

@media screen and (min-width: 769px) {
	.l-col--no-align-pc {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-webkit-justify-content: space-between;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}
}

@media (max-width: 768px) {
	.l-col-sp--reverse {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		-webkit-flex-direction: column-reverse;
		-ms-flex-direction: column-reverse;
		flex-direction: column-reverse;
	}
}

/*==============================================

    LAYOUT FRAME

==============================================*/
@media (max-width: 768px) {
	.l-main-top {
		overflow: hidden;
	}
}

.l-main-page {
	overflow: hidden;
}

@media screen and (min-width: 769px) {
	.l-main-page {
		min-width: 1100px;
		padding-top: 130px;
	}
}

.l-main-page__container {
	background-color: #F5F4F4;
}

@media (max-width: 768px) {
	.l-main-page__container {
		padding-top: 75px;
	}
}

.l-main-page__container--history {
	background-color: #E9F5F4;
}

@media (max-width: 768px) {
	.l-main-page__container--history {
		padding-top: 75px;
	}
}

.l-main-page__container--numbers {
	background-color: #C7D0D1;
	padding-bottom: 160px;
}

@media (max-width: 768px) {
	.l-main-page__container--numbers {
		padding-top: 80px;
		padding-bottom: 0px;
	}
}

.l-main-page__container--info {
	background-color: #F5F4F4;
	padding-bottom: 160px;
}

@media (max-width: 768px) {
	.l-main-page__container--info {
		padding-top: 80px;
		padding-bottom: 80px;
	}
}

.l-frame {
	width: 84%;
	margin: 0 auto;
}

@media screen and (min-width: 769px) {
	.l-frame {
		width: 90%;
		max-width: 1600px;
		margin: auto;
	}
}

.l-frame-sp-over {
	margin: 0 auto;
}

@media screen and (min-width: 769px) {
	.l-frame-sp-over {
		width: 90%;
		max-width: 1600px;
		margin: auto;
	}
}

.l-frame-min {
	min-width: 1100px;
}

@media (max-width: 768px) {
	.l-frame-min {
		min-width: 0px;
	}
}

@media (max-width: 768px) {
	.l-frame-sp {
		width: 84%;
		margin: 0 auto;
	}
}

.l-frame-footer {
	width: 84%;
	margin: 0 auto;
}

@media screen and (min-width: 769px) {
	.l-frame-footer {
		width: 90%;
		max-width: 1600px;
		margin: auto;
	}
}

.l-frame-message {
	width: 84%;
	margin: 0 auto;
}

@media screen and (min-width: 769px) {
	.l-frame-message {
		width: 60%;
		max-width: 1600px;
		margin: auto;
	}
}

.l-frame-person {
	width: 84%;
	margin: 0 auto;
}

@media screen and (min-width: 769px) {
	.l-frame-person {
		width: 59.58%;
		max-width: 1600px;
		margin: auto;
	}
}

.l-sec-breadcrumb {
	width: 90%;
	max-width: 1600px;
	margin: auto;
	padding-top: 38px;
}

.l-breadcrumb__name a {
	font-size: 0.66667rem;
	font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
	letter-spacing: 0.08em;
	color: #A89472;
}

/*==============================================

    5. HEADER

==============================================*/
header {
	height: 180px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}

@media (max-width: 768px) {
	header {
		height: 80px;
	}
}

.l-header {
	position: absolute;
	z-index: 100;
	width: 100%;
}

@media screen and (min-width: 769px) {
	.l-header {
		margin: 0 auto;
		width: 100%;
		min-width: 1100px;
		z-index: 10000000;
	}
}

.header-clone {
	display: none;
	position: fixed;
	top: 0;
	z-index: 10000000;
	width: 100%;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	background-color: #fff;
}

@media screen and (min-width: 769px) {
	.header-clone {
		min-width: 1100px;
	}
}

@media (max-width: 768px) {
	.header-clone {
		height: 80px;
	}
}

.header-clone .l-header__btn span {
	background-color: #000;
}

.header-clone .l-header__btn span:before {
	background-color: #000;
}

.header-clone .l-header__btn span:after {
	background-color: #000;
}

@media (max-width: 768px) {
	.header-clone__layer {
		height: 80px;
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-webkit-align-items: center;
		-ms-flex-align: center;
		align-items: center;
	}
}

.l-header--col {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	width: 84%;
	margin: auto;
}

@media screen and (min-width: 769px) {
	.l-header--col {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-webkit-align-items: center;
		-ms-flex-align: center;
		align-items: center;
		width: 90%;
		max-width: 1600px;
		margin: auto;
		padding-top: 25px;
		padding-bottom: 25px;
	}
}

@media (max-width: 768px) {
	.l-header--col {
		padding: 12px 0px;
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-webkit-align-items: center;
		-ms-flex-align: center;
		align-items: center;
	}
}

.l-header__logo__image {
	-webkit-transition: 0.9s;
	transition: 0.9s;
	width: 380px;
	padding-right: 30px;
	display: block;
}

.l-header__logo__image:hover {
	opacity: 0.6;
}

@media (max-width: 768px) {
	.l-header__logo__image {
		width: 140px;
	}
}

@media (max-width: 321px) {
	.l-header__logo__image {
		width: 135px;
	}
}

.l-header__btn {
	position: absolute;
	width: 44px;
	height: 44px;
	top: 16px;
	right: 60px;
	cursor: pointer;
}

@media (max-width: 768px) {
	.l-header__btn {
		top: 17px;
		width: 30px;
		height: 30px;
		right: 100px;
	}
}

.l-header__button {
	position: absolute;
	width: 200px;
	text-align: center;
	z-index: 2;
}

@media screen and (min-width: 769px) {
	.l-header__button {
		top: 10px;
		right: 10px;
	}
}

@media (max-width: 768px) {
	.l-header__button {
		width: 80px;
		height: 115px;
		top: 0px;
		right: 0px;
	}
}

.l-header__btn__common {
	display: block;
	position: relative;
	padding: 30px 20px;
	font-size: 14px;
	font-family: 'Roboto', sans-serif;
	font-weight: 500;
	color: #000;
}

@media screen and (min-width: 769px) {
	.l-header__btn__common::before {
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		z-index: 1;
		content: "";
		background: rgba(255, 255, 255, 0.2);
		-webkit-transform-origin: right top;
		transform-origin: right top;
		-webkit-transform: scale(0, 1);
		transform: scale(0, 1);
		-webkit-transition: -webkit-transform 0.09s;
		transition: -webkit-transform 0.09s;
		transition: transform 0.09s;
		transition: transform 0.09s, -webkit-transform 0.09s;
	}
	.l-header__btn__common:hover::before {
		-webkit-transform-origin: left top;
		transform-origin: left top;
		-webkit-transform: scale(1, 1);
		transform: scale(1, 1);
	}
}

@media (max-width: 768px) {
	.l-header__btn__common span {
		margin: auto;
	}
}

@media (max-width: 768px) {
	.l-header__btn__common {
		padding: 10px 0px;
	}
}

.l-header__btn__common:nth-of-type(1):after {
	content: "";
	position: absolute;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	display: block;
	background-color: #248080;
	width: 28px;
	bottom: 0;
	height: 1px;
	opacity: 0.8;
}

@media (max-width: 768px) {
	.l-header__btn__common:nth-of-type(1):after {
		width: 15px;
	}
}

.l-header__btn span {
	position: absolute;
	top: 22px;
	right: 0;
	left: 0;
	margin: auto;
	border-radius: 4px;
	-webkit-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
	background: #fff none no-repeat scroll top left;
	height: 1px;
	width: 28px;
}

@media (max-width: 768px) {
	.l-header__btn span {
		height: 2px;
		width: 28px;
	}
}

.l-header__btn span::before {
	content: "";
	position: absolute;
	width: 28px;
	height: 1px;
	background: #fff none no-repeat scroll top left;
	border-radius: 4px;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

@media screen and (min-width: 769px) {
	.l-header__btn span::before {
		width: 28px;
		top: 8px;
	}
}

@media (max-width: 768px) {
	.l-header__btn span::before {
		top: 8px;
		width: 28px;
		height: 2px;
	}
}

.l-header__btn span::after {
	content: "";
	position: absolute;
	width: 28px;
	height: 1px;
	background: #fff none no-repeat scroll top left;
	border-radius: 4px;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}

@media screen and (min-width: 769px) {
	.l-header__btn span::after {
		width: 28px;
		top: -8px;
	}
}

@media (max-width: 768px) {
	.l-header__btn span::after {
		top: -8px;
		width: 28px;
		height: 2px;
	}
}

.js-active.l-header__btn span {
	-webkit-transform: translateX(4px);
	transform: translateX(4px);
	background: transparent none no-repeat scroll top left;
}

.js-active.l-header__btn span::before {
	-webkit-transform: translateX(-4px) rotate(30deg);
	transform: translateX(-4px) rotate(30deg);
	background: #232323 none no-repeat scroll top left;
	top: 0;
}

.js-active.l-header__btn span::after {
	-webkit-transform: translateX(-4px) rotate(-30deg);
	transform: translateX(-4px) rotate(-30deg);
	background: #232323 none no-repeat scroll top left;
	top: 0;
}

.active {
	display: block;
}

.js-before-none:before {
	display: none;
}

/*==============================================
 HEADER MENU内
==============================================*/
.l-header__gnav {
	display: none;
	z-index: 200;
	position: fixed;
	width: 100%;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	padding-bottom: 120px;
	background-color: #000;
	overflow-y: scroll;
}

@media (max-width: 768px) {
	.l-header__gnav {
		top: 0;
		padding-bottom: 80px;
	}
}

@media screen and (min-width: 769px) {
	.l-header__gnav {
		min-width: 1100px;
	}
}

.l-header__gnav__close {
	position: relative;
	width: 90%;
	max-width: 1600px;
	margin: auto;
	height: 70px;
}

@media (max-width: 768px) {
	.l-header__gnav__close {
		height: 60px;
	}
}

.l-header__gnav__close__btn {
	position: relative;
	position: absolute;
	width: 28px;
	height: 50px;
	cursor: pointer;
	top: 17%;
	right: 0;
}

@media (max-width: 768px) {
	.l-header__gnav__close__btn {
		top: 15px;
		width: 30px;
		height: 30px;
	}
}

.l-header__gnav__close__btn span {
	position: absolute;
	right: 0;
	margin: auto;
	border-radius: 4px;
	-webkit-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
	height: 1px;
	width: 20px;
	position: absolute;
	top: 50%;
}

@media (max-width: 768px) {
	.l-header__gnav__close__btn span {
		width: 30px;
		background: none;
	}
}

.l-header__gnav__close__btn span::before {
	content: "";
	position: absolute;
	width: 20px;
	height: 1px;
	background: #fff none no-repeat scroll top left;
	border-radius: 4px;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	-webkit-transform: translateX(-4px) rotate(30deg);
	transform: translateX(-4px) rotate(30deg);
	background: #fff none no-repeat scroll top left;
	right: 0;
	top: 0;
}

@media screen and (min-width: 769px) {
	.l-header__gnav__close__btn span::before {
		width: 20px;
		top: 0px;
	}
}

@media (max-width: 768px) {
	.l-header__gnav__close__btn span::before {
		width: 25px;
		height: 2px;
		right: -7px;
	}
}

.l-header__gnav__close__btn span::after {
	content: "";
	position: absolute;
	width: 20px;
	height: 1px;
	background: #fff none no-repeat scroll top left;
	border-radius: 4px;
	-webkit-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	-webkit-transform: translateX(-4px) rotate(-30deg);
	transform: translateX(-4px) rotate(-30deg);
	background: #fff none no-repeat scroll top left;
	top: 0;
	right: 0;
}

@media screen and (min-width: 769px) {
	.l-header__gnav__close__btn span::after {
		width: 20px;
		top: -0px;
	}
}

@media (max-width: 768px) {
	.l-header__gnav__close__btn span::after {
		width: 25px;
		height: 2px;
		right: -7px;
	}
}

.l-nav {
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}

.l-nav__category__item__icon {
	width: 20px;
}

@media (max-width: 768px) {
	.l-nav__list {
		width: 92%;
		margin-left: auto;
	}
}

/*==============================================
    メニュー内_ブロック
==============================================*/
.l-nav__content {
	width: 48%;
}

@media (max-width: 768px) {
	.l-nav__content {
		width: 100%;
		margin-top: 40px;
	}
}

.l-nav-item {
	width: 100%;
	text-align: center;
}

@media (max-width: 768px) {
	.l-nav-item {
		text-align: left;
		border-top: 1px solid #fff;
	}
	.l-nav-item:nth-last-of-type(1) {
		border-bottom: 1px solid #fff;
	}
}

.l-nav-item:nth-of-type(3) .l-nav-item__lists__item {
	padding-left: 12px;
}

.l-nav-item__heading {
	display: block;
	position: relative;
	color: #fff;
	font-size: 1.33333rem;
	font-family: 'Cormorant Garamond', serif;
	color: #A89472;
}

@media (max-width: 768px) {
	.l-nav-item__heading {
		font-size: 20px;
		line-height: 1;
	}
}

@media (max-width: 768px) {
	.l-nav-item__heading:after {
		content: "";
		display: inline-block;
		width: 12px;
		height: 12px;
		background-image: url(./../../image/common/arrow_close.svg);
		background-size: contain;
		vertical-align: middle;
		background-repeat: no-repeat;
		position: absolute;
		margin-left: 12px;
		top: 6px;
		right: 24px;
		-webkit-transform-origin: center center 0;
		transform-origin: center center 0;
	}
}

.js-menu-rotet:after {
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
	-webkit-transform-origin: center center 0;
	transform-origin: center center 0;
}

.l-nav-item__ul {
	margin-top: 22px;
}

@media (max-width: 768px) {
	.l-nav-item__ul {
		display: none;
		margin-top: 0px;
		margin-bottom: 30px;
	}
}

.l-nav-item__ul__item a {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	padding: 5px 0;
	color: #fff;
	font-size: 0.86667rem;
	font-family: 'Shippori Mincho', serif;
	font-weight: 500;
	letter-spacing: 0.04em;
}

@media (max-width: 768px) {
	.l-nav-item__ul__item a {
		font-size: 13px;
	}
}

.l-nav-item__lists {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-top: 40px;
}

@media (max-width: 768px) {
	.l-nav-item__lists {
		display: none;
		margin-top: 0px;
		margin-bottom: 30px;
	}
}

.l-nav-item__blank {
	position: relative;
}

.l-nav-item__blank:after {
	content: "";
	/*何も入れない*/
	position: absolute;
	top: 1px;
	right: -15%;
	display: inline-block;
	/*忘れずに！*/
	width: 12px;
	/*画像の幅*/
	height: 12px;
	/*画像の高さ*/
	background-image: url(/image/common/deco_target_header.svg);
	background-size: contain;
	vertical-align: middle;
}

.l-nav-item__lists__item {
	width: 50%;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

@media (max-width: 768px) {
	.l-nav-item__lists__item {
		width: 100%;
	}
}

.l-nav-item__lists__item:nth-of-type(2) {
	padding-left: 20px;
}

@media (max-width: 768px) {
	.l-nav-item__lists__item:nth-of-type(2) {
		padding-left: 0px;
		border-left: 0px;
	}
}

.l-nav-item__lists__item:nth-of-type(4) {
	padding-left: 20px;
}

@media (max-width: 768px) {
	.l-nav-item__lists__item:nth-of-type(4) {
		padding-left: 0px;
		border-left: 0px;
	}
}

.l-nav-item__lists__item a {
	display: block;
	color: #fff;
	font-size: 0.93333rem;
	font-family: 'Shippori Mincho', serif;
	font-weight: 500;
	padding: 5px 0;
}

@media (max-width: 768px) {
	.l-nav-item__lists__item a {
		font-size: 0.92857rem;
	}
}

.l-nav-item__lists__title {
	display: block;
	color: #A89472;
	font-size: 0.85714rem;
	font-family: 'Shippori Mincho', serif;
	font-weight: 500;
	margin-bottom: 20px;
}

.l-nav-item__lists__title:nth-of-type(2) {
	margin-top: 15px;
}

@media (max-width: 768px) {
	.l-nav-item__wrap {
		padding-top: 20px;
		padding-bottom: 20px;
	}
}

.l-nav__content__footnote {
	margin-top: 85px;
	color: #fff;
	font-size: 0.8rem;
	font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
	letter-spacing: 0.04em;
}

@media (max-width: 768px) {
	.l-nav__content__footnote {
		margin-top: 40px;
		font-size: 0.85714rem;
		text-align: center;
	}
}

.u-nav-mb {
	margin-bottom: 40px;
}

@media (max-width: 768px) {
	.u-nav-mb {
		margin-bottom: 0px;
	}
}

/*==============================================
   ヘッダー ファーストビュー
==============================================*/
.l-header__nav {
	margin-left: auto;
}

@media (max-width: 768px) {
	.l-header__nav {
		display: none;
	}
}

.l-header__nav__ul {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}

@media screen and (min-width: 769px) {
	.l-header__nav__ul {
		height: 86.77px;
	}
}

.l-header__nav__ul__item {
	position: relative;
	padding: 0 12px;
}

.l-header__nav__ul__item a {
	color: #000;
	font-size: 15px;
	font-family: 'Roboto', sans-serif;
	font-weight: 500;
	cursor: pointer;
}

@media (max-width: 1180px) {
	.l-header__nav__ul__item a {
		font-size: 13px;
	}
}

header .l-header__nav {
	position: absolute;
	top: 44px;
	right: 270px;
}

@media (max-width: 1180px) {
	header .l-header__nav {
		right: 220px;
	}
}

header .l-header__nav__ul__item a {
	color: #fff;
}

.header-clone .l-header__nav {
	position: absolute;
	top: 0;
	right: 280px;
}

@media (max-width: 1180px) {
	.header-clone .l-header__nav {
		right: 240px;
	}
}

.header-clone .l-header__nav__ul__item a {
	color: #000;
}

@media screen and (min-width: 769px) {
	.header-clone .l-header__nav__ul__item a {
		line-height: 1.2;
	}
}

.header-clone__button {
	position: absolute;
	top: 0;
	right: 0;
	width: 240px;
	height: 100%;
}

.header-clone__button__target {
	position: relative;
	width: 50%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	text-align: center;
	font-size: 14px;
	font-family: 'Roboto', sans-serif;
	font-weight: 500;
	letter-spacing: 0.04em;
	color: #000;
}

.header-clone__button__target span {
	margin: auto;
	position: relative;
	z-index: 2;
	width: 100%;
}

@media screen and (min-width: 769px) {
	.header-clone__button__target::before {
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		z-index: 1;
		content: "";
		background: rgba(255, 255, 255, 0.2);
		-webkit-transform-origin: right top;
		transform-origin: right top;
		-webkit-transform: scale(0, 1);
		transform: scale(0, 1);
		-webkit-transition: -webkit-transform 0.09s;
		transition: -webkit-transform 0.09s;
		transition: transform 0.09s;
		transition: transform 0.09s, -webkit-transform 0.09s;
	}
	.header-clone__button__target:hover::before {
		-webkit-transform-origin: left top;
		transform-origin: left top;
		-webkit-transform: scale(1, 1);
		transform: scale(1, 1);
	}
}

.header-clone__button__target:nth-of-type(1) span:before {
	content: "";
	position: absolute;
	height: 30px;
	background-color: #248080;
	width: 1px;
	top: -7px;
	right: 0;
}

.l-header__btn span.active {
	-webkit-transform: translateX(4px);
	transform: translateX(4px);
	background: transparent none no-repeat scroll top left;
}

.l-header__btn span.active::before {
	-webkit-transform: translateX(-4px) rotate(30deg);
	transform: translateX(-4px) rotate(30deg);
	background: #fff none no-repeat scroll top left;
	right: 3px;
	top: 0;
}

.l-header__btn span.active::after {
	-webkit-transform: translateX(-4px) rotate(-30deg);
	transform: translateX(-4px) rotate(-30deg);
	background: #fff none no-repeat scroll top left;
	top: 0;
	right: 3px;
}

.js-body {
	overflow: hidden;
	height: 100vh;
}

.js-z-index {
	z-index: 100;
}

/*
プルダウン追加
==============================================*/
.l-nest {
	padding-top: 20px;
	position: absolute;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: 0.4s;
	transition: 0.4s;
	left: -22px;
	margin-left: 0;
	z-index: 10000;
	width: 260px;
}

.l-nest:before {
	content: "";
	position: absolute;
	top: -10px;
	left: 25%;
	margin-left: -10px;
	border: 10px solid transparent;
	border-bottom: 20px solid #000;
	opacity: 0.8;
}

.l-nest__ul {
	margin-left: 1em;
	padding-top: 32px;
}

@media screen and (min-width: 769px) {
	.l-nest__ul {
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
		padding: 20px 25px 20px 20px;
		white-space: nowrap;
		box-sizing: border-box;
		background-color: rgba(0, 0, 0, 0.8);
	}
}

.l-nest__ul a {
	color: #fff !important;
	font-family: 'Shippori Mincho', serif;
	font-weight: 500;
	letter-spacing: 0.04em;
	font-size: 0.8rem;
	-webkit-transition: 0.4s;
	transition: 0.4s;
}

.l-nest__ul a:hover {
	color: #A89472 !important;
}

.l-nest__ul a p {
	padding-top: 3px;
}

.l-header__nav__ul__item:hover .l-nest {
	visibility: visible !important;
	opacity: 1;
}

.l-nest__item:not(:last-child) {
	margin-bottom: 20px;
}

.l-nest__item a {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}

@media screen and (min-width: 769px) {
	.l-nest__item:hover .c-btn-white-header {
		border: 1px solid #A89472 !important;
	}
}

@media screen and (min-width: 769px) {
	.l-nest__item:hover .c-btn-white-header:after {
		border-top: solid 1px #A89472;
		border-right: solid 1px #A89472;
	}
}

.l-nest__ul__title {
	font-family: 'Shippori Mincho', serif;
	font-weight: 500;
	font-weight: 500;
	font-size: 0.8rem;
	letter-spacing: 0.04em;
	color: #fff;
	text-align: left;
	margin-bottom: 20px;
}

.l-nest__ul__child {
	margin-bottom: 20px;
}

/*
第一弾公開のみ使用公開前のみ
==============================================*/
.l-nest__item--opacity {
	opacity: 0.4;
	pointer-events: none;
}

.l-nest__item--no-hover {
	pointer-events: none !important;
}

/*==============================================

    FOOTER

==============================================*/
.l-footer {
	width: 100%;
	position: relative;
	padding-top: 40px;
}

@media (max-width: 768px) {
	.l-footer {
		padding-top: 0px;
	}
}

.l-footer__container {
	margin: auto;
	padding-top: 50px;
	padding-bottom: 70px;
	text-align: center;
}

@media screen and (min-width: 769px) {
	.l-footer__container {
		border-top: 1px solid #fff;
	}
}

@media (max-width: 768px) {
	.l-footer__container {
		padding-top: 0px;
		padding-bottom: 68px;
	}
}

/*
nav-list
==============================================*/
.l-footer-nav .l-footer-nav__heading {
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.6rem;
	letter-spacing: 0.04em;
	color: #A89472;
	margin-right: auto;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 20px;
}

.l-footer-nav .l-footer-nav {
	text-align: left;
}

.l-footer-nav .l-footer-nav__list {
	text-align: left;
}

.l-footer-nav .l-footer-item-item {
	font-family: 'Shippori Mincho', serif;
	font-weight: 500;
	font-weight: 500;
	font-size: 0.8rem;
	letter-spacing: 0.04em;
	color: #fff;
	-webkit-transition: 0.4s;
	transition: 0.4s;
}

.l-footer-nav .l-footer-item-item:hover {
	color: #A89472 !important;
}

.l-footer-nav:nth-of-type(3) li {
	padding-left: 10px;
}

.l-footer-item:not(:last-child) {
	margin-bottom: 5px;
}

.l-footer-nav__title {
	font-family: 'Shippori Mincho', serif;
	font-weight: 500;
	font-weight: 500;
	font-size: 0.8rem;
	letter-spacing: 0.04em;
	color: #A89472;
	text-align: left;
	margin-bottom: 12px;
}

.l-footer-nav__title:nth-of-type(2) {
	margin-top: 12px;
}

.l-footer__logo {
	width: 80px;
	margin: auto;
	display: block;
}

.l-footer__copy {
	text-align: center;
	padding-top: 20px;
	padding-bottom: 50px;
}

@media (max-width: 768px) {
	.l-footer__copy {
		padding-bottom: 30px;
	}
}

.l-footer__copy small {
	color: #fff;
	font-size: 0.73333rem;
	font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
	letter-spacing: 0.1em;
}

/*
nav-list_sp
==============================================*/
.l-nav-content {
	margin-top: 40px;
	margin-bottom: 40px;
	width: 92%;
	margin-left: auto;
}

@media (max-width: 768px) {
	.l-nav-content {
		margin-bottom: 45px;
	}
}

/*
l-footer__btn__corporate
==============================================*/
.l-footer__btn__corporate {
	position: relative;
	width: 84%;
	height: 60px;
	margin: auto;
	border: 1px solid #fff;
	margin-top: 40px;
	margin-bottom: 40px;
	-webkit-transition: 0.4s;
	transition: 0.4s;
	cursor: pointer;
}

.l-footer__btn__corporate:hover {
	opacity: 0.8;
}

@media screen and (min-width: 769px) {
	.l-footer__btn__corporate {
		width: 540px;
	}
}

@media (max-width: 768px) {
	.l-footer__btn__corporate {
		margin-top: 40px;
		margin-bottom: 40px;
	}
}

.l-footer__btn__corporate__button__col {
	position: absolute;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}

@media screen and (min-width: 769px) {
	.l-footer__btn__corporate__button__col {
		top: 25%;
		left: 21%;
	}
}

@media (max-width: 768px) {
	.l-footer__btn__corporate__button__col {
		top: 55%;
		left: 48%;
		transform: translate(-50%, -50%);
		-webkit-transform: translate(-50%, -50%);
		-ms-transform: translate(-50%, -50%);
		width: 73%;
		white-space: nowrap;
	}
}

@media screen and (min-width: 481px) and (max-width: 768px) {
	.l-footer__btn__corporate__button__col {
		left: 64%;
	}
}

.l-footer__btn__corporate__button__col__title {
	font-family: 'Shippori Mincho', serif;
	font-weight: 500;
	font-weight: 500;
	font-size: 1.2rem;
	letter-spacing: 0.04em;
	color: #fff;
	margin-bottom: 8px;
}

@media (max-width: 768px) {
	.l-footer__btn__corporate__button__col__title {
		font-size: 0.92857rem;
	}
}

.l-footer__btn__corporate__button__col__deco {
	margin-right: 20px;
}

/*==============================================

    COMPONENT

==============================================*/
/*==============================================
共通ボタン_ブラック
==============================================*/
.c-btn-black {
	position: relative;
	display: inline-block;
	padding-left: 20px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	width: 22px;
	height: 22px;
	border: 1px solid #1a1a1a;
	border-radius: 50%;
	-webkit-transition: 0.2s;
	transition: 0.2s;
}

@media screen and (min-width: 769px) {
	.c-btn-black:hover {
		background-color: #1a1a1a !important;
		border: 1px solid #1a1a1a !important;
		width: 40px;
		border-radius: 20px;
	}
}

.c-btn-black:after {
	content: "";
	width: 6px;
	height: 6px;
	border: 0;
	border-top: solid 1px #1a1a1a;
	border-right: solid 1px #1a1a1a;
	position: absolute;
	top: 10.8px;
	left: 5px;
	margin-top: -4px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	-webkit-transition: 0.2s;
	transition: 0.2s;
}

/*==============================================
共通ボタン_white
==============================================*/
.c-btn-white {
	position: relative;
	display: inline-block;
	padding-left: 20px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	width: 22px;
	height: 22px;
	border: 1px solid #fff !important;
	border-radius: 50%;
	-webkit-transition: 0.2s;
	transition: 0.2s;
}

@media screen and (min-width: 769px) {
	.c-btn-white:hover {
		background-color: #fff !important;
		border: 1px solid #fff !important;
		width: 40px;
		border-radius: 20px;
	}
}

.c-btn-white:after {
	content: "";
	position: absolute;
	width: 6px;
	height: 6px;
	border: 0;
	border-top: solid 1px #fff;
	border-right: solid 1px #fff;
	top: 10.8px;
	left: 5px;
	margin-top: -4px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	-webkit-transition: 0.2s;
	transition: 0.2s;
}

@media screen and (min-width: 769px) {
	.c-btn-hover:hover .c-btn-black {
		background-color: #1a1a1a !important;
		border: 1px solid #1a1a1a !important;
		width: 40px;
		border-radius: 20px;
	}
}

@media screen and (min-width: 769px) {
	.c-btn-hover:hover .c-btn-black {
		background-color: #1a1a1a !important;
		border: 1px solid #1a1a1a !important;
		width: 40px;
		border-radius: 20px;
	}
}

@media screen and (min-width: 769px) {
	.c-btn-hover:hover .c-btn-black:after {
		-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		content: "";
		width: 6px;
		height: 6px;
		border: 0;
		border-top: solid 1px #fff;
		border-right: solid 1px #fff;
		position: absolute;
		top: 10.8px;
		left: 23px;
		margin-top: -4px;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
		-webkit-transition: 0.2s;
		transition: 0.2s;
	}
}

@media screen and (min-width: 769px) {
	.c-btn-hover:hover .c-hover-filter {
		opacity: 1;
	}
}

@media screen and (min-width: 769px) {
	.c-btn-hover-white:hover .c-btn-white {
		background-color: #fff !important;
		border: 1px solid #fff !important;
		width: 40px;
		border-radius: 20px;
	}
}

@media screen and (min-width: 769px) {
	.c-btn-hover-white:hover .c-btn-white:after {
		-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		content: "";
		width: 6px;
		height: 6px;
		border: 0;
		border-top: solid 1px #1a1a1a;
		border-right: solid 1px #1a1a1a;
		position: absolute;
		top: 10.8px;
		margin-top: -4px;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
		-webkit-transition: 0.2s;
		transition: 0.2s;
	}
}

@media screen and (min-width: 769px) {
	.c-btn-hover-white:hover .c-btn-white:after {
		border-top: solid 1px #1a1a1a;
		border-right: solid 1px #1a1a1a;
		left: 23px;
	}
}

.c-hover-item {
	position: relative;
}

@media screen and (min-width: 769px) {
	.c-hover-item:hover .c-hover-filter {
		opacity: 1;
	}
}

.c-hover-item {
	position: relative;
}

@media screen and (min-width: 769px) {
	.c-hover-item:hover .c-hover-filter--person {
		opacity: 1;
	}
}

.c-hover-filter {
	background-color: rgba(0, 0, 0, 0.4);
	display: block;
	position: absolute;
	z-index: 1;
	width: 100%;
	height: 100%;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	opacity: 0;
	-webkit-transition: 0.6s;
	transition: 0.6s;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	display: inline-block;
}

.c-hover-filter--person {
	background-color: rgba(0, 0, 0, 0.2);
	display: block;
	position: absolute;
	z-index: 1;
	width: 100%;
	height: 100%;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	opacity: 0;
	-webkit-transition: 0.6s;
	transition: 0.6s;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	display: inline-block;
}

.c-text-base {
	font-family: 'Shippori Mincho', serif;
	font-weight: 500;
	font-size: 1.06667rem;
	letter-spacing: 0.04em;
	line-height: 2;
}

@media (max-width: 768px) {
	.c-text-base {
		font-size: 1.07143rem;
	}
}

.c-text {
	font-family: 'Shippori Mincho', serif;
	font-weight: 500;
	font-size: 1rem;
	letter-spacing: 0.04em;
	line-height: 2;
}

@media (max-width: 768px) {
	.c-text {
		font-size: 1.07143rem;
	}
}

.c-text-talk {
	font-family: 'Shippori Mincho', serif;
	font-weight: 500;
	font-size: 1rem;
	letter-spacing: 0.04em;
	line-height: 2;
}

@media (max-width: 768px) {
	.c-text-talk {
		font-size: 1rem;
	}
}

.c-text-sp-middle {
	font-family: 'Shippori Mincho', serif;
	font-weight: 500;
	font-size: 1rem;
	letter-spacing: 0.04em;
	line-height: 2;
}

@media (max-width: 768px) {
	.c-text-sp-middle {
		font-size: 1rem;
	}
}

.c-person-text {
	font-family: 'Shippori Mincho', serif;
	font-weight: 500;
	font-size: 1.06667rem;
	letter-spacing: 0.04em;
	line-height: 2;
}

@media (max-width: 768px) {
	.c-person-text {
		font-size: 1.07143rem;
	}
}

.c-text-base-indent {
	font-family: 'Shippori Mincho', serif;
	font-weight: 500;
	font-size: 1.06667rem;
	letter-spacing: 0.04em;
	line-height: 2;
	text-indent: 15px;
}

@media (max-width: 768px) {
	.c-text-base-indent {
		font-size: 1.07143rem;
	}
}

/*==============================================
youtube_モーダル
==============================================*/
.c-container #modal-video {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	position: fixed;
	z-index: 10000000;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.9);
	-webkit-transition: 0.5s;
	transition: 0.5s;
}

.c-container #modal-video.close {
	-webkit-filter: opacity(0);
	filter: opacity(0);
	visibility: hidden;
}

.c-container #modal-video.open {
	-webkit-filter: opacity(1);
	filter: opacity(1);
	visibility: visible;
}

.c-container #modal-video iframe {
	width: 64vw;
	height: 36vw;
}

@media (max-width: 768px) {
	.c-container #modal-video iframe {
		width: 100vw;
		height: 52vw;
	}
}

/*==============================================
youtube_btn
==============================================*/
.c-circle-btn {
	float: left;
	border-radius: 50%;
	width: 100%;
	padding-top: 100%;
	position: absolute;
	right: 13%;
}

@media (max-width: 768px) {
	.c-circle-btn {
		bottom: 100px;
		padding-top: auto;
	}
}

.c-circle-btn .c-circle-btn-block {
	float: left;
	border-radius: 50%;
	position: absolute;
	width: 100%;
	position: absolute;
	height: 100%;
	opacity: 0;
	-webkit-transform-style: preserve-3d;
}

.c-circle-btn-block-hovicon {
	display: block;
	font-size: 45px;
	line-height: 90px;
	cursor: pointer;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	text-align: center;
	position: absolute;
	text-decoration: none;
	z-index: 1;
	color: #fff;
	opacity: 0;
}

@media (max-width: 768px) {
	.c-circle-btn-block-hovicon {
		width: 100px;
		height: 100px;
	}
}

.c-circle-btn-block-hovicon.small {
	font-size: 20px;
	line-height: 45px;
	width: 45px;
	height: 45px;
	margin: 7px;
}

.c-circle-btn-block-hovicon.mini {
	font-size: 15px;
	line-height: 32px;
	width: 30px;
	height: 30px;
	margin: 7px;
}

.c-circle-btn-block-hovicon.auto-width {
	width: auto;
	height: auto;
	padding: 15px;
}

.c-circle-btn-block-hovicon:after {
	pointer-events: none;
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	content: '';
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
}

.c-circle-btn-block-hovicon:before {
	speak: none;
	font-size: 48px;
	line-height: 90px;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	display: block;
	-webkit-font-smoothing: antialiased;
}

/* Effect 1 */
.c-circle-btn-block-hovicon.c-circle-btn-block-hovicon-eff {
	border: 1px solid #fff;
	-webkit-transition: background 0.2s, color 0.2s;
	transition: background 0.2s, color 0.2s;
}

.c-circle-btn-block-hovicon.c-circle-btn-block-hovicon-eff:after {
	top: -7px;
	left: -7px;
	padding: 7px;
	-webkit-box-shadow: 0 0 0 4px #fff;
	box-shadow: 0 0 0 4px #fff;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	-webkit-transform: scale(0.8);
	-moz-transition: -moz-transform 0.2s, opacity 0.2s;
	-moz-transform: scale(0.8);
	-ms-transform: scale(0.8);
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
	transition: opacity 0.2s, -webkit-transform 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s, -webkit-transform 0.2s;
	transform: scale(0.8);
	opacity: 0;
}

/* Effect 1b */
@media screen and (min-width: 769px) {
	.c-circle-btn-block-hovicon.c-circle-btn-block-hovicon-eff.c-circle-btn-block-hovicon-ani:hover {
		background: white;
		border: 1px solid #A89472;
		color: #41ab6b;
	}
}

.c-circle-btn-block-hovicon.c-circle-btn-block-hovicon-eff.c-circle-btn-block-hovicon-ani:hover i {
	color: #41ab6b;
}

@media screen and (min-width: 769px) {
	.c-circle-btn-block-hovicon.c-circle-btn-block-hovicon-eff.c-circle-btn-block-hovicon-ani:after {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

@media screen and (min-width: 769px) {
	.c-circle-btn-block-hovicon.c-circle-btn-block-hovicon-eff.c-circle-btn-block-hovicon-ani:hover:after {
		-webkit-transform: scale(0.7);
		transform: scale(0.7);
		opacity: 1;
	}
}

@media screen and (min-width: 769px) {
	.c-circle-btn-block:hover .c-circle-btn-block-deco {
		border-left: 14px solid #A89472;
	}
}

.c-circle-btn-block-deco {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	border-top: 8px solid transparent;
	border-bottom: 8px solid transparent;
	border-left: 13px solid #fff;
	-webkit-transition: 0.5s;
	transition: 0.5s;
}

@media (max-width: 768px) {
	.c-circle-btn-block-deco {
		top: 50%;
		left: 50%;
		border-top: 4px solid transparent;
		border-bottom: 4px solid transparent;
		border-left: 7px solid #fff;
	}
}

.c-circle-btn-block-deco:hover {
	border-left: 13px solid #fff;
}

.c-circle-btn-block i {
	margin: 0;
}

/*==============================================
youtube_btn_person
==============================================*/
.c-circle-person-btn {
	float: left;
	border-radius: 50%;
	margin-bottom: 10px;
}

.c-circle-person-btn .c-circle-person-btn-block {
	float: left;
	border-radius: 50%;
}

.c-circle-person-btn-block-hovicon {
	display: inline-block;
	font-size: 45px;
	line-height: 90px;
	width: 90px;
	height: 90px;
	border-radius: 50%;
	text-align: center;
	position: relative;
	text-decoration: none;
	z-index: 1;
	color: #fff;
}

@media (max-width: 768px) {
	.c-circle-person-btn-block-hovicon {
		width: 64px;
		height: 64px;
	}
}

.c-circle-person-btn-block-hovicon.small {
	font-size: 20px;
	line-height: 45px;
	width: 45px;
	height: 45px;
	margin: 7px;
}

.c-circle-person-btn-block-hovicon.mini {
	font-size: 15px;
	line-height: 32px;
	width: 30px;
	height: 30px;
	margin: 7px;
}

.c-circle-person-btn-block-hovicon.auto-width {
	width: auto;
	height: auto;
	padding: 15px;
}

.c-circle-person-btn-block-hovicon:after {
	pointer-events: none;
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	content: '';
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
}

.c-circle-person-btn-block-hovicon:before {
	speak: none;
	font-size: 48px;
	line-height: 90px;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	display: block;
	-webkit-font-smoothing: antialiased;
}

/* Effect 1 */
.c-circle-person-btn-block-hovicon.c-circle-person-btn-block-hovicon-eff {
	border: 1px solid #fff;
	-webkit-transition: background 0.2s, color 0.2s;
	transition: background 0.2s, color 0.2s;
}

.c-circle-person-btn-block-hovicon.c-circle-person-btn-block-hovicon-eff:after {
	top: -7px;
	left: -7px;
	padding: 7px;
	-webkit-box-shadow: 0 0 0 4px #fff;
	box-shadow: 0 0 0 4px #fff;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	-webkit-transform: scale(0.8);
	-moz-transition: -moz-transform 0.2s, opacity 0.2s;
	-moz-transform: scale(0.8);
	-ms-transform: scale(0.8);
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
	transition: opacity 0.2s, -webkit-transform 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s, -webkit-transform 0.2s;
	transform: scale(0.8);
	opacity: 0;
}

/* Effect 1b */
.c-circle-person-btn-block-hovicon.c-circle-person-btn-block-hovicon-eff.c-circle-person-btn-block-hovicon-ani:hover {
	background: white;
	border: 1px solid #A89472;
}

.c-circle-person-btn-block-hovicon.c-circle-person-btn-block-hovicon-eff.c-circle-person-btn-block-hovicon-ani:after {
	-webkit-transform: scale(1);
	transform: scale(1);
}

.c-circle-person-btn-block-hovicon.c-circle-person-btn-block-hovicon-eff.c-circle-person-btn-block-hovicon-ani:hover:after {
	-webkit-transform: scale(0.7);
	transform: scale(0.7);
	opacity: 1;
}

.c-circle-person-btn:hover .c-circle-person-btn-block-deco {
	border-left: 7px solid #A89472;
}

.c-circle-person-btn-block-deco {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	border-top: 4px solid transparent;
	border-bottom: 4px solid transparent;
	border-left: 7px solid #fff;
	-webkit-transition: 0.5s;
	transition: 0.5s;
}

@media (max-width: 768px) {
	.c-circle-person-btn-block-deco {
		top: 50%;
		left: 50%;
		border-top: 4px solid transparent;
		border-bottom: 4px solid transparent;
		border-left: 7px solid #fff;
	}
}

.c-circle-person-btn-block-deco:hover {
	border-left: 7px solid #fff;
}

.c-circle-person-btn-block i {
	margin: 0;
}

@media (max-width: 768px) {
	.t-person-movie__container__image__movie {
		pointer-events: none;
	}
}

/* 画像hover時 */
@media screen and (min-width: 769px) {
	.t-person-movie__container__image:hover .c-circle-person-btn-block-hovicon-ani {
		background: white;
		border: 1px solid #A89472;
	}
}

@media screen and (min-width: 769px) {
	.t-person-movie__container__image:hover .c-circle-person-btn-block-hovicon-ani:after {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

@media screen and (min-width: 769px) {
	.t-person-movie__container__image:hover .c-circle-person-btn-block-hovicon-ani:after {
		-webkit-transform: scale(0.7);
		transform: scale(0.7);
		opacity: 1;
	}
}

@media screen and (min-width: 769px) {
	.t-person-movie__container__image:hover .c-circle-person-btn-block-deco {
		border-left: 7px solid #A89472;
	}
}

/*==============================================
c-btn/header
==============================================*/
.c-btn-white-header {
	position: relative;
	display: inline-block;
	padding-left: 20px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	width: 22px;
	height: 22px;
	border: 1px solid #fff !important;
	border-radius: 50%;
	-webkit-transition: 0.2s;
	transition: 0.2s;
	margin-right: 8px;
}

.c-btn-white-header:after {
	content: "";
	position: absolute;
	width: 6px;
	height: 6px;
	border: 0;
	border-top: solid 1px #fff;
	border-right: solid 1px #fff;
	top: 10.8px;
	left: 5px;
	margin-top: -4px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	-webkit-transition: 0.2s;
	transition: 0.2s;
}

/*==============================================

    COMPONENT_MV

==============================================*/
/*==============================================
mv 共通
==============================================*/
.c-breadcrumb {
	padding-top: 20px;
}

.c-breadcrumb {
	font-family: 'Shippori Mincho', serif;
	font-weight: 500;
}

.c-breadcrumb-list {
	font-size: 0.66667rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	width: 40%;
	position: relative;
	z-index: 10000001;
	margin-bottom: 6px;
}

@media (max-width: 768px) {
	.c-breadcrumb-list {
		width: 100%;
	}
}

.c-breadcrumb-list a {
	font-size: 0.66667rem;
	color: #000;
}

.c-breadcrumb-list--white {
	font-size: 0.66667rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	width: 40%;
	position: relative;
	z-index: 10000001;
	margin-bottom: 6px;
	color: #fff;
}

@media (max-width: 768px) {
	.c-breadcrumb-list--white {
		width: 100%;
	}
}

.c-breadcrumb-list--white a {
	font-size: 0.66667rem;
	color: #fff;
}

.c-breadcrumb-current {
	font-size: 2.4rem;
	color: #A89472;
	font-family: 'Cormorant Garamond', serif;
	line-height: 1.1;
}

@media (max-width: 768px) {
	.c-breadcrumb-current {
		font-size: 2rem;
	}
}

.c-breadcrumb-current--white {
	font-size: 2.4rem;
	color: #fff;
	font-family: 'Cormorant Garamond', serif;
	line-height: 1.1;
}

@media (max-width: 768px) {
	.c-breadcrumb-current--white {
		font-size: 2rem;
	}
}

.c-mv-center-wrap {
	padding-top: 60px;
	text-align: center;
}

@media (max-width: 768px) {
	.c-mv-center-wrap {
		padding-top: 40px;
	}
}

.c-mv-title {
	font-family: 'Shippori Mincho', serif;
	font-weight: 500;
	font-size: 4.26667rem;
	line-height: 1.5;
}

@media (max-width: 768px) {
	.c-mv-title {
		font-size: 2.57143rem;
	}
}

.c-mv-title-middle {
	font-family: 'Shippori Mincho', serif;
	font-weight: 500;
	font-size: 4.26667rem;
	line-height: 1.5;
}

@media (max-width: 768px) {
	.c-mv-title-middle {
		font-size: 2.1rem;
	}
}

.c-mv-title-sub {
	font-size: 2.13333rem;
	display: block;
	font-weight: 400;
}

@media (max-width: 768px) {
	.c-mv-title-sub {
		font-size: 1.28571rem;
		margin-top: 20px;
	}
}

.c-breadcrumb-white {
	font-family: 'Shippori Mincho', serif;
	font-weight: 500;
	position: relative;
	padding-top: 20px;
	z-index: 2;
	color: #fff;
}

.c-breadcrumb-list-white {
	font-size: 0.66667rem;
	font-weight: 600;
	color: #fff;
	letter-spacing: 0.04em;
	width: 30%;
	position: relative;
	z-index: 10000001;
	margin-bottom: 6px;
}

@media (max-width: 768px) {
	.c-breadcrumb-list-white {
		width: 100%;
	}
}

.c-breadcrumb-list-white a {
	font-size: 0.66667rem;
	color: #fff;
}

.c-breadcrumb-current-white {
	font-size: 2.4rem;
	color: #A89472;
	font-family: 'Cormorant Garamond', serif;
	color: #fff;
}

@media (max-width: 768px) {
	.c-breadcrumb-current-white {
		font-size: 2rem;
	}
}

.c-mv-title-white {
	font-family: 'Shippori Mincho', serif;
	font-weight: 500;
	font-size: 4.26667rem;
	color: #fff;
	line-height: 1.5;
}

@media (max-width: 768px) {
	.c-mv-title-white {
		font-size: 2.28571rem;
	}
}

.c-mv-title-sub-white {
	font-size: 2.13333rem;
	display: block;
}

/*==============================================

    COMPONENT_MV

==============================================*/
/*===========================================================================================
フロント_btn
============================================================================================*/
.l-footer__btn {
	position: relative;
}

@media (max-width: 768px) {
	.l-footer__btn__container {
		padding-bottom: 0px;
	}
}

.l-footer-btn__wrap {
	width: 100%;
	background: -ms-linear-gradient(0deg, #7be0e0 6.9%, #a6e0e0 100%);
	-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#7BE0E0', endColorstr='#A6E0E0' ,GradientType=0)";
	background: -webkit-gradient(linear, left top, right top, color-stop(6.9%, #7be0e0), to(#a6e0e0));
	background: linear-gradient(90deg, #7be0e0 6.9%, #a6e0e0 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#7BE0E0',endColorstr='#A6E0E0' , GradientType=1);
}

.l-footer-entry-btn {
	position: relative;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	width: 50%;
	padding: 30px 40px 30px 60px;
	color: #000;
}

@media screen and (min-width: 769px) {
	.l-footer-entry-btn::before {
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		z-index: 1;
		content: "";
		background: rgba(255, 255, 255, 0.3);
		-webkit-transform-origin: right top;
		transform-origin: right top;
		-webkit-transform: scale(0, 1);
		transform: scale(0, 1);
		-webkit-transition: -webkit-transform 0.15s;
		transition: -webkit-transform 0.15s;
		transition: transform 0.15s;
		transition: transform 0.15s, -webkit-transform 0.15s;
	}
	.l-footer-entry-btn:hover::before {
		-webkit-transform-origin: left top;
		transform-origin: left top;
		-webkit-transform: scale(1, 1);
		transform: scale(1, 1);
	}
}

@media (max-width: 768px) {
	.l-footer-entry-btn {
		width: 100%;
		padding: 26px 8%;
	}
}

.l-footer-entry-btn .l-footer-entry-btn__title {
	position: relative;
	z-index: 2;
	font-family: 'Cormorant Garamond', serif;
	font-size: 2.4rem;
	letter-spacing: 0.04em;
}

@media (max-width: 768px) {
	.l-footer-entry-btn .l-footer-entry-btn__title {
		font-size: 2rem;
	}
}

.l-footer-entry-btn .l-footer-entry-btn__arrow {
	position: relative;
	z-index: 2;
	width: 170px;
	margin-top: 20px;
}

@media (max-width: 768px) {
	.l-footer-entry-btn .l-footer-entry-btn__arrow {
		width: 70px;
	}
}

@media screen and (min-width: 769px) {
	.l-footer-entry-btn:nth-of-type(1) {
		border-right: 1px solid #000;
	}
}

@media (max-width: 768px) {
	.l-footer-entry-btn:nth-of-type(1) {
		border-bottom: 1px solid #000;
	}
}

/*==============================================

    UTILITY

==============================================*/
.u-hidden {
	display: none;
}

@media screen and (max-width: 768px) {
	.u-hidden-sp {
		display: none !important;
	}
}

@media screen and (min-width: 769px) {
	.u-hidden-pc {
		display: none !important;
	}
}

.u-opacity {
	opacity: 0.4;
}

.u-gradation-set {
	background: -ms-linear-gradient(0deg, #7be0e0 6.9%, #a6e0e0 100%);
	-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#7BE0E0', endColorstr='#A6E0E0' ,GradientType=0)";
	background: -webkit-gradient(linear, left top, right top, color-stop(6.9%, #7be0e0), to(#a6e0e0));
	background: linear-gradient(90deg, #7be0e0 6.9%, #a6e0e0 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#7BE0E0',endColorstr='#A6E0E0' , GradientType=1);
}

.u-relative {
	position: relative;
}

.u-relative:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 100;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: rgba(0, 0, 0, 0.7);
}

.u-relative:after {
	content: 'Coming Soon';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	font-family: 'Shippori Mincho', serif;
	font-weight: 500;
	font-size: 1rem;
	color: #82E0E0;
	z-index: 101;
}

@media (max-width: 768px) {
	.u-relative:after {
		font-size: 1.07143rem;
	}
}

.u-absolute {
	position: absolute;
}

.u-pointer {
	pointer-events: none;
}

/*===========================================================================================
top 共通
============================================================================================*/
.swiper-button-prev,
.swiper-button-next {
	background-size: 20px 20px;
	/* 背景画像としてのサイズ（＝表示したい画像サイズ） */
	margin-top: -24px;
	/* 縦中央配置用：ボタンの高さの半分のネガティブマージン（top:50%がすでに設定されている） */
}

/* 次ページボタンのスタイル */
.swiper-button-prev,
.swiper-container-rtl .swiper-button-prev {
	background-image: url("./../../image/top/slider_person/prev.svg");
	left: 11px;
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-next {
	background-image: url("./../../image/top/slider_person/next.svg");
	right: 11px;
}

.swiper-btn {
	position: absolute;
	left: 50%;
	width: 100%;
}

.swiper-pagination-bullet {
	background: rgba(0, 0, 0, 0.1);
	border: 1px solid #fff;
	opacity: 1;
}

/* 現在のスライドのスタイル */
.swiper-pagination-bullet-active {
	background: #fff;
}

.swiper-pagination-fraction {
	bottom: 10px;
	left: 0;
	width: 100%;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 0 5px;
}

.swiper-pagination {
	left: 40%;
}

.swiper-container {
	overflow: visible;
}

/*===========================================================================================
top_feature
============================================================================================*/
.t-feature .swiper-container-horizontal > .swiper-pagination-bullets,
.t-feature .swiper-pagination-custom,
.t-feature .swiper-pagination-fraction {
	bottom: -50px;
}

.t-feature .swiper-button-prev,
.t-feature .swiper-container-rtl .swiper-button-prev {
	left: 0px;
	margin-top: 0px;
}

.t-feature .swiper-button-next,
.t-feature .swiper-container-rtl .swiper-button-next {
	right: 0px;
	margin-top: 0px;
}

.t-feature .swiper-button-prev,
.t-feature .swiper-container-rtl .swiper-button-prev {
	left: 11px;
}

@media (max-width: 768px) {
	.t-feature .swiper-button-prev,
	.t-feature .swiper-container-rtl .swiper-button-prev {
		left: 5px;
	}
}

.t-feature .swiper-button-next,
.t-feature .swiper-container-rtl .swiper-button-next {
	right: 11px;
}

@media (max-width: 768px) {
	.t-feature .swiper-button-next,
	.t-feature .swiper-container-rtl .swiper-button-next {
		right: 5px;
	}
}

.t-feature .swiper-button-next,
.t-feature .swiper-button-prev {
	top: 42%;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	cursor: pointer;
	width: 75px;
}

.t-index__person .swiper-container-horizontal > .swiper-pagination-bullets,
.t-index__person .swiper-pagination-custom,
.t-index__person .swiper-pagination-fraction {
	bottom: -40px;
}

.t-index__person .swiper-button-prev,
.t-index__person .swiper-container-rtl .swiper-button-prev {
	left: -1px;
}

.t-index__person .swiper-button-next,
.t-index__person .swiper-container-rtl .swiper-button-next {
	right: -1px;
}

.t-index__person .swiper-button-next,
.t-index__person .swiper-button-prev {
	width: 36px;
	top: 34%;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	cursor: pointer;
}

/*===========================================================================================
top_背景動画フィルター
============================================================================================*/
.js-filter {
	background-color: rgba(53, 53, 53, 0.6);
}

.js-filter-dark {
	background-color: rgba(0, 0, 0, 0.9);
}

@media (max-width: 768px) {
	.js-filter-dark {
		background-color: rgba(0, 0, 0, 0.7);
	}
}

.js-filter-black {
	background-color: black;
}

/*===========================================================================================
top_message パララックス
============================================================================================*/
.js-parallax {
	margin-top: 80px;
	position: relative;
	-webkit-transform: perspective(1px);
	transform: perspective(1px);
	will-change: transform;
}

.js-parallax-one-day-first {
	position: relative;
}

/*===========================================================================================
top_テキストの表示
============================================================================================*/
.js-ani-text {
	opacity: 0;
	-webkit-transition: 0.9s;
	transition: 0.9s;
}

.js-ani-text-messeage {
	opacity: 0;
	-webkit-transition: 0.9s;
	transition: 0.9s;
}

.js-ani-tex-fade {
	opacity: 1;
}

.js-ani-contant {
	-webkit-animation-name: key_ani;
	animation-name: key_ani;
	-webkit-animation-duration: .4s;
	animation-duration: .4s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-iteration-count: 1;
	animation-iteration-count: 1;
	-webkit-animation-delay: 0.5s;
	animation-delay: 0.5s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
}

@-webkit-keyframes key_ani {
	0% {
		width: 0%;
		opacity: 0;
	}
	100% {
		width: 100%;
		opacity: 1;
	}
}

@keyframes key_ani {
	0% {
		width: 0%;
		opacity: 0;
	}
	100% {
		width: 100%;
		opacity: 1;
	}
}

/*===========================================================================================
pzge_mv
============================================================================================*/
.js-ani-left-trigger {
	opacity: 0;
	-webkit-transition: 0.6s;
	transition: 0.6s;
	-webkit-transform: translateX(-20px);
	transform: translateX(-20px);
	-webkit-animation-name: key_ani-to-right;
	animation-name: key_ani-to-right;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-iteration-count: 1;
	animation-iteration-count: 1;
	-webkit-animation-timing-function: cubic-bezier(0, 0.58, 0.09, 0.98);
	animation-timing-function: cubic-bezier(0, 0.58, 0.09, 0.98);
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-animation-duration: .8s;
	animation-duration: .8s;
}

@media (max-width: 768px) {
	.js-ani-left-trigger {
		-webkit-animation-delay: 0.4s;
		animation-delay: 0.4s;
	}
}

.js-ani-left-trigger-delay {
	opacity: 0;
	-webkit-transition: 0.6s;
	transition: 0.6s;
	-webkit-animation-name: key_ani-to-right;
	animation-name: key_ani-to-right;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-iteration-count: 1;
	animation-iteration-count: 1;
	-webkit-animation-timing-function: cubic-bezier(0, 0.58, 0.09, 0.98);
	animation-timing-function: cubic-bezier(0, 0.58, 0.09, 0.98);
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-animation-duration: .8s;
	animation-duration: .8s;
	-webkit-animation-delay: 0.25s;
	animation-delay: 0.25s;
}

@media (max-width: 768px) {
	.js-ani-left-trigger-delay {
		-webkit-animation-delay: 0;
		animation-delay: 0;
	}
}

.js-ani-left {
	opacity: 1;
	-webkit-transform: translateX(0px);
	transform: translateX(0px);
}

@-webkit-keyframes key_ani-to-right {
	0% {
		-webkit-transform: translateX(-40px);
		transform: translateX(-40px);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateX(0px);
		transform: translateX(0px);
		opacity: 1;
	}
}

@keyframes key_ani-to-right {
	0% {
		-webkit-transform: translateX(-40px);
		transform: translateX(-40px);
		opacity: 0;
	}
	100% {
		-webkit-transform: translateX(0px);
		transform: translateX(0px);
		opacity: 1;
	}
}

/*
ボーダー群
===================*/
.t-border-top {
	background-color: #000;
	position: absolute;
	height: 1px;
	display: block;
	top: 0;
	-webkit-animation-delay: 0.5s;
	animation-delay: 0.5s;
}

.t-border-middle {
	background-color: #000;
	position: absolute;
	height: 1px;
	display: block;
	bottom: 0;
	-webkit-animation-delay: 0.6s;
	animation-delay: 0.6s;
}

.t-border-bottom {
	background-color: #000;
	position: absolute;
	height: 1px;
	display: block;
	bottom: 0;
	-webkit-animation-delay: 0.7s;
	animation-delay: 0.7s;
}

.t-border-sp-top {
	background-color: #000;
	position: absolute;
	height: 1px;
	display: block;
	top: 0;
	-webkit-animation-delay: 0.5s;
	animation-delay: 0.5s;
}

.t-border-sp-middle {
	background-color: #000;
	position: absolute;
	height: 1px;
	display: block;
	bottom: 0;
	-webkit-animation-delay: 0.6s;
	animation-delay: 0.6s;
}

.t-border-sp-bottom {
	background-color: #000;
	position: absolute;
	height: 1px;
	display: block;
	bottom: 0;
	-webkit-animation-delay: 0.7s;
	animation-delay: 0.7s;
}

.t-border-white-top {
	background-color: #fff;
	position: absolute;
	height: 1px;
	display: block;
	top: 0;
	z-index: 1;
}

.t-border-white-middle {
	background-color: #fff;
	position: absolute;
	height: 1px;
	display: block;
	bottom: 0;
	z-index: 1;
}

.t-border-white-bottom {
	background-color: #fff;
	position: absolute;
	height: 1px;
	display: block;
	bottom: 0;
	z-index: 1;
}

.t-border-white-feature {
	background-color: #fff;
	position: absolute;
	height: 1px;
	display: block;
	top: 0;
	-webkit-animation-delay: 0.5s;
	animation-delay: 0.5s;
}

.js-ani-border {
	-webkit-animation-name: key_border;
	animation-name: key_border;
	-webkit-animation-duration: .4s;
	animation-duration: .4s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-iteration-count: 1;
	animation-iteration-count: 1;
	-webkit-animation-timing-function: cubic-bezier(0, 0.58, 0.09, 0.98);
	animation-timing-function: cubic-bezier(0, 0.58, 0.09, 0.98);
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
}

.js-ani-border-delay {
	-webkit-animation-name: key_border_long;
	animation-name: key_border_long;
	-webkit-animation-duration: .25s;
	animation-duration: .25s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-iteration-count: 1;
	animation-iteration-count: 1;
	-webkit-animation-timing-function: cubic-bezier(0, 0.58, 0.09, 0.98);
	animation-timing-function: cubic-bezier(0, 0.58, 0.09, 0.98);
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	-webkit-animation-delay: 0.1s;
	animation-delay: 0.1s;
}

/*
ボーダー群　パーソン
===================*/
.t-border-person-top {
	background-color: #000;
	position: absolute;
	height: 1px;
	display: block;
	top: 0;
}

.t-border-person-middle {
	background-color: #000;
	position: absolute;
	height: 1px;
	display: block;
	bottom: 0;
	z-index: 2;
}

.t-border-person-bottom {
	background-color: #000;
	position: absolute;
	height: 1px;
	display: block;
	bottom: 0;
}

.t-border-person-sp-top {
	background-color: #000;
	position: absolute;
	height: 1px;
	display: block;
	top: 0;
}

.t-person-nav .js-person-trigger-start .t-border-person-top {
	-webkit-animation-name: key_border;
	animation-name: key_border;
	-webkit-animation-duration: .4s;
	animation-duration: .4s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-iteration-count: 1;
	animation-iteration-count: 1;
	-webkit-animation-delay: 0.5s;
	animation-delay: 0.5s;
	-webkit-animation-timing-function: cubic-bezier(0, 0.58, 0.09, 0.98);
	animation-timing-function: cubic-bezier(0, 0.58, 0.09, 0.98);
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
}

.t-person-nav .js-person-trigger-start .t-border-person-middle {
	-webkit-animation-name: key_border;
	animation-name: key_border;
	-webkit-animation-duration: .4s;
	animation-duration: .4s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-iteration-count: 1;
	animation-iteration-count: 1;
	-webkit-animation-delay: 0.5s;
	animation-delay: 0.5s;
	-webkit-animation-timing-function: cubic-bezier(0, 0.58, 0.09, 0.98);
	animation-timing-function: cubic-bezier(0, 0.58, 0.09, 0.98);
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
}

.t-person-nav .js-person-trigger-start .t-border-person-bottom {
	-webkit-animation-name: key_border;
	animation-name: key_border;
	-webkit-animation-duration: .4s;
	animation-duration: .4s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-iteration-count: 1;
	animation-iteration-count: 1;
	-webkit-animation-delay: 0.5s;
	animation-delay: 0.5s;
	-webkit-animation-timing-function: cubic-bezier(0, 0.58, 0.09, 0.98);
	animation-timing-function: cubic-bezier(0, 0.58, 0.09, 0.98);
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
}

.t-person-nav .js-person-trigger-start .t-border-person-sp-top {
	-webkit-animation-name: key_border;
	animation-name: key_border;
	-webkit-animation-duration: .4s;
	animation-duration: .4s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-iteration-count: 1;
	animation-iteration-count: 1;
	-webkit-animation-delay: 0.5s;
	animation-delay: 0.5s;
	-webkit-animation-timing-function: cubic-bezier(0, 0.58, 0.09, 0.98);
	animation-timing-function: cubic-bezier(0, 0.58, 0.09, 0.98);
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
}

@-webkit-keyframes key_border {
	0% {
		width: 0%;
		opacity: 0;
	}
	100% {
		width: 100%;
		opacity: 1;
	}
}

@keyframes key_border {
	0% {
		width: 0%;
		opacity: 0;
	}
	100% {
		width: 100%;
		opacity: 1;
	}
}

@-webkit-keyframes key_border_long {
	0% {
		width: 0%;
		opacity: 0;
	}
	100% {
		width: 140%;
		opacity: 1;
	}
}

@keyframes key_border_long {
	0% {
		width: 0%;
		opacity: 0;
	}
	100% {
		width: 140%;
		opacity: 1;
	}
}

.js-footer-bg {
	background-color: #000;
}

.js-header-menu {
	background-color: #000 !important;
}

.js-header-menu:before {
	background-color: #000 !important;
}

.js-header-menu:after {
	background-color: #000 !important;
}

.js-current {
	border-bottom: 1px solid #1a1a1a;
	padding-bottom: 0px;
}

/*==============================================

    THEME MESSAGE COMMON

==============================================*/
/*==============================================
mv
==============================================*/
.t-mv-message-content {
	position: relative;
}

@media screen and (min-width: 769px) {
	.t-mv-message-content {
		display: block;
		position: relative;
		display: block;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-webkit-flex-direction: row;
		-ms-flex-direction: row;
		flex-direction: row;
	}
}

@media (max-width: 768px) {
	.t-mv-message-content {
		padding-top: 35px;
	}
}

.t-mv-message-content .t-mv-message-content__image {
	width: 100%;
	position: relative;
	height: auto;
	margin: auto;
}

@media screen and (min-width: 769px) {
	.t-mv-message-content .t-mv-message-content__image {
		width: 60.8%;
		margin: 0;
		margin-left: auto;
	}
}

.t-mv-message-content .t-mv-message-content__image__thumbnail {
	position: relative;
	z-index: 3;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

@media screen and (min-width: 769px) {
	.t-mv-message-content .t-mv-message-content__image__thumbnail {
		padding-top: 79.666%;
	}
}

@media (max-width: 768px) {
	.t-mv-message-content .t-mv-message-content__image__thumbnail {
		width: 80%;
		margin-left: auto;
		padding-top: 265px;
	}
}

@media (min-width: 481px) and (max-width: 768px) {
	.t-mv-message-content .t-mv-message-content__image__thumbnail {
		padding-top: 325px;
	}
}

.t-mv-message-content .t-mv-message-content__image__thumbnail--ceo {
	background-image: url("./../../image/page/message/ceo/img_thumbnail_message_common.jpg");
}

.t-mv-message-content .t-mv-message-content__image__thumbnail--officer {
	background-image: url("./../../image/page/message/officer/img_thumbnail_message_common.jpg");
}

.t-mv-message-content .t-mv-message-content__bg {
	display: inline-block;
	position: absolute;
	z-index: 1;
	background-color: #A89472;
	width: 90%;
	height: 105px;
	bottom: -22%;
	right: 0;
}

@media screen and (min-width: 769px) {
	.t-mv-message-content .t-mv-message-content__bg {
		width: 97%;
		height: 76%;
		right: 15%;
		bottom: -9%;
	}
}

.t-mv-message-content .t-mv-message-content__center {
	position: relative;
	z-index: 4;
}

@media screen and (min-width: 769px) {
	.t-mv-message-content .t-mv-message-content__center {
		margin-right: 0;
		width: 47%;
		min-width: 535px;
	}
}

.t-mv-message-content .t-mv-message-content__inner {
	position: static;
	margin: auto;
	z-index: 4;
}

@media (max-width: 768px) {
	.t-mv-message-content .t-mv-message-content__inner {
		padding-top: 28px;
		padding-left: 16px;
	}
}

@media screen and (min-width: 769px) {
	.t-mv-message-content .t-mv-message-content__inner {
		margin: 0 auto;
		overflow: hidden;
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		margin: auto;
		overflow: inherit;
	}
}

@media screen and (min-width: 769px) {
	.t-mv-message-content .t-mv-message-content__box {
		height: 100%;
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-webkit-align-items: center;
		-ms-flex-align: center;
		align-items: center;
	}
}

.t-mv-message-content .t-mv-message-content__message {
	font-family: 'Shippori Mincho', serif;
	font-weight: 500;
}

.t-mv-message-content .t-mv-message-content__message__catch {
	margin-bottom: 40px;
}

@media (max-width: 768px) {
	.t-mv-message-content .t-mv-message-content__message__catch {
		margin-bottom: 20px;
	}
}

@media screen and (min-width: 769px) {
	.t-mv-message-content .t-mv-message-content__message__catch {
		min-width: 800px;
	}
}

.t-mv-message-content .t-mv-message-content__message__position {
	font-size: 1rem;
	letter-spacing: 0.04em;
}

@media (max-width: 768px) {
	.t-mv-message-content .t-mv-message-content__message__position {
		font-size: 0.85714rem;
	}
}

.t-mv-message-content .t-mv-message-content__message__name {
	font-size: 1.6rem;
	letter-spacing: 0.04em;
	margin-top: 5px;
}

@media (max-width: 768px) {
	.t-mv-message-content .t-mv-message-content__message__name {
		margin-top: 0px;
		font-size: 1.28571rem;
	}
}

/*==============================================
content
==============================================*/
.t-message-common__catch {
	font-size: 2.4rem;
	letter-spacing: 0.04em;
	font-family: 'Shippori Mincho', serif;
	font-weight: 500;
}

@media (max-width: 768px) {
	.t-message-common__catch {
		font-size: 1.42857rem;
	}
}

.t-message-common__container {
	padding-top: 130px;
	padding-bottom: 130px;
}

@media (max-width: 768px) {
	.t-message-common__container {
		padding-top: 60px;
		padding-bottom: 60px;
	}
}

.t-message-common__sign {
	width: 62%;
	margin-left: auto;
}

@media (max-width: 768px) {
	.t-message-common__sign {
		width: 65%;
		margin-bottom: 0px;
	}
}

@media screen and (min-width: 769px) {
	.t-message-common__sign {
		margin-right: -160px;
		max-width: 480px;
	}
}

.t-message-common__text {
	margin-top: 70px;
	margin-bottom: 130px;
}

@media (max-width: 768px) {
	.t-message-common__text {
		margin-top: 25px;
		margin-bottom: 60px;
	}
}

.t-message-common__text__en {
	font-family: 'Roboto', sans-serif;
	font-size: 1.13333rem;
	letter-spacing: 0.04em;
	line-height: 2;
	font-weight: 500;
	font-style: italic;
}

@media (max-width: 768px) {
	.t-message-common__text__en {
		font-size: 1.21429rem;
	}
}

@media (min-width: 481px) {
	.t-message-common__text__br {
		display: none;
	}
}

.t-message-officer-text {
	margin-bottom: 0;
}

.t-message-common-wrap .t-message-common__text:nth-of-type(2) {
	margin-bottom: 50px;
}

@media (max-width: 768px) {
	.t-message-common-wrap .t-message-common__text:nth-of-type(2) {
		margin-bottom: 20px;
	}
}

/*==============================================
nav
==============================================*/
.t-message-nav {
	position: relative;
	background-color: #fff;
}

.t-message-nav__container {
	padding-top: 100px;
	padding-bottom: 130px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}

@media (max-width: 768px) {
	.t-message-nav__container {
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		-webkit-flex-direction: column-reverse;
		-ms-flex-direction: column-reverse;
		flex-direction: column-reverse;
		padding-top: 60px;
		padding-bottom: 60px;
	}
}

@media screen and (min-width: 769px) {
	.t-message-nav__container {
		-webkit-box-pack: justify;
		-webkit-justify-content: space-between;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}
}

.t-message-nav-next__image {
	position: relative;
	width: 100%;
}

.t-message-nav-idnex {
	display: block;
	margin: auto;
	color: #000;
	border-top: 1px solid #000;
	border-bottom: 1px solid #000;
	width: 300px;
	text-align: center;
}

.t-message-nav-idnex__title {
	display: block;
	padding-top: 20px;
	padding-bottom: 20px;
	font-family: 'Shippori Mincho', serif;
	font-weight: 500;
	font-size: 1.2rem;
	-webkit-transition: 0.4s;
	transition: 0.4s;
}

@media (max-width: 768px) {
	.t-message-nav-idnex__title {
		font-size: 1.06667rem;
	}
}

.t-message-nav-idnex__title:hover {
	opacity: 0.7;
	color: #A89472;
}

.t-message-nav-next {
	color: #000;
	font-family: 'Shippori Mincho', serif;
	font-weight: 500;
}

@media (max-width: 768px) {
	.t-message-nav-next {
		width: 120px;
		margin-left: auto;
		margin-bottom: 40px;
	}
}

@media screen and (min-width: 769px) {
	.t-message-nav-next {
		position: absolute;
		top: 80px;
		right: 4%;
		width: 179px;
	}
}

.t-message-nav-next .l-col--align {
	margin-bottom: 20px;
}

.t-message-nav-next__arrow {
	width: 20px;
	margin-left: 32px;
}

@media (max-width: 768px) {
	.t-message-nav-next__arrow {
		width: 12px;
		margin-left: 15px;
	}
}

.t-message-nav-next__position {
	display: block;
	font-size: 0.73333rem;
	letter-spacing: 0.04em;
	line-height: 1.5;
}

@media (max-width: 768px) {
	.t-message-nav-next__position {
		font-size: 0.78571rem;
	}
}

.t-message-nav-next__name {
	font-size: 1.2rem;
	letter-spacing: 0.04em;
}

@media (max-width: 768px) {
	.t-message-nav-next__name {
		font-size: 1.14286rem;
	}
}

.l-footer__btn__corporate__wrap {
	display: flex;
	justify-content: center;
}
@media screen and (min-width: 769px) {
	.l-footer__btn__corporate__button__col {
		top: 25%;
		left: 0;
		right: 0;
		justify-content: center;
	}
}
@media (max-width: 768px) {
	.l-footer__btn__corporate__wrap {
		display: block;
	}
	.l-footer__btn__corporate{
		width: auto;
	}
	.l-footer__btn__corporate__button__col{
		left: 42%;
	}
}
.l-footer__btn__corporate {
	margin-left: 15px;
	margin-right: 15px;
}

.t-message-officer{
	position: relative;
}

.t-message-officer__text{
	position: absolute;
	top: 20%;
	left: -10%;
	width: 45%;
}
@media (max-width: 768px) {
	.t-message-officer__text{
		top: 15%;
		left: -4%;
		width: 55%;
	}
}

.t-message-common__cube{
	position: relative;
}
.t-message-common__cube::before{
	content: "";
	display: inline-block;
	position: absolute;
	left: 10%;
	bottom: -10%;
	width: 348px;
	height: 348px;
	background-color: #A49576;
	z-index: 0;

}
@media (max-width: 768px) {
	.t-message-common__cube::before{
		position: relative;
		width: 110%;
		height: 194px;
		left: auto;
		margin-top: 13%;
	}
}
.t-message-common__cube figure{
	width: 50%;
	margin-right: 10%;
	margin-left: auto;
	position: relative;
}
@media (max-width: 768px) {
	.t-message-common__cube figure{
		position: absolute;
		width: 100%;
		top: -10%;
		margin-right: 0%;
		margin-left: auto;
		right: -10%;
	}
}
.sp-only {
	display: none;
}

@media (max-width: 768px) {
	.sp-only {
		display: block;
	}
}



.ch-col{
	padding-top:130px;font-family: 'Shippori Mincho', serif;
}

.ch-col .step-col .img-col{
	width:1.55rem;margin:0 auto;overflow: hidden;padding:0.5rem 0 0 0;
}

.ch-col .step-col.step-first{
	padding-top:4.63rem;
}

.ch-col .step-col.step-second{
	padding-bottom:3.6rem;
}

.ch-col .ch-content-next .img-text .left-col{
	width:28.06rem;
}

.ch-col .ch-content-next .img-text .right-col{
	width:30.12rem;
}




.ch-col .step-col.step-first .text{
	color:#5DC2D0;
}

.ch-col .step-col .img-col img{
	width:1.3rem;transform: translateY(-100%);
}

.ch-col .step-col.step-first .img-col img{
	transition: all 1.5s;
}

.ch-col .step-col.step-second .img-col img{
	transition: all 1.5s ease 1.5s;
}

.ch-col .step-col .img-col img.fade-base{
	transform: translateY(0);
}


.ch-col .step-col .text{
	font-weight: 500;
	font-size: 1.89rem;
	color: #A49576;
	text-align: center;
	line-height: 3rem;
	position: relative;z-index:10;
}

.ch-col .step-col .icon{
	width:3rem;height:3rem;margin:0.5rem auto;display: block;
}

.ch-col .img-text{display: flex;box-sizing: border-box;justify-content: center;align-items: flex-start;}
.ch-col .img-text .left-col{
	width:15.51rem;display: block;height:auto;margin-top:0.7rem;
}

.ch-col .img-text.next-col .right-col{
	margin-left:0;margin-right:2.61rem;
}

.ch-col .swiper-top{
	padding-top:2.5rem;
}

.ch-col .swiper-top .text{
	padding:3.58rem 0 2.59rem 0;
}

.ch-col .img-text .right-col{
	width:44.5rem;margin-left:2.64rem;
}

.ch-col .swiper-col{
	width:104.96rem;margin-left:-2.49rem;
}

.ch-col .swiper-main{
	width:100%;overflow: hidden;
}

.ch-col .ch-content-bottom .portrait{
	width:19.06rem;display: block;margin:0 auto;
}

.ch-col .swiper-col .detail-col{
	width:18.86rem;display: block;
}

.ch-col .swiper-col .detail-col img{
	width:18.86rem;height:13.02rem;display: block;
}

.ch-col .swiper-col .detail-col div div{
	font-weight: 500;
	font-size: 1.42rem;
	color: #5DC2D0;
	padding:1.96rem 0 1.36rem 0;
	line-height: 1;
	font-family: 'Cormorant Garamond', serif;
}

.ch-col .swiper-col .detail-col div p{
	font-weight: 500;
	font-size: 0.85rem;
	color: #000000;
	line-height: 1.89rem;
	letter-spacing: -0.05rem;
}

.ch-col .ch-content-bottom .text{
	width:60.59rem;margin:0 auto;padding:3.21rem 0 7.1rem 0;
}

.ch-col .ch-content-bottom .step-col.step-first{
	padding-top:3.55rem;
}

.ch-col .ch-content-bottom .step-col .text{
	padding:3.44rem 0 3.64rem 0;
}

.ch-col .ch-content-bottom p{
	font-weight: 500;
	font-size: 15px;
	color: #000000;
	line-height: 1.89rem;
}


.ch-col .img-text .right-col p{
	font-weight: 500;
	font-size: 15px;
	color: #000000;
	line-height: 1.89rem;
}

.ch-col .ch-img{
	padding:0 3.13rem;box-sizing: border-box;
}

.img100{
	width:100%;display: block;
}

.ch-top{
	height:43.69rem;width:100%;background-image: url("../../image/page/ch/ch_02.jpg");
	background-size: auto 100%;position: relative;cursor: pointer;
}



.ch-first{
	padding-top:5.2rem;
}

.ch-first p{
	font-weight: 500;
	font-size: 1.42rem;
	color: #000000;
	line-height: 2.96rem;
	text-align: center;
}

.ch-top .left{
	width: 41.46rem;
	font-weight: 500;
	font-size: 3.07rem;
	color: #FFFFFF;
	line-height: 5.21rem;
	position: absolute;
	left:3.67rem;
	top:6.93rem;
}

.ch-top .right{
	position: absolute;right:5.74rem;bottom:2.93rem;color:#fff;
}

.ch-top .right .right-info p{
	font-weight: 500;
	font-size: 0.95rem;
	color: #FFFFFF;
	font-family: 'Cormorant Garamond', serif;
}

.ch-top .right .right-name{
	padding-bottom:1rem;display: flex;align-items: center;
}


.ch-top .right .right-name span{
	font-weight: 500;
	font-size: 1.69rem;
	color: #FFFFFF;
	position: relative;
	margin-right:1rem;
}

.ch-top .right .right-name span:last-child{
	font-weight: 500;
	font-size: 1.19rem;
	font-family: 'Cormorant Garamond', serif;
	position: relative;
}


.ch-top .right .right-name span:first-child:after{
	height:1.28rem;width:1px;background:rgba(255,255,255,0.5);content:"";display: block;
	position: absolute;right:-0.8rem;top:0.68rem;
}

.ch-top .right .right-title{
	font-family: 'Cormorant Garamond', serif;
	font-weight: 400;
	font-size: 2.49rem;
	color: #FFFFFF;
	padding-bottom:0.5rem;
}

.ch-top .right .right-title span{
	font-family: 'Shippori Mincho', serif;;
}

.ch-top .right .right-content{
	padding-top:3rem;
}

.ch-top .right .right-content p{
	font-weight: 500;
	font-size: 0.95rem;
	color: #FFFFFF;
	line-height: 1.66rem;
}

.ch-col .btn-list{
	text-align: center;padding-bottom:2rem;
}

.ch-col .swiper-top .step-col{
	padding:0;
}

.ch-col .btn-list img{
	width:6.4rem;cursor: pointer;
}

.ch-col .btn-list img:hover{
	opacity: 0.8;
}

.ch-col .step-col{
	position: relative;
}

.ch-col .img{
	position: absolute;
	width:16.6rem;
	opacity: 0;transition: 2s;
}

.ch-col .img1{
	top:3rem;right:4.75rem;
}

.ch-col .img2{
	top:3rem;right:4.75rem;
}

.ch-col .img3{
	width:10.5rem;
	top:5rem;left:12rem;
}


.ch-col .img4{
	top:6rem;right:12rem;
}
.ch-col .img5{
	width:15.75rem;
	top:-4rem;left:12rem;
}

.ch-col .img6{
	top:5rem;right:12rem;
}
.ch-col .img7{
	width:15.75rem;
	top:-9rem;left:10rem;
}

.ch-col .swiper-col{
	position: relative;padding-bottom:4rem;
}


.ch-col .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet{
	width:0.6rem;height:0.6rem;margin:0 0.3rem;
}

.ch-col .swiper-pagination-bullet-active{
	background: #A49576;
}

.ch-col .swiper-col .swiper-pagination{
	left:-0.8rem;
}

.ch-col .img0{
	width:10rem;left:13rem;top:3rem;
}


.ch-col .swiper-next{
	margin-top:-1.6rem;
}

.ch-col .middle{
	width:14rem;
	text-align: center;
	position: absolute;
	left:50%;margin-left:-7rem;
	top:20rem;
	cursor: pointer;
}


.ch-col .middle .quan{
	width:5.4rem;height:5.4rem;border:1px solid #fff;border-radius: 50%;
	margin:0 auto;display: flex;align-items: center;justify-content: center;
}

.ch-col .middle .quan span{
	border:0.48rem transparent solid;
	border-left:0.6rem #fff solid;
	margin-left:0.4rem;
}

.ch-col .middle .text{
	font-weight: 500;
	font-size: 1.56rem;
	color: #FFFFFF;
	line-height: 1.91rem;
	text-align: center;
	padding-top:1rem;
	font-family: 'Cormorant Garamond', serif;
}

.ch-col .img-text .left-col.m{
	display: none;
}


.ch-img-col .m{
	display: none;
}

.ch-col .swiper-col .detail-col div .red{
	color:#E60012!important;
}

.ch-col .swiper-col .detail-col div .green{
	color:#00913A!important;
}

.ch-col .swiper-col .detail-col div .orange{
	color:#F39800!important;
}


@media (min-width: 768px)
{
	.ch-col .ch-top:hover .middle .quan{
		background: #fff;
	}

	.ch-col .ch-top:hover .middle .quan span{
		border-left:0.6rem #B5B5B6 solid;
	}

	.ch-top:hover:after{
		content:"";display: block;left:0;top:0;width:100%;height:100%;background: rgba(0,0,0,0.2);
	}
}

@media (min-width: 769px) and (max-width:1300px){
	.l-header__nav__ul__item{
		padding:0 6px;
	}
	.l-header__nav__ul__item a{
		font-size:12px;
	}

}

@media (max-width: 768px)
{


	.ch-img-col .pc{
		display: none;
	}
	.ch-img-col .m{
		display: block;
	}

	.ch-col{
		padding-top:80px;
	}
	.ch-top{
		height:60.01vw;margin-top:54.36vw;margin-bottom:81.83vw;
		background-position: 50% 20%;
		background-size: auto 150%;
	}

	.ch-top .right .right-content p{
		font-weight: 500;
		font-size: 2.93vw;
		color: #000000;
		line-height: 4.93vw;
	}

	.ch-top .right .right-info{
		font-weight: 500;
		font-size: 2.93vw;
		color: #000000;
		line-height: 4.53vw;
	}

	.ch-top .right .right-content{
		padding-bottom:13.16vw;
		padding-top:6.51vw;
	}

	.ch-top .right .right-name span{
		font-weight: 500;
		font-size: 4.67vw;
		color: #000000;
	}

	.ch-top .right .right-name span:last-child{
		font-size: 4.67vw;
	}

	.ch-top .right .right-info p{
		color:#000;font-size:4.1vw;
	}

	.ch-top .left{
		top:-36vw;
		width: 90.15vw;
		height: 27.83vw;
		font-weight: 500;
		font-size: 6.66vw;
		line-height: 10.80vw;
		color:#000;
		left:5.5vw;
	}

	.ch-top .right .right-title{
		font-weight: 400;
		font-size: 3.47vw;
		color: #A49576;
		position: absolute;
		left:0;
		top:-108.5vw;
	}

	.ch-top .right{
		left:8.13vw;bottom:-84vw;color:#000;
		width: 84.01vw;border-bottom:1px solid #000;
	}

	.ch-first{
		padding-top:6.59vw;
	}

	.ch-first p{
		font-weight: 500;
		font-size: 3.73vw;
		color: #000000;
		line-height: 7.73vw;
	}

	.ch-first p span{
		display: block;
	}

	.ch-col .step-col .img-col img{
		width:3.6vw;
	}

	.ch-col .step-col.step-first{
		padding-top:6.72vw;
	}

	.ch-col .step-col .icon{
		width:8.19vw;height:8.19vw;
	}

	.ch-col .step-col .text{
		font-weight: 500;
		font-size: 4.67vw;
		color: #A49576;
		line-height: 8vw;
	}

	.ch-col .step-col .text span{
		display: block;
	}

	.ch-col .step-col.step-first .text{
		font-weight: 500;
		font-size: 4.67vw;
		color: #5DC2D0;
	}

	.ch-col .img{
		width:32.24vw;
	}
	.ch-col .img1{
		right:0;top:2vw;
	}

	.ch-content{
		padding:0 8vw;box-sizing: border-box;
	}

	.ch-col .img-text .left-col{
		display: block;width:100%;
	}

	.ch-col .step-col.step-second{
		padding-bottom:9.4vw;
	}

	.ch-col .img-text{
		flex-direction: column;
	}

	.ch-col .img-text .right-col{
		width:100%;margin-left:0;padding-top:8.06vw;
	}

	.ch-col .img-text .right-col p{
		font-weight: 500;
		font-size: 3.65vw;
		color: #000000;
		line-height: 7.73vw;
	}

	.ch-col .swiper-top .text{
		font-weight: bold;
		font-size: 3.33vw;
		color: #A49576;
		line-height: 6.66vw;
		padding:8.45vw 0 0 0;
		margin-bottom:-3vw;
	}

	.ch-col .btn-list img{
		width:19.77vw;
	}

	.ch-col .btn-list{
		padding-bottom:7.68vw;
	}

	.ch-col .swiper-col .detail-col{
		width:59.98vw;
	}

	.ch-col .swiper-col .detail-col img{
		width: 59.98vw;
		height: 41.32vw;
	}

	.ch-col .swiper-col{
		width:200vw;margin-left:20.5vw;
	}

	.ch-col .img-text.next-col{
		flex-direction: column-reverse;
	}

	.ch-col .img-text.next-col .right-col{
		margin-right:0;
	}

	.ch-col .img3{
		left:-6vw;width:20vw;top:6vw;
	}

	.ch-col .img4{
		right:-6vw;top:6vw;
	}

	.ch-col .img5{
		left:-4vw;width:25vw;top:0vw;
	}

	.ch-col .img2{
		right:-7vw;top:8vw;
	}

	.ch-col .img6{
		right:-8vw;top:4vw;
	}

	.ch-col .img7{
		left:-6vw;top:2vw;
		width:20.86vw;
	}

	.ch-col .ch-content-bottom .text{
		width:100%;box-sizing: border-box;padding:0 8vw;
	}

	.ch-col .ch-content-bottom .step-col .text{
		padding:8.25vw 0 8.77vw 0;
	}

	.ch-col .ch-content-bottom .portrait{
		width:46.65vw;margin-bottom:10.81vw;
	}

	.ch-col .ch-content-bottom p{
		font-weight: 500;
		font-size: 3.73vw;
		color: #000000;
		line-height: 7.73vw;
	}

	.ch-col .ch-img{
		padding:8.96vw 8vw;
	}

	.ch-col .img0{
		left:-6vw;top:6vw;width:24vw;
	}

	.ch-col .middle{
		top:23.93vw;
	}

	.ch-col .middle .quan{
		width:12.16vw;height:12.16vw;
	}

	.ch-col .middle .quan span{
		border: 0.96vw transparent solid;
		border-left: 1.39vw #fff solid;
		margin-left:0.8vw;
	}

	.ch-col .middle .text{
		font-weight: 500;
		font-size: 3.73vw;
		color: #FFFFFF;
		line-height: 4.29vw;
		padding-top:2.97vw;
	}

	.ch-col .swiper-col .detail-col div p{
		font-weight: 500;
		font-size: 2.67vw;
		color: #000000;
		line-height: 5.33vw;
	}

	.ch-col .swiper-col .detail-col div div{
		font-weight: 500;
		font-size: 4.52vw;
		color: #5DC2D0;
		line-height: 6.02vw;
		padding: 5vw 0 4.8vw 0;
	}

	.ch-col .ch-content-next .img-text .right-col{
		width:100%;
	}
	.ch-col .ch-content-next .img-text .left-col{
		width:100%;
	}

	.ch-col .swiper-col .swiper-pagination{
		left:-20.5vw;
		width:100vw;
	}


	.ch-col .img-text .left-col.pc{
		display: none;
	}
	.ch-col .img-text .left-col.m{
		display: block;
	}

}


