@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%;
	}
}

@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);
}

.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 HISTORY

==============================================*/
.t-history {
	padding-bottom: 120px;
}

@media (max-width: 768px) {
	.t-history {
		padding-bottom: 60px;
	}
}

.t-history:nth-of-type(1) {
	margin-top: 70px;
}

.t-history__slide {
	position: relative;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	overflow: hidden;
}

.t-history__border {
	display: block;
	position: absolute;
	background-color: #000;
	width: 1px;
	height: 75px;
	opacity: 0.8;
	z-index: 2;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
}

@media (max-width: 768px) {
	.t-history__border {
		height: 40px;
	}
}

.t-history__slide__list {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	list-style: none;
}

.t-history__slide__list:nth-of-type(1) {
	margin-right: -2px;
}

/*
loopアニメーション 一枚あたり24
----------------------------*/
.t-history__slide__list--left--1925 {
	-webkit-animation: infinity-scroll-left 150s infinite linear 0.5s both;
	animation: infinity-scroll-left 150s infinite linear 0.5s both;
}

.t-history__slide__list--1970-2000 {
	-webkit-animation: infinity-scroll-left 210s infinite linear 0.5s both;
	animation: infinity-scroll-left 210s infinite linear 0.5s both;
}

.t-history__slide__list--left--2000 {
	-webkit-animation: infinity-scroll-left 231s infinite linear 0.5s both;
	animation: infinity-scroll-left 231s infinite linear 0.5s both;
}

