@charset "UTF-8";
* {
  transition: all 0.4s;
}

html,
body {
  overflow-x: hidden;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  background: #f7f3eb;
}

img {
  max-width: 100%;
}

p {
  line-height: 1.8;
  letter-spacing: 0.05em;
  margin: 0;
}
@media (min-width: 768px) {
  p {
    font-size: 18px;
  }
}

ul {
  padding: 0;
}
ul li {
  list-style: none;
}

a:hover {
  text-decoration: none;
}

.text_center {
  text-align: center;
}

.img_pc {
  display: none;
}
@media (min-width: 768px) {
  .img_pc {
    display: inline;
  }
}

@media (min-width: 768px) {
  .img_sp {
    display: none;
  }
}

.br_pc {
  display: none;
}
@media (min-width: 768px) {
  .br_pc {
    display: inline-block;
  }
}

@media (min-width: 768px) {
  .br_sp {
    display: none;
  }
}

.mb_10 {
  margin-bottom: 10px;
}

.mb_20 {
  margin-bottom: 20px;
}

.mb_30 {
  margin-bottom: 30px;
}

.container {
  padding: 0 15px;
}
@media (min-width: 768px) {
  .container {
    max-width: 1200px;
    padding: 0 30px;
    margin: 0 auto;
  }
}

header {
  overflow: hidden;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  header {
    margin-bottom: 40px;
  }
}
header .video {
  position: relative;
  display: flex;
  justify-content: center;
  height: 100vh;
}
header .video .logo {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  opacity: 0.4;
  padding: 0 15px;
}
header .video:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.15) 40%, rgba(0, 0, 0, 0.35));
  pointer-events: none;
}
header .header_inner {
  position: relative;
  height: 0;
  z-index: 1000;
}
header .header_inner .ttl_logo {
  max-width: 500px;
  margin: auto;
}
header .header_inner .header-links {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  z-index: 10;
  background: rgba(41, 80, 55, 0.9);
  padding: 20px 0;
  transform: translateX(100%);
  transition: transform 0.4s ease;
  overflow-x: hidden;
  overflow-y: auto;
  box-sizing: border-box;
}
header .header_inner .main_ttl {
  padding: 30px 20px;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.6));
}
@media (min-width: 768px) {
  header .header_inner .main_ttl {
    padding-top: 30px;
  }
}
header .header_inner nav {
  display: block;
}
header .header_inner nav ul li {
  text-align: center;
}
header .header_inner nav ul li a {
  color: #fff;
  font-size: 20px;
  display: block;
  width: 100%;
}
header .header_inner nav ul .contact {
  background: #fff;
  transition: all 0.3s;
}
header .header_inner nav ul .contact:hover {
  background: #4caf50;
}
header .header_inner nav ul .contact a {
  color: #4caf50;
}
header .header_inner nav ul .contact a .material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 20;
  position: relative;
  top: 6px;
}
header .header_inner nav ul .contact a:hover {
  color: #fff;
}
header .menu-trigger {
  position: absolute;
  right: 20px;
  top: 45px;
  transform: translateY(-50%);
  transition: all 0.4s;
  width: 44px;
  height: 32px;
  z-index: 3000;
}
header .menu-trigger span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  width: 100%;
  height: 4px;
  background: #fff;
}
header .menu-trigger span:nth-of-type(1) {
  top: 0;
}
header .menu-trigger span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
}
header .menu-trigger span:nth-of-type(3) {
  bottom: 0;
}
header {
  /* jsで変更される箇所 */
}
header .header-links.is-active {
  transform: translateX(0);
}
header .header-links.is-active li {
  padding-bottom: 20px;
  margin: 20px 50px;
  border-bottom: 1px dotted #fff;
}
header .menu-trigger.is-active span:nth-of-type(1) {
  transform: translateY(9px) rotate(-315deg);
}
header .menu-trigger.is-active span:nth-of-type(2) {
  opacity: 0;
}
header .menu-trigger.is-active span:nth-of-type(3) {
  transform: translateY(-19px) rotate(315deg);
}
@media (min-width: 992px) {
  header .header_inner .header-links {
    position: static;
    background: transparent;
    padding: 0 20px 20px;
    transform: none;
    height: auto;
    overflow: visible;
  }
  header .header_inner nav ul {
    display: flex;
    justify-content: center;
  }
  header .header_inner nav ul li {
    padding: 25px 20px;
  }
  header .header_inner nav ul li a {
    color: #fff;
    font-size: 16px;
    text-shadow: 0 0 6px rgb(41, 48, 55);
    transition: all 0.3s;
  }
  header .header_inner nav ul li a:hover {
    text-decoration: none;
    color: #4caf50;
    text-shadow: none;
  }
  header .header_inner nav ul .contact {
    padding: 0;
  }
  header .header_inner nav ul .contact a {
    display: block;
    text-shadow: none;
    padding: 20px;
  }
  header .header_inner .menu-trigger {
    display: none;
  }
}

