@charset "UTF-8";
/*----------------------------------------------------
基本設定
----------------------------------------------------*/
.header_wrap {
  position: fixed;
  width: 100%;
  z-index: 10;
  padding: 10px 0;
  top: 0;
  /* 751- */
}
@media all and (min-width: 751px) {
  .header_wrap {
    padding: 30px 0;
  }
}
.header_wrap .logo a {
  width: 70px;
  display: block;
  /* 751- */
}
@media all and (min-width: 751px) {
  .header_wrap .logo a {
    width: 180px;
  }
}
.header_wrap .logo span {
  display: block;
  margin-top: 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  /* -750 */
}
@media all and (max-width: 750px) {
  .header_wrap .logo span {
    font-size: 9px;
  }
}
.header_wrap header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}
.header_wrap .hamburger {
  width: 34px;
  position: relative;
  z-index: 1;
  height: 70px;
  cursor: pointer;
  /* 751- */
}
@media all and (min-width: 751px) {
  .header_wrap .hamburger {
    width: 56px;
  }
}
.header_wrap .hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  border-radius: 8px;
  background: #1D2120;
  position: absolute;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  /* 751- */
}
@media all and (min-width: 751px) {
  .header_wrap .hamburger span {
    height: 5px;
  }
}
.header_wrap .hamburger span:nth-child(1) {
  top: 14px;
  /* 751- */
}
@media all and (min-width: 751px) {
  .header_wrap .hamburger span:nth-child(1) {
    top: 8px;
  }
}
.header_wrap .hamburger span:nth-child(2) {
  top: 24px;
  /* 751- */
}
@media all and (min-width: 751px) {
  .header_wrap .hamburger span:nth-child(2) {
    top: 20px;
  }
}
.header_wrap .hamburger span:nth-child(3) {
  top: 34px;
  /* 751- */
}
@media all and (min-width: 751px) {
  .header_wrap .hamburger span:nth-child(3) {
    top: 32px;
  }
}
.header_wrap .hamburger p {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 500;
  position: absolute;
  text-align: center;
  bottom: 12px;
  letter-spacing: 0.1em;
  font-size: 11px;
  /* 751- */
}
@media all and (min-width: 751px) {
  .header_wrap .hamburger p {
    bottom: 0;
    letter-spacing: 0.2em;
    font-size: 16px;
  }
}
.header_wrap .hamburger:hover span:nth-child(1) {
  top: 8px;
}
.header_wrap .hamburger:hover span:nth-child(2) {
  top: 20px;
}
.header_wrap .hamburger:hover span:nth-child(3) {
  top: 32px;
}
.header_wrap .hamburger.active span:nth-child(1) {
  top: 20px;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
}
.header_wrap .hamburger.active span:nth-child(2) {
  opacity: 0;
}
.header_wrap .hamburger.active span:nth-child(3) {
  top: 20px;
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
}
.header_wrap.scrolled {
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  padding: 0;
  background: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header_wrap.scrolled header {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header_wrap.scrolled .logo {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  /* 751- */
}
@media all and (min-width: 751px) {
  .header_wrap.scrolled .logo {
    -webkit-transform: scale(0.7);
            transform: scale(0.7);
  }
}
.header_wrap.scrolled .hamburger {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  /* 751- */
}
@media all and (min-width: 751px) {
  .header_wrap.scrolled .hamburger {
    -webkit-transform: scale(0.7);
            transform: scale(0.7);
  }
}

.menu {
  background: #36BB48;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 100%;
  right: -100%;
  overflow-y: scroll;
  height: 100vh;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.menu .logo {
  color: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 30px 0 0;
}
.menu ul {
  padding: 70px 0px 0 0;
  /* 751- */
}
@media all and (min-width: 751px) {
  .menu ul {
    padding: 70px 0px 0 10%;
  }
}
.menu li {
  margin: 0 0 15px;
  /* 751- */
}
@media all and (min-width: 751px) {
  .menu li {
    margin: 0 0 20px;
  }
}
.menu li a {
  color: #fff;
  font-size: 20px;
  position: relative;
  /* 751- */
}
@media all and (min-width: 751px) {
  .menu li a {
    font-size: 30px;
  }
}
.menu li a::after {
  content: "";
  position: absolute;
  background: #fff;
  width: 0%;
  height: 1px;
  bottom: 0;
  left: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (hover: hover) {
  .menu li a:hover::after {
    width: 100%;
  }
}
.menu li.recruit {
  margin: 0 0 30px;
  /* 751- */
}
@media all and (min-width: 751px) {
  .menu li.recruit {
    margin: 0 0 60px;
  }
}
.menu li.menu_s {
  margin: 20px 0;
  /* 751- */
}
@media all and (min-width: 751px) {
  .menu li.menu_s {
    margin: 10px 0;
  }
}
.menu li.menu_s a {
  font-size: 14px;
  /* 751- */
}
@media all and (min-width: 751px) {
  .menu li.menu_s a {
    font-size: 20px;
  }
}
.menu.active {
  left: 0;
  right: 0;
}
.menu .menu_contact {
  position: absolute;
  width: 16%;
  left: -50px;
  bottom: -60px;
  z-index: 1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.menu .menu_contact a {
  display: block;
  position: relative;
  font-size: 30px;
}
.menu .menu_contact a img {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.menu .menu_contact a span {
  display: block;
  background: #F9E632;
  border-radius: 4px;
  position: absolute;
  top: 14px;
  right: -160px;
  padding: 6px 20px;
  text-align: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.menu .menu_contact a span::after {
  content: "";
  background: #F9E632;
  height: 20px;
  width: 20px;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  position: absolute;
  right: -15px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  top: 20px;
}
.menu .menu_sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  padding: 20px 0px 0 0;
  /* 751- */
}
@media all and (min-width: 751px) {
  .menu .menu_sns {
    gap: 30px;
    padding: 20px 0px 0 10%;
  }
}
.menu .menu_sns a {
  width: 30px;
}
.menu .menu_sns a img {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (hover: hover) {
  .menu .menu_sns a:hover img {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}
.menu .menu_birds span {
  position: absolute;
  mix-blend-mode: multiply;
}
.menu .menu_birds span:nth-child(1) {
  top: 4%;
  right: 1%;
  width: 50vw;
}
.menu .menu_birds span:nth-child(2) {
  top: 68%;
  right: 23%;
  width: 23vw;
}
.menu .menu_birds span:nth-child(3) {
  top: 45%;
  right: 3%;
  width: 19vw;
}

.scrolled .menu.active .logo {
  margin: 0;
}

.footer_contact {
  position: fixed;
  width: 60px;
  bottom: 30px;
  right: -300px;
  z-index: 1;
  /* 751- */
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media all and (min-width: 751px) {
  .footer_contact {
    width: 140px;
  }
}
.footer_contact a {
  display: block;
  position: relative;
}
.footer_contact a img {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (hover: hover) {
  .footer_contact a:hover img {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
    -webkit-transform-origin: right center;
            transform-origin: right center; /* 右端の中央を回転軸にする */
  }
}
.footer_contact.active {
  right: 0;
}

footer {
  position: relative;
  margin-top: -120px;
  color: #fff;
  padding: 40px 0;
}
footer::after {
  position: absolute;
  content: "";
  background-image: url(../images/common/bg_footer.webp);
  background-size: cover;
  height: 440px;
  background-position: top center;
  background-repeat: no-repeat;
  width: 100%;
  bottom: 0;
  z-index: -2;
  /* 751- */
}
@media all and (min-width: 751px) {
  footer::after {
    height: 540px;
  }
}
footer .footer_inn {
  width: 100%;
  /* 751- */
}
@media all and (min-width: 751px) {
  footer .footer_inn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
footer .footer_left .footer_logo {
  margin-top: 20px;
  /* 751- */
}
@media all and (min-width: 751px) {
  footer .footer_left .footer_logo {
    margin-top: 40px;
  }
}
footer .footer_left .footer_logo a {
  width: 70px;
  display: block;
  /* 751- */
}
@media all and (min-width: 751px) {
  footer .footer_left .footer_logo a {
    width: 180px;
  }
}
footer .footer_left .footer_logo span {
  display: block;
  margin: 20px 0 40px;
  /* -750 */
}
@media all and (max-width: 750px) {
  footer .footer_left .footer_logo span {
    font-size: 9px;
    margin: 10px 0 40px;
  }
}
footer .footer_right {
  /* 751- */
}
@media all and (min-width: 751px) {
  footer .footer_right {
    width: 40%;
  }
}
footer .footer_right ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
footer .footer_right ul li {
  width: 50%;
  margin: 10px 0;
}
footer .footer_right ul li a {
  display: block;
  color: #fff;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
footer .footer_right ul li a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 1px;
  bottom: 0;
  left: 0;
  background: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (hover: hover) {
  footer .footer_right ul li a:hover::after {
    width: 100%;
  }
}
footer .sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  /* -750 */
}
@media all and (max-width: 750px) {
  footer .sns {
    gap: 15px;
  }
}
footer .sns a {
  width: 30px;
  /* -750 */
}
@media all and (max-width: 750px) {
  footer .sns a {
    width: 20px;
    margin: 30px 0;
  }
}
footer .copyright {
  color: #fff;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 11px;
  /* 751- */
}
@media all and (min-width: 751px) {
  footer .copyright {
    font-size: 12px;
    margin-top: 100px;
    text-align: right;
  }
}

/*----------------------------------------------------
共通スタイル
----------------------------------------------------*/
* {
  margin: 0;
  padding: 0;
  font-size: 100%;
  font-style: normal;
}

body {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  color: #1D2120;
  /* 751- */
}
@media all and (min-width: 751px) {
  body {
    font-size: 16px;
  }
}

*, *::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

a {
  color: #1D2120;
  text-decoration: none;
}

a img {
  border: none;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

figure {
  margin: 0;
}

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

ul, li, dl, dt, dd {
  margin: 0;
  padding: 0;
  list-style: none;
}

input, label, select, textarea {
  vertical-align: middle;
}

/*----------------------------------------------------
inner
----------------------------------------------------*/
/* ベース */
.inner {
  padding: 0 20px;
  /* 751- */
}
@media all and (min-width: 751px) {
  .inner {
    padding: 0 40px;
    max-width: 1280px;
    margin: 0 auto;
  }
}

.inner_wide {
  padding: 0 20px;
  /* 751- */
}
@media all and (min-width: 751px) {
  .inner_wide {
    padding: 0 40px;
    max-width: 1400px;
    margin: 0 auto;
  }
}

/*----------------------------------------------------
表示 非表示
----------------------------------------------------*/
.only_sp {
  display: block;
  /* 751- */
}
@media all and (min-width: 751px) {
  .only_sp {
    display: none;
  }
}

.only_pc {
  display: none;
  /* 751- */
}
@media all and (min-width: 751px) {
  .only_pc {
    display: block;
  }
}

.btn {
  background: #158A24;
  border: 1px solid #158A24;
  color: #fff;
  padding: 10px 40px;
  border-radius: 100px;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 20px auto 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  /* 751- */
}
@media all and (min-width: 751px) {
  .btn {
    margin: 40px auto 0;
  }
}
.btn:hover {
  background: #fff;
  color: #158A24;
}

.btn_house, .btn_post {
  width: 60px;
  height: 60px;
  border-radius: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%) scale(1);
          transform: translateX(-50%) scale(1);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  /* 751- */
}
@media all and (min-width: 751px) {
  .btn_house, .btn_post {
    width: 164px;
    height: 164px;
  }
}
.btn_house:hover, .btn_post:hover {
  -webkit-transform: translateX(-50%) scale(1.1);
          transform: translateX(-50%) scale(1.1);
}

.btn_house {
  background: #E34B50;
  color: #fff;
  bottom: 20px;
  text-align: center;
  /* 751- */
}
@media all and (min-width: 751px) {
  .btn_house {
    bottom: 60px;
  }
}

.btn_post {
  background: #F9E632;
  bottom: 30px;
  text-align: center;
  /* 751- */
  /* -750 */
}
@media all and (min-width: 751px) {
  .btn_post {
    bottom: 110px;
  }
}
@media all and (max-width: 750px) {
  .btn_post {
    font-size: 11px;
  }
}

.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 9999;
  opacity: 1;
  -webkit-transition: opacity 1s ease;
  transition: opacity 1s ease;
  pointer-events: none;
}

.loading.hide {
  opacity: 0;
}

.fade, .fadeleft {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
}

/* 左から入る用：X軸にずらす */
.fadeleft {
  -webkit-transform: translateX(-30px);
          transform: translateX(-30px);
}

/* 表示されたらアニメーション発動 */
.fade.show, .fadeleft.show {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.sec_concept h2 {
  text-align: center;
  font-size: 22px;
  padding: 20px 0 0;
  /* 751- */
}
@media all and (min-width: 751px) {
  .sec_concept h2 {
    font-size: 38px;
    padding: 0;
  }
}
.sec_concept h2 span {
  display: block;
  color: #fff;
  padding: 10px 0;
  /* 751- */
}
@media all and (min-width: 751px) {
  .sec_concept h2 span {
    padding: 20px 0;
  }
}
.sec_concept .concept_message {
  position: relative;
  background: #fff;
  max-width: 900px;
  border-radius: 8px;
  padding: 20px 10px;
  margin: 40px auto;
  /* 751- */
}
@media all and (min-width: 751px) {
  .sec_concept .concept_message {
    padding: 40px 20px;
    margin: 80px auto;
  }
}
.sec_concept .concept_message p {
  margin-bottom: 10px;
  color: #1D2120;
  line-height: 2;
  text-align: left;
  /* 751- */
}
@media all and (min-width: 751px) {
  .sec_concept .concept_message p {
    margin-bottom: 20px;
    text-align: center;
  }
}
.sec_concept .concept_message p.center {
  text-align: center;
}
.sec_concept .concept_icon > div {
  position: absolute;
}
.sec_concept .concept_icon .bread {
  top: -8%;
  width: 11%;
  left: 12%;
  /* 751- */
}
@media all and (min-width: 751px) {
  .sec_concept .concept_icon .bread {
    top: -6%;
    width: 9%;
    left: 6%;
  }
}
.sec_concept .concept_icon .bottle {
  top: -7%;
  right: 11%;
  width: 8%;
  /* 751- */
}
@media all and (min-width: 751px) {
  .sec_concept .concept_icon .bottle {
    top: -4%;
    right: 2%;
    width: 6%;
  }
}
.sec_concept .concept_icon .brush {
  top: -1%;
  right: 3%;
  width: 11%;
  /* 751- */
}
@media all and (min-width: 751px) {
  .sec_concept .concept_icon .brush {
    top: 13%;
    width: 8%;
    right: 9%;
  }
}
.sec_concept .concept_icon .clock {
  top: 22%;
  right: 9%;
  width: 14%;
  /* 751- */
}
@media all and (min-width: 751px) {
  .sec_concept .concept_icon .clock {
    top: 49%;
    right: 9%;
    width: 8%;
  }
}
.sec_concept .concept_icon .pot {
  width: 10%;
  top: 6%;
  left: 9%;
  /* 751- */
}
@media all and (min-width: 751px) {
  .sec_concept .concept_icon .pot {
    top: 25%;
    left: 1%;
    width: 13%;
  }
}
.sec_concept .concept_icon .shirt {
  top: -5%;
  left: -2%;
  width: 15%;
  /* 751- */
}
@media all and (min-width: 751px) {
  .sec_concept .concept_icon .shirt {
    top: 8%;
    left: 14%;
    width: 11%;
  }
}
.sec_concept .concept_icon .shoe {
  top: 24%;
  left: 10%;
  width: 15%;
  /* 751- */
}
@media all and (min-width: 751px) {
  .sec_concept .concept_icon .shoe {
    top: 59%;
    left: 3%;
    width: 10%;
  }
}
.sec_concept .concept_icon .shower {
  width: 13%;
  top: 10%;
  right: 0%;
  /* 751- */
}
@media all and (min-width: 751px) {
  .sec_concept .concept_icon .shower {
    top: 33%;
    right: 0%;
    width: 10%;
  }
}
.sec_concept .concept_icon .water {
  top: 10%;
  left: 3%;
  width: 14%;
  /* 751- */
}
@media all and (min-width: 751px) {
  .sec_concept .concept_icon .water {
    top: 36%;
    left: 13%;
    width: 12%;
  }
}

.note {
  text-align: center;
  line-height: 2;
}

.sec_ttl {
  padding: 0 0 20px;
  text-align: center;
  /* 751- */
}
@media all and (min-width: 751px) {
  .sec_ttl {
    padding: 0 0 20px;
  }
}
.sec_ttl span {
  display: block;
  text-align: center;
  font-weight: normal;
}
.sec_ttl .jp {
  font-size: 18px;
  font-weight: 500;
  /* 751- */
}
@media all and (min-width: 751px) {
  .sec_ttl .jp {
    font-size: 28px;
  }
}
.sec_ttl .en {
  font-size: 12px;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  /* 751- */
}
@media all and (min-width: 751px) {
  .sec_ttl .en {
    font-size: 14px;
  }
}

.page_ttl {
  text-align: center;
}
.page_ttl span {
  display: block;
}
.page_ttl span.en {
  font-size: 12px;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  /* 751- */
}
@media all and (min-width: 751px) {
  .page_ttl span.en {
    font-size: 22px;
  }
}
.page_ttl span.jp {
  font-size: 22px;
  font-weight: normal;
  /* 751- */
}
@media all and (min-width: 751px) {
  .page_ttl span.jp {
    font-size: 58px;
  }
}

.sec_join {
  /* スライドイン（左から） */
  /* ゆらゆらアニメーション */
}
.sec_join .content_ttl {
  text-align: center;
}
.sec_join .join_content {
  padding: 160px 0px 300px;
  position: relative;
  /* 751- */
}
@media all and (min-width: 751px) {
  .sec_join .join_content {
    padding: 20px 0px 720px;
  }
}
.sec_join .join_content .note {
  /* 751- */
}
@media all and (min-width: 751px) {
  .sec_join .join_content .note {
    margin-top: 30px;
  }
}
.sec_join .nest_house {
  width: 100px;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 110px;
  /* 751- */
}
@media all and (min-width: 751px) {
  .sec_join .nest_house {
    width: 300px;
    bottom: 220px;
  }
}
.sec_join .nest_house_inn {
  position: relative;
}
.sec_join .join_hand {
  width: 30vw;
  max-width: 400px;
  position: absolute;
  top: 280px;
  left: -20px;
  /* 751- */
}
@media all and (min-width: 751px) {
  .sec_join .join_hand {
    top: -30px;
    left: -75px;
  }
}
.sec_join .fadeleft {
  opacity: 0;
  -webkit-transform: translateX(-200px);
          transform: translateX(-200px);
  -webkit-transition: all 1s ease-out;
  transition: all 1s ease-out;
}
.sec_join .fadeleft.show {
  opacity: 1;
  -webkit-transform: translateX(-100px);
          transform: translateX(-100px);
}
@-webkit-keyframes swingAnim {
  0% {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
  50% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
  }
  100% {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
}
@keyframes swingAnim {
  0% {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
  50% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
  }
  100% {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
}
.sec_join .swing {
  -webkit-animation: swingAnim 4s ease-in-out infinite;
          animation: swingAnim 4s ease-in-out infinite;
  -webkit-transform-origin: left center;
          transform-origin: left center;
}

.bg_wood {
  position: relative;
  padding-bottom: 200px;
  color: #fff;
  /* 751- */
}
@media all and (min-width: 751px) {
  .bg_wood {
    padding-bottom: 740px;
  }
}
.bg_wood::before {
  background: #36BB48;
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  z-index: -2;
}
.bg_wood::after {
  position: absolute;
  content: "";
  background-image: url(../images/common/bg_wood_sp.webp);
  background-size: 100% auto;
  height: 880px;
  background-position: bottom center;
  background-repeat: no-repeat;
  width: 100%;
  bottom: 0;
  z-index: -1;
  /* 751- */
}
@media all and (min-width: 751px) {
  .bg_wood::after {
    background-image: url(../images/common/bg_wood.webp);
  }
}

.bg_flowers {
  position: relative;
  padding: 100px 0 100px;
  margin-top: -120px;
  /* 751- */
}
@media all and (min-width: 751px) {
  .bg_flowers {
    padding: 0 0 420px;
  }
}
.bg_flowers::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #FFF5D7;
  z-index: -3;
}
.bg_flowers::after {
  position: absolute;
  content: "";
  background-image: url(../images/common/bg_flower_sp.webp);
  background-size: contain;
  height: -webkit-fill-available;
  background-position: bottom center;
  background-repeat: no-repeat;
  width: 100%;
  bottom: 0;
  z-index: -3;
  /* 751- */
}
@media all and (min-width: 751px) {
  .bg_flowers::after {
    background-image: url(../images/common/bg_flower.webp);
  }
}

.bg_building {
  position: relative;
  padding: 0 0 100px;
  margin-top: 0px;
  color: #fff;
  /* 751- */
}
@media all and (min-width: 751px) {
  .bg_building {
    padding: 0 0 450px;
  }
}
.bg_building::before {
  position: absolute;
  content: "";
  background: #36BB48;
  width: 100%;
  height: 100%;
  z-index: -2;
}
.bg_building::after {
  position: absolute;
  content: "";
  background-image: url(../images/common/bg_building_sp.webp);
  background-size: 100% auto;
  height: -webkit-fill-available;
  background-position: bottom center;
  background-repeat: no-repeat;
  width: 100%;
  bottom: 0;
  z-index: -1;
  /* 751- */
}
@media all and (min-width: 751px) {
  .bg_building::after {
    background-image: url(../images/common/bg_building.webp);
  }
}

.bg_greenhill {
  position: relative;
  padding: 40px 0 20px;
  margin-top: -140px;
  /* 751- */
}
@media all and (min-width: 751px) {
  .bg_greenhill {
    padding: 80px 0;
  }
}
.bg_greenhill::after {
  position: absolute;
  content: "";
  background-image: url(../images/common/bg_greenhill_sp.webp);
  background-size: 100% auto;
  height: 120px;
  background-position: bottom center;
  background-repeat: no-repeat;
  width: 100%;
  bottom: -1px;
  z-index: -2;
  /* 751- */
}
@media all and (min-width: 751px) {
  .bg_greenhill::after {
    background-image: url(../images/common/bg_greenhill.webp);
    height: 300px;
  }
}

.bg_sky {
  margin-top: -150px;
  position: relative;
}
.bg_sky::after {
  position: absolute;
  content: "";
  background-image: url(../images/common/illust_hane.webp);
  background-size: contain;
  background-position: bottom center;
  background-repeat: no-repeat;
  width: 34px;
  height: 61px;
  top: 80px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
  /* 751- */
}
@media all and (min-width: 751px) {
  .bg_sky::after {
    width: 84px;
    height: 101px;
    top: -150px;
  }
}
.bg_sky.color::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #CBF8FF;
  z-index: -2;
}

.bg_event_top {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  width: calc(100% - 40px);
  /* 751- */
}
@media all and (min-width: 751px) {
  .bg_event_top {
    width: 72vw;
  }
}

.event_content {
  max-width: 1000px;
  margin: 0 auto;
  background: #D0AD63;
  width: calc(100% - 40px);
  /* 751- */
}
@media all and (min-width: 751px) {
  .event_content {
    width: 72vw;
  }
}
.event_content .event_list {
  margin-top: 40px;
  /* -750 */
}
@media all and (max-width: 750px) {
  .event_content .event_list {
    padding: 0px 0 20px;
  }
}
.event_content .event_list ul {
  /* 751- */
}
@media all and (min-width: 751px) {
  .event_content .event_list ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 20px;
  }
}
.event_content .event_list li {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  /* 751- */
  /* -750 */
}
@media all and (min-width: 751px) {
  .event_content .event_list li {
    width: calc(50% - 10px);
  }
}
@media all and (max-width: 750px) {
  .event_content .event_list li:not(:last-child) {
    margin-bottom: 20px;
  }
}
.event_content .event_list li a {
  display: block;
  padding: 10px;
  height: 100%;
  /* 751- */
}
@media all and (min-width: 751px) {
  .event_content .event_list li a {
    padding: 20px;
  }
}
.event_content .event_list li a .facility_thumbnail {
  margin-top: 10px;
}
.event_content .event_list li a .facility_thumbnail img {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (hover: hover) {
  .event_content .event_list li a:hover .facility_thumbnail img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

.bg_event_bottom {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  width: calc(100% - 40px);
  /* 751- */
}
@media all and (min-width: 751px) {
  .bg_event_bottom {
    width: 72vw;
  }
}
.bg_event_bottom::before, .bg_event_bottom::after {
  position: absolute;
  content: "";
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 0;
}
.bg_event_bottom::before {
  background-image: url(../images/event/illust_bird.webp);
  height: 124px;
  width: 142px;
  right: -10px;
  bottom: -20px;
  /* 751- */
}
@media all and (min-width: 751px) {
  .bg_event_bottom::before {
    height: 204px;
    width: 242px;
  }
}
.bg_event_bottom::after {
  background-image: url(../images/event/illust_flower.webp);
  height: 80px;
  width: 48px;
  left: 2px;
  bottom: -10px;
  /* 751- */
}
@media all and (min-width: 751px) {
  .bg_event_bottom::after {
    height: 140px;
    width: 88px;
    left: 52px;
    bottom: -40px;
  }
}

table {
  width: 100%;
  margin: 80px 0 140px;
  line-height: 2;
  /* -750 */
  color: #1D2120;
}
@media all and (max-width: 750px) {
  table {
    display: block;
    margin: 40px 0 0;
  }
}
table tr {
  /* -750 */
}
@media all and (max-width: 750px) {
  table tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 1em;
  }
}
table th, table td {
  border: 1px solid #e9e9e9;
  padding: 10px;
  font-weight: normal;
  /* 751- */
  /* -750 */
}
@media all and (min-width: 751px) {
  table th, table td {
    padding: 20px;
  }
}
@media all and (max-width: 750px) {
  table th, table td {
    display: block;
    text-align: left;
  }
}
table th {
  background: #FFF5D7;
}
table td {
  background: #fff;
}
table td li::before {
  content: "・";
}
table td p {
  margin-top: 20px;
}
table td span {
  display: block;
  margin-left: 30px;
}
table td a {
  position: relative;
}
table td a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  left: 0;
  bottom: 0;
  background: #1D2120;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
table td a:hover::after {
  width: 0;
}

.slick-prev, .slick-next {
  position: absolute;
  top: 42%;
  z-index: 1;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 100px;
  background-size: contain;
  width: 30px;
  height: 30px;
  border: none;
  outline: none;
  text-indent: -9999px;
  color: transparent;
  cursor: pointer;
  right: 10px;
  /* 751- */
}
@media all and (min-width: 751px) {
  .slick-prev, .slick-next {
    top: 50%;
    width: 40px;
    height: 40px;
  }
}

.slick-next {
  background-image: url(../images/common/icon_arrow.webp);
  right: 10px;
}

.slick-prev {
  background-image: url(../images/common/icon_arrow.webp);
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
  left: 10px;
}

.wp-pagenavi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 20px;
  padding: 20px 0 80px;
}
.wp-pagenavi a {
  display: block;
  border: none;
  color: #fff;
  margin: 0 10px;
}
.wp-pagenavi a.prev, .wp-pagenavi a.next {
  position: relative;
  font-size: 0;
  width: 40px;
  height: 40px;
}
.wp-pagenavi a.prev::after, .wp-pagenavi a.next::after {
  position: absolute;
  content: "";
  background-image: url(../images/common/icon_arrow.svg);
  width: 40px;
  height: 40px;
  background-size: contain;
  right: 0;
  top: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.wp-pagenavi a.prev:hover::after, .wp-pagenavi a.next:hover::after {
  background-image: url(../images/common/icon_arrow_on.svg);
}
.wp-pagenavi a.prev::after {
  right: unset;
  left: 0;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.wp-pagenavi .current, .wp-pagenavi .extend {
  border: none;
  margin: 0 10px;
}
.wp-pagenavi .current {
  text-decoration: underline;
}
/*# sourceMappingURL=common.css.map */