@charset "UTF-8";
/* styles.css */

/* リセットCSS */
html, body, ul, ol, li, h1, h2, h3, h4, h5, h6, p, button {
  margin: 0;
  padding: 0;
}

/* ローディング */
/* 画面全体の設定 */
#loader_wrap {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  top: 0;
  background: #fff;
  }
  /* ローディングアニメーションの設定 */
  .loader {
  width: 150px;
  height: 150px;
  background: url("../39images/espen_logo.png") no-repeat;
  opacity: 0;
  animation: blink 1.5s infinite linear;
  }
  
  @keyframes blink {
  50% {
  opacity: 1;
  }
  }
  
  /* ローディング終了後 */
  .loaded {
  opacity: 0;
  visibility: hidden;
  }

/* 全体のスタイル */
body {
  padding-top: 60px; /* ヘッダーの高さを補うための余白を追加 */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #b4aecb;
  
}
/* div{
  border: 1px solid #f64343;
} */



header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background-color: #333;
  color: #fff;
  padding: 5px 0;

}

.nav-items li {
  
  list-style: none;
  padding-bottom: 30px;
  padding-top: 30px;
  text-align: center;
}

.nav-items a {
  /* position: relative; */
  text-decoration: none;
  /* color: #ff0000; */
  color: #fff;
  font-size: 1.4em;
}




.spf_logo {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
   
   
  }

.spf_logo img {
    width: 50px;
    margin-right: 18px;
    margin-top: 10px;
}

.timetable113 img{
	width: 90%;
}
.timetable114 img{
	width: 90%;
}
.timetable115 img{
	width: 90%;
}
.toiawaseobi img{
	width: 100%;
}

.timetableobi img{
	width:100%;
}
.espenobi img{
	width:100%;
}

.mapobi img{
	width:100%;
}
.map img{
	width:100%;
}
.kikakusagasuobi img{
	width:100%;
}

  
.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  padding: 0 20px; /*左右の余白確保*/
  height: inherit; /*親要素の高さを継承*/
  position: relative;

}

.timetable113 {
  display: flex;
  justify-content: center;
  padding-top: 0px;
  padding-bottom: 30px;
}
.timetable114 {
  display: flex;
  justify-content: center;
  padding-top: 0px;
  padding-bottom: 30px;
}
.timetable115 {
  display: flex;
  justify-content: center;
  padding-top: 0px;
  padding-bottom: 30px;
}

.kaisaigaiyou {
  display: flex;
  justify-content: center;
}

.kaisaigaiyou img {
  width: 60%;
}

.osirase {
  display: flex;
  justify-content: center;
  margin-top:70px;
}

.osirase img{
	/* display: flex;
  justify-content: center; */
	width:50%;
}

.logo_section {
    display: flex;
    justify-content: center;
    margin-top: 50px;
    margin-bottom: 50px;
}

.logo_zentai {
    display: flex;
    flex-direction: column;
    justify-content: center;
    
}

.logo_zenhan {
    display: flex;
    /* flex-wrap: wrap; */
}

.logo_kouhan{
    display: flex;
    flex-wrap: wrap;
}

.logo {
    align-items: center;
    padding: 10px;
}


.logo img {
  width: 230px;
  height: 230px;
  margin-bottom: 20px;
  
}

.logo img:hover {
  text-shadow:
  0 0 7px #fff,
  0 0 10px #fff,
  0 0 20px #fff,
  0 0 40px #b2ebf5,
  0 0 80px #b2ebf5,
  0 0 90px #b2ebf5
}


/* ロゴ */
.logo a{
    display: flex;
    flex-direction: column;
    padding: 30px;
    text-decoration: none;
    color: #44424d;
    text-align: center;
    font-size: 20px;
}

.logo a:hover {
  text-shadow:
		0 0 7px #fff,
		0 0 10px #fff,
		0 0 20px #fff,
		0 0 40px #64eaff,
		0 0 80px #64eaff,
		0 0 90px #64eaff,
}

.btn {
    position: relative; /* static以外を指定 */
    display: flex;
    align-items: center;
    justify-content: center;
    /* background-color: #6cc7f4; */
    color: #fff;
    transition: all 0.3s;
    cursor: pointer;
    text-decoration: none;
  }
  
  /* ボタンホバー時 */
  .btn:hover {
    /* background-color: #fff; */
    color: #6cc7f4;
    box-shadow: 0 0 20px 0 rgba(108, 199, 244, 0.5);
  }
