@charset "UTF-8";

html {
  font-size: 100%;
}

body {
  color: #121212;
  font-size: 0.9rem;
  line-height: 1.7;
}

a {
  color: #121212;
  text-decoration: none;
}

img {
  max-width: 100%;
}

li {
  list-style: none;
}

.site-title {
  line-height: 1px;
}

.site-title a {
  display: block;
}

.sec-title {
  font-size: 2.25rem;
  margin-bottom: 30px;
  text-align: center;
}

.fadein {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s;
}

/*-- #header -------------------------*/
#header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 20px 40px;
  position: fixed;
  z-index: 10;
  background-color: #fff;
}

#navi {
  display: block;
  position: fixed;
  top: 0;
  bottom: 0;
  left: -300px;
  opacity: 0;
  width: 300px;
  padding: 60px 25px;
  background-color: #121212;
  color: #fff;
  /* 横軸が画面からはみ出した場合は隠す */
  overflow-x: hidden;
  /* 縦軸が画面からはみ出した場合スクロールバーを表示する */
  overflow-y: auto;
  /* 下記１行 */
  /* この機能は標準ではなく、標準化の予定もありません。公開されているウェブサイトには使用しないでください。ユーザーによっては使用できないことがあります。実装ごとに大きな差があることもあり、将来は振る舞いが変わるかもしれません。 */
  /* touch 惰性付きのスクロールで、コンテンツはスクロールのジェスチャーが終了し、タッチパネルから指を離した後もスクロールを続けます。スクロールを続ける速度と期間は、スクロールのジェスチャーがどれだけすばやく行われたかによります。また、新しい重ね合わせコンテキストを生成します */
  /*-webkit-overflow-scrolling: touch;*/
  transition: all 0.5s;
  z-index: 20;
}

#navi a {
  color: #fff;
}

.open #navi {
  opacity: 1;
  left: 0;
}

#navi ul {
  /* デフォルトで設定されている値を0に設定 */
  margin: 0;
  padding: 0;
}

#navi ul.nav-menu {
  margin-bottom: 60px;
  border-top: solid 1px #fff;
}

#navi ul.nav-menu li {
  padding: 20px 0;
  border-bottom: solid 1px #fff;
  position: relative;
  margin: 0;
}

#navi ul.nav-sns li {
  padding: 5px 0;
}

.toggle_btn {
  display: block;
  width: 30px;
  height: 30px;
  position: fixed;
  top: 25px;
  right: 45px;
  transition: all 0.5s;
  cursor: pointer;
  z-index: 20;
}

.toggle_btn span {
  display: block;
  background-color: #333;
  position: absolute;
  left: 0;
  width: 30px;
  height: 2px;
  border-radius: 4px;
  transition: all 0.5s;
}

.toggle_btn span:nth-child(1) {
  top: 4px;
}

.toggle_btn span:nth-child(2) {
  top: 14px;
}

.toggle_btn span:nth-child(3) {
  bottom: 4px;
}

.open .toggle_btn span {
  background-color: #fff;
}

.open .toggle_btn span:nth-child(1) {
  transform: translateY(10px) rotate(-315deg);
  -webkit-transform: translateY(10px) rotate(-315deg);
}

.open .toggle_btn span:nth-child(2) {
  opacity: 0;
}

.open .toggle_btn span:nth-child(3) {
  transform: translateY(-10px) rotate(315deg);
  -webkit-transform: translateY(-10px) rotate(315deg);
}


#mask {
  display: none;
  transition: all 0.5s;
}

.open #mask {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.8;
  z-index: 10;
  cursor: pointer;
}

/*-- #main -------------------------*/
#main {
  padding-top: 80px;
}

#bg-video {
  width: 100%;
}

/*-- #pickup -------------------------*/
#pickup {
  width: 100%;
  padding: 100px 0 50px 0;
}

#pickup .slick-area {
  /* 改行分の隙間をなくす */
  font-size: 0;
}

#pickup .slick-area li {
  padding: 0 30px;
}

/*-- #feature -----------------------*/
#feature {
  /* 下記２行の方がスッキリしそう・・・どちらでも見た目に変化なし */
  /*padding: 50px 16px 50px 16px;
  margin: 0 auto 10px auto;*/
  padding: 100px 16px 50px 16px;
  margin: -50px auto 10px auto;
  
}

#feature .grid {
  display: grid;
  /* row-gap, column-gap の一括指定 */
  gap: 26px;
  /* repeat関数(繰り返す回数,トラックの幅)のトラックの幅の指定にminmax関数(min, max)を使用する */
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

#feature .grid .item {
  transition: all 0.3s ease;
  box-shadow: 0 0 8px 4px #ccc;
}

#feature .grid img {
  vertical-align: top;
}

#feature .grid .item-content {
  padding: 30px;
}

#feature .grid .item-cat {
  font-size: 0,75rem;
  margin-bottom: 20px;
}

#feature .grid .item-text {
  font-weight: bold;
  margin-bottom: 20px;
}

#feature .grid .item-date {
  font-size: 0.75rem;
  text-align: right;
}

/*-- #contact -----------------------*/
#contact {
  padding: 50px 0;
  background-color: #121212;
  color: #fff;
}

#contact .sec-title {
  color: #fff;
}

#contact .content {
  display: flex;
  justify-content: space-between;
  padding: 0 16px;
  max-width: 1240px;
  margin: 0 auto;
}

#contact .contact-info,
#contact .contact-form {
  width: 45%;
}

#contact .contact-info p {
  margin-bottom: 30px;
}

#contact .contact-form input,
#contact .contact-form textarea {
  background-color: #fff;
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
}

#contact .contact-form .button input {
  width: 200px;
  background-color: #121212;
  color: #fff;
  border: solid 1px #fff;
  padding: 12px;
  margin-bottom: 0;
}

#contact .contact-form .button input:hover {
  color: #121212;
  background-color: #fff;
}

#footer {
  padding: 10px;
  font-size: 0.75rem;
  text-align: center;
  color: #fff;
  background-color: #121212;
}

/*-- レスポンシブ(スマホ) -----------------*/
@media screen and (max-width: 600px) {
  .sec-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }

  /*-- レスポンシブ(スマホ) #header -------*/
  #header {
    padding: 20px 16px;
  }

  #navi {
overflow-y: hidden;
  }

  .toggle_btn {
    right: 20px;
  }

  /*-- レスポンシブ(スマホ) #main ---------*/
  #bg-video {
    width: 100%;
    height: 100vh;
    object-fit: cover;
  }

  /*-- レスポンシブ(スマホ) #pickup -------*/
  #pickup {
    padding: 80px 0;
  }

  #pickup .slick-area li {
    padding: 0 20px;
  }

  /*-- レスポンシブ(スマホ) #feature -------*/
  #feature {
    padding: 80px 16px;
  }

  #feature .grid .item-content {
    padding: 16px;
  }

  /*-- レスポンシブ(スマホ) #contact ------*/
  #contact {
    padding: 80px 0;
  }

  #contact .content {
    flex-direction: column;
  }

  #contact .contact-info,
  #contact .contact-form {
  width: 100%;
  }

#contact .contact-form .button input {
  width: 100%;
}

}