@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: 0.93333rem;
	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: 1.42857rem;
		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: 0.92857rem;
	}
}

.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: 1rem;
	font-family: 'Roboto', sans-serif;
	font-weight: 500;
	cursor: pointer;
}

@media (max-width: 1180px) {
	.l-header__nav__ul__item a {
		font-size: 0.86667rem;
	}
}

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: 0.93333rem;
	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%;
	}

	.l-footer__btn__corporate__button__col {
		top: 25%;
		left: 0;
		right: 0;
		justify-content: center;
	}
}

@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.28571rem;
	}
}

.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);
}

.group-person .l-footer-btn__wrap {
	background: linear-gradient(90deg, rgba(130, 171, 217, 1) 0%, rgba(143, 189, 214, 1) 50%, rgba(105, 205, 212, 1) 100%);
}

.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 PERSON COMMON

==============================================*/
/*==============================================
mv
==============================================*/
.t-mv-person-content {
	position: relative;
}

@media (max-width: 768px) {
	.t-mv-person-content {
		padding-top: 35px;
	}
}

@media screen and (min-width: 769px) {
	.t-mv-person-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;
	}
}

.t-mv-person-content .t-mv-person-content__image {
	width: 77.334%;
	position: relative;
	height: auto;
	background-color: #A89472;
	margin-left: auto;
	padding-top: 10px;
	padding-left: 10px;
	padding-bottom: 50px;
}

@media screen and (min-width: 769px) {
	.t-mv-person-content .t-mv-person-content__image {
		width: 55.8%;
		margin: 0;
		margin-left: auto;
		padding-top: 20px;
		padding-left: 30px;
		padding-bottom: 140px;
	}
}

.t-mv-person-content .t-mv-person-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-person-content .t-mv-person-content__image__thumbnail {
		padding-top: 82.666%;
	}
}

@media (max-width: 768px) {
	.t-mv-person-content .t-mv-person-content__image__thumbnail {
		width: 100%;
		margin-left: auto;
		padding-top: 265px;
	}
}

@media (min-width: 481px) and (max-width: 768px) {
	.t-mv-person-content .t-mv-person-content__image__thumbnail {
		padding-top: 400px;
	}
}

.t-mv-person-content .t-mv-person-content__image__thumbnail--01 {
	background-image: url("./../../image/page/person/person01/img_person01_thumbnail.jpg");
}

.t-mv-person-content .t-mv-person-content__image__thumbnail--02 {
	background-image: url("./../../image/page/person/person02/img_person02_thumbnail.jpg");
}

.t-mv-person-content .t-mv-person-content__image__thumbnail--03 {
	background-image: url("./../../image/page/person/person03/img_person03_thumbnail.jpg");
}

.t-mv-person-content .t-mv-person-content__image__thumbnail--04 {
	background-image: url("./../../image/page/person/person04/img_person04_thumbnail.jpg");
}

.t-mv-person-content .t-mv-person-content__image__thumbnail--05 {
	background-image: url("./../../image/page/person/person05/img_person05_thumbnail.jpg");
}

.t-mv-person-content .t-mv-person-content__bg {
	display: inline-block;
	position: absolute;
	z-index: 1;
	background-color: #a89472;
	width: 90%;
	height: 200px;
	bottom: -18%;
	right: 0;
}

@media screen and (min-width: 769px) {
	.t-mv-person-content .t-mv-person-content__bg {
		width: 90%;
		height: 440px;
		right: 15%;
		bottom: -5%;
	}
}

.t-mv-person-content .t-mv-person-content__center {
	position: relative;
	z-index: 4;
}

@media screen and (min-width: 769px) {
	.t-mv-person-content .t-mv-person-content__center {
		margin-right: 0;
		width: 58%;
		min-width: 590px;
	}
}

.t-mv-person-content .t-mv-person-content__inner {
	position: static;
	margin: auto;
	z-index: 4;
}

@media (max-width: 768px) {
	.t-mv-person-content .t-mv-person-content__inner {
		margin-top: -20px;
	}
}

@media screen and (min-width: 769px) {
	.t-mv-person-content .t-mv-person-content__inner {
		margin: 0 auto;
		overflow: hidden;
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		margin: auto;
		overflow: inherit;
	}
}

.t-mv-person-content .t-mv-person-content__box {
	padding-bottom: 28px;
}

