@charset "utf-8";
/* CSS Document */


/* ---------------------------------------------------------------------------------------------

   Header Contents

--------------------------------------------------------------------------------------------- */
header {
  position: fixed; 
  top: 0; 
  transition: top .5s; /* アニメーション効果を追加 */
  width: 100%;
    z-index: 999;
}

.header-wrap{
    width: 100%;
    height: 100%;
    position: relative;
    background-color: #fff;
    /*opacity: 0.85;*/
}

.header-list {
  align-items: center; /* 垂直方向中央揃え */
  display: flex; /* 横並びに配置 */
  height: 75px; 
  justify-content: center; /* 左右中央寄せ */
}

.header-item a {
  color: #000; /* テキスト色 */
  padding: 10px 15px; /* 内側の余白 */
  text-decoration: none; /* デフォルトの下線を消す */
	font-size: clamp(12px, 2vw, 14px);
    font-weight: bold;
}
.header-item a:hover {
    color: #e60012;
}

.head-logo a img{
    position: absolute;
    top: 18.5px;
    left: 1.5%;
	z-index: 500;
    width: 275px;
    height: auto;
}

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

.header-list {
    display: none;
}
}

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

.head-logo a img{
    width: 225px;
}
}


/* Sp-menu---------------------------------------------------------------------------------------------

   ナビゲーションのためのCSS Nav

--------------------------------------------------------------------------------------------- */
/*アクティブになったエリア*/
#sp-nav.panelactive{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 999;
	top: 25px;
	width: 100%;
    height: 100vh;
}

/*丸の拡大*/
.circle-bg{
    position: fixed;
	z-index: 75;
    /*丸の形*/
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #fbfaf5;
    /*丸のスタート位置と形状*/
	transform: scale(0);/*scaleをはじめは0に*/
	right:-50px;
    top:-50px;
    transition: all .9s;/*0.9秒かけてアニメーション*/
}

.circle-bg.circleactive{
	transform: scale(50);/*クラスが付与されたらscaleを拡大*/
}

/*ナビゲーションの縦スクロール*/
#sp-nav-list{
    display: none;/*はじめは表示なし*/
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}
#sp-nav.panelactive #sp-nav-list{
     display: block; /*クラスが付与されたら出現*/
}


/*ナビゲーション*/
#sp-nav .sp-nav-wrap {
	opacity: 0;/*はじめは透過0*/
    /*ナビゲーション天地中央揃え※レイアウトによって調整してください。不必要なら削除*/
    position: absolute;
    z-index: 999;
    top: 200px;
    left: 30%;
	width: 40%;
    height: auto;
}

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

#sp-nav .sp-nav-wrap {
    top: 150px;
    left: 15%;
	width: 70%;
}
}

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

#sp-nav .sp-nav-wrap {
    left: 10%;
	width: 80%;
}
}

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

#sp-nav .sp-nav-wrap {
    top: 75px;
}
}

/*背景が出現後にナビゲーションを表示*/
#sp-nav.panelactive {
    opacity:1;
}

/* 背景が出現後にナビゲーション li を表示※レイアウトによって調整してください。不必要なら削除*/
#sp-nav.panelactive .sp-nav-wrap{
animation-name:gnaviAnime;
animation-duration:1s;
animation-delay:.2s;/*0.2秒遅らせて出現*/
animation-fill-mode:forwards;
opacity:0;
}
@keyframes gnaviAnime{
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}


/* ---------------------------------------------------------------------------------------------

   リストのレイアウト設定 Nav

--------------------------------------------------------------------------------------------- */
.sp-nav-wrap{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-bottom: 150px;
}

.nav-single {
    display: block;
    margin-bottom: 25px;
    font-weight: bold;
    padding: 10px;
    border-bottom: 0.5px solid #146091;
}
.nav-single span.nav-jp{
	font-size: clamp(14px, 2vw, 18px);
	color: #333;
    line-height: 2;
}
.nav-single span.nav-eg{
	font-size: clamp(24px, 2vw, 36px);
	color: #ccc;
    line-height: 1.25;
    font-family: "Quicksand", sans-serif;
    /*font-weight: normal;*/
}

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

.nav-single {
    margin-bottom: 0;
}
}



/* ---------------------------------------------------------------------------------------------

   横にめくれるボタン Nav

--------------------------------------------------------------------------------------------- */
/*== ボタン共通設定 */
.btn02{
    /*アニメーションの起点とするためrelativeを指定*/
    position: relative;
	overflow: hidden;
    /*ボタンの形状*/
	text-decoration: none;
	display: inline-block;
    outline: none;
    /*アニメーションの指定*/   
    transition: ease .2s;
    width: 47.5%;
}

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

.btn02{
    width: 100%;
}
    
}

/*ボタン内spanの形状*/
.btn02 span{
	position: relative;
	z-index: 3;/*z-indexの数値をあげて文字を背景よりも手前に表示*/
}
.btn02:hover span.nav-eg{
	color: #ccc;
}
.btn02:hover span.nav-jp{
	color: #fff;
}

/*== 背景が流れる（左から右） */
.bgleft02:before {
 	content: '';
 	position: absolute;
 	top: 0;
 	left: 0;
 	z-index: 2;
 	background: #146091;/*背景色*/
 	width: 100%;
	height: 100%;
    /*アニメーション*/
 	transition: transform .4s cubic-bezier(0.8, 0, 0.2, 1) 0s;
 	transform: scale(0, 1);
	transform-origin: right top;
}
/*hoverした際の形状*/
.bgleft02:hover:before{
	transform-origin: left top;
	transform:scale(1, 1);
}



/* ---------------------------------------------------------------------------------------------

   navi（ハンバーガー）ボタンのためのCSS

--------------------------------------------------------------------------------------------- */
@media screen and (max-width:1400px) {
    
.openbtn1{
    display: none;
}
}

.openbtn1{
	position:fixed;
	top: 1.5%;
	right: 1%;
	z-index: 9000;/*ボタンを最前面に*/
	cursor: pointer;
    width: 125px;/*ハンバーガー&カーソルエリア指定*/
    height: 75px;/*カーソルエリア指定*/
	display: none;
}
/*×に変化*/	
.openbtn1 span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 1px;
	background-color: #000;/*ハンバーガー色*/
  	width: 65%;
    box-shadow: 0 0 3px #fff,0 0 3px #fff,0 0 3px #fff;
}

@media screen and (max-width:1100px) {
    
.openbtn1{
	display: block;
}
}

@media screen and (max-width:700px) {
  
.openbtn1{
	top: 1%;
	right: 0;
    width: 100px;
    height: 50px;
}
}


.openbtn1 span:nth-of-type(1) {
	top:25.5px;	
}

.openbtn1 span:nth-of-type(2) {
	top:35.5px;
}

.openbtn1 span:nth-of-type(3) {
	top:45.5px;
}

.openbtn1.active span:nth-of-type(1) {
    top: 30px;
    left: 15px;
    transform: translateY(6px) rotate(-45deg);
    width: 65%;
}

.openbtn1.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn1.active span:nth-of-type(3){
    top: 42px;
    left: 15px;
    transform: translateY(-6px) rotate(45deg);
    width: 65%;
}