/*
右から左へ
----------------------------*/
@-webkit-keyframes infinity-scroll-left {
	from {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
	to {
		-webkit-transform: translateX(-100%);
		transform: translateX(-100%);
	}
}
@keyframes infinity-scroll-left {
	from {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
	to {
		-webkit-transform: translateX(-100%);
		transform: translateX(-100%);
	}
}

/*
  IE11対策
  ----------------------------*/
_:-ms-lang(x)::-ms-backdrop,
.t-history__slide {
	display: -ms-grid;
	overflow: hidden;
}

/*----------------------------*/
.t-history-slide {
	width: calc(100vw / 1.87);
}

@media (max-width: 768px) {
	.t-history-slide {
		width: calc(100vw / 0.87);
	}
}

.t-history-slide > img {
	width: 100%;
}

.t-history__slide__title {
	position: absolute;
	top: 60%;
	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: 6rem;
	color: #fff;
	letter-spacing: 0.04em;
	z-index: 1;
	font-weight: 400;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}

@media (max-width: 768px) {
	.t-history__slide__title {
		top: 60%;
		font-size: 3.71429rem;
		white-space: nowrap;
	}
}

.t-history__slide__title span {
	font-size: 2.13333rem;
	padding-top: 60px;
}

@media (max-width: 768px) {
	.t-history__slide__title span {
		font-size: 1.42857rem;
		padding-top: 32px;
	}
}

.t-history-content {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	position: relative;
	width: 76.1%;
	margin: auto;
	background-color: #fff;
	margin-top: -40px;
	border-top: 8px solid #A89472;
	padding: 80px 90px 55px;
	z-index: 2;
}

@media (max-width: 768px) {
	.t-history-content {
		width: 90%;
		margin-top: -20px;
		padding: 55px 20px 40px;
		border-top: 6px solid #A89472;
	}
}

.t-history-content__title {
	font-family: 'Shippori Mincho', serif;
	font-weight: 500;
	font-size: 2.4rem;
	text-align: center;
	margin-bottom: 50px;
}

@media (max-width: 768px) {
	.t-history-content__title {
		margin-top: -20px;
		font-size: 1.42857rem;
		margin-bottom: 25px;
	}
}

.t-history-content__list {
	margin-top: 40px;
}

.t-history-content-list {
	width: 32.8%;
	text-align: center;
	cursor: pointer;
}

@media (max-width: 768px) {
	.t-history-content-list {
		width: 77%;
		margin: auto;
	}
}

@media (max-width: 768px) {
	.t-history-content-list:not(:last-child) {
		margin-bottom: 20px;
	}
}

.t-history-content-list__year {
	font-size: 2.4rem;
	color: #A89472;
	font-family: 'Shippori Mincho', serif;
	font-weight: 500;
}

@media (max-width: 768px) {
	.t-history-content-list__year {
		font-size: 1.71429rem;
	}
}

.t-history-content-list__year span {
	font-size: 1.2rem;
}

@media (max-width: 768px) {
	.t-history-content-list__year span {
		font-size: 1rem;
	}
}

.t-history-content-list__title {
	font-size: 1.2rem;
	font-family: 'Shippori Mincho', serif;
	font-weight: 500;
	text-align: left;
	margin-top: 8px;
}

@media (max-width: 768px) {
	.t-history-content-list__title {
		font-size: 1.14286rem;
	}
}

.t-history-content-list__image {
	position: relative;
	margin-top: 20px;
}

.t-history-content-list__image__icon {
	position: absolute;
	display: block;
	width: 20px;
	right: 20px;
	bottom: 20px;
	z-index: 2;
}

.t-history-content__list--last .t-history-content-list {
	margin-right: 0.8%;
}

@media (max-width: 768px) {
	.t-history-content__list--last .t-history-content-list {
		margin-right: auto;
	}
}

.t-history-content__list--last .t-history-content-list:nth-of-type(3) {
	margin-right: 0;
}

@media (max-width: 768px) {
	.t-history-content__list--last .t-history-content-list:nth-of-type(3) {
		margin-right: auto;
	}
}

@media screen and (min-width: 769px) {
	.t-history-content__list--last .t-history-content-list--bottom {
		margin-bottom: 50px;
	}
}

/*==============================================
modal
==============================================*/
.t-history-modal {
	height: 100%;
	position: fixed;
	z-index: -10000000;
	background-color: #f5f4f4;
	top: 0;
	width: 100%;
	opacity: 0;
	-webkit-transition: 0.7s;
	transition: 0.7s;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transform-style: preserve-3d;
}

@media (max-width: 768px) {
	.t-history-modal {
		overflow-y: scroll;
		padding-top: 20px;
		margin-bottom: 60px;
	}
}

@media (max-width: 320px) {
	.t-history-modal {
		padding-top: 5px;
		margin-bottom: 60px;
	}
}

@media screen and (min-width: 769px) {
	.t-history-modal {
		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;
		overflow-x: scroll;
	}
}

@media screen and (max-height: 780px) {
	.t-history-modal {
		-webkit-box-align: normal !important;
		-webkit-align-items: normal !important;
		-ms-flex-align: normal !important;
		align-items: normal !important;
	}
}

.swiper-wrapper {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transform-style: preserve-3d;
}

@media screen and (min-width: 769px) {
	.win-margin {
		margin: 80px 0;
		min-height: 800px;
	}
}

@media screen and (min-width: 769px) {
	.win-modal {
		overflow: scroll;
		padding-top: 100px;
	}
}

@media screen and (min-width: 769px) {
	.win-container {
		min-height: 960px;
	}
}

*:focus {
	outline: none;
}

/*==============================================
.c-oneday-content-title　追加箇所
==============================================*/
/*==============================================
history_swiper
==============================================*/
.swiper-container-history {
	margin-left: auto;
	margin-right: auto;
	position: relative;
	overflow: hidden;
	list-style: none;
	padding: 0;
	z-index: 1;
}

#t-history-slide .swiper-slide {
	width: 100% !important;
	border-radius: 20px;
	position: relative;
}

@media (max-width: 768px) {
	#t-history-slide .swiper-slide {
		height: auto !important;
		padding-top: 45px;
		width: 100% !important;
	}
}

.t-history-swiper-slide {
	opacity: 0;
	-webkit-transition: 1s;
	transition: 1s;
	-webkit-transform-style: preserve-3d;
}

@media (max-width: 768px) {
	.t-history-swiper-slide {
		padding-bottom: 60px;
	}
}

/* 次ページボタンのスタイル */
.swiper-button-next {
	background-image: url("./../../image/page/history/modal_slide/icon_history_next.svg");
}

@media (max-width: 768px) {
	.swiper-button-next {
		background-image: url("./../../image/page/history/modal_slide/icon_history_next.svg");
	}
}

