@charset "UTF-8";

:root {
  /* 色管理用の変数 */
  --black-color: #29332d;
  --black-sub-color: #53665b;
  --white-color: #D9D9D9;
  --main-color: #a6cdb6;
  --background-color: #edf5f0;
  --sub-color02: #ccb5a5;
}

:root {
  /* コンテンツ幅管理用の変数 */
  --content-width-sm: 760px;
  --content-width: 960px;
  --content-width-lg: 1088px;
}

:root {
  /* z-index管理用の変数 */
  --z-index-back: -1;
  --z-index-default: 1;
  --z-index-page-top: 50;
  --z-index-header: 100;
  --z-index-menu: 150;
  --z-index-modal: 200;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  color: var(--black-color);
  font-size: 16px;
  font-family: "Sawarabi Gothic", sans-serif;
  letter-spacing: 0.1em;
  overflow-x: hidden;
}

/* クリックした際の青い枠線を削除 */
*:focus {
  outline: none;
}

/* タップした際の青い四角を削除 */
button,
span {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  cursor: pointer;
}

@media screen and (min-width: 1080px) {
  .u_lg-dn {
    display: none;
  }
}

/* layout */
.l_container-sm,
.l_container,
.l_container-lg {
  width: 100%;
  padding: 0 16px;
  margin: 0 auto;
  box-sizing: border-box; 
}

.l_container-sm {
  max-width: var(--content-width-sm);
}

.l_container {
  max-width: var(--content-width) ;
}

.l_container-lg {
  max-width: var(--content-width-lg) ;
}

.l_contents {
  padding: 120px 0;
}

.l_contents:nth-child(2n) {
  background: var(--background-color);
}

.l_header {
  height: 76px;
  width: 100%;
  padding: 0 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  top: 0;
  left: 0;
  position: fixed;
  z-index: var(--z-index-default);
  background: var(--main-color);
}

@media screen and (min-width: 1080px) {
  .l_header {
    padding: 0 10%;
  }
}

.l_header-logo {
  font-size: 24px;
  font-weight: bold;
  display: flex;
  align-items: center; 
  justify-content: center;
  color: var(--black-color);
} 

.l_header-logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
}

.l_header-logo-img {
  width: 40px;
  height: 40px;
  margin-right: 10px; 
  object-fit: contain;
}

.l_header-nav {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100vh;
  transform: translateX(120%);
  transition: ease .5s;
  background: url(../img/leaf.png) center 10% / cover; 
  z-index: var(--z-index-header);
  opacity: 0;
}

@media screen and (min-width: 1080px) {
  .l_header-nav {
    position: static;
    background: transparent;
    width: auto;
    height: auto;
    display: block;
    opacity: 1;
    pointer-events: inherit;
    transform: translateX(0);
  }
}

.l_header-nav_list {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media screen and (min-width: 1080px) {
  .l_header-nav_list {
    display: flex;
    gap: 0 40px;
    position: static;
    transform: none;
  }
}

.l_header-nav_item {
  text-align: center;
  font-size: 16px;
  font-weight: bold;
}

.l_header-nav_item:not(:first-child) {
  margin-top: 40px;
}

@media screen and (min-width: 1080px) {
  .l_header-nav_item:not(:first-child) {
    margin-top: 0;
  }
}

.l_header-nav_link {
  color: var(--black-color);
  font-family: 'Roboto', sans-serif;
}

@media screen and (min-width: 1080px) {
  .l_header-nav_link {
    display: inline-block;
    position: relative;
    overflow: hidden;
  }

  .l_header-nav_link::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--black-color);
    transform: translate(-100%, 0);
    transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s;
    content: "";
  }

  .l_header-nav_link:hover:after {
    transform: translate(0, 0);
  }
}

.l_footer {
  padding: 24px 0 24px;
  text-align: center;
  background: var(--main-color);
}

.l_footer-copyright {
  font-size: 12px;
  color: var(--black-color);
}


/* module */
.m_hamburger {
  width: 30px;
  height: 22px;
  position: relative;
  z-index: var(--z-index-menu);
  background-color: transparent;
  border-color: transparent;
}

@media screen and (min-width: 1080px) {
  .m_hamburger {
    display: none;
  }
}

.m_hamburger-bar {
  width: 100%;
  height: 2px;
  display: block;
  position: absolute;
  left: 50%;
  background: var(--black-color);
  transition: 0.3s;
}

.m_hamburger-bar:first-child {
  top: 0;
  transform: translate(-50%, 0);
}

