@charset "utf-8";
/* CSS Document */
.header {
  height: 44px;
  background-color: #FFF;
  position: relative;
}
.header h1 {
  font-size: 1.3rem;
  color: #a1ce6f;
  position: absolute;
  left: 24px;
  top: 10px;
}
.header h1 a {
  text-decoration: none;
  color: #87b850;
}
.header__navigation {
  display: none;
}
@media(max-width: 480px) {
  /* ハンバーガーアイコン */
  #nav-drawer {
    padding: 10px 24px 0 0;
    text-align: right;
    position: relative;
  }
  #nav-open {
    display: inline-block;
    vertical-align: middle;
    width: 25px;
    height: 22px;
  }
  #nav-open span, #nav-open span:before, #nav-open span:after {
    position: absolute;
    height: 3px;
    width: 25px;
    background-color: #777;
    display: block;
    content: "";
  }
  #nav-open span:before {
    bottom: -8px;
  }
  #nav-open span:after {
    bottom: -16px;
  }
  /* 閉じるボタン */
  #nav-close {
    z-index: 999; /* 値が大きいほど上の方に表示される */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.5; /* 透明度 */
  }
  #nav-content {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 70%;
    height: 100%;
    background-color: #fcfcf0;
    text-align: left;
    padding: 15px 0 0 24px;
    transform: translateX(-105%); /* -105% X座標方向に動く（隠れる） */
    transition: 0.3s ease-in-out; /* 0.3秒かけてスムーズに動く */
    box-shadow: 5px 0 25px rgba(0, 0, 0, 0.25);
  }
  .nav-drawer__title {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    color: #a1ce6f;
    margin-bottom: 46px;
  }
  .nav-drawer__link-top {
    display: block;
  }
  #nav-content ul li {
    margin-bottom: 36px;
  }
  #nav-content ul li a {
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: 600;
    color: #333;
  }
  #nav-input:checked ~ #nav-close { /* checkedが入ったinputをセレクタとして選ぶ 後ろにある同じレベルの要素を選ぶ */
    display: block; /* 黒色の画面を表示 */
  }
  #nav-input:checked ~ #nav-content { /* checkedが入ったinputをセレクタとして選ぶ 後ろにある同じレベルの要素を選ぶ */
    transform: translateX(0%); /* 隠れていたメニューを表示 */
  }
}
@media(min-width: 480px) {
  .header {
    max-width: 1040px;
    margin: 0 auto;
    min-height: 50px;
    padding: 14px;
    box-sizing: border-box;
  }
  .header h1 {
    font-size: 2.0rem;
    top: 14px;
  }
  .header__navigation {
    display: block;
    text-align: right;
  }
  .header__navigation ul li {
    display: inline-block;
    margin-left: 40px;
  }
  .header__navigation ul li a {
    text-decoration: none;
    font-size: 2.0rem;
    font-weight: 600;
    color: #333;
  }
}
.main {
  background-color: #fcfcf0;
  padding-bottom: 60px;
}
@media (min-width:1040px) {
  main {
    padding-bottom: 120px;
  }
}
.section-top {
  margin-bottom: 60px;
}
.section-top__image {
  height: 388px;
  background-image: url("../images/top/top_image.jpg");
  background-position: center;
  background-size: auto 100%;
  background-repeat: no-repeat;
  color: #6b9c37;
  font-weight: 600;
  margin-bottom: 40px;
  position: relative;
}
.section-top__image h2 {
  font-size: 1.6rem;
  position: absolute;
  width: 100%;
  top: 120px;
}
.section-top__image-message {
  position: absolute;
  width: 100%;
  top: 150px;
}
.section-top__lead {
  margin: 0 24px;
}
@media(min-width: 480px) {
  .section-top__image {
    height: 600px;
    margin-bottom: 80px;
  }
  .section-top__image h2 {
    font-size: 3.2rem;
    position: static;
    max-width: 1040px;
    margin: 0 auto;
    text-align: left;
    padding: 230px 0 0 140px;
  }
  .section-top__image-message {
    font-size: 2.0rem;
    position: static;
    max-width: 1040px;
    margin: 0 auto;
    text-align: left;
    padding: 25px 0 0 140px;
  }
  .section-top__lead {
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 4.0rem;
  }
}
.section-hobby {
  margin-bottom: 80px;
}
.section-hobby h2 {
  margin-bottom: 40px;
}
.section-hobby ul {
  margin: 0 24px;
  list-style: none;
}
.section-hobby ul li {
  max-width: 327px;
  margin: 0 auto;
  background-color: #FFF;
  margin-bottom: 40px;
  border-radius: 6px;
  text-align: left;
}
.section-hobby__item-picture {
  width: 100%;
  height: 186px;
  object-fit: cover;
  object-position: 0 20px;
  border-radius: 6px 6px 0 0;
}
.section-hobby__item-title {
  padding: 14px 18px;
}
.section-hobby__item-description {
  padding: 0 20px 20px 20px;
}
.section-hobby__item-description span {
  font-size: 1.2rem;
}
@media(min-width:1040px) {
  .section-hobby {
    margin-bottom: 20px;
  }
  .section-hobby ul {
    max-width: 1040px;
    padding: 0;
    margin: 0 auto;
  }
  .section-hobby ul li {
    display: inline-block;
    width: 320px; /* 960px(320 * 3) + (40 * 2) = 1040px */
    margin-right: 40px;
  }
  .section-hobby ul li:last-child {
    margin-right: 0;
  }
}
.section-places {
  padding-top: 40px;
  background-color: #FFF;
  margin-bottom: 60px;
}
.section-places h2 {
  margin-bottom: 40px;
}
.section-places address {
  font-style: normal;
  margin-bottom: 40px;
}
.section-places__map {
  height: 330px;
}
.section-places__map iframe {
  width: 100%;
  height: 100%;
  border: solid 2px #333;
}
.section-places-misakikan {
  padding: 40px 0;
  margin: 0 auto;
}
.section-places__filter {
  margin: 0 auto;
}
.section-places__image img {
  width: 375px;
  height: 388px;
  object-fit: cover;
  object-position: 0 40px;
}
.section-places__filter h3 {
  font-size: 2.0rem;
  text-align: center;
  padding: 0;
  font-weight: 600;
  margin-bottom: 20px;
}
.section-places__description {
  max-width: 375px;
  text-align: left;
  padding-left: 20px;
  margin: 0 auto;
}
@media(min-width: 1040px) {
  .section-places {
    padding: 60px 36px;
    margin: 0 auto 60px;
    max-width: 1040px;
    box-sizing: border-box;
  }
  .section-places h2 {
    padding: 0 0 40px 20px;
    border-bottom: solid 1px #333;
    margin-bottom: 30px;
  }
  .section-places-misakikan {
    display: flex;
    padding: 40px 0 0 60px;
  }
  .section-places__image img {
    max-width: 375px;
    height: 400px;
  }
  .section-places__filter {
    width: 500px;
  }
  .section-places__filter h3 {
    font-size: 2.0rem;
    font-weight: 600;
    text-align: left;
    padding-left: 75px;
    margin-bottom: 20px;
  }
  .section-places__description {
    width: 500px;
    text-align: left;
  }
}
.section-carrer {
  background-color: #FFF;
  padding: 40px 24px;
}
.section-carrer h2 {
  padding-bottom: 40px;
  border-bottom: solid 1px #333;
  margin-bottom: 40px;
}
.section-carrer ol {
  list-style-type: none;
}
.section-carrer ol li {
  margin-bottom: 40px;
  text-align: left;
}
.section-carrer li time {
  font-weight: 600;
}
.section-carrer li time::after {
  content: ": ";
}
.section-carrer h3 {
  display: inline;
}
@media(min-width: 1040px) {
  .section-carrer {
    padding: 60px 36px 20px;
    max-width: 1040px;
    margin: 0 auto;
    box-sizing: border-box;
  }
  .section-carrer ol li {
    max-width: 840px;
    margin: 0 auto;
    margin-bottom: 40px;
    text-align: left;
  }
}
.footer {
  min-height: 228px;
  background-color: #adc296;
  padding-top: 46px;
  padding-bottom: 20px;
  font-weight: 600;
}
.footer__site-map {
  margin-bottom: 30px;
}
.footer__site-map h2 {
  display: none;
}
.footer__site-map li {
  margin: 0 10px;
  display: inline-block;
}
.footer__site-map li a {
  text-decoration: none;
  color: #929292;
}
.footer__site-map li a:visited {
  color: #929292;
}
.footer__sns-links {
  margin-bottom: 80px;
}
.footer__sns-links li {
  display: inline-block;
  width: 20px;
  margin: 0 20px;
}
.footer__sns-links li img {
  width: 100%;
}
.footer small {
  color: #FFF;
}
@media(min-width: 1040px) {
  .footer {
    margin: 0;
    padding: 0;
  }
  .footer__container {
    max-width: 1040px;
    margin: 0 auto;
    padding-top: 40px;
    text-align: left;
  }
  .footer__site-map {
    float: left;
  }
  .footer__site-map h2 {
    display: inline-block; /* site-map list,sns-linkの要素と並べたいのでinline-blockにする　 */
    width: 200px;
    vertical-align: top; /* 垂直方向に揃える(上部)  */
    color: #FFF;
  }
  .footer__site-map ul {
    display: inline-block;
    margin-left: 10px;
  }
  .footer__site-map ul li {
    margin: 0;
    display: block; /* blockに変更することでリストが縦に並ぶ */
  }
  .footer__sns-links {
    float: right;
  }
  .footer small {
    clear: both;
    display: block;
    text-align: center;
  }
}