@charset "utf-8";

@property --_w {
  syntax: '<length>';
  inherits: true;
  initial-value: 100vw;
}

@property --_h {
  syntax: '<length>';
  inherits: true;
  initial-value: 100vh;
}

:root {
  --w: tan(atan2(var(--_w), 1px));
  --h: tan(atan2(var(--_h), 1px));
}

html, body {
	margin: 0;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
p {
  margin: 0;
}
a {
  color: inherit;
  text-decoration: none;
}


@media screen and (min-width: 769px) {
  html, body {
    font-size: calc((var(--w) / 1600) * 10px);
  }
  .sp {
    display: none!important;
  }
}
@media screen and (max-width: 768px) {
  html, body {
    font-size: calc((var(--w) / 375) * 10px);
  }
  .pc {
    display: none!important;
  }
}

/*------------
  common
------------*/

section {
  overflow-x: hidden;
}

.container {
  position: relative;
  width: 120.0rem;
  margin: 0 auto;
}

.sec-ttl {
  text-align: center;
  h1 {
    margin-bottom: 1.0rem;
    font-size: 2.4rem;
    font-weight: 400;
    color: #FF6F00;
  }
  p {
    font-size: 1.6rem;
  }
}

.page-mv {
  position: relative;
  .container {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
  }
  h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 7.0rem;
    line-height: 10.0rem;
    color: #FFFFFF;
  }
  .mv-bg {
    overflow: hidden;
    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  }
}

.pager {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  a {
    width: 2.4rem;
    height: 2.4rem;
    margin: 0 0.4rem;
    text-align: center;
    font-size: 1.8rem;
    line-height: 2.4rem;
    color: #FFFFFF;
    background: #858585;
    border-radius: 100%;
    &.next {
      width: auto;
      height: auto;
      color: #257000;
      background: transparent;
    }
    &.prev {
      width: auto;
      height: auto;
      color: #257000;
      background: transparent;
    }
  }
  span {
    width: 2.4rem;
    height: 2.4rem;
    margin: 0 0.4rem;
    text-align: center;
    font-size: 1.8rem;
    line-height: 2.4rem;
    color: #FFFFFF;
    background: #257000;
    border-radius: 100%;
  }
}

@media screen and (max-width: 768px) {
  .container {
    width: 100%;
    padding: 0 1.0rem;
  }

  .sec-ttl {
    text-align: center;
    h1 {
      font-size: 2.0rem;
    }
  }

  .page-mv {
    h1 {
      width: 100%;
      text-align: center;
      font-size: 4.0rem;
      line-height: 6.0rem;
    }
  }

  .pager {
    a {
      width: 3.0rem;
      height: 3.0rem;
      margin: 0 1.0rem;
      line-height: 3.0rem;
    }
    span {
      width: 3.0rem;
      height: 3.0rem;
      margin: 0 1.0rem;
      line-height: 3.0rem;
    }
  }
}


/*------------
  slick
------------*/

.slick-slider {
  &.slick-dotted {
    margin-bottom: 0;
  }
  .slick-dots {
    bottom: 1.8rem;
    li {
      width: 1.2rem;
      height: 1.2rem;
      margin: 0 0.6rem;
      button {
        width: 1.2rem;
        height: 1.2rem;
        &::before {
          width: 1.2rem;
          height: 1.2rem;
          border: 1px solid #FFFFFF;
          border-radius: 100%;
          opacity: 1;
        }
      }
      &.slick-active {
        button {
          &::before {
            background: #FFFFFF;
          }
        }
      }
    }
  }
}

/*------------
  header
------------*/

.header {
  width: 100%;
  padding: 1.0rem 0 2.0rem;
  background: #71717170;
  &._top {
    position: absolute;
    z-index: 9999;
    top: 0;
    left: 0;
  }
  .header-wrapper {
    display: flex;
  }
  .header-logo {
    width: 33.7rem;
  }
  .header-sns {
    display: flex;
    margin-top: auto;
    margin-left: auto;
    a {
      width: auto;
      height: 3.9rem;
      & + a {
        margin-left: 3.5rem;
      }
      img {
        width: auto;
        height: 100%;
      }
    }
  }
}

