/*=========================
ローディング
=========================*/
.loadingAnim {
	position: fixed;
	z-index: 100;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	text-align: center;
}

.loadingAnim:before,
.loadingAnim:after {
	line-height: 1;
	position: fixed;
	z-index: 99;
	right: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	margin-right: auto;
	margin-left: auto;
	content: ' ';
	transition: all .6s cubic-bezier(.785, .135, .15, .86) 0s;
	/*    transition: all .3s linear 0s;*/
	transition-delay: .3s;
	background-color: rgba(255, 255, 255, 0.8);
}

.loadingAnim:before {
	left: 0%;
}

.loadingAnim:after {
	right: 0%;
}

.loaded .loadingAnim:before {
	width: 100%;
	transform: translateX(-100%);
}

.loaded .loadingAnim:after {
	width: 100%;
	transform: translateX(100%);
}

.loadingAnim_line {
	line-height: 1;
	position: fixed;
	z-index: 100;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: inline-block;
	overflow: hidden;
	width: 50px;
	height: 1px;
	margin: auto;
	transition: all .3s cubic-bezier(.785, .135, .15, .86) 0s;
	transition-delay: .6s;
	text-align: center;
}

.loadingAnim_line:after {
	position: absolute;
	z-index: 100;
	top: 0;
	bottom: 0;
	left: 0;
	display: block;
	width: 0;
	height: 100%;
	margin: auto auto auto 0;
	content: ' ';
	animation: loadingAnim 2s ease-in-out .1s infinite normal backwards;
	background-color: #008090;
	will-change: transform, width;
}

.loadingAnim_line:before {
	font-size: 1rem;
	font-weight: 100;
	font-style: normal;
	line-height: 1;
	display: block;
	content: '';
	animation: loadingAnim_text 2s ease 3s infinite alternate both;
	letter-spacing: .1em;
	color: #CCC;
	will-change: opacity;
}

.loaded .loadingAnim_line {
	overflow: hidden;
	height: 0;
}

.loaded .loadingAnim_line:after,
.loaded .loadingAnim_line:before {
	-webkit-animation: none;
	animation: none;
}

.loaded .loadingAnim_line:before {
	content: '';
}

@-webkit-keyframes loadingAnim {
	0% {
		width: 0;
	}

	100% {
		width: 100%;
		-webkit-transform: translate(100%);
		transform: translate(100%);
	}
}

@keyframes loadingAnim {
	0% {
		width: 0;
	}

	100% {
		width: 100%;
		-webkit-transform: translate(100%);
		transform: translate(100%);
	}
}

@-webkit-keyframes loadingAnim_text {
	0% {
		opacity: 1;
		color: #008090;
	}

	50% {
		color: #008090;

	}

	100% {
		opacity: .5;
		color: #008090;
	}
}

@keyframes loadingAnim_text {
	0% {
		opacity: 1;
		color: #008090;
	}

	50% {
		color: #008090;
	}

	100% {
		opacity: .5;
		color: #008090;
	}
}


/*========================
body（スマホメニューオープン時）
========================*/
@media screen and (max-width: 499px) {
	body.menu_active {
		overflow: hidden;
	}
}

/*========================
ヘッダー
========================*/
header {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	padding: 0.20rem 0.30rem;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
	background-color: #FFF;
	width: 100%;
	box-sizing: border-box;
	transition: all 0.3s ease;
	min-width: 1000px;
}

@media screen and (max-width: 499px) {
	header {
		padding: 0.15rem;
		background-color: rgba(255, 255, 255, 0.85);
		-webkit-backdrop-filter: blur(10px);
		backdrop-filter: blur(10px);
		min-width: auto;
	}
}

/*スクロール時 */
header.hide {
	transform: translateY(-1.20rem);
}


/* ロゴ */
header .logo {
	width: 3.00rem;
}

@media screen and (max-width: 499px) {
	header .logo {
		width: 1.50rem;
	}
}

/* ナビゲーション */
header .glo_nav .nav_list {
	display: flex;
	flex-wrap: wrap;
}