.m_hamburger-bar:nth-child(2) {
  top: 50%;
  transform: translate(-50%, -50%);
}

.m_hamburger-bar:last-child {
  top: 100%;
  transform: translate(-50%, -100%);
}

.m_btn-wrapper {
  width: 338px;
  height: 48px;
  margin: 40px auto 0;
}

@media screen and (min-width: 1080px) {
  .m_btn-wrapper {
  margin-top: 60px;
  }
}

.m_btn {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  box-shadow: 2px 2px 2px rgba(122, 93, 67, 0.4);
  color: var(--black-sub-color);
  font-weight: bold;
  overflow: hidden;
  background: var(--main-color);
  position: relative;
}


.m_btn:hover {
  opacity: 0.8;
}

.m_btn__right-arrow::before {
  content: "";
  position: absolute;
  right: 30px;
  top: 50%;
  transform: rotate(45deg)translateY(-50%);
  width: 12px;
  height: 12px;
  border-style: solid;
  border-color: var(--black-sub-color) var(--black-sub-color) transparent transparent ;
}

/* section-title */
.m_section-title {
  text-align: center;
}

.m_section-title_main {
  position: relative;
  display: inline-block;
}

.m_section-title_main::before,
.m_section-title_main::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 18px;
  width: 18px;
  border-radius: 50%;
  background: var(--main-color);
}

.m_section-title_main::before {
  left: -34px;
}

.m_section-title_main::after {
  right: -34px;
}

.m_section-title_main {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}

@media screen and (min-width: 1080px) {
  .m_section-title_main {
  font-size: 28px;
  }
}

.m_section-title_sub {
  font-size: 14px;
  text-align: center;
  margin-top: 8px;
}


/* top_kv */
.top_kv {
  height: 100vh;
  background-color: var(--background-color);
  position: relative;
}

.top_kv-inner {
  position: relative;
  height: 100%;
}

.top_kv-img {
  position: absolute;
  background-position: 50% 30%; 
  background-size: cover; 
  background-repeat: no-repeat; 
  border-radius: 15px;
  overflow: hidden;
  box-sizing: border-box;
}