.news__list {
  max-width: 900px;
  margin: 0 auto;
}

.news__item {
  padding: 14px 0;
  border-bottom: 1px dotted rgba(0, 0, 0, 0.25);
}

/* 日付行（titleは空なので詰める） */
.news__meta {
  margin: 0;
  padding: 0;
}

/* 日付を左カラムに固定 */
.news__date {
  display: block;
  width: 140px; /* 日付列幅 */
  font-size: 15px;
  line-height: 1.4;
  white-space: nowrap;
  margin: 0;
}

/* 本文を日付列の右側に揃えて配置（上揃えに見える） */
.news__body {
  margin: -1.4em 0 0 156px;
  padding: 0;
}

/* リッチエディタのp余白でズレるのを防ぐ */
.news__body p {
  line-height: 1.3;
}

.news__body p:last-child {
  margin-bottom: 0;
}

/* リンク */
.news__body a {
  color: #2f7d32;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 600px) {
  .news__body {
    margin: 8px 0 0 0; /* インデント解除 */
  }
  .news__date {
    width: auto;
  }
}
section {
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  section {
    margin-bottom: 150px;
  }
}
section .ttl_h2 {
  position: relative;
  color: #333;
  font-size: 24px;
  font-weight: 500;
  font-style: normal;
  border-bottom: 3px solid #aed581;
  padding-bottom: 1px;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  section .ttl_h2 {
    font-size: 32px;
    line-height: 1;
    text-align: left;
    padding-bottom: 8px;
    margin-bottom: 40px;
  }
}
section .ttl_h2::first-letter {
  font-size: 1.2em;
  color: #fff;
  background: #4caf50;
  padding-left: 10px;
  padding-right: 5px;
  margin-right: 2px;
}
@media (min-width: 768px) {
  section .ttl_h2::first-letter {
    margin-right: 4px;
  }
}
section .ttl_h3 {
  font-size: 20px;
  font-weight: bold;
  border-left: 4px solid #4caf50;
  padding-left: 8px;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  section .ttl_h3 {
    font-size: 24px;
    margin-bottom: 20px;
  }
}

.information_descri {
  margin-bottom: 20px;
}

.tenki,
.seiyaku {
  color: #2f7d32;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.flex {
  margin-top: 30px;
}
@media (min-width: 768px) {
  .flex {
    display: flex;
    gap: 40px;
    margin-top: 60px;
  }
}
.flex p {
  flex: 1;
}

.information .flex {
  margin-top: 30px;
}
@media (min-width: 768px) {
  .information .flex {
    display: flex;
    gap: 40px;
    margin-top: 60px;
  }
  .information .flex .content,
  .information .flex .cargo_image {
    flex: 1;
  }
}
@media (min-width: 768px) {
  .information .flex_info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 60px;
    margin-bottom: 30px;
  }
}
@media (min-width: 768px) {
  .information .flex_info p {
    width: 48%;
  }
}
.information .mail {
  display: inline-block;
  color: #fff;
  text-align: center;
  line-height: 1;
  width: 100%;
  border: 1px solid #4caf50;
  background: #4caf50;
  border-radius: 8px;
  padding: 16px 0;
  margin: 15px 0;
  font-size: 18px;
}
@media (min-width: 768px) {
  .information .mail {
    width: 48%;
    margin: 0;
  }
}
.information .mail:hover {
  color: #333;
  background: #fff;
  transition: all 0.3s;
}
.information .mail:hover .mail_arrow {
  position: relative;
  display: inline-block;
  transform: translateX(8px);
}
.information .mail .mail_arrow {
  display: inline-block;
  transition: all 0.5s;
}