@media screen and (min-width: 769px) {
	.t-mv-person-content .t-mv-person-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-person-content .t-mv-person-content__message {
	font-family: 'Shippori Mincho', serif;
	font-weight: 500;
}

.t-mv-person-content .t-mv-person-content__message__catch {
	margin-bottom: 30px;
}

@media (max-width: 768px) {
	.t-mv-person-content .t-mv-person-content__message__catch {
		margin-top: -25px;
	}
}

@media screen and (min-width: 769px) {
	.t-mv-person-content .t-mv-person-content__message__catch {
		min-width: 800px;
	}
}

.t-mv-person-content .t-mv-person-content__message__position {
	font-size: 1rem;
	letter-spacing: 0.04em;
	line-height: 1.46;
}

@media (max-width: 768px) {
	.t-mv-person-content .t-mv-person-content__message__position {
		font-size: 0.85714rem;
	}
}

.t-mv-person-content .t-mv-person-content__message__name {
	font-size: 1.6rem;
	letter-spacing: 0.04em;
	margin-top: 20px;
}

@media (max-width: 768px) {
	.t-mv-person-content .t-mv-person-content__message__name {
		font-size: 1.28571rem;
		margin-top: 10px;
	}
}

.t-mv-person-content .t-mv-person-content__message__wrap {
	width: 58%;
	margin-top: 30px;
}

@media (max-width: 768px) {
	.t-mv-person-content .t-mv-person-content__message__wrap {
		width: 100%;
		margin-top: 20px;
	}
}

.t-mv-person-content .t-mv-person-content__message__text {
	font-size: 0.8rem;
	letter-spacing: 0.04em;
	line-height: 1.666;
	font-family: 'Shippori Mincho', serif;
	font-weight: 500;
}

@media (max-width: 768px) {
	.t-mv-person-content .t-mv-person-content__message__text {
		width: 100%;
		font-size: 0.85714rem;
	}
}

.t-mv-person-content .t-mv-person-content__message__text--indent {
	position: relative;
	padding-left: -8px;
	text-indent: -1px;
	font-size: 0.8rem;
	letter-spacing: 0.04em;
	line-height: 1.666;
	font-family: 'Shippori Mincho', serif;
	font-weight: 500;
	margin-left: 8px;
}

@media (max-width: 768px) {
	.t-mv-person-content .t-mv-person-content__message__text--indent {
		width: 100%;
		font-size: 0.85714rem;
	}
}

.t-mv-person-content .t-mv-person-content__message__text--indent:after {
	content: '：';
	position: absolute;
	left: -10px;
	top: 0;
}

.t-mv-person-content .t-mv-person-content__message__en {
	font-size: 0.8rem;
	letter-spacing: 0.04em;
}

@media (max-width: 768px) {
	.t-mv-person-content .t-mv-person-content__message__en {
		font-size: 0.71429rem;
	}
}

/*==============================================
movie
==============================================*/
.t-person-movie {
	background-color: #000;
	margin-top: -30px;
}

@media (max-width: 768px) {
	.t-person-movie {
		margin-top: 0px;
	}
}

.t-person-movie__container {
	padding-top: 100px;
	padding-bottom: 80px;
}

@media (max-width: 768px) {
	.t-person-movie__container {
		padding-top: 40px;
		padding-bottom: 60px;
	}
}

.t-person-movie__container__title {
	font-size: 1.73333rem;
	font-family: 'Shippori Mincho', serif;
	font-weight: 500;
	letter-spacing: 0.04em;
	line-height: 1.74;
	color: #fff;
	width: 80%;
	margin: auto;
	position: relative;
	z-index: 3;
}

@media (max-width: 768px) {
	.t-person-movie__container__title {
		font-size: 1.14286rem;
	}
}

.t-person-movie__container__image {
	position: relative;
	margin-top: -16px;
	cursor: pointer;
}

.t-person-movie__container__image__text {
	color: #fff;
	font-size: 1rem;
	font-family: 'Shippori Mincho', serif;
	font-weight: 500;
	letter-spacing: 0.04em;
	text-align: center;
	top: 10px;
}

.t-person-movie__container__image__movie {
	position: absolute;
	width: 90px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	z-index: 2;
}

@media (max-width: 768px) {
	.t-person-movie__container__image__movie {
		width: 60px;
	}
}

/*==============================================
content
==============================================*/
.t-person-content {
	padding-top: 90px;
	padding-bottom: 100px;
}

@media (max-width: 768px) {
	.t-person-content {
		padding-top: 40px;
		padding-bottom: 40px;
	}

	#heading-2 {
		/* padding-top: 270px; */
		padding-bottom: 40px;
	}
	.group-person-01-index #heading-2 {
		margin-top: 240px
	}
}

