
@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-title1 {
  font-size: 2.5rem;
  margin: 50px 0 30px;
  text-align: center;
  line-height: 3.5rem;
  letter-spacing: 0.6rem;
  padding: 2rem;
}
.sec-title2 {
  font-size: 2.5rem;
  margin: 50px 0 30px;
  text-align: center;
}
.sec-title3 {
  font-size: 2.5rem;
  margin: 3% 0 30px;
  text-align: center;
  color: white;
}
.sec-title4 {
  font-size: 2.5rem;
  margin: 50px 0 30px;
  text-align: center;
}

/*
フェード表示させる要素に使用するためのクラス
*/
.fadein {
  opacity : 0;
  transform: translateY(20px);
  transition: all 1s;
}

/*-------------------------------------------
ヘッダー
-------------------------------------------*/
/*
「position: fixed;」でヘッダーを固定し、「z-index: 10;」で前面に表示
※他のコンテンツでpositionをrelative、absolute、fixedのいずれかに
設定している場合は、z-indexの数値が大きい方が前面に表示される
*/
#header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 30px 40px;
  position: fixed;
  z-index: 10;
  background-color: #fff;
}
/*
ハンバーガーメニュー
解説は、「中級編：ストアサイト（インテリア）」のCSS参照
*/
#navi {
  display: block;
  position: fixed;
  top: 0;
  right: -300px;
  bottom: 0;
  width: 300px;
  color: #000;
  padding: 60px 25px;
  background-color: #fff;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: all .5s;
  z-index: 20;
  opacity: 0;
}
#navi a {
  color: #000;
  font-weight: bold;
}
.open #navi {
  right: 0;
  opacity: 1;
}
#navi ul {
  margin: 0;
  padding: 0;
}
#navi ul.nav-menu {
  margin: 20px 0 50px;
  border-top: solid 2px #000;
}
#navi ul.nav-menu li {
  position: relative;
  margin: 0;
  padding: 20px 0;
  border-bottom: solid 2px #000;
}
#navi ul.nav-sns li {
  padding: 5px 0;
}
#navi .btn {
  width: 250px;
  color: #000;
  background-color: #87c3af;
  display: block;
  font-weight: bold;
  padding: 20px 0;
  margin: 0 auto;
  position: relative;
  transition: 0.3s ease-in-out;
}
/* ボタンの右と下の線は疑似要素で設定 */
#navi .btn::after {
  content: "　";
  width: 250px;
  padding: 20px 0;
  position: absolute;
}
#navi .btn:hover {
  background-color: #fff;
  color: #87c3af;
}

.toggle_btn {
  display: block;
  position: fixed;
  top: 40px;
  right: 55px;
  width: 30px;
  height: 30px;
  transition: all .5s;
  cursor: pointer;
  z-index: 20;
}
.toggle_btn span {
  display: block;
  position: absolute;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: #333;
  border-radius: 4px;
  transition: all .5s;
}
.yoyaku_btn a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 100px;
  padding: 1em 2em;
  width: 250px;
  color: #000;
  font-weight: 700;
  background-color: #87c3af;
}

.yoyaku_btn a::after {
  content: '';
  width: 5px;
  height: 5px;
  border-top: 3px solid #000;
  border-right: 3px solid #000;
  transform: rotate(45deg);
}

.yoyaku_btn a:hover {
  color: #87c3af;
  text-decoration: none;
  background-color: #fff;
}

.yoyaku_btn a:hover::after {
  border-top: 3px solid #87c3af;
  border-right: 3px solid #87c3af;
}
.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: #000;
}
.open .toggle_btn span:nth-child(1) {
  -webkit-transform: translateY(10px) rotate(-315deg);
  transform: translateY(10px) rotate(-315deg);
}
.open .toggle_btn span:nth-child(2) {
  opacity: 0;
}
.open .toggle_btn span:nth-child(3) {
  -webkit-transform: translateY(-10px) rotate(315deg);
  transform: translateY(-10px) rotate(315deg);
}
#mask {
  display: none;
  transition: all .5s;
}
.open #mask {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: .8;
  z-index: 10;
  cursor: pointer;
}

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

/*-------------------------------------------
Miryoku
-------------------------------------------*/
#miryoku {
  width: 100%;
  padding-bottom: 50px;
  background-color: floralwhite;
}
#miryoku .slick-area {
  font-size: 0;
}
#miryoku .slick-area li {
  padding: 0 30px;
}

/*-------------------------------------------
Osusume
-------------------------------------------*/
#osusume {
  width: 100%;
  padding-bottom: 50px;
}
#osusume .slick-area {
  font-size: 0;
}
#osusume .slick-area li {
  padding: 0 30px;
}


