<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset 'UTF-8';
/*==========================================================================

   mixin

===========================================================================*/
/*--------------------------------------------------------------------------
   c-btn
---------------------------------------------------------------------------*/
.c-btn-white {
	width: 500px;
	height: 60px;
	margin: 0 auto;
}

@media only screen and (max-width: 767px) {
	.c-btn-white {
		width: auto;
	}
}

.c-btn-white a {
	display: -ms-flexbox;
	display: flex;
	overflow: hidden;
	position: relative;
	width: 100%;
	height: 100%;
	border: 1px solid #005fb2;
	border-radius: 40px;
	background-color: #fff;
	color: #005fb2;
	font-size: 2rem;

	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: center;
	justify-content: center;
}

@media only screen and (max-width: 767px) {
	.c-btn-white a {
		font-size: 1.6rem;
	}
}

.mode-pc .c-btn-white a:hover span::after,
.mode-sp .c-btn-white a:active span::after {
	right: -10px;
}

.c-btn-white span {
	display: inline-block;
	position: relative;
	padding-right: 30px;
}

@media only screen and (max-width: 767px) {
	.c-btn-white span {
		padding-right: 22px;
	}
}

.c-btn-white span::after {
	position: absolute;
	top: 50%;
	right: 0;
	width: 20px;
	height: 8px;
	background: url('../image/common/ico_arw_blue.svg') no-repeat 50% 50%/contain;
	content: '';
	transition: .3s;
	transform: translateY(-50%);
}

@media only screen and (max-width: 767px) {
	.c-btn-white span::after {
		width: 16px;
		height: 6px;
	}
}

.c-btn-blue {
	width: 500px;
	height: 60px;
	margin: 0 auto;
}

@media only screen and (max-width: 767px) {
	.c-btn-blue {
		width: auto;
	}
}

.c-btn-blue a {
	display: -ms-flexbox;
	display: flex;
	overflow: hidden;
	position: relative;
	width: 100%;
	height: 100%;
	border-radius: 40px;
	background-color: #005fb2;
	color: #fff;
	font-size: 2rem;

	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: center;
	justify-content: center;
}

@media only screen and (max-width: 767px) {
	.c-btn-blue a {
		font-size: 1.6rem;
	}
}

.mode-pc .c-btn-blue a:hover span::after,
.mode-sp .c-btn-blue a:active span::after {
	right: -10px;
}

.c-btn-blue span {
	display: inline-block;
	position: relative;
	padding-right: 30px;
}

@media only screen and (max-width: 767px) {
	.c-btn-blue span {
		padding-right: 22px;
	}
}

.c-btn-blue span::after {
	position: absolute;
	top: 50%;
	right: 0;
	width: 20px;
	height: 8px;
	background: url('../image/common/ico_arw_white.svg') no-repeat 50% 50%/contain;
	content: '';
	transition: .3s;
	transform: translateY(-50%);
}

@media only screen and (max-width: 767px) {
	.c-btn-blue span::after {
		width: 16px;
		height: 6px;
	}
}

/*--------------------------------------------------------------------------
   c-ico
---------------------------------------------------------------------------*/
.c-ico-map {
	display: inline-block;
	position: relative;
	padding-left: 20px;
}

@media only screen and (max-width: 767px) {
	.c-ico-map {
		padding-left: 12px;
	}
}

.c-ico-map::before {
	position: absolute;
	top: 7px;
	left: 0;
	width: 13px;
	height: 18px;
	background: url('../image/common/ico_map.png') no-repeat 50% 50%/contain;
	content: '';
	transition: .3s;
}

@media only screen and (max-width: 767px) {
	.c-ico-map::before {
		top: 4px;
		width: 9px;
		height: 13px;
	}
}

/*--------------------------------------------------------------------------
   m-contact
---------------------------------------------------------------------------*/
.m-contact {
	display: -ms-flexbox;
	display: flex;
	height: 483px;
	margin-top: 140px;
	background: url('../image/common/contact_bg_pc.jpg') no-repeat 50% 50%/cover;

	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: center;
	justify-content: center;
}

@media only screen and (max-width: 767px) {
	.m-contact {
		height: 213px;
		margin-top: 68px;
		background: url('../image/common/contact_bg_sp.jpg') no-repeat 50% 50%/cover;
	}
}

.m-contact__body {
	text-align: center;
}