@media screen and (max-width: 499px) {
	header .glo_nav .nav_list {
		padding: 0.50rem;
		justify-content: center;
		/*		height: calc(100vh - 0.70rem);*/
		box-sizing: border-box;
		align-items: center;
	}
}

header .glo_nav .nav_list .text {
	font-size: 0.16rem;
	letter-spacing: 0.10em;
	font-weight: 600;
	margin-left: 0.50rem;
}

header .glo_nav .nav_list .text:first-child {
	margin-left: 0;
}


@media screen and (max-width: 499px) {
	header .glo_nav .nav_list .text {
		width: 100%;
		margin: 0;
		text-align: center;
		margin-bottom: 0.10rem;
		line-height: 3;
	}
}

header .glo_nav .nav_list .text a {
	color: #111;
	text-decoration: none;
	position: relative;
}

header .glo_nav .nav_list .text a::after {
	position: absolute;
	bottom: -4px;
	left: 0;
	content: '';
	width: 100%;
	height: 1px;
	background: #333;
	transform: scale(0, 1);
	transform-origin: right top;
	transition: transform .3s;
}

header .glo_nav .nav_list .text a:hover::after {
	transform-origin: left top;
	transform: scale(1, 1);
}



/*========================
コンテンツ初期設定
========================*/
main {
/*	margin-top: 1.20rem;*/
	overflow: hidden;
}

/*
@media screen and (max-width: 499px) {
	main {
		margin-top: 0.71rem;
	}
}
*/

.sec_title {
	font-size: 0.24rem;
	letter-spacing: 0.10em;
	text-align: center;
	line-height: 1.55;
	margin-bottom: 1.00rem;
	font-family: 'Noto Sans JP', sans-serif;
	position: relative;
}

@media screen and (max-width: 499px) {
	.sec_title {
		font-size: 0.18rem;
		margin-bottom: 0.60rem;
	}
}

.sec_title span {
	font-family: 'Jost', sans-serif;
	font-size: 0.16rem;
	color: #999;
	display: block;
	padding-bottom: 0.10rem;
}

@media screen and (max-width: 499px) {
	.sec_title span {
		font-size: 0.12rem;
	}
}

.sec_title::after {
	content: "";
	width: 1px;
	height: 0.30rem;
	background-color: #29ABE2;
	position: absolute;
	bottom: -0.60rem;
	left: 50%;
}

@media screen and (max-width: 499px) {
	.sec_title::after {
		content: "";
		width: 1px;
		height: 0.20rem;
		background-color: #29ABE2;
		position: absolute;
		bottom: -0.40rem;
		left: 50%;
	}
}

/*========================
MV
========================*/
#mv {
	position: relative;
	height: calc(100vh - 1.20rem);
	max-height: 7.50rem;
	margin-top: 1.20rem;
}

@media screen and (max-width: 499px) {
	#mv {
		position: relative;
		height: 60vh;
		margin-top: 0.71rem;
	}
}

.mv_copy_main {
	position: absolute;
	top: 0.70rem;
	left: 1.00rem;
	width: 5.07rem;
	height: 0.88rem;
	z-index: 1;
}

@media screen and (max-width: 499px) {
	.mv_copy_main {
		position: absolute;
		top: 0.30rem;
		left: 0.30rem;
		width: 2.50rem;
		z-index: 1;
	}
}

#mv .mv_ph_wrap {
	position: relative;
	width: calc(100% - 0.50rem);
	height: 100%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	z-index: 0;
}

@media screen and (max-width: 499px) {
	#mv .mv_ph_wrap {
		width: 100%;
	}
}

#mv .mv_ph_wrap .ph_main {
	width: 65%;
	margin-top: 1.20rem;
	height: calc(100% - 1.20rem);
	overflow: hidden;
	position: relative;
}

@media screen and (max-width: 499px) {
	#mv .mv_ph_wrap .ph_main {
		width: calc(100% - 0.30rem);
		margin-top: 0.60rem;
		height: 70%;
	}
}

