@charset "utf-8";

/* ////////////////////////////////////////////////////////////
	File Name	index.css
*/

/* TB */
@media screen and (max-width: 1024px) {
	.body {
		padding-top: 0 !important;
	}
}

/*============================================================
	ヘッダー
*/
/* SP */
@media screen and (max-width: 768px) {
	#header a span {
		opacity: 0;
		transition: opacity 0.3s ease;
	}
	#header a span.white {
		display: block;
		opacity: 1;
	}
	.header-logo-change #header a span {
		opacity: 1;
	}
	.header-logo-change #header a span.white {
		opacity: 0;
	}
}

/*============================================================
	 コンテンツ
*/
.content {
	padding: 0;
	max-width: 1450px;
}

/*============================================================
	 モーダルビデオ
*/
.modal-video-overlay {
	background-color: #3c3c3c;
}

/*============================================================
	 メイン
*/
.main {
	position: relative;
	padding: 0 50px;
}
.main .inner {
	position: relative;
	padding-top: 56.25%;
	height: 0;
	color: #fff;
}
.main .inner::after {
	content: '';
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: #f0f0f0;
}
.main .inner div {
	position: absolute;
}
.main .kv {
	overflow: hidden;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transition: opacity 1s linear 0.5s;
	opacity: 0;
}
.main .kv::after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.25);
}
.main .kv .video {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.main .kv .video iframe,
.main .kv .video video {
	display: block;
	width: 100%;
	height: 100%;
}
.main .head {
	display: flex;
	justify-content: center;
	align-items: center;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.main .head .h {
	display: flex;
	justify-content: center;
	font-size: 89px;
	line-height: 1.4;
	margin-bottom: 19px;
}
.main .head .h .row {
	display: flex;
}
.main .head .h .row .col {
	position: relative;
	display: block;
}
.main .head .h .row .col .base {
	display: inline-block;
	position: relative;
}
.main .head .h .row .col::after {
	content: '';
	display: block;
	margin: 10px 0 0 0;
	width: 100%;
	height: 38px;
	background-color: #00a09b;
}
.main .btn-wrap {
	bottom: 60px;
	left: 0;
	width: 100%;
}
.main .btn-wrap .btn {
	max-width: 280px;
	height: 76px;
	font-size: 18px;
}
.main .scroll {
	position: absolute;
	bottom: 0;
	right: 25px;
	font-size: 13px;
	line-height: 1;
	color: #fff;
}
.main .scroll span {
	display: block;
	padding: 0 40px 0 0;
	letter-spacing: 1px;
	transform-origin: 100% 0%;
	transform: rotate(90deg);
}
.main .scroll i {
	overflow: hidden;
	display: block;
	position: absolute;
	bottom: -10px;
	right: 7px;
	width: 1px;
	height: 50px;
}
.main .scroll i::after {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #fff;
}
.main .loading {
	display: flex;
	justify-content: center;
	align-items: center;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.main .loader,
.main .loader:before,
.main .loader:after {
	border-radius: 50%;
}
.main .loader {
	color: #fff;
	font-size: 16px;
	position: relative;
	width: 5em;
	height: 5em;
	box-shadow: inset 0 0 0 0.5em;
	transform: translateZ(0);
}
.main .loader:before,
.main .loader:after {
	position: absolute;
	content: '';
}
.main .loader:before {
	width: 2.6em;
	height: 5.1em;
	background: #f0f0f0;
	border-radius: 5.1em 0 0 5.1em;
	top: -0.05em;
	left: -0.05em;
	transform-origin: 5.1em 5.1em;
	transform-origin: 2.55em 2.55em;
	animation: load 2s infinite ease 1.5s;
}
.main .loader:after {
	width: 2.6em;
	height: 5.1em;
	background: #f0f0f0;
	border-radius: 0 5.1em 5.1em 0;
	top: -0.05em;
	left: 2.45em;
	transform-origin: 0.05em 2.55em;
	animation: load 2s infinite ease;
}

@keyframes load {
	0%   { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

/* ANIM */
.anim-opening .main .kv {
	opacity: 1;
}
.main .head .h .row .col::after {
	width: 0%;
	transition: width 1.4s cubic-bezier(0.76, 0, 0.24, 1) 2s;
}
.anim-opening .main .head .h .row .col::after {
	width: 100%;
}
.main .head .h .row .col .base {
	opacity: 0;
	transform: translateY(20px);
	transition: transform 1s ease 2.1s, opacity 1s linear 2.2s;
}
.anim-opening .main .head .h .row .col .base {
	transform: translateY(0px);
	opacity: 1;
}
.main .btn-wrap {
	opacity: 0;
	transform: translateY(20px);
	transition: transform 0.8s ease 3s, opacity 0.8s linear 3s;
}
.anim-opening .main .btn-wrap {
	transform: translateY(0px);
	opacity: 1;
}
.main .scroll {
	opacity: 0;
	transition: opacity 0.6s linear 4s;
}

/* TB */
@media screen and (max-width: 1224px) {
	.main .head .h {
		font-size: 71px;
	}
	.main .head .h .row .col::after {
		height: 30px;
	}
}
@media screen and (max-width: 1024px) {
	.main {
		padding: 0;
	}
	.main .inner {
		padding-top: 560px;
	}
	.main .head .h {
		font-size: 58px;
	}
	.main .head .h .row .col::after {
		height: 25px;
	}
	.main .btn-wrap {
		bottom: 40px;
	}
	.main .btn-wrap .btn {
		height: 60px;
	}
}

/* SP */
@media screen and (min-width: 769px) {
	.main .inner {
		height: 0 !important;
	}
}
@media screen and (max-width: 768px) {
	.main .loader {
		font-size: 12px;
	}
	.main .inner::after {
		display: none;
	}
	.os-sp .main .inner {
		padding-top: 0;
		min-height: 400px;
	}
	.main .head {
		padding: 0;
	}
	.main .head .h {
		display: flex;
		justify-content: flex-start;
		font-size: 36px;
		letter-spacing: 1px;
		margin-bottom: 0;
	}
	.main .head .h .row {
		margin: 5px 0 0 0;
	}
	.main .head .h .row .col::after {
		margin: 5px 0 0 0;
		height: 15px;
	}
	.main .btn-wrap .btn {
		max-width: 200px;
		height: 54px;
		font-size: 12px;
	}
	/* ANIM */
	.main .head .h .row01 .col::after {
		transition: width 0.8s cubic-bezier(0.76, 0, 0.24, 1) 1.4s;
	}
	.main .head .h .row01 .col .base {
		transition: transform 0.8s ease 1.6s, opacity 1s linear 1.4s;
	}
	.main .head .h .row02 .col::after {
		transition: width 0.8s cubic-bezier(0.76, 0, 0.24, 1) 1.8s;
	}
	.main .head .h .row02 .col .base {
		transition: transform 0.8s ease 1.8s, opacity 1s linear 1.8s;
	}
	.main .btn-wrap {
		transition: transform 0.6s ease 2.6s, opacity 0.6s linear 2.6s;
	}
	.anim-opening .main .scroll {
		opacity: 1;
	}
	.anim-opening .main .scroll i::after {
		animation: kf-scroll-border 3s ease-in-out 2.5s infinite;
	}
}
@media screen and (max-width: 359px) {
	.main .head .h {
		font-size: 33px;
		letter-spacing: 0;
	}
}

/* KEYFRAMES */
@keyframes kf-scroll-border {
    0% {
        transform: translateY(0%);
        opacity: 1;
    }
    23% {
        transform: translateY(100%);
        opacity: 1;
    }
    24% {
        transform: translateY(100%);
        opacity: 0;
    }
    25% {
        transform: translateY(-100%);
        opacity: 0;
    }
    26% {
        transform: translateY(-100%);
        opacity: 1;
    }
    50% {
        transform: translateY(0%);
        opacity: 1;
	}
    100% {
        transform: translateY(0%);
        opacity: 1;
	}
}

/*============================================================
	 ニュース
*/
.news {
	margin: 50px 0 0 0;
	padding: 0 50px;
}
.news .inner {
	display: flex;
}
.news .h {
	flex-basis: 170px;
	max-width: 170px;
	font-size: 50px;
	line-height: 1.3;
}
.news .list {
	flex: 1;
}
.news .list ul {
	display: table;
	width: 100%;
}
.news .list ul li {
	display: table-row;
}
.news .list ul li div {
	display: table-cell;
	vertical-align: top;
	padding: 10px 0 0 0;
	font-size: 14px;
	line-height: 1.8;
}
.news .list ul li div:first-child {
	white-space: nowrap;
	padding-right: 25px;
	width: 1px;
	font-size: 16px;
	line-height: 1.5;
}
.news .btn-wrap {
	margin: 40px 0 0 0;
}

/* TB */
@media screen and (max-width: 1024px) {
	.news .inner {
		display: block;
	}
	.news .h {
		max-width: 100%;
	}
}

/* SP */
@media screen and (max-width: 768px) {
	.news {
		margin: 30px 0 0 0;
		padding: 0 25px;
	}
	.news .h {
		margin: 0 0 10px 0;
		font-size: 30px;
	}
	.news .list ul li div {
		padding: 5px 0;
		font-size: 13px;
		line-height: 1.6;
	}
	.news .list ul li div:first-child {
		padding-right: 15px;
		font-size: 13px;
		line-height: 1.6;
	}
	.news .btn-wrap {
		margin: 20px 0 0 0;
	}
}

/*============================================================
	 メニュー（コンテンツ）
*/
.menu-content {
	margin: 0 auto;
	margin-top: 80px;
	padding: 0 50px;
	max-width: 1150px;
}
.menu-content ul {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -35px;
	text-align: center;
}
.menu-content ul li {
	flex-basis: 50%;
	max-width: 50%;
	margin: 0 0 70px 0;
	padding: 0 35px;
}
.menu-content ul li a {
	overflow: hidden;
	position: relative;
	display: block;
	text-decoration: none;
	color: #fff;
	opacity: 1 !important;
}
.menu-content ul li .kv {
	position: relative;
	height: 0;
	padding-top: 59.18%;
	background-position: 50% 50%;
	background-size: cover;
}
.menu-content ul li .inner {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 0;
	left: 0;
	padding: 0 0 30px 0;
	width: 100%;
	height: 100%;
}
.menu-content ul li .inner .h {
	line-height: 1.4;
}
.menu-content ul li .inner .h span {
	display: block;
}
.menu-content ul li .inner .h span.en {
	font-size: 60px;
}
.menu-content ul li .inner .h span.jp {
	font-size: 16px;
}
.menu-content ul li .inner .btn-wrap {
	position: absolute;
	bottom: 30px;
	left: 0;
	width: 100%;
}

/* HOVER */
.os-other .menu-content ul li a .kv {
	transform: scale(1.06);
	transition: transform 0.6s ease;
}
.os-other .menu-content ul li a:hover .kv {
	transform: scale(1);
}

/* TB */
@media screen and (max-width: 1024px) {
	.menu-content ul {
		margin: 0 -15px;
	}
	.menu-content ul li {
		margin: 0 0 30px 0;
		padding: 0 15px;
	}
	.menu-content ul li .inner .h span.en {
		font-size: 48px;
	}
	.menu-content ul li .inner .h span.jp {
		font-size: 13px;
	}
	.menu-content ul li .inner .btn-wrap {
		bottom: 20px;
	}
}
@media screen and (max-width: 880px) {
	.menu-content ul li .kv {
		padding: 0;
		height: 222px;
	}
}

/* SP */
@media screen and (max-width: 768px) {
	.menu-content {
		margin-top: 50px;
		padding: 0 20px;
	}
}
@media screen and (max-width: 620px) {
	.menu-content {
		padding: 0;
	}
	.menu-content ul {
		display: block;
	}
	.menu-content ul li {
		max-width: 100%;
		margin: 0 0 20px 0;
		padding: 0;
	}
	.menu-content ul li .kv {
		padding-top: 59.18%;
		height: 0;
	}
}
@media screen and (max-width: 360px) {
	.menu-content ul li .inner .h span.en {
		font-size: 40px;
	}
}

/*============================================================
	 メニュー（その他）
*/
.menu-other {
	margin: 0 auto;
	padding: 0 50px;
	max-width: 1150px;
}
.menu-other ul {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -25px;
	padding: 10px 0 0 0;
	text-align: center;
}
.menu-other ul li {
	flex-basis: 50%;
	max-width: 50%;
	margin: 0 0 50px 0;
	padding: 0 25px;
}
.menu-other ul li a {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	max-width: 100%;
	height: 160px;
	background-color: #fff;
}
.menu-other ul li .h {
	line-height: 1.6;
}
.menu-other ul li .h span {
	display: block;
}
.menu-other ul li .h span.jp {
	font-size: 21px;
}
.menu-other ul li .h span.jp small {
	display: inline;
	padding: 0 0 0 0.3em;
	font-size: 14px;
	line-height: 1.2;
	vertical-align: middle;
}
.menu-other ul li .h span.en {
	font-size: 14px;
	color: #646464;
}
.menu-other ul li i {
	display: block;
	position: absolute;
	color: #646464;
}
.menu-other ul li i.icon-blank {
	top: 8px;
	right: 8px;
	font-size: 16px;
	line-height: 1;
}
.menu-other ul li i.icon-arrow-right {
	top: 50%;
	right: 10px;
	margin-top: -9px;
	font-size: 18px;
	line-height: 1;
}
@media screen and (max-width: 1100px) {
	.menu-other ul {
		margin: 0 -15px;
	}
	.menu-other ul li {
		padding: 0 15px;
	}
}

/* TB */
@media screen and (max-width: 1024px) {
	.menu-other ul {
		display: block;
		margin: 0;
	}
	.menu-other ul li {
		max-width: 100%;
		margin: 0 0 20px 0;
		padding: 0;
	}
	.menu-other ul li:last-child {
		margin: 0;
	}
	.menu-other ul li a {
		height: 120px;
	}
}

/* SP */
@media screen and (max-width: 768px) {
	.menu-other {
		padding: 0 20px;
	}
	.menu-other ul li .h span.jp {
		font-size: 20px;
	}
	.menu-other ul li .h span.jp small {
		font-size: 13px;
	}
	.menu-other ul li .h span.en {
		font-size: 13px;
	}
}
@media screen and (max-width: 520px) {
	.menu-other ul li a {
		height: 150px;
	}
}
@media screen and (max-width: 360px) {
	.menu-other ul li .h span.jp {
		font-size: 17px;
	}
}