.t-person-content__container__title {
	position: relative;
	padding-bottom: 20px;
	margin-bottom: 60px;
}

@media (max-width: 768px) {
	.t-person-content__container__title {
		margin-bottom: 25px;
	}
}

.t-person-content__container__title__cacth {
	font-size: 2.4rem;
	font-family: 'Shippori Mincho', serif;
	font-weight: 500;
	letter-spacing: 0.04em;
}

@media (max-width: 768px) {
	.t-person-content__container__title__cacth {
		font-size: 1.42857rem;
	}
}

.t-person-content__container__title__border {
	position: absolute;
	display: block;
	height: 1px;
	bottom: 0;
	background-color: #000;
	-webkit-animation-delay: 0.3s;
	animation-delay: 0.3s;
}

/*==============================================
image
==============================================*/
.t-person-image {
	position: relative;
}

@media screen and (min-width: 769px) {
	.t-person-image {
		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;
	}
}

.t-person-image .t-person-image__image {
	width: 100%;
	position: relative;
	height: auto;
	margin: auto;
	padding-bottom: 55px;
}

@media screen and (min-width: 769px) {
	.t-person-image .t-person-image__image {
		width: 57%;
		margin: 0;
		margin-right: auto;
		padding-bottom: 180px;
	}
}

.t-person-image .t-person-image__image__thumbnail {
	position: relative;
	z-index: 3;
}

@media (max-width: 769px) {
	.t-person-image .t-person-image__image__thumbnail {
		width: 50%;
	}
}

@media (max-width: 480px) {
	.t-person-image .t-person-image__image__thumbnail {
		width: 75%;
	}

	.group-person .t-person-image .t-person-image__image__thumbnail {
		width: 58%;
	}
}

.t-person-image .t-person-image__image__thumbnail img {
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	max-height: 800px;
}

@media (max-width: 480px) {
	.group-person .t-person-image-last .t-person-image__center {
		position: absolute;
		left: 20px;
		top: 22%;
		bottom: auto;
		right: auto;
	}
}


.t-person-image .t-person-image__bg {
	display: inline-block;
	position: absolute;
	z-index: 1;
	background-color: #a89472;
	width: 84%;
	height: 95%;
	bottom: -18%;
}

@media screen and (min-width: 769px) {
	.t-person-image .t-person-image__bg {
		width: 155%;
		height: 73%;
		left: 0;
		bottom: 10%;
	}

}

.t-person-image .t-person-image__center {
	position: relative;
	z-index: 4;
}

@media (max-width: 769px) {
	.t-person-image .t-person-image__center .t-person-image__image__thumbnail {
		width: 32%;
		margin-left: auto;
	}
}

@media (max-width: 480px) {
	.t-person-image .t-person-image__center .t-person-image__image__thumbnail {
		width: 57%;
		margin-left: auto;
	}
}

@media screen and (min-width: 769px) {
	.t-person-image .t-person-image__center {
		margin-left: auto;
		margin-right: 0;
		width: 33.612%;
	}
}

.t-person-image .t-person-image__inner {
	position: static;
	margin: auto;
	z-index: 4;
}

@media screen and (min-width: 769px) {
	.t-person-image .t-person-image__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-person-image .t-person-image__box {
		height: 100%;
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-align: end;
		align-items: flex-end;
		-webkit-box-align: end;
		-webkit-align-items: flex-end;
		position: relative;
	}
}

.t-person-image-reverse {
	position: relative;
}

@media screen and (min-width: 769px) {
	.t-person-image-reverse {
		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;
		padding-bottom: 120px;
	}
}

.t-person-image-reverse .t-person-image__image {
	width: 100%;
	position: relative;
	height: auto;
	margin: auto;
	padding-top: 190px;
}

@media screen and (min-width: 769px) {
	.t-person-image-reverse .t-person-image__image {
		width: 57%;
		margin: 0;
		margin-left: auto;
		padding-top: 120px;
		padding-bottom: 75px;
	}
}

.t-person-image-reverse .t-person-image__image .t-person-image__image__thumbnail {
	margin-left: auto;
}

.t-person-image-reverse .t-person-image__image__thumbnail {
	position: relative;
	z-index: 3;
}