/* 前ページボタンのスタイル */
.swiper-button-prev {
	background-image: url("./../../image/page/history/modal_slide/icon_history_prev.svg");
	opacity: 1 !important;
}

@media (max-width: 768px) {
	.swiper-button-prev {
		background-image: url("./../../image/page/history/modal_slide/icon_history_prev.svg");
	}
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
	opacity: 0.2 !important;
}

.swiper-wrap-history {
	position: relative;
	width: 836px;
	margin: auto;
	background-color: #fff;
}

@media (max-width: 768px) {
	.swiper-wrap-history {
		width: 100%;
	}
}

@media (min-width: 481px) and (max-width: 768px) {
	.swiper-wrap-history {
		width: 345px;
	}
}

.swiper-button-next-history,
.swiper-container-rtl .swiper-button-prev-history {
	position: absolute;
	top: 50%;
}

.swiper-button-prev-history {
	position: absolute;
}

.swiper-btn-wrap {
	position: absolute;
	z-index: 10000;
	width: 100%;
	top: 34%;
	max-width: 1000px;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
}

@media (max-width: 768px) {
	.swiper-btn-wrap {
		width: 80%;
		margin: auto;
		top: auto;
		bottom: 70px;
	}
}

@media (min-width: 481px) and (max-width: 768px) {
	.swiper-btn-wrap {
		right: auto;
		left: 50%;
		transform: translateX(-50%);
		-webkit-transform: translateX(-50%);
	}
}

/* 前ページ、次ページボタン共通のスタイル */
.swiper-button-prev-history,
.swiper-button-next-history {
	width: 64px;
	/* ボタンの幅 */
	height: 64px;
	/* ボタンの高さ */
	background-size: 20px 38px;
	/* 背景画像としてのサイズ（＝表示したい画像サイズ） */
	cursor: pointer;
	top: 50%;
	background-repeat: no-repeat;
	background-position: center;
}

@media (max-width: 768px) {
	.swiper-button-prev-history,
	.swiper-button-next-history {
		width: 30px;
		/* ボタンの幅 */
		height: 30px;
		/* ボタンの高さ */
		background-size: 45px 45px;
	}
}

/* 次ページボタンのスタイル */
.swiper-button-next-history {
	background-image: url("./../../image/page/history/modal_slide/icon_history_next.svg");
}

@media (max-width: 768px) {
	.swiper-button-next-history {
		background-image: url("./../../image/page/history/modal_slide/icon_history_next.svg");
	}
}

/* 前ページボタンのスタイル */
.swiper-button-prev-history {
	background-image: url("./../../image/page/history/modal_slide/icon_history_prev.svg");
	opacity: 1 !important;
}

@media (max-width: 768px) {
	.swiper-button-prev-history {
		background-image: url("./../../image/page/history/modal_slide/icon_history_prev.svg");
	}
}

.swiper-button-next-history.swiper-button-disabled,
.swiper-button-prev-history.swiper-button-disabled {
	opacity: 0.2 !important;
}

.swiper-button-next-history {
	right: 0;
}

.swiper-container-employee {
	margin-left: auto;
	margin-right: auto;
	position: relative;
	overflow: hidden;
	list-style: none;
	padding: 0;
	z-index: 1;
}

/*==============================================
history swiper-slideの中身
==============================================*/
.t-history-modal-slide {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	width: 625px;
	padding-top: 60px;
	padding-bottom: 60px;
	margin: auto;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transform-style: preserve-3d;
}

@media (max-width: 768px) {
	.t-history-modal-slide {
		padding: 15px 20px 100px 20px;
		height: auto;
	}
}

@media screen and (min-width: 481px) and (max-width: 768px) {
	.t-history-modal-slide {
		height: 430px;
	}
}

.t-history-modal-slide .t-oneday-slide__tag {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}

.t-history-modal-slide .t-oneday-slide__tag li:not(:last-child) {
	margin-right: 4px;
}

.t-history-modal-slide .t-oneday-slide__tag li span {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 0.93333rem;
	display: inline-block;
	color: #fff;
	border-radius: 29px;
	padding: 2px 8px;
}