.top_kv-img__center {
  top: 55%;
  left: 50%;
  transform: translateX(-50%)scale(0.9);
  max-width: 100%;
  width: 90%; 
  height: 212px;
  background-image: url("../img/kv.jpg");
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

@media screen and (min-width: 768px) {
  .top_kv-img__center {
    transform: translate(-40%, -10%);
    width: 70%; 
    height: 350px;
  }
}

@media screen and (min-width: 1080px) {
  .top_kv-img__center {
    transform: translate(-10%, -70%);
    width: 50%; 
    height: 350px;
  }
}

@media screen and (min-width: 1080px) {
  .top_kv-img__right {
    top: 70%;
    left: 90%;
    max-width: 100%;
    width: 300px; 
    height: 185px;
    background-image: url("../img/img10.jpg");
  }
}

@media screen and (min-width: 1080px) {
  .top_kv-img__left {
    top: 60%;
    left: 10%;
    max-width: 100%;
    width: 343px; 
    height: 212px;
    background-image: url("../img/img6.jpg");
  }
}

@media screen and (min-width: 1080px) {
  .top_kv-img__far-left {
    top: 55%;
    left: -25%;
    max-width: 100%;
    width: 300px; 
    height: 185px;
    background-image: url("../img/gaikan.jpg");
  }
}

.top_kv_box {
  position: absolute;
  width: 320px;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: left;
}

@media screen and (min-width: 768px) {
  .top_kv_box {
    width: 600px;
    top: 30%;
    left: 100px;
    transform: translate(0, -50%);
  }
}
@media screen and (min-width: 1080px) {
  .top_kv_box {
    left: 16px;
  }
}

.top_kv_copy {
  font-size: 24px;
  font-weight: bold;
  color: var(--black-sub-color);
  letter-spacing: 0.2rem;
  text-shadow: 2px 2px 2px rgba(122, 93, 67, 0.2);
  white-space: nowrap;
  margin-top: 16px;
}

@media screen and (min-width: 768px) {
  .top_kv_copy {
    font-size: 32px;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }
}

@media screen and (min-width: 1200px) {
  .top_kv_copy {
    font-size: 36px;
  }
}

.top_kv_sub-copy {
  font-size: 18px;
  font-weight: bold;
  color: var(--black-sub-color);
  letter-spacing: 0.1rem;
  margin-top: 8px;
}

@media screen and (min-width: 768px) {
  .top_kv_sub-copy {
    margin-top: 32px;
  }
}

@media screen and (min-width: 768px) {
  .top_kv_sub-copy span {
  font-size: 28px;
  }
}

@media screen and (min-width: 768px) {
  .top_break-lg {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .top_break-sm {
    display: none;
  }
}

.top_kv-box_fade-in-text {
  opacity: 0;
  transform: translateY(20px);
}


/* top_kv-scroll */
.top_kv-scroll {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.top_kv-scroll_txt {
  font-size: 12px;
  font-weight: bold;
  color: var(--black-color);
  text-align: center;
}

.top_kv-scroll_arrow {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin: 8px auto 0;
  border: 1px solid var(--black-color);
  color: var(--black-color);
}

.top_content_desc {
  margin-top: 16px;
  line-height: 1.75;
}

@media screen and (min-width: 1080px) {
  .top_content_desc {
    margin-top: 16px;
  }
}


/* contact */
.top_contact_text {
  margin: 40px auto 0;
  max-width: 550px;
  width: 100%;
  line-height: 1.75;
  text-align: left;
}



/* common */
@media screen and (min-width: 768px) {
  .common {
  max-width: var(--content-width-sm);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  }
}

.common_contents-wrapper {
  max-width: 570px;
  width: 100%;
  margin-top: 48px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 768px) {
  .common_contents-wrapper {
    margin-top: 80px;
  }
}

@media screen and (min-width: 1080px) {
  .common_contents-wrapper {
    margin-top: 120px;
    max-width: var(--content-width-lg);
  }
}

.common_content_title {
  position: relative;
  display: inline-block;
  padding-left: 26px;
  font-size: 18px;
}

.common_content_title::before {
  content: "";
  position: absolute;
  top: 60%;
  transform: translateY(-50%);
  height: 14px;
  width: 14px;
  background: var(--main-color);
  left: 0;
}

.common_content_desc {
  margin-top: 16px;
  line-height: 1.75;
}

.common_content_desc_underline {
  margin-top: 48px;
}

.common_content_desc_underline::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80%;
  height: 2px;
  background-color: var(--black-sub-color);
  content: "";
}

@media screen and (min-width: 1080px) {
  .common_content_desc_underline::after {
  width: 50%;
  }
}

.introduction_contents-wrapper {
  max-width: 570px;
  width: 100%;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}


@media screen and (min-width: 1080px) {
  .introduction_contents-wrapper {
    max-width: var(--content-width-lg);
    flex-direction: row;
  }
}

.introduction_content:not(:first-child) {
  margin-top: 48px;
}

.introduction_content-img {
  max-width: 400px;
  width: 100%;
  object-fit: cover;
  box-shadow: rgba(122, 93, 67, 0.8) 4px 4px 4px;
}

.introduction_content-img {
  margin-top: 24px;
  border-radius: 10px;
}


.time-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.time-table th,
.time-table td {
  border: 1px solid var(--black-sub-color);
  padding: 8px;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap
}

.time-table th,
.time-table td {
  width: calc(100% / 3);
}

.common-img_contents {
  position: relative;
  margin-top: 48px;
  z-index: var(--z-index-back);
}

@media screen and (min-width: 768px) {
  .common-img_contents {
    margin-top: 80px;
  }
} 

.swiper-wrapper {
  transition-timing-function: linear;
}

.common-img_swiper {
  max-width: 100%;
}

.common-img_swiper-slide_img {
  height: 212px;
  object-fit: cover;
}

/* Access */
.access_contents-wrapper {
  max-width: 570px;
  width: 100%;
  margin-top: 48px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
}

@media screen and (min-width: 768px) {
  .access_contents-wrapper {
    margin-top: 80px;
  }
}

@media screen and (min-width: 1080px) {
  .access_contents-wrapper {
    margin-top: 120px;
    max-width: var(--content-width-lg);
    flex-direction: row;
  }
}

.access_content:not(:first-child) {
  margin-top: 48px;
}

.access_content-img {
  max-width: 570px;
  width: 100%;
  object-fit: cover;
  box-shadow: rgba(122, 93, 67, 0.8) 4px 4px 4px;
}

.access_contents {
  margin-top: 80px;
  white-space: nowrap
}

@media screen and (min-width: 1080px) {
  .access_contents {
    margin-left: 40px;
  }
}

.access_map_wrapper {
  width: 100%;
  margin: 80px auto 0;
}

@media screen and (min-width: 768px) {
  .access_map_wrapper {
  margin-top: 120px;
  }
}

.access_map_wrapper iframe {
  aspect-ratio: 16 / 9;
  width: 100%;
  max-width: 100%;
  height: auto;
}

@media screen and (min-width: 1080px) {
  .access_map_wrapper iframe {
    height: 500px;
  }
}


/* contact */
.form_container {
  max-width: var(--content-width-sm);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.contact_head_text {
  margin-top: 80px;
}

@media screen and (min-width: 768px) {
  .contact_head_text {
    text-align: center;
  }
}

.form {
  margin-top: 64px;
}

@media screen and (min-width: 768px) {
.form {
  margin-top: 80px;
  }
}

.form_dt {
  display: flex;
  align-items: center;
}

.form_dt:not(:first-child) {
  margin-top: 32px;
}

.form_dd {
  margin-top: 8px;
}

.form_input {
  width: 100%;
  height: 40px;
  border: 1px solid var(--black-color);
  border-radius: 3px;
  padding: 0 8px;
}

.form_required {
  font-size: 12px;
  color: var(--black-sub-color);
  padding: 0 8px;
  border: 1px solid var(--black-sub-color);
  border-radius: 50px;
  display: inline-flex;
  /* display: flex; */
  justify-content: center;
  align-items: center;
  margin-left: 8px;
}

.form_textarea {
  width: 100%;
  height: 200px;
  border: 1px solid var(--black-color);
  border-radius: 5px;
  padding: 16px;
  resize: none;
}



/* ---------- js ---------- */
.js_body.is-active {
  overflow: hidden;
}

.js_opening.is-active {
  opacity: 0;
  visibility: hidden;
}


.js_navigation {
  pointer-events: none;
  transition: opacity 0.5s;
}

@media screen and (min-width: 1080px) {
  .js_navigation {
    pointer-events: auto;
    opacity: 1;
  }
}

.js_navigation.is-active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: inherit;
}

.js_hamburger.is-active .m_hamburger-bar:first-child {
  top: 50%;
  transform: translate(-50%, 0) rotate(45deg);
}

.js_hamburger.is-active .m_hamburger-bar:nth-child(2) {
  opacity: 0;
}

.js_hamburger.is-active .m_hamburger-bar:last-child {
  top: 50%;
  transform: translate(-50%, 0) rotate(-45deg);
}


/* wp */
.wpcf7-spinner {
  display: none;
  /* 送信ボタンの変なスペース消す */
}

.wpcf7-form-control {
  display: flex;
  gap: 8px;
  overflow-x: scroll;
}

@media screen and (min-width: 1080px) {
  .wpcf7-form-control {
    flex-wrap: wrap;
    gap: 20px;
  }
}

/* スクロールの背景の設定 */
.wpcf7-form-control::-webkit-scrollbar-track {
  border-radius: 5px;
  background: rgba(122, 93, 67, 0.4);
}

/* ドラックできるスクロール部の設定 */
.wpcf7-form-control::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: rgba(41, 86, 102, 0.6);
}

@media screen and (min-width: 1080px) {
  .wpcf7-form-control::-webkit-scrollbar {
    display: none;
  }
}

.wpcf7-list-item {
  display: inline-block;
  border: 1px solid var(--black-color);
  border-radius: 3px;
  padding: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
}

.wpcf7-list-item-label {
  margin-left: 6px;
}

.wpcf7-list-item-label::before,
.wpcf7-list-item-label::after {
  content: none;
}

/* Contact Form 7でチェックボックスやラジオをクリックするとエラーメッセージが出てしまう時の対処法 */
.wpcf7-form.hide_error_message .wpcf7-not-valid-tip {
	display: none;
}


/* ---------- CF7送信ボタン最適化（右矢印残し） ---------- */
input[type="submit"].m_btn {
  width: 100%;               /* 横いっぱい */
  height: 48px;              /* 高さ固定 */
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 16px;
  color: var(--black-sub-color);
  background: var(--main-color);
  box-shadow: 2px 2px 2px rgba(122, 93, 67, 0.4);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
}

input[type="submit"].m_btn:hover {
  opacity: 0.8;
}

/* 右矢印装飾を残す */
input[type="submit"].m_btn.m_btn__right-arrow::before {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: rotate(45deg) translateY(-50%);
  width: 12px;
  height: 12px;
  border-style: solid;
  border-color: var(--black-sub-color) var(--black-sub-color) transparent transparent;
}

.m_btn-wrapper {
  max-width: 338px;
  width: 100%;
  margin: 40px auto 0;
}

@media screen and (min-width: 1080px) {
  .m_btn-wrapper {
    margin-top
