<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 */



/*==================================================
hamburger menu
===================================*/
	
.menu-content {
    width: 18%;
    height: 100%;
    position: fixed;
    top: 0;
    right: -100%;/*leftの値を変更してメニューを画面外へ*/
    z-index: 16000;
    background-color: rgba(255, 255, 255, 0.8);
    transition: all 0.5s;/*アニメーション設定*/
	overflow: auto;
	display: flex;
	align-items: center;
	text-align: right;
}

.menu-content ul {
	margin-left: auto;
	padding-right: calc(100vw / 25);
}


.menu-content li{
	font-family: 'Roboto Condensed', sans-serif;
	font-size: calc(100vw / 90);
	line-height: 2.5;
}

.menu-content li a{
	color: #0e4093;
}

.menu_main{
	font-size: calc(100vw / 60)!important;
	line-height: 2.0!important;
}

#menu-btn-check:checked ~ .menu-content {
    right: 0;/*メニューを画面内へ*/
}

.menu-content img{
	width: 24px;
	margin-right: 5px;
	margin-bottom: 0px;
}
	
.menu-btn {
	position: relative;
    display: flex;
    height: 48px;
    width: 48px;
    justify-content: center;
    align-items: center;
    z-index: 18000;
	background-color: #fff;
}

.menu-btn:hover{
	cursor: pointer;
	opacity: 0.8;
}

.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 30px;
    border-radius: 3px;
    background-color: #004196;
    position: absolute;
	transition: all .4s;
}

.menu-btn span:before {
    bottom: 8px;
}

.menu-btn span:after {
    top: 8px;
}
	
#menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
}

#menu-btn-check:checked ~ .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
}

#menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
}
	
#menu-btn-check {
    display: none;
}

@media screen and (max-width:750px){
.menu-content {
    width: 50%;
    height: 100%;
    position: fixed;
    top: 0;
    right: -100%;/*leftの値を変更してメニューを画面外へ*/
    z-index: 16000;
    background-color: rgba(255, 255, 255, 0.8);
    transition: all 0.5s;/*アニメーション設定*/
	padding-left: calc(100vw / 20);
	overflow: auto;
	display: flex;
	align-items: center;
	text-align: right;
}
	
.menu-content li{
	font-size: calc(100vw / 30);
	line-height: 2.5;
}
	
.menu_main{
	font-size: calc(100vw / 20)!important;
}
	
.menu-btn {
	position: relative;
    display: flex;
    height: 42px;
    width: 42px;
    justify-content: center;
    align-items: center;
    z-index: 18000;
}

.menu-btn:hover{
	cursor: pointer;
	opacity: 0.8;
}

.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 24px;
    border-radius: 3px;
    background-color: #004196;
    position: absolute;
	transition: all .4s;
}

}




/*==================================================
fadein
===================================*/

.fadein{
	opacity: 0;
	transform : translate(0, 30px) scale(0.95, 1)!important;
	transition : all 1s;
}

.fadein.active{
	opacity: 1;
	transform : translate(0, 0) scale(0.95, 1)!important;
}



/*==================================================
tab menu
===================================*/

/*tabの形状*/

.tab_menu li a{
	display: block;
	padding-bottom: 10px;
	border-bottom: solid 2px #fff;
}

/*liにactiveクラスがついた時の形状*/
.tab_menu li.active a{
	padding-bottom: 10px;
	border-bottom: solid 2px #0e4093;
}

/*エリアの表示非表示と形状*/
.tab_area {
	display: none;/*はじめは非表示*/
	opacity: 0;/*透過0*/
}

/*areaにis-activeというクラスがついた時の形状*/
.tab_area.is-active {
    display: block;/*表示*/
    animation-name: displayAnime;/*ふわっと表示させるためのアニメーション*/
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
}

@keyframes displayAnime{
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}



/*==================================================
画像左から表示
https://firstlayout.net/animation-on-elements-entered-on-the-screen/
===================================*/

.img-wrap-second.img-wrap-animation {
  animation: img-wrap-second-img 2s cubic-bezier(.4, 0, .2, 1) 0.3s;
}

.img-wrap-second.img-wrap-animation:before {
  animation: img-wrap-second-before 2s cubic-bezier(.4, 0, .2, 1) 0.3s forwards;
  background: #fff;
  bottom: 0;
  content: '';
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}

@keyframes img-wrap-second-img {
  0% {
    opacity: 0;
  }
}

@keyframes img-wrap-second-before {
  100% {
    transform: translateX(100%);
  }
}


/*==================================================
画像右から表示
https://firstlayout.net/animation-on-elements-entered-on-the-screen/
===================================*/

.img-wrap-second_rev.img-wrap-animation_rev {
  animation: img-wrap-second-img_rev 2s cubic-bezier(.4, 0, .2, 1) 0.3s;
}

.img-wrap-second_rev.img-wrap-animation_rev:before {
  animation: img-wrap-second-before_rev 2s cubic-bezier(.4, 0, .2, 1) 0.3s forwards;
  background: #fff;
  bottom: 0;
  content: '';
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}

@keyframes img-wrap-second-img_rev {
  0% {
    opacity: 0;
  }
}

@keyframes img-wrap-second-before_rev {
  100% {
    transform: translateX(-100%); /*←右からはこれが付くだけ*/
  }
}</pre></body></html>