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

/*-----------------header-----------------*/

	
.img_fit{
	width:100%;
	height: 100%;
	object-fit: cover;
}
@media (min-width: 1110px) {
	#header{
		position:fixed;
		width: 100%;
		height: 74px;
		top: 0;
		left: 0;
		z-index: 4;
		transition: .3s;
		display: flex;
		justify-content: space-between;
	}
	#head_logo{
		max-width: 180px;
		height: 100%;
		position:absolute;
		padding: 10px 20px;
		display: flex;
		justify-content: center;
		align-items: center;
		box-sizing: border-box;
		z-index: 2
	}
	.headermini{
		width: 100%!important;
		top: 0!important;
		left: 0!important;
		height: 50px!important;
		transition: .3s;
		position: relative;
		font-size: 1.4rem;
	}
}
@media (max-width: 1109px) {
	#header{
		width: calc(100% - 20px);
		position:fixed;
		top: 10px;
		left: 10px;
		z-index: 4;
		height: 44px;
		transition: .3s;
		background: #fff;
		border-radius: 22px;
		box-shadow: 2px 2px 4px rgba(0,0,0,0.2);
	}
	#head_logo{
		max-width: 120px;
		height: 100%;
		position:absolute;
		padding: 10px 0 10px 15px;
		display: flex;
		justify-content: center;
		align-items: center;
		box-sizing: border-box;
		z-index: 99;
	}
}
#head_logo &gt; a{
    width:100%;
    height: 100%;
}
#head_logo &gt; a &gt; img{
    width:100%;
    height: 100%;
	object-fit: contain;
	object-position: left;
}

@media (min-width: 1110px) {
    .head_info{
		height: 100%;
		display: flex;
		flex-wrap: nowrap;
   		align-items: center;
    }
	.head_info ul {
		height: 100%;
		list-style: none;
	}
	.head_info &gt; li {
		height: 100%;
		font-weight: 700;
		padding: 0 20px;
	}
	.head_info &gt; li:last-child {
		height: 100%;
		font-weight: 700;
		padding: 0 40px 0 20px;
	}
}
@media (max-width: 1109px) {
    .head_info{
		height: 100%;
		display: block;
    }
}
@media (min-width: 1110px) {
	.head_info a {
		height: 100%;
		text-align: center;
		transition: all .3s ease;
		display: flex;
		align-items: center;
		color: #fff;
	}
	.head_info a::before {
		content: '';
		width:10px;
		height: 10px;
		border-radius: 5px;
		background: #fff;
		margin-right: 5px;
	}
	.head_info a:hover {
		color: #E81B7D;
	}
	.header_menu_mini{
		border-radius: 0 0 25px 0!important;
		transition: .3s;
		position: relative;
	}
}
@media (max-width: 1109px) {
	.head_info a {
	  display: block;
		color: #192E75;
	}
}
@media (min-width: 1110px) {
    .menu{
        display: none;
    }
}
@media (max-width: 1109px) {
	.menu{
		width: 30px;
		height: 20px;
		position: absolute;
		right: 15px;
		top: 12px;
		z-index: 99;
		cursor: pointer;
		text-align: center;
	}
}
.head_info p{
    padding-top: 10px;
    font-size:11px;
}
/*menu*/
.menu__line{
    width: 30px;
    height: 3px;
    background: #192E75;
    display: block;
    position: absolute;
    transition:transform .3s;
	box-sizing: border-box;
}
.menu__line.active{
    width: 30px;
    height: 3px;
    display: block;
    position: absolute;
    transition:transform .3s;
	box-sizing: border-box;
}
.menu__line--top:nth-of-type(1) {
	top: 0px;
	right: 0px;
}
.menu__line--bottom:nth-of-type(2) {
	bottom: 0;
	right: 0;
}

