@charset "UTF-8";
/* CSS Document */
.header {
  height: 44px;
  background-color: #FFF;
  position: relative;
}
.header h1 {
  font-size: 1.3rem;
  color: #9CAF9A;
  position: absolute;
  left: 24px;
  top: 10px;
}
.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: #579035;
    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: #FFF;
    text-align: left;
    padding: 15px 0 0 24px;
    transform: translateX(-105%);
    transition: 0.3s ease-in-out;
    box-shadow: 5px 0 25px rgb(0, 0, 0, 0.25)
  }
  .nav-drawer__title {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    color: #9CAF9A;
    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 {
    display: block;
  }
  #nav-input:checked ~ #nav-content {
    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: 2rem;
    top: 14px;
  }
  .header__navigation {
    display: block;
    text-align: right;
  }
  .header__navigation ul li {
    display: inline-block;
    margin-left: 10px;
  }
  .header__navigation ul li a {
    text-decoration: none;
    font-size: 1.9rem;
    font-weight: 600;
    color: #333;
  }
}
.main {
  background-color: #9caf9a;
}
@media (min-width:1040px) {
  main {
    padding-bottom: 120px;
    padding-top: 80px;
  }

  
}



.section-tos {
  background-color: #FFF;
  padding: 40px 24px 20px 24px ;
  margin-top: 40px ;
}
.section-tos h2 {
  padding-bottom: 40px;
  border-bottom: solid 1px #333;
  margin-bottom: 40px;
}
.section-tos ol {
  list-style-type: none;
  font-size: 1.6rem;
}
.section-tos ol li {
  margin-bottom: 40px;
  text-align: left;
}
.section-tos li time {
  font-weight: 600;
}
.section-tos li time::after {
  content: ": ";
}
.section-tos h3 {
  display: inline;
}

@media (min-width: 1040px) {
  .section-tos {
    padding: 60px 36px 10px;
    max-width: 1040px;
    margin: 40px auto;
    box-sizing: border-box;
  }
  .section-tos ol {
    max-width: 840px;
    margin: 0 auto;
  }
}

.footer {
  min-height: 228px;
  background-color: #F6F3EE;
  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: #579035;
}
.footer__site-map li a:visited {
  color: #579035;
}
.footer__sns_links {
  margin-bottom: 80px;
}
.footer__sns_links li {
  display: inline-block;
  width: 20px;
  margin: 0 10px;
}
.footer__sns_links li img {
  width: 100%;
}
.footer small {
  color: #9CAF9A;
}
@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;
    width: 120px;
    vertical-align: top;
    color: #579035;
  }
  .footer__site-map ul {
    display: inline-block;
    margin-left: 10px;
  }
  .footer__site-map ul li {
    margin: 0;
    display: block;
  }
  .footer__sns_links {
    float: right;
  }
  .footer small {
    clear: both;
    display: block;
    text-align: center;
  }
}