@media screen and (max-width: 768px) {
  .header {
    .header-logo {
      width: 17.0rem;
    }
    .header-sns {
      a {
        height: 2.0rem;
        & + a {
          margin-left: 2.0rem;
        }
      }
    }
  }
}


/*------------
  footer
------------*/

.footer {
  padding: 1.4rem 0 2.7rem;
  background: #FFB300;
  .footer-logo {
    width: 28.7rem;
    margin: 0 auto;
  }
  .footer-sns {
    display: flex;
    justify-content: center;
    margin: 3.8rem auto 4.4rem;
    a {
      width: auto;
      height: 3.9rem;
      margin: 0 1.8rem;
      img {
        width: auto;
        height: 100%;
      }
    }
  }
  .footer-cright {
    text-align: center;
    font-size: 1.0rem;
    color: #FFFFFF;
  }
}

@media screen and (max-width: 768px) {
  .footer {
    padding: 1.5rem 0 2.5rem;
    .footer-logo {
      width: 20.0rem;
    }
    .footer-sns {
      margin: 3.0rem auto 4.0rem;
      a {
        height: 3.0rem;
        margin: 0 1.5rem;
      }
    }
    .footer-cright {
      font-size: 1.4rem;
    }
  }
}


/*------------
  index
------------*/

/*
  index-mv
------------*/

#index-mv {
  overflow: hidden;
  position: relative;
  .mv-slider {
    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  }
  .mv-content {
    position: absolute;
    z-index: 999;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    .container {
      height: 100%;
    }
    h1 {
      position: absolute;
      bottom: 5.4rem;
      left: 0;
      font-size: 6.0rem;
      line-height: 9.0rem;
      color: #FFFFFF;
      -webkit-text-stroke: 0.2rem #FF9900;
      text-stroke: 0.2rem #FF9900;
      /*paint-order: stroke;*/
    }
  }
}

@media screen and (max-width: 768px) {
  #index-mv {
    .mv-content {
      width: 100%;
      h1 {
        bottom: 3.0rem;
        left: 1.0rem;
        font-size: 2.0rem;
        line-height: 3.0rem;
        -webkit-text-stroke: 0.1rem #FF9900;
        text-stroke: 0.1rem #FF9900;
      }
    }
  }
}


/*
  index-news
------------*/

#index-news {
  padding: 10.0rem 0;
  .news-list {
    display: flex;
    width: 111.3rem;
    margin: 6.7rem auto 0;
  }
  .news-item {
    width: 32.6rem;
    margin-right: calc((100% - 97.8rem) / 2);
    &:nth-of-type(3n) {
      margin-right: 0;
    }
    .item-image {
      img {
        width: 100%;
      }
    }
    .item-tag {
      margin: 0.9rem 0 1.7rem;
      font-size: 1.8rem;
      color: #257000;
    }
    .item-title {
      margin-bottom: 1.0rem;
      padding-bottom: 1.0rem;
      font-size: 1.6rem;
      line-height: 3.0rem;
      border-bottom: 1px solid #707070;
    }
    .item-updated {
      font-size: 1.4rem;
      span {
        color: #257000;
      }
    }
  }
  .news-more {
    margin-top: 9.0rem;
    a {
      display: block;
      width: 24.3rem;
      margin: 0 auto;
      padding: 1.5rem 0;
      text-align: center;
      font-size: 1.8rem;
      color: #FFFFFF;
      background: #FF6F00;
      border-radius: 1.5rem;
    }
  }
}

@media screen and (max-width: 768px) {
  #index-news {
    padding: 5.0rem 0;
    .news-list {
      display: block;
      width: 100%;
      margin: 5.0rem auto 0;
    }
    .news-item {
      width: 100%;
      & + .news-item {
        margin-top: 4.0rem;
      }
      .item-tag {
        margin: 1.0rem 0;
        font-size: 1.6rem;
      }
    }
    .news-more {
      margin-top: 5.0rem;
      a {
        width: 20.0rem;
      }
    }
  }
}