.menu__line--top:nth-of-type(1) {
  animation: menu-bar01 .5s forwards;
}
@keyframes menu-bar01 {
  0% {
    transform: translateY(8px) rotate(45deg);
  }
  50% {
    transform: translateY(8px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
.menu__line--bottom:nth-of-type(2) {
  animation: menu-bar02 .5s forwards;
}
@keyframes menu-bar02 {
  0% {
    transform: translateY(-8px) rotate(-45deg);
  }
  50% {
    transform: translateY(-8px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
.menu__line--top.active:nth-of-type(1) {
  animation: active-menu-bar01 .5s forwards;
}
@keyframes active-menu-bar01 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(8px) rotate(0);
  }
  100% {
    transform: translateY(8px) rotate(45deg);
  }
}
.menu__line--bottom.active:nth-of-type(2) {
  animation: active-menu-bar03 .5s forwards;
}
@keyframes active-menu-bar03 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-10px) rotate(0);
  }
  100% {
    transform: translateY(-10px) rotate(-45deg);
  }
}


@media (min-width: 1110px) {
    /*gnav*/
    .gnav{
        display: block!important;
		margin: 10px auto;
		border-radius: 23px;
		background: #192E75;
		height: 46px;
    }
    .gnav__wrap{
        height: 100%;
    }
    .gnav__menu__item{
    }
    .gnav__menu{
		width:100%;
        display: flex;
		flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }
}
@media (max-width: 1109px) {
    /*gnav*/
    .gnav{
        background-color: #fff;
        display: none;
        height: 100vh;
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        z-index: 98;
    }
    .gnav__wrap{
        width: 100%;
        height: 100%;
        position: relative;
		overflow: hidden;
		padding: 70px 30px;
    }
    .gnav__menu__item{
		width: 100%;
        position: relative;
        margin-bottom: 20px;
		border-bottom: dotted 1px #ccc;
    }
    .gnav__menu__item &gt; a{
		color: #192E75;
        font-size: 2rem;
        font-weight: bold;
        padding: 20px 0;
        text-decoration: none;
        transition: .5s;
    }
	.gnav__menu__item &gt; a::after{
		content:'';
		width: 10px;
		height: 10px;
		position: absolute;
		top: 25px;
		right:10px;
		transition: all 0.5s ease;
		box-sizing: border-box;
		border-top:solid 2px #707070;
		border-right:solid 2px #707070;
		transform: rotate(45deg);
	}
    .gnav__menu{
		max-width: 500px;
		margin: 0 auto;
        position: relative;
    }
}


@media (min-width: 1110px) {
	.spmenu{
		display:none;
	}
}
@media (max-width: 1109px) {
	.spmenu{
		display:block;
	}
	.spmenu &gt; ul &gt; li{
		padding-bottom: 20px;
		list-style: disc;
		margin-left: 20px;
	}
}
/*-----------------topimg-----------------*/
@media (min-width: 769px) {
    .top_ctt{
        width: 100%;
        position: relative;
		margin-bottom: 100px;
    }
    .top_img{
        width: 100%;
        height: 640px;
        position: relative;
		display: flex;
		flex-wrap: nowrap;
		border-radius: 0 0 100px 100px;
		overflow: hidden;
    }
    .top_ctt_on{
		width: 100%;
        position: absolute;
        bottom: -100px;
        left: 50%;
		transform: translateX(-50%);
        z-index: 1;
		text-align: center;
    }
    .top_ctt_on &gt; h2{
		color: #FFF;
		text-align: center;
		font-family: Inter;
		font-size: 80px;
		font-style: normal;
		font-weight: 700;
		line-height: 110%; /* 88px */
		letter-spacing: -0.88px;
		text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    }
    .top_ctt_on &gt; p{
		color: #FFF;
		text-align: center;
		font-family: "Helvetica Neue";
		font-size: 14px;
		font-style: normal;
		font-weight: 700;
		line-height: 200%; /* 28px */
		letter-spacing: 0.7px;
    }
}
@media (max-width: 768px) {
    .top_ctt{
        width: 100%;
        height: 90vh;
		position: relative;
		overflow: hidden;
		display: flex;
		flex-wrap: wrap;
    }
    .top_img{
        width: 100%;
        height: 100%;
        position: relative;
		display: flex;
		flex-wrap: wrap;
    }
    .top_ctt_on{
		width: 100%;
		z-index: 1;
		padding: 20px;
		text-align: center;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
    }
    .top_ctt_on &gt; h2{
		color: #FFF;
		text-align: center;
		font-family: Inter;
		font-size: 5rem;
		font-style: normal;
		font-weight: 700;
		line-height: 110%; /* 88px */
		letter-spacing: -0.88px;
		text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    }
    .top_ctt_on &gt; p{
		color: #FFF;
		text-align: center;
		font-family: "Helvetica Neue";
		font-size: 14px;
		font-style: normal;
		font-weight: 700;
		line-height: 200%; /* 28px */
		letter-spacing: 0.7px;
    }
}
@media (min-width: 769px) {
	.mvimg{
		display:block;
		width: 50%;
        height: 100%;
		position: relative;
		overflow: hidden;
	}
}
@media (max-width: 768px) {
	.mvimg{
		display:block;
		width: 100%;
        height: 50%;
		position: relative;
		overflow: hidden;
	}
}
.mvimg img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/**************スクロールダウンイベント****************/

@media (min-width: 960px) {
	#top_s_down {
		display: inline-block;
		color: #014099;
		font-size: 1.4rem;
		font-family: 'Josefin Sans', sans-serif;
		line-height: 1;
		letter-spacing: .1em;
		text-transform: uppercase;
		text-decoration: none;
		position: absolute;
		top: 0;
		right: -34px;
	}
    #top_s_down::before {
        width: 110px;
        content: 'ABOUT US';
        position: absolute;
		top: 50px;
    	right: -55px;
		color: #014099;
		z-index: 1;
		transform: rotate(90deg);
    }
    #top_s_down::after {
        content: '';
        position: absolute;
        top: 100px;
        right:0;
        width: 1px;
        height: 150px;
        background: #014099;
    }
}
@media (max-width: 959px) {
	#top_s_down {
		display: inline-block;
		color: #fff;
		font-size: 1.4rem;
		font-family: 'Josefin Sans', sans-serif;
		line-height: 1;
		letter-spacing: .1em;
		text-transform: uppercase;
		text-decoration: none;
		position: absolute;
		top: 0;
		right: 0;
	}
	#top_s_down::before {
        width: 110px;
        content: 'ABOUT US';
        position: absolute;
		top: 82px;
		right: -19px;
		color: #fff;
		z-index: 1;
		transform: rotate(90deg);
    }
    #top_s_down::after {
        content: '';
        position: absolute;
		top: 132px;
		right: 36px;
        width: 1px;
        height: 150px;
        background: #fff;
    }
}
#top_s_down::after {
  animation: sdl 2s cubic-bezier(1, 0, 0, 1) infinite;
}
@keyframes sdl {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  35% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  35.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  70%, 100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}