.m-contact__ttl {
	text-align: center;
}

.m-contact__ttl .en {
	display: block;
}

@media only screen and (max-width: 767px) {
	.m-contact__ttl .en img {
		width: 106px;
		height: auto;
	}
}

.m-contact__ttl .ja {
	display: block;
	margin-top: 20px;
	color: #fff;
	font-size: 1.8rem;
}

@media only screen and (max-width: 767px) {
	.m-contact__ttl .ja {
		margin-top: 12px;
		font-size: 1rem;
	}
}

.m-contact__btn {
	width: 576px;
	height: 102px;
	margin: 35px auto 0;
}

@media only screen and (max-width: 767px) {
	.m-contact__btn {
		width: 288px;
		height: 52px;
		margin-top: 18px;
	}
}

.m-contact__btn a {
	display: -ms-flexbox;
	display: flex;
	overflow: hidden;
	position: relative;
	width: 100%;
	height: 100%;
	border-radius: 60px;
	background-color: #fff;
	color: #005fb2;
	font-size: 3rem;

	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: center;
	justify-content: center;
}

@media only screen and (max-width: 767px) {
	.m-contact__btn a {
		font-size: 1.5rem;
	}
}

.mode-pc .m-contact__btn a:hover span::after,
.mode-sp .m-contact__btn a:active span::after {
	right: -10px;
}

.m-contact__btn span {
	display: inline-block;
	position: relative;
	padding-right: 30px;
}

@media only screen and (max-width: 767px) {
	.m-contact__btn span {
		padding-right: 22px;
	}
}

.m-contact__btn span::after {
	position: absolute;
	top: 50%;
	right: 0;
	width: 20px;
	height: 8px;
	background: url('../image/common/ico_arw_blue.svg') no-repeat 50% 50%/contain;
	content: '';
	transition: .3s;
	transform: translateY(-50%);
}

@media only screen and (max-width: 767px) {
	.m-contact__btn span::after {
		width: 16px;
		height: 6px;
	}
}

/*--------------------------------------------------------------------------
   m-header
---------------------------------------------------------------------------*/
.m-header {
	position: relative;
	min-width: 750px;
	height: 481px;
	background-color: #edf3f5;
}

@media only screen and (max-width: 767px) {
	.m-header {
		min-width: 0;
		height: 175px;
	}
}

.m-header__bg {
	display: block;
	overflow: hidden;
	position: absolute;
	top: 0;
	right: 0;
	width: 66%;
	height: 481px;
}

@media screen and (max-width: 820px) {
	.m-header__bg {
		width: 100%;
	}
}

@media only screen and (max-width: 767px) {
	.m-header__bg {
		height: 175px;
	}
}

.m-header__bg img {
	/*width: 100%;
      height: 100%;
      object-fit: cover;*/
}

.m-header__ttl {
	position: relative;
	z-index: 2;
	margin-left: 5.7%;
	padding-top: 220px;
}

@media only screen and (max-width: 767px) {
	.m-header__ttl {
		padding: 50px 0 0 5px;
	}
}

.m-header__ttl .ja {
	display: block;
	margin-left: -.15em;
	color: #005fb2;
	font-size: 5.8rem;
	font-weight: 500;
	line-height: 1.1;
	text-shadow: 0 0 2px #fff, 0 0 6px #fff, 0 0 8px #fff, 0 0 14px #fff, 0 0 20px #fff;
}

@media only screen and (max-width: 767px) {
	.m-header__ttl .ja {
		font-size: 3.7rem;
	}
}

.m-header__ttl .en {
	display: block;
	color: #005fb2;
	font-family: 'EB Garamond', serif;
	font-size: 2.9rem;
	letter-spacing: .14rem;
	text-shadow: 0 0 2px #fff, 0 0 6px #fff, 0 0 8px #fff, 0 0 14px #fff, 0 0 20px #fff;
}

@media only screen and (max-width: 767px) {
	.m-header__ttl .en {
		font-size: 1.5rem;
	}
}

/*--------------------------------------------------------------------------
   m-location
---------------------------------------------------------------------------*/
.m-location {
	padding-top: 120px;
}

@media only screen and (max-width: 767px) {
	.m-location {
		padding-top: 50px;
	}
}

.m-location--bg {
	margin-top: 120px;
	padding: 100px 0;
	background-color: #edf3f5;
}