/*comingsoonの設定（仮）あとで消す*/
.content td{
	position: relative;
	left:500;
	font-size:40px;
	color:#000000;
	font-weight: bold;
}

.comingsoon img{
	width:100%;
}
  
  /* キラキラ部分 */
  .star {
    position: absolute;
    display: block;
    width: 10px; /* キラキラの横幅を指定 */
    height: 10px; /* キラキラの縦幅を指定 */
    background-image: url("star.svg"); /* キラキラの画像のパスを記入 */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    animation: glitter 1s;
    pointer-events: none;
  }
  
  /* キラキラが発生するアニメーション */
  @keyframes glitter {
    0% {
      transform: scale(0);
      opacity: 0;
    }
  
    50% {
      transform: scale(1);
      opacity: 1;
    }
  
    100% {
      transform: scale(0);
      opacity: 0;
    }
  }

h1 {
  font-size: 30px;
  font-weight: bold;
}

h2 {
	font-size: 60px;
    color: #ffffff;
}

h3 {
  /* padding-left: 50px;
  padding-top: 50px; */
  font-size: 150%;
}

h3 {
  display: inline-block;
  align-items: center;
  line-height: 60px;
  position: relative;
  height: 60px;
  margin: 3em 9em 1em;
  padding: 0 2rem;
  text-align: center;
  color: #fff;
  background: #fa4141;
}

h3:before,
h3:after {
  position: absolute;
  top: 0;
  display: block;
  height: 48px;
  content: '';
  border: 30px solid #fa4141;
}

h3:before {
  left: -40px;
  border-left-width: 15px;
  border-left-color: transparent;
}

h3:after {
  right: -40px;
  border-right-width: 15px;
  border-right-color: transparent;
}

h3 span {
  position: relative;
  display: inline-block;
}

h4 {
  font-size: 40px;
  border-bottom: #6bb6ff;
}

h5 {
  font-size: 40px;
  color: #470455;
}

h6 {
	position: relative;
	padding-left: 30px;
  padding: 20px;
	font-size:20px;
	color: #325A8C;
  margin-top: 40px;
  background-color: #f0f4d7;
  border-radius: 10px;
  display: inline-block;
  
}
/* h6::before,
h6::after{
	content: "□";
	position: absolute;
  color: #fff5cb;
}
h6::before{
	left:0;
	top:-3px;
  color: #905df6;
}
h6::after{
	left: 5px;
	top: 3px;
	color: #fff5cb;
} */

.title-div {
  display: flex;
  justify-content: center;
}


p{
	font-size:20px;
}

/* .nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  
  border-radius: 4px;
  overflow: hidden;
}

.nav-menu li {
  margin-left: 0;
}

.nav-menu li a {
  color: #fff;
  text-decoration: none;
  padding: 5px 20px;
  display: block;
  transition: background-color 0.3s ease;
} */

.nav-menu li a:hover {
  /* color: #333;
  background-color: #6b2e2e; */
  
}

/* ヘッダーのナビ部分 */
.header_nav {
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  transform: translateX(100%); 
  background-color: #b4aecb; /*ハンバーガーメニュークリック時のナビゲーションメニュー背景色*/
  transition: ease .4s; /*ハンバーガーメニュークリック時のナビゲーションメニュー出現を遅延*/
}
/* ハンバーガーメニュー */
.header_hamburger {
  width: 48px;
  height: 100%;
}

.hamburger {
  background-color: transparent; /*buttonタグデフォルトスタイルを打ち消し*/
  border-color: transparent; /*buttonタグデフォルトスタイルを打ち消し*/
  z-index: 9999;
}

/* ハンバーガーメニューの線 */
.hamburger span {
  width: 100%;
  height: 1px;
  background-color: #f3ebeb;
  position: relative;
  transition: ease .4s; /*ハンバーガーメニュークリック時の三本線の動きを遅延*/
  display: block;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  margin: 8px 0;
}

.hamburger span:nth-child(3) {
  top: 0;
}

.header_nav.active {
  transform: translateX(0);
}