/*---------オープンニング----------*/

.containerr {
	width: 100%;
	position: relative;
}
.opening {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 5!important;
	position: fixed;
	transition: all 0.5s ease-in-out;
}
.openingall{
	width: calc(100% + 60px)!important;
	height: 100%;
	top: 0;
	left: -60px;
	position: absolute;
	background-color: #fff;
	z-index: -2;
} 
.opening--out {
	left: calc(100% + 60px);
}
.opening-logo {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	margin: auto;
	opacity: 0;
	transition: opacity 0.5s;
	text-align: center;
	z-index: -1;
}
.opening-logo--visible {
	opacity: 1;
}
.opening-logo--none{
	display: none!important;
}
.opening-logo_text {
	stroke-width: 1;
	fill-rule: evenodd;
	stroke: #000;
	stroke-dasharray: 80;
	opacity: 0;
	transition: opacity 0.5s, fill 0.5s, stroke-dashoffset 2s;
	stroke-dashoffset: 80;
}
.opening-logo_text.opening-logo_text--visible {
	fill: #000;
	opacity: 1;
}
.opening-logo_text.opening-logo_text--stroke {
	fill: transparent;
	stroke-dashoffset: 0;
}
.opening-logo_text.opening-logo_text--filled {
	stroke: transparent;
	fill: #000;
	transition: all 1s;
}
.anim_item {
	display: none;
}
.flowing {
	width: 0;
	margin: 0;
	white-space: nowrap;
	overflow: hidden;
	animation: flowing-anim 0.2s forwards linear;
}
@keyframes flowing-anim {
 0%{

	 width: 0%;
   }
100%{
	 width: 100%;
   }
}
.txt_caution{
	color: #000;
	text-align: center;
	font-family: Inter;
	font-size: 1.4rem;
	font-style: normal;
	font-weight: 400;
	line-height: 2em; /* 28px */
	padding: 20px;
}</pre></body></html>