@media only screen and (max-width: 767px) {
	.m-location--bg {
		margin-top: 50px;
		padding: 45px 0;
	}
}

.m-location__header {
	margin-bottom: 30px;
}

.m-location__lead {
	color: #005fb2;
	font-size: 1.6rem;
}

.m-location__ttl {
	color: #005fb2;
	font-size: 3.5rem;
	font-weight: 500;
	line-height: 1.1;
}

@media only screen and (max-width: 767px) {
	.m-location__ttl {
		font-size: 2.2rem;
	}
}

.m-location__ttl a[target='_blank'] {
	display: inline-block;
	position: relative;
	padding-right: 18px;
}

.m-location__ttl a[target='_blank']::before {
	position: absolute;
	top: 50%;
	right: 0;
	width: 12px;
	height: 12px;
	background: url('../image/common/ico_blank_blue.png') no-repeat 50% 50%/contain;
	content: '';
	transform: translate(0, -50%);
}

.m-location__ttl a {
	transition: opacity .3s;
}

.mode-pc .m-location__ttl a:hover,
.mode-sp .m-location__ttl a:active {
	opacity: .8;
}

.m-location__ttl .small {
	font-size: 2.9rem;
}

@media only screen and (max-width: 767px) {
	.m-location__ttl .small {
		font-size: 1.7rem;
	}
}

.m-location__address {
	margin-top: 8px;
	font-size: 1.6rem;
}

@media only screen and (max-width: 767px) {
	.m-location__address {
		font-size: 1.3rem;
	}
}

.m-location__address a[target='_blank'] {
	display: inline-block;
	position: relative;
	padding-right: 18px;
}

.m-location__address a[target='_blank']::before {
	position: absolute;
	top: 50%;
	right: 0;
	width: 12px;
	height: 12px;
	background: url('../image/common/ico_blank_blue.png') no-repeat 50% 50%/contain;
	content: '';
	transform: translate(0, -50%);
}

.m-location__address a {
	transition: opacity .3s;
}

.mode-pc .m-location__address a:hover,
.mode-sp .m-location__address a:active {
	opacity: .8;
}

