@charset "utf-8";
/* ============================================================================
CSS information
 style info :  サイト全体の共通構造
/* ============================================================================

/*webフォント読み込み*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;600&family=Roboto+Condensed:wght@400;700&display=swap');

html{ font-size: 62.5%;}
body{
  font-family: 'Noto Sans JP', sans-serif,"游ゴシック体", YuGothic, "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans";
  font-size: 1.4rem;
  font-weight: 400;
  font-feature-settings:"palt"; /*自動カーニング*/
  letter-spacing: .05em; /*自動カーニングで詰まりすぎに感じたので*/
  color: #333;
  line-height: 1.5;
}

/*リンク*/
a{
  text-decoration: none;
  display: block;
}
h1,h2{
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  line-height: 1;
  font-size: 2.4rem;
  display: inline-block;
}
@media (min-width:840px){
  h1,h2{
    font-size: 2.6rem;
  }
}

.pc-view{
  display: none;
}
@media (min-width:840px) {
  .pc-view{
    display: block;
  }
  .sp-view{
    display: none;
  }
}


/*==================================================
ハンバーガーボタン
===================================*/

/*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/
.openbtn{
	/*ボタン内側の基点となるためrelativeを指定。
追従するナビゲーションの場合はfixed＋top、rightといった位置をセットで指定*/
	position: fixed;
	background:#0C0F4C;
	cursor: pointer;
  width: 44px;
  height:44px;
  right: 0;
  z-index: 9999;
}

/*ボタン内側*/
.openbtn .openbtn-area{
  transition: all .4s;/*アニメーションの設定*/
	width:44px;
	height:44px;
}

.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
	  background: #fff;
  	width: 17px;
  }

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

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

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

/*activeクラスが付与されると .openbtn-areaが360度回転し、その中の線が回転して×に*/
.openbtn.active .openbtn-area{
	transform: rotate(360deg);
}

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

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

.openbtn.active span:nth-of-type(3){
    top: 26px;
    left: 14px;
    transform: translateY(-6px) rotate(45deg);
    width: 40%;
}

/*==================================================
ナビゲーションメニュー
===================================*/
#g-nav{
  padding-top: 44px;
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position:fixed;
  z-index: 999;
  /*ナビのスタート位置と形状*/
  top: 0;
  right:-120%;
  width:180px;
  height: 100vh;/*ナビの高さ*/
  background:#0C0F4C;
    /*動き*/
  transition: all 0.4s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
  right: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999; 
  width: 100%;
  height: 100vh;/*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
  /*ナビゲーション天地中央揃え*/
  position: absolute;
  z-index: 999;
}

/*リストのレイアウト設定*/

#g-nav li{
  list-style: none;
  text-align: left; 
}
#g-nav li .icon-instagram,#g-nav li .icon-youtube,#g-nav li .icon-twitter{
  width: 20px;
  height: 20px;
  display: inline;
  padding-top: .5rem;
  padding-right: .5rem;
}

#g-nav li a{
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  padding:10px 0 10px 30px;
  display: block;
  text-transform: uppercase;
  font-size: 1.8rem;
}

#g-nav p{
  font-size: 1.4rem;
  position: absolute;
  color: #fff;
  top: 80%;
  width: 162px;
  padding-left: 30px;
}
/*==================================================
ヘッダーロゴ
===================================*/
.header_logo_top{
  width: 92px;
  position: fixed;
  top: 10px;
  left: 15px;
  transition: all 0.6s ease;
  z-index: 99999;
}
.header_logo_top.isSmall{
  width: 50px;
  top: 7px;
  left: 10px;
}

.header_logo{
  width: 50px;
  position: fixed;
  top: 7px;
  left: 10px;
  z-index: 99999;
}

/*==================================================
ヘッダー
===================================*/
header{
  position: fixed;
  width: 100%;
  height: 50px;
  padding: 0;
  z-index: 9999;
}
.header_logo_top-pc{
  position: absolute;
  top: 30px;
  left: 5%;
  width: 150px;
  transition: all 0.6s ease;
  z-index: 99999;
}
.header_logo_top-pc.isSmall{
  width: 80px;
  top: 20px;
}
.header_nav{
  display: flex;
  justify-content: right;
  gap: 30px;
}
.header_nav li a{
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: #fff;
}
.header_nav li a img{
  width: 18px;
  display: inline;
  margin:0 .7rem -2px 0;
}

.header_logo-pc{
  width: 80px;
  position: fixed;
  top: 20px;
  left: 5%;
  z-index: 99999;
}
@media (min-width:840px){
  header{
    background: #0C0F4C;
    padding: 13px 5%;
  }
}
/*==================================================
フッター
===================================*/
.footer {
  width: 100%;
  margin: 0;
  position: relative;
  overflow: hidden;
  margin-top: -110px;
  padding: 0 5% 20px;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #0C0F4C;
  transform: skewY(-7deg) translateY(50px);
  z-index: -1;
}
.footer_logo {
  width: 93px;
  margin: 0 auto 10px;
}
.footer nav {
  margin-bottom: 30px;
}
.footer nav ul li {
  margin-bottom: 15px;
}
.footer nav ul li a{
  display: block;
  color: #fff;
}
.footer_sns {
  margin-bottom: 25px;
  text-align: center;
}
.footer_sns div{
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 10px;
}
.footer_sns img {
  width: 45px;
}
.footer_sns p {
  color: #fff;
}
.footer small {
  color: #fff;
  display: block;
  text-align: center;
}

@media (min-width:430px){
  .footer {
    margin-top: -200px;
  }
  .footer_logo {
    width: 93px;
    margin: 0 auto 30px;
  }
  .footer::before {
    transform: skewY(-4deg) translateY(50px);
  }
  .footer nav ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-bottom: 30px;
  }
}

@media (min-width:840px){
  .footer {
    padding: 0 5% 20px;
  }
  .footer::before {
    transform: skewY(-4deg) translateY(85px);
  }
  .footer_logo {
    width: 150px;
  }
  .footer nav ul li {
    margin-bottom: 0;
  }
  .footer_sns {
    margin-bottom: 20px;
  }
  .footer_sns div{
    gap: 30px;
    margin-bottom: 15px;
  }
  .footer_sns p {
    font-size: 1.6rem;
  }
}