/*
  index-about
------------*/

#index-about {
  padding-bottom: 19.7rem;
  .container {
    border-top: 1px solid #CCCCCC;
  }
  .about-wrapper {
    display: flex;
  }
  .about-content {
    width: 51.4rem;
    margin-top: 7.7rem;
    .content-text {
      margin-top: 6.0rem;
      font-size: 1.6rem;
      line-height: 3.0rem;
    }
  }
  .about-image {
    width: 84.4rem;
    margin-left: 4.2rem;
    margin-right: calc(50% - 50vw);
  }
  .about-icon {
    display: none;
    justify-content: space-between;
    margin-top: 8.4rem;
    .icon-item {
      width: 20.8rem;
      font-size: 1.8rem;
      line-height: 3.0rem;
    }
    .icon-image {
      margin-bottom: 1.7rem;
    }
  }
}

@media screen and (max-width: 768px) {
  #index-about {
    padding-bottom: 5.0rem;
    .about-wrapper {
      flex-wrap: wrap;
    }
    .about-content {
      order: 2;
      width:100%;
      margin-top: 5.0rem;
      .content-text {
        margin-top: 4.0rem;
      }
    }
    .about-image {
      order: 1;
      width: 100%;
      margin: 0 auto;
    }
    .about-icon {
      flex-wrap: wrap;
      margin-top: 3.0rem;
      .icon-item {
        width: 46%;
        margin: 2.0rem 0 0;
        font-size: 1.6rem;
      }
      .icon-image {
        margin-bottom: 1.0rem;
      }
    }
  }
}


/*
  index-info
------------*/

#index-info {
  padding: 8.1rem 0 6.4rem;
  background: #FFF8F1;
  .info-wrapper {
    display: flex;
  }
  .info-content {
    width: 74.3rem;
    .sec-ttl {
      width: fit-content;
      margin-left: 9.7rem;
    }
  }
  .info-table {
    margin-top: 9.1rem;
    .table-row {
      display: flex;
      padding: 1.6rem 0;
      font-size: 1.6rem;
      border-bottom: 1px solid #CCCCCC;
    }
    .table-th {
      width: 12.0rem;
    }
    .table-td {
      width: calc(100% - 12.0rem);
    }
  }
  .info-image {
    width: 56.8rem;
    margin-top: 1.4rem;
    margin-left: 8.8rem;
    margin-right: calc(50% - 50vw);
  }
}

@media screen and (max-width: 768px) {
  #index-info {
    padding: 5.0rem 0;
    .info-wrapper {
      flex-wrap: wrap;
    }
    .info-content {
      width: 100%;
      .sec-ttl {
        width: auto;
        margin: 0 auto;
      }
    }
    .info-table {
      margin-top: 5.0rem;
      .table-th {
        width: 8.0rem;
      }
      .table-td {
        width: calc(100% - 8.0rem);
      }
    }
    .info-image {
      width: 100%;
      margin: 3.0rem auto 0;
    }
  }
}


/*
  index-map
------------*/

#index-map {
  overflow: hidden;
  width: 100%;
  height: 90.0rem;
}

@media screen and (max-width: 768px) {
  #index-map {
    height: 50.0rem;
  }
}


/*------------
  news
------------*/

#news {
  padding: 9.2rem 0 8.5rem;
  .news-cat {
    display: flex;
    justify-content: center;
    margin-top: 5.4rem;
    a {
      display: block;
      width: 16.1rem;
      margin: 0 2.0rem;
      padding: 1.5rem 0;
      text-align: center;
      font-size: 1.8rem;
      color: #FFFFFF;
      background: #008432;
      border-radius: 1.5rem;
    }
  }
  .news-list {
    display: flex;
    flex-wrap: wrap;
    width: 111.3rem;
    margin: 6.7rem auto 0;
  }
  .news-item {
    width: 32.6rem;
    margin-top: 9.2rem;
    margin-right: calc((100% - 97.8rem) / 2);
    &:nth-of-type(3n) {
      margin-right: 0;
    }
    .item-image {
      img {
        width: 100%;
      }
    }
    .item-tag {
      margin: 0.9rem 0 1.7rem;
      font-size: 1.8rem;
      color: #257000;
    }
    .item-title {
      margin-bottom: 1.0rem;
      padding-bottom: 1.0rem;
      font-size: 1.6rem;
      line-height: 3.0rem;
      border-bottom: 1px solid #707070;
    }
    .item-updated {
      font-size: 1.4rem;
      span {
        color: #257000;
      }
    }
  }
  .news-pager {
    margin-top: 11.3rem;
  }
}