.m-location__list {
	display: -ms-flexbox;
	display: flex;

	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.m-location__list--two .m-location__item {
	width: 47.9%;
}

@media only screen and (max-width: 767px) {
	.m-location__list--two .m-location__item {
		width: 47.42%;
	}
}

.m-location__list--three::after {
	display: block;
	width: 31.25%;
	height: 0;
	content: '';
}

@media only screen and (max-width: 767px) {
	.m-location__list--three::after {
		content: none;
	}
}

.m-location__list--three .m-location__item {
	width: 31.25%;
}

@media only screen and (max-width: 767px) {
	.m-location__list--three .m-location__item {
		width: 47.42%;
	}
}

.m-location__list--four::before {
	display: block;
	width: 23%;
	height: 0;
	content: '';

	-ms-flex-order: 1;
	order: 1;
}

@media only screen and (max-width: 767px) {
	.m-location__list--four::before {
		content: none;
	}
}

.m-location__list--four::after {
	display: block;
	width: 23%;
	height: 0;
	content: '';
}

@media only screen and (max-width: 767px) {
	.m-location__list--four::after {
		content: none;
	}
}

.m-location__list--four .m-location__item {
	width: 23%;
}

@media only screen and (max-width: 767px) {
	.m-location__list--four .m-location__item {
		width: 47.42%;
	}
}

.m-location__item {
	margin-bottom: 30px;
}

@media only screen and (max-width: 767px) {
	.m-location__item {
		margin-bottom: 15px;
	}
}

@media only screen and (max-width: 767px) {
	.m-location__item--solo {
		width: 100% !important;
	}
}

.m-location__item-img {
	position: relative;
}

.m-location__item-img a {
	display: block;
	position: relative;
	transition: .3s;
}

.m-location__item-img a::before {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 42px;
	height: 41px;
	background: url('../image/common/ico_modal_ciecle.png') no-repeat 50% 50%/contain;
	content: '';
}

@media only screen and (max-width: 767px) {
	.m-location__item-img a::before {
		top: 1.4vw;
		right: 1.6vw;
		width: 21px;
		height: 21px;
	}
}

.mode-pc .m-location__item-img a:hover,
.mode-sp .m-location__item-img a:active {
	opacity: .8;
}

.m-location__item-img figcaption {
	position: absolute;
	bottom: -38px;
	right: 0;
	font-size: 1.6rem;
}

@media screen and (min-width: 768px) and (max-width: 1000px) {
	.m-location__item-img figcaption {
		bottom: -36px;
		font-size: 1.4rem;
	}
}

@media only screen and (max-width: 767px) {
	.m-location__item-img figcaption {
		bottom: -28px;
		font-size: 1.2rem;
	}
}

.m-location__item-img img {
	overflow: hidden;
	width: 100%;
	height: auto;
	border-radius: 30px;
}

@media only screen and (max-width: 767px) {
	.m-location__item-img img {
		border-radius: 15px;
	}
}

.m-location__item-caption {
	margin-top: 10px;
	font-size: 1.8rem;
}

@media only screen and (max-width: 767px) {
	.m-location__item-caption {
		font-size: 1.3rem;
	}
}

.m-location__item-caption a[target='_blank'] {
	display: inline-block;
	position: relative;
	padding-right: 16px;
}

.m-location__item-caption a[target='_blank']::before {
	position: absolute;
	top: 10px;
	right: 0;
	width: 12px;
	height: 12px;
	background: url('../image/common/ico_blank_blue.png') no-repeat 50% 50%/contain;
	content: '';
}

@media only screen and (max-width: 767px) {
	.m-location__item-caption a[target='_blank']::before {
		top: 5px;
		width: 10px;
		height: 10px;
	}
}

.m-location__item-caption .small {
	font-size: 1.5rem;
}

@media only screen and (max-width: 767px) {
	.m-location__item-caption .small {
		display: block;
		font-size: 1.1rem;
	}
}

.m-location__item-caption .small--block {
	display: block;
	line-height: 1.2;
}

.m-location__item-caption .area {
	display: inline-block;
	position: relative;
	top: -2px;
	margin-right: 10px;
	padding: 5px 8px;
	border: 1px solid #005fb2;
	color: #005fb2;
	font-size: 1.5rem;
	line-height: 1;
}

@media only screen and (max-width: 767px) {
	.m-location__item-caption .area {
		margin-right: 5px;
		padding: 3px 4px;
		font-size: 1rem;
	}
}

.m-location__item-address {
	margin-top: 3px;
	font-size: 1.6rem;
}

@media only screen and (max-width: 767px) {
	.m-location__item-address {
		margin-top: 4px;
		font-size: 1.3rem;
	}
}

.m-location__item-address a[target='_blank'] {
	display: inline-block;
	position: relative;
	padding-right: 16px;
}

.m-location__item-address a[target='_blank']::before {
	position: absolute;
	top: 10px;
	right: 0;
	width: 12px;
	height: 12px;
	background: url('../image/common/ico_blank_blue.png') no-repeat 50% 50%/contain;
	content: '';
}

@media only screen and (max-width: 767px) {
	.m-location__item-address a[target='_blank']::before {
		top: 5px;
		width: 10px;
		height: 10px;
	}
}

.m-location__item-address a {
	transition: opacity .3s;
}

.mode-pc .m-location__item-address a:hover,
.mode-sp .m-location__item-address a:active {
	opacity: .8;
}

.m-location__btn-contact {
	width: 392px;
	height: 70px;
	margin-top: 25px;
}

@media only screen and (max-width: 767px) {
	.m-location__btn-contact {
		width: 248px;
		height: 45px;
	}
}

/*--------------------------------------------------------------------------
   m-modal
---------------------------------------------------------------------------*/
.m-modal {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
	width: 100%;
	height: 100%;
	visibility: hidden;
	transition: all .6s;
	pointer-events: none;
	opacity: 0;
}

.m-modal__overlay {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, .6);
	content: '';
}

.m-modal.is-loading,
.m-modal.is-loading .m-modal__loading {
	visibility: visible;
	pointer-events: all;
	opacity: 1;
}

.m-modal.is-loading.is-show .m-modal__loading,
.m-modal.is-loading .m-modal__loading.is-show .m-modal__loading {
	visibility: hidden;
	transition: all .6s;
	pointer-events: none;
	opacity: 0;
}