#mv .mv_ph_wrap .ph_main .text {
	font-size: 0.19rem;
	line-height: 1.85;
	color: #FFF;
	letter-spacing: 0.10em;
	position: absolute;
	left: 1.00rem;
	bottom: 0.50rem;
	z-index: 1;
}

@media screen and (max-width: 499px) {
	#mv .mv_ph_wrap .ph_main .text {
		font-size: 0.14rem;
		line-height: 1.85;
		color: #FFF;
		letter-spacing: 0.10em;
		position: absolute;
		left: 0.30rem;
		bottom: 0.30rem;
		z-index: 1;
	}
}

#mv .mv_ph_wrap::before {
	content: "";
	width: 50%;
	height: 90%;
	background-color: #F2F2F0;
	position: absolute;
	top: 0.20rem;
	left: 0;
	z-index: 0;
}

@media screen and (max-width: 499px) {
	#mv .mv_ph_wrap::before {
		width: 70%;
	}
}

#mv .mv_ph_wrap img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

#mv .mv_ph_wrap .ph_sub_wrap {
	width: 34.9%;
	height: calc(100% - 0.50rem);
	position: relative;
	z-index: 1;
}

@media screen and (max-width: 499px) {
	#mv .mv_ph_wrap .ph_sub_wrap {
		width: calc(100% - 0.30rem);
		margin-left: 0.30rem;
		height: 25%;
		display: flex;
		justify-content: space-between;
		padding-top: 1px;
		box-sizing: border-box;
	}
}

#mv .mv_ph_wrap .ph_sub_wrap .ph_sub {
	border-bottom: 1px solid #FFF;
	height: 50%;
	box-sizing: border-box;
}

@media screen and (max-width: 499px) {
	#mv .mv_ph_wrap .ph_sub_wrap .ph_sub {
		border-left: 1px solid #FFF;
		height: 100%;
		width: 50%;
		box-sizing: border-box;
	}
}

#mv .copyright {
	position: absolute;
	right: 0.20rem;
	top: 50%;
	transform: translateY(-50%);
	width: 0.10rem;
}

@media screen and (max-width: 499px) {
	#mv .copyright {
		right: 0.10rem;
		width: 0.07rem;
	}
}

/*========================
About
========================*/
#about {
	padding: 1.20rem 0;
}

#about .lead {
	text-align: center;
	font-size: 0.18rem;
	line-height: 2;
	letter-spacing: 0.10em;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 300;
}

@media screen and (max-width: 499px) {
	#about .lead {
		text-align: left;
		font-size: 0.14rem;
		font-weight: 400;
	}
}

/*========================
Profile
========================*/
#profile {
	padding: 3.00rem 0 1.20rem;
	position: relative;
	overflow: hidden;
}

@media screen and (max-width: 499px) {
	#profile {
		padding: 2.00rem 0 0.60rem;
		position: relative;
	}
}

#profile::before {
	content: "";
	display: block;
	width: 100%;
	height: 3.70rem;
	background-image: url(../img/profile_bg.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
}

@media screen and (max-width: 499px) {
	#profile::before {
		height: 2.00rem;
	}
}

#profile .in {
	background-color: #FFF;
	z-index: 1;
	padding-top: 0.60rem;
}

.profile_wrap {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	flex-direction: row-reverse;
	align-items: center;
	padding: 0 0.40rem 0.80rem;
	font-family: 'Noto Sans JP', sans-serif;
}

@media screen and (max-width: 499px) {
	.profile_wrap {
		flex-direction: row;
		padding: 0 0 0.40rem;
	}
}

.profile_wrap:nth-child(odd) {
	flex-direction: row;
}

.profile_wrap .ph.yamashita {
	width: 3.17rem;
	position: relative;
}

@media screen and (max-width: 499px) {
	.profile_wrap .ph.yamashita {
		width: 50%;
		margin: auto;
		position: relative;
	}
}

.profile_wrap .ph img {
	position: relative;
	z-index: 1;
}