@media screen and (max-width: 768px) {
  #news {
    padding: 5.0rem 0;
    .news-cat {
      display: block;
      margin-top: 5.0rem;
      a {
        width: 80%;
        margin: 0 auto;
        & + a {
          margin-top: 4.0rem;
        }
      }
    }
    .news-list {
      display: block;
      width: 100%;
      margin: 1.0rem auto 0;
    }
    .news-item {
      width: 100%;
      margin: 4.0rem auto 0;
      &:nth-of-type(3n) {
        margin: 4.0rem auto 0;
      }
      .item-tag {
        margin: 1.0rem 0;
        font-size: 1.6rem;
      }
    }
    .news-pager {
      margin-top: 5.0rem;
    }
  }
}


/*------------
  detail
------------*/

#detail {
  padding: 9.2rem 0 8.5rem;
  .detail-content {
    margin-top: 6.2rem;
  }
  .detail-head {
    padding: 0 3.2rem 2.1rem;
    border-bottom: 1px solid #707070;
    h1 {
      margin-top: 2.1rem;
      font-size: 2.4rem;
      font-weight: 400;
      line-height: 3.0rem;
    }
    .head-info {
      display: flex;
      align-items: flex-end;
    }
    .head-date {
      font-size: 1.4rem;
      span {
        color: #257000;
      }
    }
    .head-tag {
      margin-left: 2.1rem;
      font-size: 1.8rem;
      color: #257000;
    }
  }
  .detail-wrapper {
    width: 86.4rem;
    margin: 7.8rem auto 0;
    font-size: 1.8rem;
    line-height: 3.0rem;
    p {
      margin-bottom: 3.9rem;
    }
    .wp-block-image {
      margin-bottom: 3.9rem;
    }
    .wp-block-heading {
      margin-bottom: 3.9rem;
      /*font-size: 4.0rem;*/
      /*line-height: 8.0rem;*/
    }
	h1 {
      font-size: 2.4rem;
      line-height: 4.8rem
    }
    h2 {
      font-size: 2.0rem;
      line-height: 4.0rem
    }
    h3 {
      font-size: 1.8rem;
      line-height: 3.6rem
    }
  }
  .detail-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 13.3rem;
    font-size: 1.8rem;
    color: #257000;
    .nav-prev {
      &._hidden {
        opacity: 0;
        pointer-events: none;
      }
    }
    .nav-next {
      &._hidden {
        opacity: 0;
        pointer-events: none;
      }
    }
    .nav-back {
      margin: 0 1.9rem;
      padding: 1.3rem 3.7rem;
      border: 1px solid #257000;
      border-radius: 1.5rem;
    }
  }
}

@media screen and (max-width: 768px) {
  #detail {
    padding: 5.0rem 0;
    .detail-content {
      margin-top: 5.0rem;
    }
    .detail-head {
      padding: 0 1.5rem 2.0rem;
      h1 {
        margin-top: 1.5rem;
        font-size: 2.0rem;
        line-height: 3.0rem;
      }
      .head-tag {
        margin-left: 2.0rem;
        font-size: 1.6rem;
      }
    }
    .detail-wrapper {
      width: 100%;
      margin: 5.0rem auto 0;
    }
    .detail-nav {
      margin-top: 10.0rem;
      font-size: 1.4rem;
      color: #257000;
      .nav-back {
        margin: 0 1.5rem;
        padding: 1.0rem 2.5rem;
      }
    }
  }
}