.m-modal__wrapper {
	display: -ms-flexbox;
	display: flex;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 99;
	width: 100%;
	height: 100%;
	visibility: hidden;
	transition: all .6s;
	transform: translateY(5%);
	pointer-events: none;
	opacity: 0;

	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-align: center;
	align-items: center;
}

.m-modal__cover {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
}

.m-modal.is-show .m-modal__wrapper {
	visibility: visible;
	transform: translateY(0);
	pointer-events: all;
	opacity: 1;
}

.m-modal__content {
	position: relative;
	padding: 90px 0 20px;
}

@media only screen and (max-width: 767px) {
	.m-modal__content {
		padding: 50px 0 15px;
	}
}

.m-modal__inline {
	box-sizing: border-box;
	position: relative;
	z-index: 10;
	width: auto;
	max-width: 996px;
	height: auto;
	margin: 0 auto;
	padding: 45px 55px;
	box-shadow: 0 0 10px 0 rgba(154, 154, 154, .44);
	border-radius: 30px;
	background-color: #fff;
}

@media screen and (max-width: 1106px) {
	.m-modal__inline {
		width: calc(100vw - 100px);
		margin: 0 50px;
		padding: 4vw 5vw;
	}
}

@media only screen and (max-width: 767px) {
	.m-modal__inline {
		width: calc(100vw - 30px);
		margin: 0 15px;
		padding: 15px 15px;
		border-radius: 15px;
	}
}

.m-modal__swiper {
	position: relative;
}

.m-modal__cap {
	margin-top: 5px;
	text-align: left;
	font-size: 18px;
}

@media only screen and (max-width: 767px) {
	.m-modal__cap {
		font-size: 15px;
	}
}

.m-modal__close {
	display: block;
	position: absolute;
	top: -70px;
	right: 20px;
	width: 60px;
	height: 60px;
	transition: transform .3s, opacity .3s;
}

.m-modal__close::before,
.m-modal__close::after {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 5px;
	height: 60px;
	background: #005fb2;
	content: '';
}

@media only screen and (max-width: 767px) {
	.m-modal__close::before,
	.m-modal__close::after {
		width: 3px;
		height: 30px;
	}
}

.m-modal__close::before {
	transform: translate(-50%, -50%) rotate(45deg);
}

.m-modal__close::after {
	transform: translate(-50%, -50%) rotate(-45deg);
}

@media only screen and (max-width: 767px) {
	.m-modal__close {
		top: -35px;
		right: 10px;
		width: 30px;
		height: 30px;
	}
}

.mode-pc .m-modal__close:hover,
.mode-sp .m-modal__close:active {
	transform: scale(1.2);
	opacity: .7;
}

.m-modal .swiper-slide {
	text-align: center;
}

.m-modal .swiper-slide img {
	display: block;
	width: 100%;
	max-width: 100%;
	height: auto;
	max-height: calc(100vh - 230px);

	object-fit: cover;
}

@media only screen and (max-width: 767px) {
	.m-modal .swiper-slide img {
		max-height: calc(100vh - 120px);
	}
}

.m-modal .swiper-button-prev,
.m-modal .swiper-button-next {
	display: -ms-flexbox;
	display: flex;
	position: absolute;
	top: 50%;
	left: 5px;
	right: inherit;
	width: 50px;
	height: 50px;
	margin: 0;
	border-radius: 50px;
	background-color: #005fb2;
	transition: transform .3s, opacity .3s;
	transform: translate(-50%, calc(-50% - 10px));

	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-align: center;
	align-items: center;
}

@media only screen and (max-width: 767px) {
	.m-modal .swiper-button-prev,
	.m-modal .swiper-button-next {
		left: 5px;
		width: 30px;
		height: 30px;
	}
}

.m-modal .swiper-button-prev::after,
.m-modal .swiper-button-next::after {
	color: #fff;
	font-size: 18px;
}

@media only screen and (max-width: 767px) {
	.m-modal .swiper-button-prev::after,
	.m-modal .swiper-button-next::after {
		font-size: 14px;
	}
}

.mode-pc .m-modal .swiper-button-prev:hover,
.mode-sp .m-modal .swiper-button-prev:active,
.mode-pc
.m-modal .swiper-button-next:hover,
.mode-sp
.m-modal .swiper-button-next:active {
	transform: scale(1.2) translate(-50%, calc(-50% - 10px));
	opacity: .7;
}

