@charset "UTF-8";
/* CSS Document */
.sp-nav{
	display: block;
}
.pc-nav{
	display: none;
}

/*========= ナビゲーションのためのCSS ===============*/

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

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

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

/*ナビゲーションの縦スクロール*/

#g-nav-list{
  display: none;/*はじめは表示なし*/
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999; 
  width: 100%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

#g-nav.panelactive #g-nav-list{
  display: block; /*クラスが付与されたら出現*/
}

/*ナビゲーション*/
#g-nav{
  background: #f47443;
}

#g-nav ul {
  opacity: 0;/*はじめは透過0*/
  /*ナビゲーション天地中央揃え※レイアウトによって調整してください。不必要なら削除*/
  position: absolute;
  z-index: 999;
  top:50%;
  left:50%;
  transform: translate(-50%,-50%);
  width: 70%;
}

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

/* 背景が出現後にナビゲーション li を表示※レイアウトによって調整してください。不必要なら削除*/
#g-nav.panelactive ul li{
  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;
  }
}


/*リストのレイアウト設定*/
#g-nav li{
	text-align: center; 
	list-style: none;
}
#g-nav li{
  padding:10px;
  margin: 0 auto;
}
#g-nav li a{
  display: block;
  color: #fff;
  padding:5px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
  }

#g-nav li a img{
  padding-right: 10px;
  width: 30px;
  vertical-align: middle;
}

/*========= ボタンのためのCSS ===============*/
.openbtn{
  position:fixed;
  top:10px;
  right: 10px;
  z-index: 9999;/*ボタンを最前面に*/
  cursor: pointer;
  width: 50px;
  height:50px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #f47443;
}
	
/*×に変化*/	
.openbtn span{
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background-color: #212020;
  width: 45%;
}

.openbtn span:nth-of-type(1) {
	top:15px;	
}

.openbtn span:nth-of-type(2) {
	top:23px;
}

.openbtn span:nth-of-type(3) {
	top:31px;
}

.openbtn.active span:nth-of-type(1) {
  top: 17px;
  left: 13px;
  transform: translateY(6px) rotate(-45deg);
  width: 50%;
}

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

.openbtn.active span:nth-of-type(3){
  top: 30px;
  left: 13px;
  transform: translateY(-6px) rotate(45deg);
  width: 50%;
}
/**************************************************
breadcrumb
**************************************************/
.breadcrumb{
	color:#004AC4; 
	border-top:solid #004AC4 1.5px;
	
}
.breadcrumb {
    background: #F7F7F7;
	padding: 12px 0;
}
.breadcrumb span{
	font-size: 15px;
	font-size: 1.5rem;
	color: #212020;
	margin-left: 5px;
	margin-right: 5px;
} 
.breadcrumb a span:hover{
	color: #004AC4;
	opacity: 1;
}

/**************************************************
footer
**************************************************/
#page_top{
  position: fixed;
  z-index: 1;
  right: 5%;
  bottom: 3%;
}
#page_top a{
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 20px;
  background-color: #f47443;
  position: relative;
}
#page_top a::before{
font-family: "Font Awesome 5 Free";
  content: '\f176';
  font-weight: 600;
  color: #fff;
  position: absolute;
  left: 50%;
	top:50%;
transform: translate(-50%,-50%);
}


#footer {
  background: #fcf8e8;
  border-top: 2px solid #f47443;
}
#footer address {
  width: 100%;
}
#footer .logo{
  max-width: 200px;
  margin-bottom: 25px;
}

#footer .f-nav{
  max-width: 600px;
  margin-top: 40px;
}
#footer .f-nav ul{
  width: 100%;
}
#footer .f-nav li{
  max-width: 200px;
  margin-bottom: 10px;
}
#footer .f-nav .nav-box01 a,
#footer .f-nav .nav-box02 a{
  display: block;
  width: 100%;
  color: #f47443;
  position: relative;
}
#footer .f-nav .nav-box02 a{
  color: #212020;
}
#footer .f-nav a::after{
  position: absolute;
  right: 0;
  top: -10%;
  font-family: "Font Awesome 5 Free";
  content: '\f0a9';
  font-weight: bold;
  font-size: 120%;
}
#footer .f-nav a:hover::after{
  right: -5px;
  transition: all .3s;
}
.copyright{
  padding: 5px 0;
  text-align: center;
  color: #fff;
  background: #f47443;
}



@media screen and (min-width: 600px) {
  #footer .f-nav .nav-box01,
  #footer .f-nav .nav-box02{
    width: 260px;
  }

}/*================== PC(min-width:  600px)ここまで ==================*/



@media screen and (min-width: 1024px) {
	
.sp-nav{
	display: none;
}
.pc-nav{
	display: block;
}
/*========= スクロール途中からヘッダーの高さが小さくなるためのCSS ===============*/
#header{
  /*はじめの高さを設定*/
  height: auto;
  width:100%;
  /*以下はレイアウトのためのCSS*/
  background:#fff;
}

/*HeightMinというクラス名がついたら高さを小さく、上部固定に*/
  #header.HeightMin{
    position: fixed;
    top: 0;
    z-index: 999;/*最前面へ*/
    height:auto;
    animation: DownAnime 0.5s forwards;
  }
  
  @keyframes DownAnime{
    from {
      opacity: 0;
      transform: translateY(-170px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  #header.HeightMin .logo{
    /*width: 100px;
    padding: 15px 0;*/
    display: none;
  }


  #header nav ul{
    display: flex;
    list-style: none;
    justify-content: center;
    background: #f47443;
  }
  #header nav ul li{
    display: flex;
    list-style: none;
    justify-content: center;
    padding:10px 20px;
    background: #f47443;
  }
  #header nav ul li a{
    display: block;
    text-decoration: none;
    color: #fff;
    font-size: clamp(14px, 0.7318rem + 0.5vw, 16px);
  }
  
  #header nav ul li a img{
    padding-right: 5px;
    width: 30px;
    vertical-align: middle;
  }

/**************************************************
#page_top
**************************************************/
  .ft-con{
  position: relative;
  }
  #page_top {
  position: absolute;
  z-index: 1;
  top: -25px;
  }
  #page_top a {
  border-radius: 50%;
  width: 50px;
  height: 50px;
  }
  
  
/**************************************************
footer
**************************************************/
  #footer address {
    width: 45%;
  }

  #footer .f-nav{
    width: 55%;
    margin-top: 0;
  }



}/*================== PC(min-width: 1024px)ここまで ==================*/