/*-------------------------------------------
Pickup
-------------------------------------------*/
#pickup {
  width: 100%;
  padding-bottom: 50px;
}
#pickup .slick-area {
  font-size: 0;
}
#pickup .slick-area li {
  padding: 0 35px;
}

/*-------------------------------------------
Feature
-------------------------------------------*/
#feature {
  max-width: 1240px;
  padding: 100px 16px 50px 16px;
  margin: -50px auto 10px auto;
}


/*
グリッドレイアウト
要素の最小サイズは300pxで、画面の幅にあわせて要素の幅が自動で変化する
repeatで全ての要素に対して適用
「gap: 26px;」で行と列の隙間を設定
*/
#feature .grid {
  display: grid;
  gap: 26px;
  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 {
  color: #fff;
  background-color: #121212;
  padding: 50px 0;
}
#contact .sec-title {
  color: #fff;
}
#contact .content {
  max-width: 1240px;
  padding: 0 16px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
#contact .contact-info p {
  margin-bottom: 30px;
}
#contact .contact-info,
#contact .contact-form {
  width: 45%;
}
#contact .contact-form input,
#contact .contact-form textarea {
  width: 100%;
  background-color: #fff;
  padding: 10px;
  margin-bottom: 20px;
}
#contact .contact-form .button input {
  width: 200px;
  color: #fff;
  background-color: #121212;
  border: solid 1px #fff;
  padding: 12px 0;
  margin-bottom: 0;
}
#contact .contact-form .button input:hover {
  color: #202020;
  background-color: #fff;
}

/*-------------------------------------------
フッター
-------------------------------------------*/
#footer {
  color: #fff;
  background-color: #121212;
  text-align: center;
  padding: 10px;
  font-size: 0.75rem;
}

/*-------------------------------------------
SP
-------------------------------------------*/
@media screen and (max-width: 600px) {
  .sec-title1 {
    font-size: 1.8rem;
    margin-bottom: 0px;
    line-height: 2.5rem;
    letter-spacing: 0.3rem;
    margin: 0;
  }
  .sec-title2 {
    font-size: 1.6rem;
    line-height: 2.2rem;
    margin: 30px 0 0;
  }
  .sec-title3 {
    font-size: 1.5rem;
    line-height: 1.8rem;
    margin: 30px 0 20px;
  }
  .sec-title4 {
    font-size: 1.5rem;
    margin-bottom: 0px;
    line-height: 1.8rem;
    margin: 0 0 30px;
  }

  /*-------------------------------------------
  ヘッダー
  -------------------------------------------*/
  #header {
    padding: 25px 15px;
  }
  .toggle_btn {
    right: 28px;
    top: 28px;
  }

  /*-------------------------------------------
  Miryoku
  -------------------------------------------*/
  #miryoku {
    padding-bottom: 30px;
  }
  #miryoku .slick-area li {
    padding: 0 20px;
  }

  /*-------------------------------------------
  Osusume
  -------------------------------------------*/
  #osusume {
    padding-bottom: 30px;
  }
  #osusume .slick-area li {
    padding: 0 20px;
  }


  /*-------------------------------------------
  Pickup
  -------------------------------------------*/
  #pickup {
    padding: 30px 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%;
  }


}

/* Google Mapを囲う要素 */
.map {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 75%; /* 比率を4:3に固定 */
  margin-top: -5%;
}
 
/* Google Mapのiframe */
.map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ヘッダー下バナー */
#bar {
    position: fixed;
    top: 70px;
    right: 0;
    width: auto;
}

/* アンカーリンク調整 */
section {
    padding-top: 80px; /* 調整したい高さ（固定ヘッダーの高さ） */
    margin-top: -50px; /* heightと同じ分のネガティブマージン */
}

section2 {
    padding-top: 80px; /* 調整したい高さ（固定ヘッダーの高さ） */
    margin-top: -50px; /* heightと同じ分のネガティブマージン */
}

.inc {
    color: fff; 
    padding: 40px 10px;
    font-size: 0.8rem;
}


@media screen and (min-width: 600px) {

.inc {
    color: fff; 
    padding: 40px 10px;
    font-size: 1.4rem;
}

/* イベント情報 */
.detail {
  width: 50%;
  height: 0;
  padding-top: 75%; /* 比率を4:3に固定 */
  margin-top: -5%;
}

/* Google Mapを囲う要素 */
.map {
  position: relative;
  width: 900px;
  height: 600px;
  padding-top: 2%; /* 比率を4:3に固定 */
  margin-top: -5%;
}
 
/* Google Mapのiframe */
.map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


}