.hamburger.active span:nth-child(1) {
  top: 5px;
  transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  top: -13px;
  transform: rotate(-45deg);
}


/* ヒーローセクションのスタイル */
.hero {
  position: relative;
  background: url(../39images/hero_web.png) no-repeat center center fixed; /* デフォルト（デスクトップ）の画像 */
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}


/* えすぺんのページ */
.about_espen {
  display: flex;
  flex-direction: row;
  justify-content: center;
  
  margin-top: 100px;
}
.profile_espen {
  width: 450px;
  
}
.profile_haikei {
  background-color: #c0c0c0;
  padding: 20px;
}
.espen-img {
  width: 400px;
  padding-left: 40px;
  
}

.espen-img img {
  width: 400px;
  border-radius: 8%;
}

.interview {
  display: flex;
  flex-direction: column;
  margin-top: 100px;
}

.balloon5 {
  width: 100%;
  margin: 1.5em 0;
  overflow: hidden;
  display: flex;
  flex-direction: row;
}

.balloon5 .faceicon {
  /* float: left; */
  /* margin-right: -90px; */
 
  width: 10%;
    height: auto;
    margin-left: 420px;
}

.balloon5 .faceicon img{
  width: 100%;
  height: auto;
  border: solid 2px #ddded5;
  border-radius: 50%;
  background-color: beige;
}

.balloon5 .chatting {
  width: 100%;
}

.says {
  display: inline-block;
  position: relative; 
  margin: 5px 0 0 35px;
  padding: 17px 13px;
  border-radius: 12px;
  background: #d7ebfe;
}

.says:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 18px; 
  left: -24px;
  border: 12px solid transparent;
  border-right: 12px solid #d7ebfe;
}

.says p {
  margin: 0;
  padding: 0;
}





.SNS {
  margin-top: 100px;
  display: flex;
  justify-content: center;
  flex-direction: row;
  align-items: center;
}


/* 他大学コラボ */


.tadaigakukorabo img{
  width: 100%;
}

.university {
  text-align: center;
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}


.university div {
  display: inline-block;
  border-radius: 10px;
}




/* スマートフォン向けのスタイル */
@media only screen and (max-width: 820px) {
  .hero {
    background: url("../39images/hero_phone.JPG"); 
    /* ここで 'contain' を使用して画像をビューポートに収め、中央に配置しています。 */
    background-size: cover;
    height: 100vh;
  }

  .hero-content {
    z-index: 2;
    /* margin-top: 100%; */
  }
}



.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.3); /* 背景画像を暗くするためのオーバーレイ */
}

/* その他のセクションのスタイル */


.performer {
  margin-bottom: 40px;
}

/* フッターのスタイル */
footer {
  background-color: #333;
  color: #fff;
  padding: 20px 0;
  text-align: center;
  /* position: absolute;
  bottom: 0;
  width: 100%; */
}

footer p {
  font-size: 20px;
}



/* アニメーション */
/* fadeUp */

.fadeUp{
    animation-name:fadeUpAnime;
    animation-duration:0.8s;
    animation-fill-mode:forwards;
    opacity:0;
    }
    
    @keyframes fadeUpAnime{
      from {
        opacity: 0;
      transform: translateY(100px);
      }
    
      to {
        opacity: 1;
      transform: translateY(0);
      }
    }
    /* スクロールをしたら出現する要素にはじめに透過0を指定　*/
    .fadeUpTrigger{
            opacity: 0;
        }

    .fadeUp2{
            animation-name:fadeUpAnime;
            animation-duration:1.0s;
            animation-fill-mode:forwards;
            opacity:0;
        }
                    
    .fadeUpTrigger2{
            opacity: 0;
        }
    
    .fadeUp3{
        animation-name:fadeUpAnime;
        animation-duration:1.3s;
        animation-fill-mode:forwards;
        opacity:0;
    }
                 
    .fadeUpTrigger3{
        opacity: 0;
    }

    .fadeUp4{
        animation-name:fadeUpAnime;
        animation-duration:0.8s;
        animation-fill-mode:forwards;
        opacity:0;
    }
                
    .fadeUpTrigger4{
        opacity: 0;
    }

    .fadeUp5{
        animation-name:fadeUpAnime;
        animation-duration:1.0s;
        animation-fill-mode:forwards;
        opacity:0;
    }
                
    .fadeUpTrigger5{
        opacity: 0;
    }

    .fadeUp6{
        animation-name:fadeUpAnime;
        animation-duration:1.3s;
        animation-fill-mode:forwards;
        opacity:0;
    }
                
    .fadeUpTrigger6{
        opacity: 0;
    }
    

