@charset "UTF-8";
/*--- import -------------------------------------*/
* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  word-break: break-word;
  box-sizing: border-box;
  vertical-align: baseline;
  background: transparent; }

html, body {
  overflow-x: hidden; }

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block; }

li {
  list-style-type: none; }

blockquote, q {
  quotes: none; }
  blockquote::before, blockquote::after, q::before, q::after {
    content: '';
    content: none; }

a {
  text-decoration: none;
  color: inherit; }

img, picture {
  vertical-align: top;
  max-width: 100%; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

input, select {
  vertical-align: middle; }

/* safariでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box; }
  input[type="submit"]::-webkit-search-decoration,
  input[type="button"]::-webkit-search-decoration {
    display: none; }
  input[type="submit"]::focus,
  input[type="button"]::focus {
    outline-offset: -2px; }

/*------------------------------------- import ---*/
body {
  -webkit-text-size-adjust: 100%;
  font-family: 'Noto Sans JP', sans-serif;
  text-align: center;
  font-weight: normal;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.15rem; }

a {
  opacity: 1;
  transition: opacity .3s; }
  a:hover {
    opacity: 0.8; }

.pc {
  display: block; }
  @media screen and (max-width: 750px) {
    .pc {
      display: none; } }

.sp {
  display: none; }
  @media screen and (max-width: 750px) {
    .sp {
      display: block; } }

.sp_1080 {
  display: none; }
  @media screen and (max-width: 1080px) {
    .sp_1080 {
      display: block; } }

.sp_480 {
  display: none; }
  @media screen and (max-width: 480px) {
    .sp_480 {
      display: block; } }

.mincho {
  font-family: 'Hiragino Mincho ProN','ヒラギノ明朝 ProN','Hiragino Mincho Pro','ヒラギノ明朝 Pro','Noto Serif JP', serif; }

.box_in {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto; }
  @media screen and (max-width: 1280px) {
    .box_in {
      padding: 0 40px; } }
  @media screen and (max-width: 750px) {
    .box_in {
      padding: 0 5.3333333333vw; } }

nav ul {
  display: flex;
  justify-content: flex-end; }
  nav ul li {
    padding: 20px; }
    nav ul li a {
      display: block; }

main {
  padding-top: 120px; }
  @media screen and (max-width: 750px) {
    main {
      padding-top: 16vw; } }

section {
  max-width: 1200px;
  margin: 0 auto; }

section + section {
  margin-top: 120px; }

.is-fixed {
  position: fixed !important;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  background: #fff;
  display: flex !important;
  justify-content: space-between; }
  .is-fixed ul {
    color: #000; }

/*メニューボタンのエフェクト*/
.nav-button {
  display: none !important; }
  @media screen and (max-width: 1080px) {
    .nav-button {
      display: block !important; } }

.nav-button,
.nav-button span {
  display: inline-block;
  transition: all 0.4s;
  box-sizing: border-box; }

.nav-button {
  z-index: 120;
  position: fixed;
  right: 0;
  top: 0;
  width: 60px;
  height: 60px;
  background: #00b8ee;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center; }

.nav-button div {
  position: relative;
  width: 60px;
  height: 60px; }

.nav-button div:after {
  display: inline-block;
  content: "メニュー";
  color: #fff;
  font-size: 12px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center; }

.nav-button span {
  position: absolute;
  left: 20%;
  width: 60%;
  height: 3px;
  background-color: #fff;
  border-radius: 2px; }

.nav-button span:nth-of-type(1) {
  top: 12px; }

.nav-button span:nth-of-type(2) {
  top: 22px; }

.nav-button span:nth-of-type(3) {
  bottom: 24px; }

.nav-button.active span:nth-of-type(1) {
  -webkit-transform: translateY(10px) rotate(-45deg);
  transform: translateY(10px) rotate(-45deg); }

.nav-button.active span:nth-of-type(2) {
  opacity: 0; }

.nav-button.active span:nth-of-type(3) {
  -webkit-transform: translateY(-10px) rotate(45deg);
  transform: translateY(-10px) rotate(45deg); }

.nav-button.active div:after {
  content: "閉じる"; }

.nav-button:hover,
.nav-button:active {
  opacity: 1; }

.nav-wrap {
  width: 100%;
  display: block;
  position: absolute;
  z-index: 2;
  top: 0; }
  .nav-wrap h1 {
    display: none;
    padding: 10px; }
    .nav-wrap h1 a {
      display: inline-block; }
      .nav-wrap h1 a img {
        width: 164px; }
  @media screen and (max-width: 1080px) {
    .nav-wrap {
      display: none; }
      .nav-wrap h1 {
        padding: 6px 10px; }
        .nav-wrap h1 a img {
          width: 149px; }
      .nav-wrap ul {
        display: none; } }

.nav-wrap.open {
  display: block;
  width: 100%;
  height: 100vh;
  color: white;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  overflow-y: scroll;
  background: #44af35; }
  .nav-wrap.open h1 {
    display: none !important; }
  .nav-wrap.open ul {
    display: block;
    width: 100%;
    color: #fff; }
    .nav-wrap.open ul li {
      width: 100%; }
  @media screen and (min-width: 1080px) {
    .nav-wrap.open {
      display: none; } }
  @media screen and (max-width: 1080px) {
    .nav-wrap.open {
      padding-top: 60px; }
      .nav-wrap.open ul {
        border-top: 1px solid #fff; }
        .nav-wrap.open ul li {
          padding: 0;
          border-bottom: 1px solid #fff;
          text-align: left;
          position: relative; }
          .nav-wrap.open ul li:after {
            content: '';
            display: inline-block;
            background: url("../common/images/arrow_wh.png") no-repeat;
            background-size: contain;
            width: 14px;
            height: 20px;
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%); }
          .nav-wrap.open ul li a {
            padding: 20px; } }
  @media screen and (max-width: 750px) {
    .nav-wrap.open ul li a {
      padding: 5vw; } }

footer {
  padding-top: 40px; }
  footer .contents {
    margin-top: 50px; }
    footer .contents .logo {
      display: inline-block;
      position: relative;
      left: -20px; }
      footer .contents .logo img {
        width: 217px; }
    footer .contents .adress {
      margin-top: 15px; }
    footer .contents .mail {
      text-decoration: underline; }
  footer ul {
    max-width: 960px;
    width: 100%;
    margin: 0 auto;
    margin-top: 60px;
    font-size: 14px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap; }
    footer ul li {
      width: 16%; }
      footer ul li a {
        display: inline-block; }
    @media screen and (max-width: 640px) {
      footer ul {
        border-bottom: 1px solid #44af35; }
        footer ul li {
          width: 50%;
          /*
          &:first-child{
          	width: 100%;
          }
          */ }
          footer ul li a {
            display: block;
            padding: 20px;
            border-top: 1px solid #44af35; }
          footer ul li:nth-child(2n-1) {
            border-right: 1px solid #44af35; } }
  footer .copyright {
    margin-top: 25px;
    margin-bottom: 25px;
    font-size: 12px;
    text-align: center; }

#page_top {
  position: fixed;
  bottom: 20px;
  right: 20px; }
  #page_top a {
    display: inline-block;
    width: 73px;
    height: 73px;
    border-radius: 50%;
    border: 1px solid #44af35;
    position: relative; }
    #page_top a img {
      width: 18px;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%); }
  @media screen and (max-width: 750px) {
    #page_top {
      bottom: 0vw;
      right: 1.3333333333vw; }
      #page_top a {
        width: 12vw;
        height: 12vw; } }

.ttl .icon img {
  width: 38px; }
.ttl h2 {
  font-size: 24px;
  color: #231815;
  line-height: 1;
  margin-top: 10px;
  letter-spacing: 0.3rem;
  position: relative; }
  .ttl h2:first-letter {
    color: #44af35; }
  .ttl h2:after {
    content: '';
    display: inline-block;
    width: 30px;
    height: 2px;
    background: #44af35;
    position: absolute;
    border-radius: 8px;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%); }

@media screen and (max-width: 750px) {
  .ttl h2:after {
    bottom: -15px; } }
.forest_common {
  background: url(../common/images/footer_forest.jpg) no-repeat, url(../common/images/footer_forest_line.png);
  width: 100%;
  height: 121px;
  background-size: contain;
  background-position: center; }
  @media screen and (max-width: 1204px) {
    .forest_common {
      height: 10.049833887vw; } }

.reverse {
  transform: scaleX(-1); }

.thumb {
  margin-top: 20px; }
  .thumb ul {
    display: flex; }
    .thumb ul li {
      font-size: 14px;
      white-space: nowrap; }
      .thumb ul li a {
        text-decoration: underline; }
    .thumb ul .arrow {
      margin: 0 5px; }

#contact {
  max-width: 100%;
  padding: 100px 40px;
  background: url("../images/top/contact_bg.jpg") no-repeat;
  background-size: cover;
  background-position: center;
  color: #fff; }
  #contact .inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto; }
  #contact .ttl h2 {
    color: #fff;
    position: relative; }
    #contact .ttl h2:first-letter {
      color: #fff; }
    #contact .ttl h2:after {
      background: #fff; }
  #contact .contents .txt {
    margin-top: 60px; }
  #contact .contents ul {
    margin-top: 60px;
    display: flex;
    justify-content: center; }
    #contact .contents ul .tel_area {
      margin-right: 40px; }
      #contact .contents ul .tel_area a {
        display: inline-block; }
        #contact .contents ul .tel_area a img {
          width: 402px; }
        #contact .contents ul .tel_area a .p1 {
          margin-top: 10px; }
    #contact .contents ul .btn_area a {
      display: flex;
      border: 1px solid #fff;
      padding: 25px 40px;
      align-items: center; }
      #contact .contents ul .btn_area a .icon {
        margin-right: 10px; }
        #contact .contents ul .btn_area a .icon img {
          width: 38px; }
      #contact .contents ul .btn_area a .p1 {
        font-size: 19px;
        font-weight: bold;
        line-height: 1;
        white-space: nowrap; }