.profile_wrap .ph.yamashita::before {
	content: "";
	background-color: #F2F2F0;
	position: absolute;
	z-index: 0;
	width: 10.00rem;
	height: 100%;
	left: 0.30rem;
	bottom: -0.20rem;
}

.profile_wrap .ph.jimusho {
	width: 4.34rem;
	position: relative;
}

@media screen and (max-width: 499px) {
	.profile_wrap .ph.jimusho {
		width: 100%;
		position: relative;
	}
}

.profile_wrap .ph.jimusho::before {
	content: "";
	background-color: #F2F2F0;
	position: absolute;
	z-index: 0;
	width: 10.00rem;
	height: 100%;
	right: 0.30rem;
	bottom: -0.20rem;
}

.profile_wrap .textbox {
	width: 6.00rem;
	letter-spacing: 0.10em;
}

@media screen and (max-width: 499px) {
	.profile_wrap .textbox {
		width: 100%;
		padding-top: 0.40rem;
	}
}

.profile_wrap .textbox .name {
	font-size: 0.22rem;
	line-height: 1.65;
	margin-bottom: 0.30rem;
}

@media screen and (max-width: 499px) {
	.profile_wrap .textbox .name {
		font-size: 0.16rem;
		text-align: center;
	}
}

.profile_wrap .textbox .name span {
	font-size: 0.18rem;
	display: block;
}

@media screen and (max-width: 499px) {
	.profile_wrap .textbox .name span {
		font-size: 0.14rem;
	}
}

.profile_wrap .textbox .profile_table {
	font-size: 0.16rem;
	line-height: 1.85;
}

@media screen and (max-width: 499px) {
	.profile_wrap .textbox .profile_table {
		font-size: 0.14rem;
	}
}

.profile_wrap .textbox .profile_table th {
	text-align: left;
	font-weight: 400;
	padding-right: 0.60rem;
}

.profile_wrap .textbox .shozoku {
	font-size: 0.20rem;
	border-bottom: 1px solid #111;
	padding-bottom: 0.10rem;
	line-height: 1.65;
	margin-bottom: 0.30rem;
}

@media screen and (max-width: 499px) {
	.profile_wrap .textbox .shozoku {
		font-size: 0.18rem;
		padding-bottom: 0.06rem;
		margin-bottom: 0.10rem;
	}
}

.profile_wrap .textbox .profile_list {
	font-size: 0.16rem;
	line-height: 2.6;
}

@media screen and (max-width: 499px) {
	.profile_wrap .textbox .profile_list {
		font-size: 0.14rem;
		line-height: 2;
	}
}

/*========================
Access
========================*/
#access {
	font-family: 'Noto Sans JP', sans-serif;
}

#access .map {
	width: 100%;
	height: 5.00rem;
	position: relative;
	z-index: 0;
}

@media screen and (max-width: 499px) {
	#access .map {
		height: 2.50rem;
	}
}

#access .map iframe {
	width: 100%;
	height: 100%;
}

#access .text_wrap {
	width: 100%;
	max-width: 12.00rem;
	margin: auto;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	flex-direction: row-reverse;
	position: relative;
	z-index: 1;
}

#access .text_wrap .access_box {
	color: #FFF;
	width: 100%;
	max-width: 6.45rem;
	background-color: #103659;
	padding: 0.40rem;
	box-sizing: border-box;
	position: relative;
	top: -0.80rem;
}

@media screen and (max-width: 499px) {
	#access .text_wrap .access_box {
		padding: 0.20rem;
		top: 0;
	}
}

#access .text_wrap .access_box .title {
	font-size: 0.36rem;
	letter-spacing: 0.20em;
	font-family: 'Jost', sans-serif;
	padding-bottom: 0.30rem;
}

@media screen and (max-width: 499px) {
	#access .text_wrap .access_box .title {
		font-size: 0.20rem;
		padding-bottom: 0.10rem;
	}
}

#access .text_wrap .access_box .text {
	font-size: 0.14rem;
	line-height: 2;
}

@media screen and (max-width: 499px) {
	#access .text_wrap .access_box .text {
		font-size: 0.13rem;
	}
}