@media (max-width: 769px) {
	.t-person-image-reverse .t-person-image__image__thumbnail {
		width: 50%;
	}
}

@media (max-width: 480px) {
	.t-person-image-reverse .t-person-image__image__thumbnail {
		width: 70%;
	}
}

.t-person-image-reverse .t-person-image__image__thumbnail img {
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	max-height: 800px;
}

.t-person-image-reverse .t-person-image__bg {
	display: inline-block;
	position: absolute;
	z-index: 1;
	background-color: #a89472;
	width: 84%;
	height: 80%;
	top: 30px;
	right: 0;
}

@media screen and (min-width: 769px) {
	.t-person-image-reverse .t-person-image__bg {
		width: 155%;
		height: 62%;
		right: 0;
		top: 6%;
	}
}

.t-person-image-reverse .t-person-image__center {
	z-index: 4;
}

@media (max-width: 768px) {
	.t-person-image-reverse .t-person-image__center {
		position: absolute;
		top: 0;
	}
}

@media screen and (min-width: 769px) {
	.t-person-image-reverse .t-person-image__center {
		position: relative;
		margin-right: auto;
		width: 33.612%;
	}
}

@media (max-width: 769px) {
	.t-person-image-reverse .t-person-image__center .t-person-image__message .t-person-image__image__thumbnail {
		width: 32%;
	}
}

@media (max-width: 480px) {
	.t-person-image-reverse .t-person-image__center .t-person-image__message .t-person-image__image__thumbnail {
		width: 57%;
	}
}

.t-person-image-reverse .t-person-image__inner {
	position: static;
	margin: auto;
	z-index: 4;
}

@media screen and (min-width: 769px) {
	.t-person-image-reverse .t-person-image__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-person-image-reverse .t-person-image__box {
		height: 100%;
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
	}
}

@media (max-width: 768px) {
	.t-person-image-reverse .t-person-image__text {
		margin-top: 40px;
		margin-bottom: 55px;
	}
}

/*==============================================
nav
==============================================*/
.t-person-nav {
	background-color: #fff;
}

.t-person-nav__container {
	max-width: 900px;
	margin: auto;
	padding-top: 70px;
	padding-bottom: 125px;
}

@media (max-width: 768px) {
	.t-person-nav__container {
		width: 90%;
		padding-top: 40px;
		padding-bottom: 60px;
	}
}

.t-person-nav__container__title {
	font-family: 'Cormorant Garamond', serif;
	font-size: 2.4rem;
	color: #A89472;
	letter-spacing: 0.04em;
	text-align: center;
}

@media (max-width: 768px) {
	.t-person-nav__container__title {
		font-size: 2.14286rem;
	}
}

.t-person-nav__container__sub {
	font-family: 'Shippori Mincho', serif;
	font-weight: 500;
	font-size: 1.06667rem;
	letter-spacing: 0.04em;
	display: block;
	text-align: center;
}

@media (max-width: 768px) {
	.t-person-nav__container__sub {
		font-size: 0.85714rem;
	}
}

.t-person-nav__lists {
	margin-top: 55px;
}

@media (max-width: 768px) {
	.t-person-nav__lists {
		margin-top: 30px;
	}
}

.t-person-nav-list {
	position: relative;
}

@media screen and (min-width: 769px) {
	.t-person-nav-list {
		width: 22.224%;
	}
}

.t-person-nav-list__image {
	width: 100%;
	position: relative;
}

@media (max-width: 768px) {
	.t-person-nav-list__image {
		width: 84%;
		margin: 0 auto;
		width: 25%;
	}
}

.t-person-nav-list__content {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	width: 100%;
}

@media (max-width: 768px) {
	.t-person-nav-list__content {
		position: relative;
		margin-left: auto;
		width: 75%;
		padding: 15px 15px;
	}
}

.t-person-nav-list__content .t-person-nav-list__head {
	font-family: 'Shippori Mincho', serif;
	font-weight: 500;
	font-size: 1.06667rem;
	color: #000;
	letter-spacing: 0.04em;
	margin-bottom: 10px;
}

@media (max-width: 768px) {
	.t-person-nav-list__content .t-person-nav-list__head {
		font-size: 0.85714rem;
	}
}

.t-person-nav-list__content .t-person-nav-list__title {
	font-family: 'Shippori Mincho', serif;
	font-weight: 500;
	font-size: 0.93333rem;
	color: #000;
	letter-spacing: 0.04em;
	margin-top: 10px;
	margin-bottom: 10px;
}