@media screen and (max-width: 960px) {
  #contact .contents ul {
    display: block;
    margin-top: 40px; }
    #contact .contents ul .tel_area {
      margin-right: 0px; }
    #contact .contents ul .btn_area {
      margin-top: 30px; }
      #contact .contents ul .btn_area a {
        max-width: 475px;
        width: 100%;
        margin: 0 auto;
        justify-content: center; } }
@media screen and (max-width: 750px) {
  #contact {
    margin-top: 13vw;
    padding: 13.3333333333vw 5.3333333333vw; }
    #contact .contents .txt {
      margin-top: 10.6666666667vw;
      font-size: 14px;
      text-align: left; }
      #contact .contents .txt br {
        display: none; }
    #contact .contents ul {
      margin-top: 10.6666666667vw;
      display: block; }
      #contact .contents ul .tel_area {
        margin-right: 0px; }
        #contact .contents ul .tel_area a img {
          max-width: 402px;
          width: 80%; }
        #contact .contents ul .tel_area a .p1 {
          margin-top: 10px; }
      #contact .contents ul .btn_area {
        margin-top: 4vw; }
        #contact .contents ul .btn_area a {
          padding: 20px; }
          #contact .contents ul .btn_area a .icon {
            margin-right: 10px;
            display: flex;
            align-items: center; }
            #contact .contents ul .btn_area a .icon img {
              width: 38px; }
          #contact .contents ul .btn_area a .p1 {
            font-size: 16px;
            font-weight: normal;
            line-height: 1;
            white-space: nowrap; } }
.view_more {
  color: #fff;
  width: 280px;
  border: 1px solid; }
  .view_more a {
    display: block;
    padding: 20px;
    font-size: 14px;
    text-align: center; }

.pages .mv {
  position: relative;
  height: 350px;
  width: 100%; }
  .pages .mv h2 {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 20px 10px;
    font-size: 33px;
    display: inline-block;
    white-space: nowrap;
    letter-spacing: 0.5rem; }
    .pages .mv h2 span {
      transform: rotate(0deg);
      display: block;
      letter-spacing: 0;
      line-height: 1.3; }
      .pages .mv h2 span:first-child {
        color: #44af35; }
  .pages .mv:after {
    content: '';
    display: inline-block;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 0;
    left: 0; }
@-moz-document url-prefix() {}
  @media screen and (max-width: 750px) {
    .pages .mv {
      height: 200px; }
      .pages .mv h2 {
        background: rgba(255, 255, 255, 0.8);
        writing-mode: inherit;
        line-height: 1;
        padding: 15px 20px;
        font-size: 28px;
        letter-spacing: 0.3rem; }
        .pages .mv h2 span {
          transform: inherit;
          display: initial;
          letter-spacing: 0.2rem; } }