/* キラキラボタンテスト */
/* ボタン本体 */
.btn {
    position: relative; /* static以外を指定 */
	left: 63px;
	top:10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 60px;
    border-radius: 100px;
    background-color: #6cc7f4;
    color: #fff;
    font-family: "Signika";
    font-size: 1.2em;
    font-weight: bold;
    transition: all 0.3s;
    cursor: pointer;
  }
  
  /* ボタンホバー時 */
  .btn:hover {
    background-color: #fff;
    color: #6cc7f4;
    box-shadow: 0 0 20px 0 rgba(108, 199, 244, 0.5);
  }
  
  /* キラキラ部分 */
  .star {
    position: absolute;
    display: block;
    width: 10px; /* キラキラの横幅を指定 */
    height: 10px; /* キラキラの縦幅を指定 */
    background-image: url("star.svg"); /* キラキラの画像のパスを記入 */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    animation: glitter 1s;
    pointer-events: none;
  }
  
  /* キラキラが発生するアニメーション */
  @keyframes glitter {
    0% {
      transform: scale(0);
      opacity: 0;
    }
  
    50% {
      transform: scale(1);
      opacity: 1;
    }
  
    100% {
      transform: scale(0);
      opacity: 0;
    }
  }


/* 本部企画カード */
/* .card_container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.kikau_card {
 
  position: relative;
  width: 30%;
	height: 400px;
	background-color: rgb(227, 234, 255);
  list-style: none;
  text-decoration: none;
  margin: 20px;
  border-radius: 5%;
} */

/* .kikau_card img {
  padding: 20px 50px 0px 50px;
  width: 60%;
  height: 60%;
}

.kikaku_title {
  font-size: 40px;
  color: #a589ff;
}

.kikaku_setumei {
  color: #545050;
  font-size: 15px;
} */


.kikakucard {
  /* padding: 40px; */
}