@media (max-width: 768px) {
	.t-person-nav-list__content .t-person-nav-list__title {
		font-size: 1.14286rem;
		margin-top: 0px;
	}
}

.t-person-nav-list__content .t-person-nav-list__name {
	font-family: 'Shippori Mincho', serif;
	font-weight: 500;
	font-size: 0.73333rem;
	color: #000;
	letter-spacing: 0.04em;
}

@media (max-width: 768px) {
	.t-person-nav-list__content .t-person-nav-list__name {
		font-size: 0.78571rem;
	}
}

.t-person-nav-list__content .t-person-nav-list__content__btn {
	margin-top: 10px;
}

@media (max-width: 768px) {
	.t-person-nav-list__content .t-person-nav-list__content__btn {
		right: 20px;
	}
}

/*==============================================
.mfp
==============================================*/
@media (max-width: 768px) {
	.mfp-container {
		padding: 0;
	}
}

@media (max-width: 768px) {
	.mfp-close-btn-in .mfp-close {
		display: none;
	}
}

.popup-youtube-wrap {
	width: 80%;
	margin: auto;
}

@media (max-width: 768px) {
	.popup-youtube-wrap {
		width: 100%;
	}
}

.movie-wrap {
	width: 64vw;
	height: 36vw;
	padding-top: 0;
	margin: auto;
	background-color: #000;
}

@media (max-width: 768px) {
	.movie-wrap {
		width: 100%;
		height: 56vw;
	}
}

.movie-wrap iframe {
	width: 64vw;
	height: 36vw;
	background-color: #000;
}

@media (max-width: 768px) {
	.movie-wrap iframe {
		width: 100%;
		height: 56vw;
	}
}

.mfp-fade02.mfp-bg {
	opacity: 0;
	-webkit-transition: all 0.4s ease-out;
	transition: all 0.4s ease-out;
	background-color: rgba(0, 0, 0, 0.8);
}

.mfp-fade02.mfp-bg.mfp-ready {
	opacity: 1;
}

.mfp-fade02.mfp-bg.mfp-removing {
	opacity: 0;
}

/* mfp-content */
.mfp-fade02.mfp-wrap .mfp-content {
	opacity: 0;
	-webkit-transition: all 0.4s ease-out;
	transition: all 0.4s ease-out;
}

.mfp-fade02.mfp-wrap.mfp-ready .mfp-content {
	opacity: 1;
}

.mfp-fade02.mfp-wrap.mfp-removing .mfp-content {
	opacity: 0;
}

.mfp-bg {
	z-index: 10000050;
}

.mfp-wrap {
	z-index: 10000050;
}

.mfp-bg {
	z-index: 10000050;
}

.mfp-wrap {
	z-index: 10000050;
}

.t-person-index {
	padding: 100px 0;
	text-align: center;
	font-family: 'Shippori Mincho', serif;
	max-width: 1200px;
	margin: auto;
}

@media (max-width: 768px) {
	.t-person-index {
		padding: 0 0 30px 0;
		margin: 0 30px;
	}
}

.t-person-index-ttl {
	font-size: 26px;
	line-height: 1.73;
	font-weight: 500;
	margin-bottom: 70px;
}

@media (max-width: 768px) {
	.t-person-index-ttl {
		font-size: 13px;
		line-height: 2;
		font-weight: 500;
		border-top: 1px solid #000;
		border-bottom: 1px solid #000;
		padding: 20px 0;
		margin-bottom: 25px;
	}
}

.t-person-index-subttl {
	font-family: 'Cormorant Garamond', serif;
	font-size: 30px;
	font-weight: 500;
	color: #A89472;
	line-height: 1.35;
	margin-bottom: 50px;
}

@media (max-width: 768px) {
	.t-person-index-subttl {
		font-size: 17px;
		margin-bottom: 25px;
	}
}

.t-person-index-list {
	display: flex;
	justify-content: center;
	counter-reset: number 0;
}

.t-person-index-list span {
	background: #F5F4F4;
	display: inline-block;
	z-index: 1;
}

@media (max-width: 768px) {
	.t-person-index-list {
		flex-wrap: wrap;
	}
}

.t-person-index-list li {
	width: calc(100% / 3);
	font-size: 22px;
	line-height: 1.63;
	letter-spacing: 0.2em;
}

@media (max-width: 768px) {
	.t-person-index-list li {
		width: 100%;
		font-size: 11px;
		letter-spacing: 0.164em;
	}
}