.price_box {
  max-width: 900px;
  margin: 0 auto;
}

.item {
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .item .flex {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex: 1;
    margin-top: 30px;
  }
}

.price_card {
  background: #fff;
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  padding: 18px;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .price_card {
    padding: 22px;
  }
}
.price_card h4 {
  font-size: 18px;
  font-weight: bold;
}
.price_card .price {
  color: #4caf50;
  font-size: 28px;
  font-weight: bold;
}
.price_card .price span {
  font-size: 18px;
}
@media (min-width: 768px) {
  .price_card .price {
    font-size: 32px;
  }
}
.price_card .price_detail {
  font-size: 16px;
  color: #777;
}

.table {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  margin-top: 8px;
}
.table a {
  color: #2f7d32;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.row {
  display: grid;
  grid-template-columns: 240px 1fr;
}

.row:not(:last-child) {
  border-bottom: 1px solid #eee;
}

.th {
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 18px;
  background: #66bb6a;
  padding: 12px 18px;
}
@media (min-width: 768px) {
  .th {
    padding: 18px;
  }
}

.td {
  font-size: 16px;
  line-height: 1.5;
  padding: 12px 18px;
}
@media (min-width: 768px) {
  .td {
    padding: 18px;
  }
}

@media (max-width: 640px) {
  .row {
    grid-template-columns: 1fr;
  }
  .th {
    border-bottom: 1px solid #e5e7eb;
  }
}
.area_facility {
  margin: 0 auto;
}