/* .title_kikaku {
  margin-left: 40px;
} */
a.btn7 {
  background: #6bb6ff;
  border-radius: 4px;
  box-shadow: 0 2px 0px 0 rgba(0,0,0,0.25);
  color: #ffffff;
  display: inline-block;
  padding: 6px 30px 6px;
  position: relative;
  text-decoration: none;
  transition: all 0.1s 0s ease-out;
  font-weight: 600;
  letter-spacing: 0.04rem;
}
.no-touch a.btn7:hover {
  background: #00a2ad;
  box-shadow: 0px 8px 2px 0 rgba(0,0,0,0.075);
  transform: translateY(-2px);
  transition: all 0.25s 0s ease-out;
}
.no-touch a.btn7:active, a.btn7:active {
  background: #008a93;
  box-shadow: 0 1px 0px 0 rgba(255,255,255,0.25);
  transform: translate3d(0,1px,0);
  transition: all 0.025s 0s ease-out;
}
ul.cards7 {
  border: none;
  padding: 60px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
ul.cards7::after {
  display: block;
  content:"";
  width: 28%;
  }
li.card7 {
  display: inline-block;
  perspective: 1000;
  position: relative;
  text-align: left;
  transition: all 0.3s 0s ease-in;
  width: 28%;
  z-index: 1;
  border-radius: 2px;
  background: #fff;
  box-shadow: 0 0 3px 0 rgb(0 0 0 / 12%), 0 2px 3px 0 rgb(0 0 0 / 22%);
  padding: 0px;
  cursor: pointer;
  margin-bottom: 25px;
}


li.card7 img {
  width: 100%;
}
li.card7 .card__image-holder {
  background: rgba(0,0,0,0.1);
  height: 0;
  padding-bottom: 57%;
  overflow: hidden;
}
li.card7 .card__image-holder img {
  transition: all 0.1s 0s ease-in;
}
li.card7:hover > .card__image-holder img {
  /* transform: scale(1.05); */
}
li.card7 div.card-title {
  background: #ffffff;
  padding: 8px 18px 14px;
  position: relative;
  z-index: 0;
}
li.card7 div.card-title a.toggle-info {
  border-radius: 32px;
  height: 32px;
  padding: 0;
  position: absolute;
  right: 16px;
  top: 8px;
  width: 32px;
  margin: 0 !important;
}
li.card7 div.card-title a.toggle-info span {
  background: #ffffff;
  display: block;
  height: 2px;
  position: absolute;
  top: 16px;
  transition: all 0.15s 0s ease-out;
  width: 12px;
}
li.card7 div.card-title a.toggle-info span.left {
  right: 14px;
  transform: rotate(45deg);
}
li.card7 div.card-title a.toggle-info span.right {
  left: 14px;
  transform: rotate(-45deg);
}
li.card7 div.card-title p {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.05em;
  margin: 6px 0 3px;
  padding: 0;
  line-height: 1.56;
  color: #555;
}
li.card7 div.card-title p.card_timecategory {
  display: flex;
  flex-flow: row;
  font-weight: 600;
  font-size: 0.85rem;
  justify-content: flex-start;
  letter-spacing: 0.02rem;
  color: #595959;
  position: relative;
}
li.card7 div.card-title p small {
  display: block;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: -0.025em;
}
li.card7 div.card-description {
  padding: 0px 20px 20px;
  position: relative;
  font-size: 0.9rem;
  color: #313131;
}
li.card7 div.card-actions {
  box-shadow: 0 2px 0px 0 rgba(0,0,0,0.075);
  padding: 10px 15px 15px;
  text-align: center;
}
li.card7 div.card-flap {
  background: #d9d9d9;
  position: absolute;
  width: 100%;
  transform-origin: top;
  transform: rotateX(-90deg);
  box-shadow: 0 0 3px 0 rgb(0 0 0 / 12%), 0 2px 3px 0 rgb(0 0 0 / 22%);
}
li.card7 div.flap1 {
  transition: all 0.3s 0.3s ease-out;
  z-index: -1;
}
li.card7 div.flap2 {
  transition: all 0.3s 0s ease-out;
  z-index: -2;
}
ul.cards7.showing li.card7 {
  cursor: pointer;
  opacity: 0.6;
  transform: scale(0.88);
}
.no-touch ul.cards7.showing li.card7:hover {
  opacity: 0.94;
  transform: scale(0.92);
}
li.card7.show {
  opacity: 1 !important;
  transform: scale(1) !important;
}
li.card7.show div.card-title a.toggle-info {
  background: #ff6666 !important;
}
li.card7.show div.card-title a.toggle-info span {
  top: 15px;
}
li.card7.show div.card-title a.toggle-info span.left {
  right: 10px;
}
li.card7.show div.card-title a.toggle-info span.right {
  left: 10px;
}
li.card7.show div.card-flap {
  background: #ffffff;
  transform: rotateX(0deg);
}
li.card7.show div.flap1 {
  transition: all 0.3s 0s ease-out;
}
li.card7.show div.flap2 {
  transition: all 0.3s 0.2s ease-out;
}
.card-actions a {
  padding-right: 45px;
  padding-left: 45px;
  border-radius: 3px;
  box-shadow: 0 2px 3px rgb(0 0 0 / 20%), 0 2px 3px -2px rgb(0 0 0 / 15%);
}
.card-actions a.btn7:hover {
  /* box-shadow: 0 13px 20px -3px rgb(0 0 0 / 24%);
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  transform: translateY(-3px); */
}
.card-actions a.btn7:after {
  /* font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f105";
  position: absolute;
  right: 7px;
  top: 50%;
  transform: translateY(-50%); */
}



/* フッター */

.koukoku {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-top: 20px;
}

.koukoku img {
  height: 100px;
}

.container_footer {
  display: flex;
  justify-content: center;
  margin-top: 8px;
  margin-bottom: 0px;
}

/* レスポンシブデザインのスタイル */
@media screen and (max-width : 768px ){

  h1 {
    font-size: 120%;
  }
  h3{
    margin: 1.5em 2em 1em;
    padding: 0 0.7rem;
  }
  body {
    padding-top: 40px;
  }

  header {
    padding: 0px 0;
  }
  
  .spf_logo img {
    margin-top: 10px;
  }


  .kaisaigaiyou img {
    width: 100%;
  }

  .logo_zentai {
    display: flex;    
  }

  .logo_zenhan {
    display: flex;
    flex-direction: column;
  }

  .logo_kouhan {
    display: flex;
    flex-direction: column;
  }

  .logo {
    margin-bottom: 10px;
    display: flex;
   flex-direction: column;
  }



  .logo_img {
    width: 80%;
  }

  .nav-menu {
    flex-direction: column;
    width: 100%;
  }

  .nav-menu li a {
    padding: 5px;
  }

  .hero {
    padding: 50px 0;
  }

  section {
    padding: 40px 0;
  }


  ul.cards7 {
    border: none;
    /* padding: 40px; */
    margin: 0 auto;
    display: flex;
    flex-direction: column;
  }

  footer {
    padding: 10px 0;
  }



/*========= ぼかしのためのCSS ===============*/

/* .mainblur{
	filter: blur(8px);
} */

/* フッター */
.koukoku {
  
  flex-direction: column;
  /* justify-content: center;
  margin-top: 20px; */
}

.koukoku img {
  height: 60px;
}

.container_footer {
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin-top: 8px;
  margin-bottom: 0px;
}


  ul.cards7 {
    
      border: none;
      padding: 40px;
      margin: 0 auto;
      display: flex;
    flex-direction: column;
  }
  li.card7 {
    width: 100%;
  }


  .about_espen {
    margin-top: 70px;
    flex-direction: column;
    justify-content: center;
  }

  .profile_espen {
    width: 100%;
  }

  .espen-img {
    padding: 0px;
    width: 100%;
    
  }

  .espen-img img {
    /* margin: 10px; */
    width: 60%;
   
  }

  .balloon5 .faceicon {
    margin-left: 2%;
    width: 20%;
  }

  .says {
    margin: 5px 0 0 6%;
  }

  .osirase {
    display: flex;
    justify-content: center;
    margin-top:0px;
  }
  
  .osirase img{
    /* display: flex;
    justify-content: center; */
    width:90%;
  }

  .tadaigakukorabo {
    padding-top: 70px;
    padding-bottom: 0px;
  }
}



/*PC時のナビゲーションメニュー、横並びにする*/
@media screen and (min-width: 960px) {
  .nav_items {
    width: 100%;
    display: flex;
    align-items: center;
    height: initial;
    justify-content: space-between;
  }

  .header_nav {
    position: static;
    transform: initial;
    background-color: inherit;
    height: inherit;
    display: flex;
    justify-content: end;
    width: 50%;
  }

  .nav-items {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    
    border-radius: 4px;
    overflow: hidden;
  }
  
  .nav-items li {
    margin-left: 0;
    padding-bottom: 10px;
    padding-top: 10px;
  }
  
  .nav-items li a {
    position: relative;
    font-size: 20px;
    color: #fff;
    /* color: #ff0000;; */
    text-decoration: none;
    padding: 5px 10px;
    display: inline-block;
    overflow: hidden;
    /* transition: background-color 0.3s ease; */
  }

  /*キラッと光る*/
.nav-items li a::before {
	content:'';
    /*絶対配置でキラッと光るの位置を決める*/
	position: absolute;
	top: 0;
	left: -75%;
    /*キラッと光る形状*/
  width: 50%;
	height: 100%;
	background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
	transform: skewX(-25deg);
}

/*hoverした際の移動のアニメーション*/
.nav-items li a:hover::before {
	animation: shine 0.9s;
}

@keyframes shine {
	100% {
		left: 125%;
	}
}
  
 

}

.nav-items {
  padding: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
@media screen and (min-width: 960px) {
.nav-items {
   position: inherit;
   top: 0;
   left: 0;
   transform: translate(0, 0);
  }
}


/* ナビのリンク */
.nav-items_item a {
  color: black;
  width: 100%;
  display: block;
  text-align: center;
  font-size: 20px;
  margin-bottom: 24px;
}
@media screen and (min-width: 960px) {
.nav-items_item a {
   margin-bottom: 0;
  }
}

/*ハンバーガーメニュー*/
.hamburger {
  background-color: transparent;
  border-color: transparent;
  z-index: 9999;
}
@media screen and (min-width: 960px) {
  /*PC時非表示にする*/
  .hamburger {
    display: none;
  }
}