.m-modal .swiper-button-next {
	top: 50%;
	left: inherit;
	right: 5px;
	transform: translate(50%, calc(-50% - 10px));
}

.mode-pc .m-modal .swiper-button-next:hover,
.mode-sp .m-modal .swiper-button-next:active {
	transform: scale(1.2) translate(50%, calc(-50% - 10px));
	opacity: .7;
}

@media only screen and (max-width: 767px) {
	.m-modal .swiper-button-next {
		right: 5px;
	}
}

.m-modal__loading {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 20;
	visibility: hidden;
	transition: all .6s;
	transform: translate(-50%, -50%);
	pointer-events: none;
	opacity: 0;
}

.m-modal__loading p {
	margin-bottom: 5px;
	text-align: center;
	color: #000;
	font-family: 'Actor', sans-serif;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 1px;
}

.m-modal__loading span {
	display: inline-block;
	position: absolute;
	left: 50%;
	width: 16px;
	height: 16px;
	margin-left: -10px;
	border-radius: 50%;
	animation: 3s infinite linear;
}

.m-modal__loading span:nth-child(2) {
	background-color: #005fb2;
	animation: kiri 1.2s infinite linear;
}

.m-modal__loading span:nth-child(3) {
	z-index: 100;
	background-color: #005fb2;
}

.m-modal__loading span:nth-child(4) {
	background-color: #005fb2;
	animation: kanan 1.2s infinite linear;
}

@keyframes kanan {
	0% {
		transform: translateX(20px);
	}
	50% {
		transform: translateX(-20px);
	}
	100% {
		z-index: 200;
		transform: translateX(20px);
	}
}

@keyframes kiri {
	0% {
		z-index: 200;
		transform: translateX(-20px);
	}
	50% {
		transform: translateX(20px);
	}
	100% {
		transform: translateX(-20px);
	}
}

/*--------------------------------------------------------------------------
   cf
---------------------------------------------------------------------------*/
.cf {
	*zoom: 1;
}

.cf:after {
	display: table;
	clear: both;
	content: '';
}

/**
 *
 *  LOADER
 *
 */
/*--------------------------------------------------------------------------
   loader
---------------------------------------------------------------------------*/
#Loader {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999999;
	width: 100%;
	height: 100%;
	background: white;
}

#Loader .progress {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 5px;
	background: #005fb2;
}

#Loader .base {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 9;
	width: 250px;
	height: 74px;
	background-image: url(../img/common/img_logo.svg);
	background-repeat: no-repeat;
	background-size: contain;
	transform: translate(-50%, -50%);
	opacity: 0;
}

@media only screen and (max-width: 767px) {
	#Loader .base {
		width: 153px;
		height: 45px;
	}
}

.page-index #Loader {
	display: block;
}

/* trans
-------------------------------------------*/
/* anima
-------------------------------------------*/
.is-loading .page-index #Loader .base {
	transition: opacity 1s ease;
	opacity: 1;
}

.is-loaded .page-index #Loader {
	transition: all 1s ease;
	opacity: 0;
}

/*--------------------------------------------------------------------------
   SHOW / HIDE
---------------------------------------------------------------------------*/
/*
 show / hide
 -- ãƒ¬ã‚¹ãƒãƒ³ã‚·ãƒ–ç”¨ è¡¨ç¤º/éžè¡¨ç¤º
*/
.mi-pc {
	display: block;
}

img.mi-pc {
	display: inline;
}

.mi-sp {
	display: none;
}

/* media query -&gt; sp
========================================*/
@media only screen and (max-width: 767px) {
	.mi-pc,
	img.mi-pc {
		display: none;
	}
	.mi-sp {
		display: block;
	}
	img.mi-sp {
		display: inline;
	}
}

/*--------------------------------------------------------------------------
   TEXT
---------------------------------------------------------------------------*/
/*
 note
 -- æ”¹è¡Œæ™‚ã€ä¸€æ–‡å­—ç›®ã«ä½™ç™½ã‚’æŒãŸã›ã‚‹
*/
.mi-note,
.mi-list-note li {
	padding-left: 1em;
	text-indent: -1em;
}

/*--------------------------------------------------------------------------
   IMAGE
---------------------------------------------------------------------------*/
/*
 max
 -- æ¨ªå¹…ã«åˆã‚ã›ã¦ç”»åƒã‚’æœ€å¤§åŒ–
*/
.mi-img-max {
	width: 100%;
	height: auto;
}