@media (max-width: 768px) {
	.t-history-modal-slide .t-oneday-slide__tag li span {
		font-size: 0.71429rem;
	}
}

.t-history-modal-slide .t-history-slide__data {
	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;
	padding: 10px 0;
	font-family: 'Shippori Mincho', serif;
	font-weight: 500;
	color: #A89472;
	margin-bottom: 40px;
}

@media (max-width: 768px) {
	.t-history-modal-slide .t-history-slide__data {
		margin-bottom: 30px;
		padding: 0;
	}
}

.t-history-modal-slide .t-history-slide__data time {
	margin: auto;
	font-size: 4.26667rem;
	display: inline-block;
	line-height: 1;
}

@media (max-width: 768px) {
	.t-history-modal-slide .t-history-slide__data time {
		font-size: 3.28571rem;
	}
}

.t-history-modal-slide .t-history-slide__data span {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 1.33333rem;
	letter-spacing: 0.12em;
}

@media (max-width: 768px) {
	.t-history-modal-slide .t-history-slide__data span {
		font-size: 1.28571rem;
	}
}

@media (max-width: 768px) {
	.t-history-modal-slide {
		width: 100%;
		margin: auto;
		max-width: 345px;
		position: relative;
	}
}

.t-history-modal-slide .t-history-slide__img {
	position: relative;
	width: 320px;
	margin: auto;
	margin-bottom: 40px;
}

@media (max-width: 768px) {
	.t-history-modal-slide .t-history-slide__img {
		margin-bottom: 30px;
		width: 260px;
	}
}

.t-history-modal-slide .t-history-slide__text {
	margin-top: 25px;
}

@media (max-width: 768px) {
	.t-history-modal-slide .t-history-slide__text {
		margin-top: 20px;
	}
}

.t-oneday-slide::-webkit-scrollbar {
	/* Chrome, Safari 対応 */
	display: none;
}

@media (max-width: 768px) {
	.t-history-slide-wrap {
		position: relative;
		overflow: scroll;
		overflow-x: hidden;
		height: auto;
		z-index: 1;
		-ms-overflow-style: none;
		/* IE, Edge 対応 */
		scrollbar-width: none;
		/* Firefox 対応 */
		height: 410px;
	}
	.t-history-slide-wrap::-webkit-scrollbar {
		display: none;
	}
}

.t-history-slide__title {
	font-size: 1.86667rem;
	font-family: 'Shippori Mincho', serif;
	font-weight: 500;
	letter-spacing: 0.04em;
	text-align: center;
}

@media (max-width: 768px) {
	.t-history-slide__title {
		font-size: 1.28571rem;
	}
}

.t-history-slide-close {
	position: absolute;
	top: 30px;
	right: 30px;
	width: 52px;
	height: 26px;
	cursor: pointer;
	z-index: 99999;
}

@media (max-width: 768px) {
	.t-history-slide-close {
		width: 32px;
		top: 24px;
	}
}

.isShow {
	opacity: 1;
	z-index: 99999999;
	-webkit-transform-style: preserve-3d;
}

.l-frame-swiper {
	margin: 0 auto;
}

@media (max-width: 768px) {
	.l-frame-swiper {
		width: 89.3333%;
	}
}

@media screen and (min-width: 769px) {
	.l-frame-swiper {
		margin: 0 auto;
		min-width: 836px;
		width: 836px;
	}
}

.l-footer__btn__corporate__wrap {
	display: flex;
	justify-content: center;
}
@media screen and (min-width: 769px) {
	.l-footer__btn__corporate__button__col {
		top: 25%;
		left: 0;
		right: 0;
		justify-content: center;
	}
}
@media (max-width: 768px) {
	.l-footer__btn__corporate__wrap {
		display: block;
	}
	.l-footer__btn__corporate{
		width: auto;
	}
	.l-footer__btn__corporate__button__col{
		left: 42%;
	}
}
.l-footer__btn__corporate {
	margin-left: 15px;
	margin-right: 15px;
}


@media (min-width: 769px) and (max-width:1300px){
	.l-header__nav__ul__item{
		padding:0 6px;
	}
	.l-header__nav__ul__item a{
		font-size:12px;
	}

}