.area_facility_course_info {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.area_description {
  display: flex;
  flex-direction: column;
  justify-content: end;
  height: 100%;
}
.area_description p {
  font-size: 16px;
}
@media (min-width: 768px) {
  .area_description p {
    font-size: 18px;
    line-height: 2;
  }
}
.area_description p span {
  color: #4caf50;
  font-weight: bold;
}

.area_facility_course_info_wrap img {
  margin-bottom: 20px;
}

.facility_category {
  border-bottom: 1px solid #ddd;
  padding: 20px 0;
}

.facility_category_ttl {
  font-weight: bold;
}

@media (min-width: 768px) {
  .facility_category {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  .facility_category_ttl {
    text-align: center;
    font-weight: bold;
    width: 30%;
  }
  .facility_category_content {
    width: 70%;
  }
}
.area_facility .course_info_flex {
  margin-bottom: 10px;
}

.area_facility .course_info_flex .flex_item img {
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .area_facility .course_info_flex {
    display: flex;
    gap: 20px;
    align-items: stretch;
    flex-wrap: wrap;
  }
  .area_facility .course_info_flex .flex_item {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 10px;
    box-sizing: border-box;
    border-radius: 8px;
    min-width: 300px;
  }
  .flex_item img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 10px;
  }
  .flex_item img:last-child {
    margin-bottom: 0;
  }
}
.movie {
  margin: 0 auto;
}
@media (min-width: 768px) {
  .movie {
    max-width: 70%;
  }
}

.movie_box {
  position: relative;
}

.movie_box::before {
  content: "";
  display: inline-block;
  padding-top: 55.5%;
}

.movie iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.contact .form_area {
  display: flex;
  justify-content: center;
  align-items: center;
}

form {
  width: 100%;
  max-width: 600px;
}
@media (min-width: 768px) {
  form {
    width: 80%;
  }
}

input,
textarea {
  display: block;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 4px;
  margin-bottom: 15px;
}

input {
  width: 100%;
}
@media (min-width: 768px) {
  input {
    width: 60%;
  }
}

textarea {
  width: 100%;
}

.radio-wrap {
  display: flex;
  gap: 60px;
  margin-top: 5px;
  margin-bottom: 20px;
}

.radio-row {
  display: flex;
  align-items: center;
  width: auto;
  cursor: pointer;
}

.radio-text {
  font-size: 18px;
  margin-left: 5px;
}

.radio-row input[type=radio] {
  width: 18px;
  height: 18px;
  margin-bottom: 0;
}

.submit {
  display: block;
  color: #fff;
  border-radius: 4px;
  background: #1565c0;
  padding: 8px 16px;
  margin: 0 auto;
}

.camp_copy {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .camp_copy {
    font-size: 34px;
  }
}

.camp_item {
  margin-bottom: 40px;
}

.camp_note .box {
  border-bottom: 1px dotted rgba(0, 0, 0, 0.4);
  padding-bottom: 5px;
  margin-bottom: 5px;
}
@media (min-width: 768px) {
  .camp_note .box {
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
}
.camp_note .box a {
  color: #2f7d32;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.access ol {
  list-style: decimal;
  padding-left: 1.5em;
  margin-bottom: 1em;
}
.access ol li {
  margin-bottom: 8px;
  line-height: 1.5;
}
.access .access_wrap {
  margin-bottom: 30px;
}
.access .ttl_h4 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 8px;
}
.access .note {
  color: red;
}
.access .flex {
  display: flex;
  justify-content: start;
  gap: 15px;
}
@media (min-width: 768px) {
  .access .flex {
    gap: 50px;
  }
}
.access .flex .signboard {
  flex: 1;
  width: 226px;
}
@media (min-width: 768px) {
  .access .flex .signboard {
    flex: none;
  }
}
.access .flex .signboard img {
  margin-bottom: 4px;
}
.access .flex p {
  font-size: 14px;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .access .flex p {
    font-size: 16px;
  }
}
.access a {
  color: #2f7d32;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.access .carnavi iframe {
  max-width: 100%;
}

.access_indent {
  text-indent: -1em;
  padding-left: 1em;
}

.access_map {
  margin-bottom: 20px;
}
.access_map iframe {
  width: 100%;
}

.calendar_wrap {
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .calendar_wrap {
    margin-bottom: 30px;
  }
}
.calendar_wrap iframe {
  display: block;
  width: 100%;
  height: 500px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  margin: 0 auto;
}
@media (min-width: 768px) {
  .calendar_wrap iframe {
    height: 600px;
  }
}

.link_flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
@media (min-width: 768px) {
  .link_flex {
    gap: 50px;
  }
}
.link_flex li {
  width: 120px;
}
@media (min-width: 768px) {
  .link_flex li {
    width: 150px;
  }
}
.link_flex li figcaption {
  font-size: 14px;
}

#gototop {
  z-index: 20000;
  position: fixed;
  bottom: 20px;
  left: 15px;
}

#gototop a {
  display: block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-weight: normal;
  color: #fff;
  text-align: center;
  background: rgba(1, 150, 60, 0.6);
  font-size: 14px;
  text-decoration: none;
  border-radius: 50%;
}

#gototop a:hover {
  background: rgb(1, 150, 60);
}

footer {
  color: #fff;
  background-color: #4caf50;
  padding: 30px 0 30px;
}
footer small {
  text-align: center;
  display: block;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  padding-top: 20px;
  margin-top: 20px;
}
@media (min-width: 768px) {
  footer small {
    margin-top: 20px;
  }
}

@media (min-width: 768px) {
  .footer_flex {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 100px;
  }
}
.footer_flex .location .name {
  font-size: 16px;
  line-height: 1.3;
}
.footer_flex .location .add {
  font-size: 14px;
  line-height: 1.3;
}

.footer_flex_left {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  .footer_flex_left {
    display: block;
    margin-bottom: 10px;
  }
}

.footer_link ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .footer_link ul {
    justify-content: left;
  }
}
.footer_link ul li {
  width: 140px;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .footer_link ul li {
    width: 150px;
  }
}

.footer_logo {
  max-width: 250px;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .footer_logo {
    width: 250px;
    margin-bottom: 20px;
  }
}

.facebook_link {
  width: 40px;
  margin-left: 8%;
}
@media (min-width: 768px) {
  .facebook_link {
    width: 80px;
    margin-left: 0;
  }
}

.reveal {
  opacity: 0;
  transition: opacity 1s ease;
}

.reveal.is-visible {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    transition: none !important;
  }
}/*# sourceMappingURL=style.css.map */