/*--------------------------------------------------------------------------
   HOVER
---------------------------------------------------------------------------*/
/*
 hov01
 -- é€éŽ
*/
/* setting */
/* core */
.mi-hov01 {
	transition: all .2s ease-in-out;
}

.mi-hov01:hover {
	opacity: .7;
}

.mi-hov01-all &gt; * {
	transition: all .2s ease-in-out;
}

.mi-hov01-all &gt; *:hover {
	opacity: .7;
}

/*
 magnificPopup
 -- ã‚¢ãƒ‹ãƒ¡ãƒ¼ã‚·ãƒ§ãƒ³
*/
.mfp-fade.mfp-bg {
	transition: all .3s ease-out;
	opacity: 0;
}

.mfp-fade.mfp-bg.mfp-ready {
	opacity: .8;
}

.mfp-fade.mfp-bg.mfp-removing {
	opacity: 0;
}

.mfp-fade.mfp-wrap .mfp-content {
	transition: all .3s ease-out;
	opacity: 0;
}

.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
	opacity: 1;
}

.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
	opacity: 0;
}

/*--------------------------------------------------------------------------
   init
---------------------------------------------------------------------------*/
.is-animate.is-fadein {
	opacity: 0;
}

.is-animate.is-fadeup {
	transform: translateY(30px);
	opacity: 0;
}

.is-animate.is-fadedown {
	transform: translateY(-30px);
	opacity: 0;
}

.is-animate.is-fadeleft {
	transform: translateX(30px);
	opacity: 0;
}

.is-animate.is-faderight {
	transform: translateX(-30px);
	opacity: 0;
}

.is-animate.is-fadezoom {
	transform: scale(.4);
	opacity: 0;
}

/*--------------------------------------------------------------------------
   animated
---------------------------------------------------------------------------*/
.is-animated.is-fadein {
	transition: opacity 1s ease-in-out;
	transition-delay: 0s;
	opacity: 1;
}

.is-animated.is-fadeup {
	transition: opacity 1.5s ease, transform 1.5s ease;
	transition-delay: 0s;
	transform: translateY(0);
	opacity: 1;
}

.is-animated.is-fadeleft {
	transition: opacity 1.5s ease, transform 1.5s ease;
	transition-delay: 0s;
	transform: translateX(0);
	opacity: 1;
}

.is-animated.is-faderight {
	transition: opacity 1.5s ease, transform 1.5s ease;
	transition-delay: 0s;
	transform: translateX(0);
	opacity: 1;
}

.is-animated.is-fadezoom {
	transition: opacity 1.5s ease, transform 1.5s ease;
	transition-delay: 0s;
	transform: scale(1);
	opacity: 1;
}

/*==========================================================================

   keyframes

===========================================================================*/


#Footer .ft-sns-list{
  display: none;
}

#Footer .ft-sns-list li{
	
}


@media screen and (max-width: 768px) {

#Footer .ft-sns-list
  {
	display: flex;
	align-items: center;
	line-height: 0;
 /* background: #fff;*/
  border-radius: 5px;
  justify-content: space-around;
  padding: 10px;
  -webkit-box-align: center;
  align-items: center;
  margin: 10px 0;
}
  
.nav-sns-list
  {
	display: flex;
	align-items: center;
	line-height: 0;
  border-radius: 5px;
  justify-content: space-around;
  padding: 10px;
  -webkit-box-align: center;
  align-items: center;
  width: 86%;
  margin: 30px auto;
}  
  
#Footer .ft-sns-list li,.nav-sns-list li{
	padding: 12px;
}  

#Footer .nav-area .txt-link-list li:nth-child(odd).sns-list{
  width: 96%;
  margin: 20px auto;
    }  
  
  
#Footer .nav-area .txt-link-list li:nth-child(even).lastlink,
  .nav-sns-list li{
  width: 96%;
  margin: 0 auto;
    }

#Footer .ft-sns-list li:nth-child,
#Footer .nav-sns-list li:nth-child {
	width: 16%;
}

#Footer .nav-area .txt-link-list li:nth-child(odd) .ft-sns-list li{
    width: 100%;
  }
#Footer .nav-area .txt-link-list li:nth-child(even) .ft-sns-list li{
    width: 100%;
  }  
  
  
}
</pre></body></html>