.t-person-index-list li a {
	display: block;
	position: relative;
	color: #000;
	border-left: 1px solid #000;
	padding: 55px 0;
	transition: all 0.4s ease-out;
}


.t-person-index-list li:last-child a {
	border-right: 1px solid #000;
}

@media (max-width: 768px) {
	.t-person-index-list li a, .t-person-index-list li:last-child a {
		border: 0;
	}

	.t-person-index-list li a {
		display: flex;
		align-items: center;
		padding-top: 5px;
		padding-bottom: 5px;
		padding-left: 25px;
		position: relative;
		letter-spacing: 0.01em;
		text-align: left;
	}
}


.t-person-index-list li a:before {
	counter-increment: number 1;
	content: counter(number, decimal-leading-zero);
	position: absolute;
	top: 12px;
	left: 0;
	right: 0;
	margin: auto;
	color: #A89472;
	font-size: 27px;
	line-height: 1;
	letter-spacing: 0.08em;
}

@media (max-width: 768px) {
	.t-person-index-list li a:before {
		font-size: 13px;
		top: auto;
		right: auto;
	}
}

.t-person-index-list li a:after {
	position: absolute;
	content: "";
	left: 0;
	right: 0;
	bottom: 20px;
	margin: auto;
	background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIGlkPSJf44KM44KK44KP44Km44Oz44OJ44Ki44Ob44OG44KjIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNTMuOTMgOS42MSI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOm5vbmU7c3Ryb2tlOiMwMDA7c3Ryb2tlLW1pdGVybGltaXQ6MTA7c3Ryb2tlLXdpZHRoOi41cHg7fTwvc3R5bGU+PC9kZWZzPjxnIGlkPSJf44OZ44K544K644OR44KvXzIiPjxnIGlkPSJf44OZ44K544K644OR44KvXzEtMiI+PHBvbHlsaW5lIGNsYXNzPSJjbHMtMSIgcG9pbnRzPSIwIDUuNTcgMTUyLjczIDUuNTcgMTQwLjgyIC4zOCAxNDAuODIgOS42MSIvPjwvZz48L2c+PC9zdmc+');
	background-size: cover;
	background-repeat: no-repeat;
	width: 152px;
	height: 9px;
}

@media (max-width: 768px) {
	.t-person-index-list li a:after {
		position: absolute;
		bottom: auto;
		width: 58px;
		height: 3px;
		right: 0;
		left: auto;
	}
}

.l-main-page__container {
	counter-reset: ttl-number 0;
}

.t-person-content__container__title__cacth.counter {
	padding-left: 80px;
	position: relative;
}

@media (max-width: 768px) {
	.t-person-content__container__title__cacth.counter {
		padding-left: 40px;
	}
}

.t-person-content__container__title__cacth.counter:before {
	position: absolute;
	counter-increment: ttl-number 1;
	content: counter(ttl-number, decimal-leading-zero);
	left: 0;
	top: 0;
	color: #A89472;
}

@media (max-width: 768px) {
	.t-person-content__container__title__cacth.counter:before {
		top: 50%;
		transform: translateY(-50%);
	}
}

.t-person-image-last {
	margin-bottom: 120px;
}

@media (max-width: 768px) {
	.t-person-image-last {
		margin-bottom: 60px;
	}
}

@media (max-width: 768px) {
	.person-02-index .t-person-movie__container {
		padding-top: 40px;
		padding-bottom: 30px;
	}
}

.sp-only {
	display: none;
}

@media (max-width: 768px) {
	.sp-only {
		display: block;
	}

	.pc-only {
		display: none;
	}
}

.group-person .c-breadcrumb-current {
	color: #003B7F;
}

.group-person .t-person-index-subttl {
	color: #003B7F;
}

.group-person .t-person-index-list li a:before {
	color: #003B7F;
}

.group-person .t-person-movie {
	background-image: url(./../../image/group/movie-bg.png);
	background-size: cover;
}

.group-person .t-person-movie__container {
	padding-bottom: 230px;
}

@media (max-width: 768px) {
	.group-person .t-person-movie__container {
		padding-bottom: 60px;
	}
}

.group-person .t-mv-person-content .t-mv-person-content__image {
	width: 66.5%;
	margin: 0;
	margin-left: auto;
	padding: 0;
}

@media (max-width: 768px) {
	.group-person .t-mv-person-content .t-mv-person-content__image {
		width: 80%;
	}
}