#access .text_wrap .access_box .text a {
	color: #FFF;
	text-decoration: none;
}

@media screen and (max-width: 499px) {
	#access .text_wrap .access_box .text a {
		font-weight: 700;
		text-decoration: underline;
	}
}

#access .text_wrap .access_caption {
	padding: 0.40rem;
}

@media screen and (max-width: 499px) {
	#access .text_wrap .access_caption {
		padding: 0.20rem 0.20rem 0;
		width: 100%;
		box-sizing: border-box;
	}
}

#access .text_wrap .access_caption .text {
	font-size: 0.14rem;
	line-height: 2;
	letter-spacing: 0.10em;
}

@media screen and (max-width: 499px) {
	#access .text_wrap .access_caption .text {
		font-size: 0.12rem;
	}
}

/*========================
プライバシーポリシー
========================*/
#privacy {
	padding: 1.20rem 0;
	font-family: 'Noto Sans JP', sans-serif;
	letter-spacing: 0.10em;
}

#privacy .text {
	font-size: 0.16rem;
	line-height: 2;
	margin-bottom: 0.40rem;
}

@media screen and (max-width: 499px) {
	#privacy .text {
		font-size: 0.14rem;
		margin-bottom: 0.30rem;
	}
}

#privacy .title {
	font-size: 0.18rem;
	font-weight: 700;
	margin-bottom: 0.10rem;
	line-height: 1.65;
}

@media screen and (max-width: 499px) {
	#privacy .title {
		font-size: 0.16rem;
	}
}

/*========================
フッター
========================*/
footer {
	background-color: #F2F2F0;
	font-family: 'Noto Sans JP', sans-serif;
}

footer .in {
	padding: 0.60rem 0.40rem;
	text-align: center;
}

@media screen and (max-width: 499px) {
	footer .in {
		padding: 0.20rem;
		display: block;
	}
}

/* ロゴ */
footer .in .logo {
	width: 3.43rem;
	margin: auto;
	padding-bottom: 0.40rem;
}

@media screen and (max-width: 499px) {
	footer .in .logo {
		width: 2.00rem;
		margin: auto;
	}
}

/* ナビゲーション */
footer .in .footer_nav_wrap {
	width: 100%;
}

footer .in .footer_nav_wrap .nav_list {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	padding-bottom: 0.40rem;
	margin-bottom: 0.60rem;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 499px) {
	footer .in .footer_nav_wrap .nav_list {
		padding: 0.20rem 0;
	}
}

footer .in .footer_nav_wrap .nav_list .text {
	margin: 0 0.20rem;
}

@media screen and (max-width: 499px) {
	footer .in .footer_nav_wrap .nav_list .text {
		margin: 0;
		width: 50%;
		padding-bottom: 0.20rem;
		text-align: left;
	}

	footer .in .footer_nav_wrap .nav_list .text::before {
		content: "";
		width: 4px;
		height: 1px;
		background-color: #111;
		display: inline-block;
		margin-right: 8px;
		position: relative;
		top: -4px;
	}
}

footer .in .footer_nav_wrap .nav_list .text a {
	color: #111;
	text-decoration: none;
	position: relative;
	font-size: 0.14rem;
	letter-spacing: 0.10em;
	font-weight: 400;
}

@media screen and (max-width: 499px) {
	footer .in .footer_nav_wrap .nav_list .text a {
		font-size: 0.13rem;
	}
}

footer .in .footer_nav_wrap .nav_list .text a::after {
	position: absolute;
	bottom: -4px;
	left: 0;
	content: '';
	width: 100%;
	height: 1px;
	background: #111;
	transform: scale(0, 1);
	transform-origin: right top;
	transition: transform .3s;
}

footer .in .footer_nav_wrap .nav_list .text a:hover::after {
	transform-origin: left top;
	transform: scale(1, 1);
}

/* コピーライト */
footer .address {
	font-size: 0.14rem;
	line-height: 2;
}

@media screen and (max-width: 499px) {
	footer .address {
		font-size: 0.11rem;
	}
}