.group-person .t-person-content__container__title__cacth {
	padding: 80px 0 0;
	text-align: center;
}

@media (max-width: 768px) {
	.group-person .t-person-content__container__title__cacth {
		padding: 0 0 0 40px;
		text-align: left;
	}

	.group-person .t-person-content__container__title__cacth.counter:before {
		top: 50%;
		transform: translateY(-50%);
		right: auto;
	}

	.group-person .t-person-content__container__title {
		border-bottom: 1px solid #000;
		margin-right: calc(50% - 50vw);
	}

	.group-person .c-person-text {
		font-size: 1rem;
	}
}

.group-person .t-person-content__container__title__cacth::before {
	left: 0;
	right: 0;
	margin: auto;
	color: #003B7F;
}

@media (max-width: 768px) {
	.group-person .t-mv-person-content .t-mv-person-content__image__thumbnail {
		padding-top: 312px;
	}

	.group-person .t-mv-person-content .t-mv-person-content__inner {
		margin-top: 60px;
	}

	.group-person .c-mv-title-middle {
		font-size: 1.8rem;
	}
}

.group-person .t-mv-person-content__message__wrap {
	display: flex;
	flex-wrap: wrap;
	font-size: 12px;
}
@media (min-width: 769px) and (max-width: 1365px) {
	.group-person .t-mv-person-content__message__wrap {
		display: block;
	}
}

.group-person .t-mv-person-content__message__text {
	width: 10%;
}
@media (min-width: 769px) and (max-width: 1365px) {
	.group-person .t-mv-person-content__message__wrap {
		width: 100%;
	}
}

.group-person .t-mv-person-content__message__wrap dd {
	width: 90%;
}
@media (min-width: 769px) and (max-width: 1365px) {
	.group-person .t-mv-person-content__message__wrap {
		width: 100%;
	}
}
@media (max-width: 768px) {
	.group-person .t-mv-person-content__message__text {
		width: 15%;
	}

	.group-person .t-mv-person-content__message__wrap dd {
		width: 85%;
		letter-spacing: 0.01em;
	}
}

.group-person .t-mv-person-content .t-mv-person-content__image__thumbnail--01 {
	background-image: url("./../../image/page/group/person01/img_person01_thumbnail.jpg");
}



.group-person .t-person-image .t-person-image__bg {
	background: url("./../../image/page/group/person01/group-person__left-bg.png"), #003B7F;
	background-size: cover;
}

@media (max-width: 768px) {
	.group-person .t-person-image .t-person-image__bg {
		width: 90%;
		background-size: 100% 100%;
		bottom: auto;
		top: 28%;
		height: 150%;
	}
}

.group-person .t-person-image-reverse .t-person-image__bg {
	background: url("./../../image/page/group/person01/group-person__right-bg.png"), #003B7F;
	background-size: cover;
}

.group-person .t-person-image-last .t-person-image__bg {
	background: url("./../../image/page/group/person01/group-person__last-bg.png"), #003B7F;
	background-size: cover;
}

@media (max-width: 768px) {
	.group-person .t-person-image-last .t-person-image__bg {
		background-size: 100% 100%;
	}
}

.group-person .t-person-image .t-person-image__center {
	width: 24%;
}

@media (max-width: 768px) {
	.group-person .t-person-image .t-person-image__center {
		width: 40%;
		bottom: -100%;
		position: absolute;
		right: 0;
		left: 0;
		top: auto;
		margin: auto;
	}

	.group-person .t-person-image .t-person-image__center .t-person-image__image__thumbnail {
		width: 100%;
	}
}


.group-person .t-person-image .t-person-image__center.three {
	position: absolute;
	right: 180px;
	top: 250px;
}


.group-person .t-person-image-last .t-person-image__image {
	padding-bottom: 0;
}

@media (max-width: 768px) {
	.group-person .t-person-image-last .t-person-image__image {
		padding-top: 150px;
	}
}

.group-person .t-person-image-last .t-person-image__center {
	position: absolute;
	right: 0;
	top: -150px;
}

@media (max-width: 768px) {
	.group-person .t-person-image-last .t-person-image__center {
		position: absolute;
		left: 20px;
		right: auto;
		top: 30%;
		bottom: auto;
	}
}

.group-person .t-person-image-last .t-person-image__bg {
	height: 90%;
	top: -70px;
}

@media (max-width: 768px) {
	.group-person .t-person-image-last .t-person-image__bg {
		height: 100%;

	}
}

.group-person .t-person-image-last .t-person-image__center.three {
	position: absolute;
	right: 180px;
	top: auto;
	bottom: 350px;
}

@media (max-width: 768px) {
	.group-person .t-person-image .t-person-image__center.three {
		position: absolute;
		right: auto;
		left: 25px;
		top: 190px;
	}

	.group-person .t-person-image-last .t-person-image__center.three {
		position: absolute;
		right: 0;
		left: 0;
		top: 30px;
		margin: auto;
	}
}

.group-person .t-person-image-last {
	padding-bottom: 120px;
	margin: 0;
}

@media (max-width: 768px) {
	.group-person .t-person-image-last {
		padding-top: 150px;
		padding-bottom: 60px;
	}
}

.group-person .l-header__nav__ul__item .nav_contact {
	border: 1px solid #000;
	border-radius: 3px;
	padding: 5px 10px;
}

@media (min-width: 769px) and (max-width: 1365px) {
	.group-person .l-header__nav__ul__item{
			padding:0 5px;
	}
	.group-person .l-header__nav__ul__item a{
		font-size: 0.75rem;
	}
}

.group-person .u-gradation-set {
	background: linear-gradient(90deg, rgba(130, 171, 217, 1) 0%, rgba(143, 189, 214, 1) 50%, rgba(105, 205, 212, 1) 100%);
}

.group-person .l-header__btn__common {
	padding: 70px 20px;
}

@media (max-width: 768px) {
	.group-person .l-header__btn__common {
		padding: 37px 0px;
	}

	.group-person .c-breadcrumb-list {
		font-size: 0.46667rem;
	}
}

.group-person .l-header__btn__common::after {
	display: none;
}

.group-person .header-clone__button__target {
	width: 100%;
}

.group-person .header-clone__button__target::before {
	display: none;
}

.group-person .l-footer-entry-btn {
	width: 100%;
	text-align: center;
}

.group-person .l-footer-entry-btn__title {
	margin: auto;
}

@media (max-width: 768px) {
	.group-person .l-footer-entry-btn__title {
		margin: initial;
	}
}

.group-person .l-footer-entry-btn__arrow {
	position: absolute;
	right: 40px;
}

.l-footer__btn__corporate__wrap {
	display: flex;
	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;
}

.group-person .l-footer__nav__ul {
	display: flex;

}

@media (max-width: 768px) {
	.group-person .l-footer__nav__ul {
		display: block;
		margin-bottom: 30px;
	}

	.group-person .l-footer__nav__ul .l-footer__nav__ul__item {
		text-align: left;
		border-top: 1px solid #fff;
		position: relative;
	}

	.group-person .l-footer__nav__ul .l-footer__nav__ul__item a {
		padding: 15px 0;
		margin: 0;
	}

	.group-person .l-footer__nav__ul .l-footer__nav__ul__item::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;
		top: 0;
		bottom: 0;
		right: 12px;
		margin: auto 12px auto 0;
		transform-origin: center center 0;

	}

	.group-person .l-footer__nav__ul .l-footer__nav__ul__item:last-child {
		border-bottom: 1px solid #fff;
	}
}

.group-person .l-footer__container {
	display: flex;
	align-items: center;
	padding-top: 30px;
	padding-bottom: 50px;
}

@media (max-width: 768px) {
	.group-person .l-footer__container {
		display: block;
		padding: 0 0 30px;
		margin-right: 0;
		width: 92%;
	}
}



.group-person .l-footer__copy {
	padding: 0;
}

.group-person .l-footer__logo {
	width: 150px;
	padding-bottom: 50px;
}

.group-person .l-footer__nav__ul__item a {
	color: #fff;
	margin-right: 30px;
	display: block;
}

@media (max-width: 768px) {
	.group-person .l-nav-item__heading {
		color: #fff;
		padding: 15px 0;
	}

	.group-person .l-nav__list {
		width: 92%;
		/* margin: 50px auto; */
	}

	.group-person .l-nav-item__heading:after {
		top: 0;
		bottom: 0;
		margin-top: auto;
		margin-bottom: auto;
	}
	.group-person .last-border{
		border-bottom: 1px solid #fff;
	}
	.group-person .contact {
		margin-top: 50px;
		border: 1px solid #fff;
		text-align: center;
		width: 90%;
	}

	.group-person .l-nav-item.contact em::after {
		display: none;
	}
}
