@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@700&family=Oswald:wght@700&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
}

body {
  -webkit-text-size-adjust: 100%;
  position: relative;
  height: 100%;
  min-height: 100%;
  font-family: "Noto Sans JP", serif;
  line-height: 1.75;
}
body.is-fixed {
  overflow: hidden;
}
body p {
  font-size: 1.8rem;
  line-height: 1.75;
}
@media screen and (max-width: 600px) {
  body p {
    font-size: 1.6rem;
  }
}

.wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}
@media screen and (max-width: 1280px) {
  .wrap {
    padding: 0 1.5rem;
  }
}

.wrap-narrow {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0;
}
@media screen and (max-width: 960px) {
  .wrap-narrow {
    padding: 0 1.5rem;
  }
}

.wrap-wide {
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding: 0;
}
@media screen and (max-width: 1280px) {
  .wrap-wide {
    padding: 0 1.5rem;
  }
}

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

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

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

.mt0 {
  margin-top: 0 !important;
}

.main-gradient {
  background: rgb(148, 196, 43);
  background: linear-gradient(90deg, rgb(148, 196, 43) 0%, rgb(70, 177, 59) 40%, rgb(98, 150, 117) 100%);
}

/* Header
--------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 99;
  background-color: #FFFFFF;
}
@media screen and (max-width: 1280px) {
  .site-header {
    height: 70px;
  }
}
.site-header__inner {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0 4rem;
  padding-top: 1.8rem;
  padding-bottom: 1.8rem;
}
@media screen and (max-width: 1280px) {
  .site-header__inner {
    gap: 0 5rem;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
}
.site-header-logo {
  width: 160px;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 1280px) {
  .site-header-logo {
    width: 130px;
  }
}
.site-header-logo:hover {
  opacity: 0.75;
  filter: opacity(75%);
}
.site-header-logo img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.site-header-nav {
  width: calc(100% - 160px - 160px - 8rem);
}
@media screen and (max-width: 1280px) {
  .site-header-nav {
    display: none;
  }
}
.site-header-global-list {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0 2.4rem;
}
.site-header-global-list li {
  list-style-type: none;
}
.site-header-global-list li a {
  color: #333333;
  font-size: 1.4rem;
  font-weight: 500;
  text-decoration: none;
}
.site-header-global-list li a:hover {
  opacity: 0.75;
  filter: opacity(75%);
}
.site-header-reserve {
  width: 160px;
  white-space: nowrap;
}
@media screen and (max-width: 1280px) {
  .site-header-reserve {
    position: relative;
    z-index: 1000;
    width: calc(100% - 130px - 20px);
  }
}
@media (max-width: 374px) {
  .site-header-reserve {
    display: none;
  }
}
@media screen and (max-width: 1280px) {
  .site-header-reserve .link-btn {
    margin: 0 0 0 auto;
    padding: 1rem 1.5rem;
    font-size: 1.4rem;
  }
}

/* hamburger
--------------------------------------------- */
.hamburger-menu {
  display: none;
  position: fixed;
  top: 24px;
  right: 2rem;
  z-index: 9999;
  width: 30px;
  height: 30px;
  background-color: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}
@media screen and (max-width: 1280px) {
  .hamburger-menu {
    display: inline-block;
  }
}
.hamburger-menu__bar {
  display: inline-block;
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  background-color: #333333;
  transition: all 0.3s ease-in-out;
}
.hamburger-menu__bar:nth-of-type(1) {
  top: 0;
}
.hamburger-menu__bar:nth-of-type(2) {
  top: 9px;
  width: 24px;
}
.hamburger-menu__bar:nth-of-type(3) {
  top: 18px;
  width: 18px;
}
.hamburger-menu-open .hamburger-menu__bar {
  top: 12px;
  background-color: #FFFFFF;
}
.hamburger-menu-open .hamburger-menu__bar:nth-of-type(1) {
  transform: rotate(45deg);
}
.hamburger-menu-open .hamburger-menu__bar:nth-of-type(2) {
  top: 12px;
  width: 30px;
  transform: rotate(-45deg);
}
.hamburger-menu-open .hamburger-menu__bar:nth-of-type(3) {
  display: none;
}

.sp-header {
  display: none;
}
@media screen and (max-width: 1280px) {
  .sp-header {
    display: block;
  }
}
.sp-header-navigation {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  overflow-y: scroll;
  z-index: 999;
  width: 100vw;
  height: 100vh;
  padding-bottom: 6rem;
  background: #333333;
}
.sp-header-nav {
  width: 100%;
  padding: 12rem 2.5rem 0 2.5rem;
}
.sp-header-nav-list {
  width: 100%;
  margin: 0;
  padding: 0;
}
.sp-header-nav-list li {
  width: 100%;
  margin: 2.4rem;
  padding: 0;
  list-style-type: none;
}
.sp-header-nav-list li:first-of-type {
  margin-top: 0;
}
.sp-header-nav-list a {
  display: block;
  position: relative;
  color: #8CB729;
  font-size: 1.6rem;
  font-weight: 700;
  text-decoration: none;
}
.sp-header-nav-list a span {
  display: block;
  color: #FFFFFF;
  font-size: 4.5rem;
  font-family: "Oswald", serif;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.sp-header-reserve {
  width: 100%;
}
.sp-header-reserve .link-btn {
  padding: 2.4rem 3.2rem;
  border-radius: 50px;
  font-size: 2rem;
  white-space: nowrap;
}
.sp-header-sns {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 4rem;
}
.sp-header-sns p {
  display: block;
  width: 100%;
  color: #FFFFFF;
  font-size: 1.8rem;
  font-family: "Oswald", serif;
  font-weight: 700;
  text-align: center;
  line-height: 1.8;
}
.sp-header-sns-list {
  display: -moz-grid;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  gap: 2rem 3.2rem;
  margin-top: 2rem;
}
.sp-header-sns-list li {
  text-align: center;
  list-style-type: none;
}
.sp-header-sns-list li a {
  color: #FFFFFF;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.sp-header-sns-list li a:hover {
  opacity: 0.75;
  filter: opacity(75%);
}
.sp-header-sns-list li i {
  color: #FFFFFF;
  font-size: 2.8rem;
}

/* Footer
--------------------------------------------- */
.site-footer {
  position: relative;
  padding: 12rem 0 2.4rem;
  background-color: #000000;
}
@media screen and (max-width: 600px) {
  .site-footer {
    padding: 6rem 0 2.4rem;
  }
}
.site-footer__inner {
  display: -moz-grid;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  gap: 2.4rem 6rem;
}
@media screen and (max-width: 960px) {
  .site-footer__inner {
    grid-template-columns: 1fr;
  }
}
.site-footer__shop {
  width: 100%;
}
.site-footer__shop-name {
  margin-top: 0.8rem;
  color: #FFFFFF;
  font-size: 2.8rem;
  font-weight: 700;
}
@media screen and (max-width: 600px) {
  .site-footer__shop-name {
    font-size: 2.2rem;
    text-align: center;
  }
}
.site-footer__shop .logo {
  display: block;
  width: 100%;
  max-width: 162px;
  margin: 0;
}
@media screen and (max-width: 600px) {
  .site-footer__shop .logo {
    margin-inline: auto;
  }
}
.site-footer__shop .logo img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.site-footer__detail dl {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0.4rem 2.4rem;
  margin-top: 1.2rem;
}
@media screen and (max-width: 600px) {
  .site-footer__detail dl {
    flex-direction: column;
  }
}
.site-footer__detail dl:first-of-type {
  margin-top: 2.4rem;
}
.site-footer__detail dl dt {
  width: 70px;
  color: #FFFFFF;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.7;
}
@media screen and (max-width: 600px) {
  .site-footer__detail dl dt {
    width: 100%;
    font-size: 1.5rem;
  }
}
.site-footer__detail dl dd {
  width: calc(100% - 70px);
  color: #FFFFFF;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 5%;
}
@media screen and (max-width: 600px) {
  .site-footer__detail dl dd {
    width: 100%;
    font-size: 1.5rem;
  }
}
.site-footer__detail dl dd a {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  color: #FFFFFF;
  font-size: 2rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 600px) {
  .site-footer__detail dl dd a {
    font-size: 1.8rem;
  }
}
.site-footer__detail dl dd a:hover {
  opacity: 0.75;
  filter: opacity(75%);
}
.site-footer__sns {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 2.4rem 3.2rem;
  width: 100%;
  margin-top: 2.4rem;
  padding-top: 2rem;
  border-top: 1px solid #FFFFFF;
}
@media screen and (max-width: 960px) {
  .site-footer__sns {
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }
}
.site-footer__sns p {
  width: -moz-fit-content;
  width: fit-content;
  color: #FFFFFF;
  font-size: 2rem;
  font-family: "Oswald", serif;
  font-weight: 700;
  letter-spacing: 5%;
}
.site-footer__sns-list {
  display: -moz-grid;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  gap: 2.4rem;
}
.site-footer__sns-list li {
  text-align: center;
  list-style-type: none;
}
.site-footer__sns-list li a {
  color: #FFFFFF;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.site-footer__sns-list li a:hover {
  opacity: 0.75;
  filter: opacity(75%);
}
.site-footer__sns-list li i {
  color: #FFFFFF;
  font-size: 2.8rem;
}
.site-footer__menu {
  width: 100%;
}
.site-footer__menu-map {
  width: 100%;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 50%;
}
.site-footer__menu-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.site-footer__nav {
  width: 100%;
  margin-top: 2.4rem;
}
.site-footer__nav-list {
  display: -moz-grid;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem 2.4rem;
}
.site-footer__nav-list li {
  list-style-type: none;
}
.site-footer__nav-list li::before {
  content: "\f054";
  display: inline-block;
  position: relative;
  top: -2px;
  width: 16px;
  height: 16px;
  margin-right: 0.8rem;
  border: 1px solid #FFFFFF;
  border-radius: 50%;
  color: #FFFFFF;
  font-size: 1rem;
  font-family: "Font Awesome 6 Free";
  font-weight: 700;
  text-align: center;
}
.site-footer__nav-list li a {
  position: relative;
  color: #FFFFFF;
  font-size: 1.6rem;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.site-footer__nav-list li a:hover {
  opacity: 0.75;
  filter: opacity(75%);
}
.site-footer__links {
  display: -moz-grid;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 2.4rem;
  width: 100%;
  margin-top: 2.4rem;
}
@media screen and (max-width: 960px) {
  .site-footer__links {
    grid-template-columns: 1fr;
  }
}
.site-footer__links .link-btn {
  width: 100%;
  max-width: 300px;
}
.site-footer .copyright {
  margin-top: 4rem;
  text-align: left;
}
@media screen and (max-width: 600px) {
  .site-footer .copyright {
    margin-top: 2.4rem;
    text-align: center;
  }
}
.site-footer .copyright p {
  color: #FFFFFF;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 5%;
}

/* lower content
--------------------------------------------- */
.l-main-content {
  position: relative;
  overflow-x: hidden;
  margin-top: 80px;
}
@media screen and (max-width: 1280px) {
  .l-main-content {
    margin-top: 70px;
  }
}
.l-main-content-title {
  position: relative;
  padding: 14rem 0;
}
@media screen and (max-width: 600px) {
  .l-main-content-title {
    padding: 6rem 0;
  }
}
.l-main-content-title.bg_wh {
  background-color: #FFFFFF;
}
.l-main-content-title.bg_wh h1.js-mask-bg {
  color: transparent;
  transition: color 0s 0.5s;
}
.l-main-content-title.bg_wh h1.js-mask-bg span {
  overflow: hidden;
  color: transparent;
  transition: color 0s 0.5s;
}
.l-main-content-title.bg_wh h1.js-mask-bg::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #333333;
  transform: translate(0, 100%);
}
.l-main-content-title.bg_wh h1.is-inview {
  color: #8CB729;
}
.l-main-content-title.bg_wh h1.is-inview span {
  color: #333333;
}
.l-main-content-title.bg_wh h1.is-inview::after {
  animation: mask-bg 1s cubic-bezier(0.8, 0, 0.17, 1);
}
.l-main-content-title.bg_bk {
  background-color: #333333;
}
.l-main-content-title.bg_bk h1.js-mask-bg {
  color: transparent;
  transition: color 0s 0.5s;
}
.l-main-content-title.bg_bk h1.js-mask-bg span {
  overflow: hidden;
  color: transparent;
  transition: color 0s 0.5s;
}
.l-main-content-title.bg_bk h1.js-mask-bg::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #FFFFFF;
  transform: translate(0, 100%);
}
.l-main-content-title.bg_bk h1.is-inview {
  color: #8CB729;
}
.l-main-content-title.bg_bk h1.is-inview span {
  color: #FFFFFF;
}
.l-main-content-title.bg_bk h1.is-inview::after {
  animation: mask-bg 1s cubic-bezier(0.8, 0, 0.17, 1);
}
.l-main-content-title h1 {
  display: inline-block;
  position: relative;
  overflow: hidden;
  color: #8CB729;
  font-size: 2.4rem;
  font-weight: 500;
}
@media screen and (max-width: 600px) {
  .l-main-content-title h1 {
    font-size: 1.6rem;
  }
}
.l-main-content-title h1 span {
  display: block;
  margin-bottom: 1rem;
  color: #333333;
  font-size: 12rem;
  font-family: "Oswald", serif;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 600px) {
  .l-main-content-title h1 span {
    font-size: 4.5rem;
  }
}
.l-main-content__content {
  position: relative;
}
.l-main-content__content .hl2-img img {
  width: auto;
  height: 88px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 600px) {
  .l-main-content__content .hl2-img img {
    height: 56px;
  }
}
.l-main-content__content h2 {
  color: #333333;
  font-size: 4rem;
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (max-width: 600px) {
  .l-main-content__content h2 {
    font-size: 2.4rem;
  }
}
.l-main-content__content p {
  margin-top: 2.4rem;
  color: #333333;
  font-size: 1.6rem;
  line-height: 2;
}
.l-main-content__content p:first-of-type {
  margin-top: 0;
}
.l-main-content__content ol,
.l-main-content__content ul {
  margin-top: 1.5rem;
}
@media screen and (max-width: 600px) {
  .l-main-content__content ol,
  .l-main-content__content ul {
    margin-top: 1rem;
  }
}
.l-main-content__content ol li,
.l-main-content__content ul li {
  margin-top: 0.5rem;
  color: #333333;
  font-size: 18px;
  line-height: 1.8;
}
@media screen and (max-width: 600px) {
  .l-main-content__content ol li,
  .l-main-content__content ul li {
    font-size: 1.6rem;
  }
}
.l-main-content__content .link-btn {
  margin: 1.5rem auto 0;
  padding: 0.75rem 0;
  font-size: 1rem;
  text-decoration: none;
}
@media screen and (max-width: 600px) {
  .l-main-content__content .link-btn {
    margin: 1.5rem auto 0;
  }
}
.l-main-content__wrap {
  position: relative;
  padding: 12rem 0;
}
@media screen and (max-width: 600px) {
  .l-main-content__wrap {
    padding: 8rem 0;
  }
}
.l-main-content__wrap h2 {
  margin-top: 4rem;
  color: #333333;
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (max-width: 600px) {
  .l-main-content__wrap h2 {
    font-size: 2.4rem;
  }
}
.l-main-content__wrap h2 + p {
  margin-top: 1rem;
}
.l-main-content__wrap p {
  margin-top: 2.4rem;
  color: #333333;
  font-size: 1.6rem;
  line-height: 2;
}
.l-main-content__wrap ol,
.l-main-content__wrap ul {
  margin-top: 1.5rem;
  padding-left: 1.6rem;
  text-indent: -1.6rem;
}
@media screen and (max-width: 600px) {
  .l-main-content__wrap ol,
  .l-main-content__wrap ul {
    margin-top: 1rem;
  }
}
.l-main-content__wrap ol li,
.l-main-content__wrap ul li {
  margin-top: 0.5rem;
  color: #333333;
  font-size: 18px;
  line-height: 1.8;
}
@media screen and (max-width: 600px) {
  .l-main-content__wrap ol li,
  .l-main-content__wrap ul li {
    font-size: 1rem;
  }
}
.l-main-content__wrap ol li::marker,
.l-main-content__wrap ul li::marker {
  color: #8CB729;
  font-weight: 700;
}
.l-main-content__wrap ol li ol,
.l-main-content__wrap ol li ul,
.l-main-content__wrap ul li ol,
.l-main-content__wrap ul li ul {
  margin-top: 1rem;
}
.l-main-content__image {
  width: 100%;
}
.l-main-content__image img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

/* post content
--------------------------------------------- */
.p-main-content {
  position: relative;
  overflow-x: hidden;
  margin-top: 80px;
}
@media screen and (max-width: 1280px) {
  .p-main-content {
    margin-top: 70px;
  }
}
.p-main-content-title {
  position: relative;
  padding: 14rem 0;
}
@media screen and (max-width: 600px) {
  .p-main-content-title {
    padding: 6rem 0;
  }
}
.p-main-content-title.bg_bk {
  background-color: #333333;
}
.p-main-content-title.bg_bk h1.js-mask-bg {
  color: transparent;
  transition: color 0s 0.5s;
}
.p-main-content-title.bg_bk h1.js-mask-bg span {
  overflow: hidden;
  color: transparent;
  transition: color 0s 0.5s;
}
.p-main-content-title.bg_bk h1.js-mask-bg::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #FFFFFF;
  transform: translate(0, 100%);
}
.p-main-content-title.bg_bk h1.is-inview {
  color: #8CB729;
}
.p-main-content-title.bg_bk h1.is-inview span {
  color: #FFFFFF;
}
.p-main-content-title.bg_bk h1.is-inview::after {
  animation: mask-bg 1s cubic-bezier(0.8, 0, 0.17, 1);
}
.p-main-content-title h1 {
  display: inline-block;
  position: relative;
  overflow: hidden;
  color: #8CB729;
  font-size: 2.4rem;
  font-weight: 500;
}
@media screen and (max-width: 600px) {
  .p-main-content-title h1 {
    font-size: 1.6rem;
  }
}
.p-main-content-title h1 span {
  display: block;
  margin-bottom: 1rem;
  color: #333333;
  font-size: 12rem;
  font-family: "Oswald", serif;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 600px) {
  .p-main-content-title h1 span {
    font-size: 4.5rem;
  }
}
.p-main-content__wrap {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 8rem;
  padding-top: 16rem;
  padding-bottom: 18rem;
}
@media screen and (max-width: 960px) {
  .p-main-content__wrap {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 600px) {
  .p-main-content__wrap {
    gap: 8rem 0;
    padding-top: 8rem;
    padding-bottom: 10rem;
  }
}
.p-main-content__content {
  width: calc(100% - 320px - 8rem);
}
@media screen and (max-width: 960px) {
  .p-main-content__content {
    width: 64.25%;
  }
}
@media screen and (max-width: 600px) {
  .p-main-content__content {
    width: 100%;
  }
}
.p-main-content__content h2 {
  color: #333333;
  font-size: 4rem;
  font-weight: 500;
  text-align: left;
  line-height: 1.6;
}
@media screen and (max-width: 600px) {
  .p-main-content__content h2 {
    font-size: 2.4rem;
  }
}
.p-main-content__content .blog-list {
  margin-top: 3rem;
}

/* single content
--------------------------------------------- */
.s-main-content {
  width: calc(100% - 320px - 8rem);
}
@media screen and (max-width: 960px) {
  .s-main-content {
    width: 64.25%;
  }
}
@media screen and (max-width: 600px) {
  .s-main-content {
    width: 100%;
  }
}
.s-main-content .entry-header {
  width: 100%;
  margin-top: 2rem;
}
.s-main-content .entry-header h1 {
  color: #333333;
  font-size: 3.6rem;
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (max-width: 600px) {
  .s-main-content .entry-header h1 {
    font-size: 2.4rem;
  }
}
.s-main-content .entry-content {
  margin-top: 40px;
  margin-bottom: 64px;
}
@media screen and (max-width: 600px) {
  .s-main-content .entry-content {
    margin-bottom: 40px;
  }
}
.s-main-content .entry-content__meta {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  width: 100%;
}
.s-main-content .entry-content__meta time {
  display: inline-block;
  color: #8CB729;
  font-size: 1.8rem;
  font-family: "Oswald", serif;
  font-weight: 400;
}
@media screen and (max-width: 600px) {
  .s-main-content .entry-content__meta time {
    font-size: 1.6rem;
  }
}
.s-main-content .entry-content__meta time i {
  margin-right: 0.8rem;
}
.s-main-content .entry-content__meta .blog-category {
  display: inline-block;
  color: #8CB729;
  font-size: 1.8rem;
  font-weight: 400;
}
@media screen and (max-width: 600px) {
  .s-main-content .entry-content__meta .blog-category {
    font-size: 1.6rem;
  }
}
.s-main-content .entry-content__thumb {
  overflow: hidden;
  width: 100%;
  margin: 2rem 0;
}
.s-main-content .entry-content__thumb img {
  max-width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  margin-inline: auto;
}
.s-main-content .entry-content h2 {
  position: relative;
  margin-top: 6rem;
  padding: 0.8rem 2.5rem 1rem;
  background: rgb(148, 196, 43);
  background: linear-gradient(90deg, rgb(148, 196, 43) 0%, rgb(70, 177, 59) 40%, rgb(98, 150, 117) 100%);
  color: #FFFFFF;
  font-size: 2.4rem;
  font-weight: 500;
  text-align: left;
  line-height: 1.5;
}
@media screen and (max-width: 600px) {
  .s-main-content .entry-content h2 {
    padding: 0.4rem 1rem 0.6rem;
    font-size: 2rem;
  }
}
.s-main-content .entry-content h3 {
  position: relative;
  margin-top: 4rem;
  color: #8CB729;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 600px) {
  .s-main-content .entry-content h3 {
    margin-top: 3rem;
    font-size: 2rem;
  }
}
.s-main-content .entry-content h3::before {
  content: "ー";
  display: inline-block;
  position: relative;
  margin-right: 0.8rem;
  color: #8CB729;
  font-size: 2.4rem;
}
@media screen and (max-width: 600px) {
  .s-main-content .entry-content h3::before {
    font-size: 2rem;
  }
}
.s-main-content .entry-content h4 {
  margin-top: 40px;
  color: #333333;
  font-size: 2rem;
  font-weight: 700;
}
@media screen and (max-width: 600px) {
  .s-main-content .entry-content h4 {
    margin-top: 2.4rem;
    font-size: 1.8rem;
  }
}
.s-main-content .entry-content p {
  margin-top: 2.4rem;
  color: #333333;
  font-size: 1.6rem;
  line-height: 1.6;
}
.s-main-content .entry-content p:first-child {
  margin-top: 0;
}
.s-main-content .entry-content a {
  color: #333333;
  text-decoration: underline;
}
.s-main-content .entry-content a:hover {
  opacity: 0.75;
  filter: opacity(75%);
}
.s-main-content .entry-content figure {
  width: 100%;
  margin-top: 2rem;
}
.s-main-content .entry-content figure img {
  max-width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.s-main-content .entry-content figure figcaption {
  margin-top: 0.8rem;
  color: #333333;
  font-size: 1.4rem;
  font-weight: 400;
  text-align: left;
}
.s-main-content .entry-content ul {
  margin-top: 2rem;
  font-size: 1.6rem;
}
.s-main-content .entry-content ul li {
  margin: 1rem 0 0 1.5rem;
  color: #333333;
  font-size: 1.6rem;
}
.s-main-content .entry-content ul li::marker {
  color: #8CB729;
}
.s-main-content .entry-content ol {
  margin-top: 2rem;
  font-size: 1.6rem;
}
.s-main-content .entry-content ol li {
  margin: 1rem 0 0 1.2rem;
  color: #333333;
  font-size: 1.6rem;
}
.s-main-content .entry-content ol li::marker {
  color: #8CB729;
  font-size: 1.8rem;
  font-weight: 700;
}
.s-main-content .entry-content table {
  width: 100%;
  margin: 2rem auto 0;
  border-collapse: collapse;
}
.s-main-content .entry-content table thead {
  border: none;
}
.s-main-content .entry-content table thead th {
  padding: 1.4rem 1rem 1.6rem 1rem;
  border: 1px solid #8CB729;
  background-color: #8CB729;
  color: #FFFFFF;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .s-main-content .entry-content table thead th {
    padding: 0.8rem 1rem 1rem 1rem;
  }
}
.s-main-content .entry-content table tbody th {
  padding: 1.4rem 1rem 1.6rem 1rem;
  border: 1px solid #AAAAAA;
  background-color: #F7F7F7;
  color: #8CB729;
  font-size: 1.6rem;
  font-weight: 500;
  text-align: left;
}
@media screen and (max-width: 600px) {
  .s-main-content .entry-content table tbody th {
    padding: 0.8rem 1rem 1rem 1rem;
  }
}
.s-main-content .entry-content table tbody td {
  padding: 1.4rem 1rem 1.6rem 1rem;
  border: 1px solid #AAAAAA;
  color: #333333;
  font-size: 1.6rem;
  font-weight: 500;
}
@media screen and (max-width: 600px) {
  .s-main-content .entry-content table tbody td {
    padding: 0.8rem 1rem 1rem 1rem;
  }
}
.s-main-content .entry-content blockquote {
  width: 100%;
  margin-top: 2rem;
  padding: 3rem 2rem;
  background-color: #F7F7F7;
}
@media screen and (max-width: 600px) {
  .s-main-content .entry-content blockquote {
    padding: 2rem 1.6rem;
    background-color: #F7F7F7;
  }
}
.s-main-content .entry-content blockquote p {
  color: #333333;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6;
}
.s-main-content .entry-content blockquote cite {
  margin-top: 2rem;
  color: #333333;
  font-size: 1.4rem;
  font-style: italic;
  text-align: left;
}

/* pager
--------------------------------------------- */
.s-pager-list {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: 2rem;
  width: 100%;
  margin-top: 8rem;
}
@media screen and (max-width: 600px) {
  .s-pager-list {
    margin-top: 4rem;
  }
}
.s-pager-list li {
  list-style: none;
}
.s-pager-list li .link-btn {
  width: 120px;
}
.s-pager-list li .link-btn:hover {
  opacity: 1;
  filter: opacity(100%);
}
.s-pager-list li a {
  display: inline-block;
  padding: 1.2rem 2.4rem;
  border: 2px solid #333333;
  border-radius: 25px;
  background-color: #FFFFFF;
  color: #333333;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  line-height: 1.6;
  transition: all 0.3s ease-in-out;
}
.s-pager-list li a:hover {
  background-color: #333333;
  color: #FFFFFF;
}

/* related posts
--------------------------------------------- */
.s-related {
  width: 100%;
  margin-top: 8rem;
  padding-top: 10rem;
  border-top: 2px solid #333333;
}
@media screen and (max-width: 600px) {
  .s-related {
    margin-top: 6rem;
    padding-top: 8rem;
  }
}
.s-related__title {
  position: relative;
  color: #8CB729;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 600px) {
  .s-related__title {
    font-size: 2rem;
  }
}
.s-related__title::before {
  content: "ー";
  display: inline-block;
  position: relative;
  margin-right: 0.8rem;
  color: #8CB729;
  font-size: 2.4rem;
}
@media screen and (max-width: 600px) {
  .s-related__title::before {
    font-size: 2rem;
  }
}
.s-related-list {
  width: 100%;
  margin-top: 4rem !important;
}
@media screen and (max-width: 600px) {
  .s-related-list {
    margin-top: 2.4rem;
  }
}

/* author
--------------------------------------------- */
.s-author {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-size: 1.6rem;
  font-weight: 500;
  gap: 1em;
}
@media screen and (max-width: 600px) {
  .s-author {
    gap: 0.5em;
  }
}
.s-author__avatar {
  display: block;
  max-width: 62px;
  width: 62px;
  aspect-ratio: 1/1;
  border-radius: 50% 50%;
  overflow: hidden;
}
@media screen and (max-width: 600px) {
  .s-author__avatar {
    max-width: 30px;
  }
}
.s-author__avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}
.s-author-card {
  position: relative;
  margin-top: 6.4rem;
  background-color: #F7F7F7;
  padding: 3rem 2rem 3rem 21.2rem;
  font-size: 1.6rem;
}
@media screen and (max-width: 600px) {
  .s-author-card {
    padding: 2rem 1.5rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0 1em;
  }
}
.s-author-card::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 50%;
  width: 56.25%;
  height: 10px;
  background-color: #8CB729;
  transform: translateX(-50%);
}
.s-author-card__avatar {
  position: absolute;
  left: 2rem;
  display: block;
  max-width: 170px;
  width: 170px;
  aspect-ratio: 1/1;
  border-radius: 50% 50%;
  overflow: hidden;
}
@media screen and (max-width: 600px) {
  .s-author-card__avatar {
    position: static;
    max-width: 90px;
  }
}
.s-author-card__avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}
.s-author-card__name, .s-author-card__description, .s-author-card__url {
  width: 100%;
}
.s-author-card__name {
  font-size: 2rem;
  color: #8CB729;
  font-weight: 700;
  margin-bottom: 1em;
}
@media screen and (max-width: 600px) {
  .s-author-card__name {
    width: calc(100% - 120px);
  }
}
.s-author-card__description {
  margin: 1rem 0;
  line-height: 1.5;
}
.s-author-card__url a {
  display: flex;
  align-items: center;
  gap: 0.5em;
  text-decoration: none;
  color: #8CB729;
  opacity: 1;
  font-weight: 700;
  transition: all 0.3s ease-in-out;
}
.s-author-card__url a:hover {
  opacity: 0.6;
}

/* sidebar
--------------------------------------------- */
.site-sidebar {
  width: 100%;
  max-width: 320px;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 600px) {
  .site-sidebar {
    max-width: 100%;
  }
}
.site-sidebar .widget {
  position: relative;
  width: 100%;
  margin-top: 6rem;
  padding: 1rem 2rem 4rem;
  background-color: #F7F7F7;
  list-style: none;
}
.site-sidebar .widget::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 50%;
  width: 56.25%;
  height: 10px;
  background-color: #8CB729;
  transform: translateX(-50%);
}
.site-sidebar .widget:first-of-type {
  margin-top: 0;
}
.site-sidebar .widget .wp-block-heading,
.site-sidebar .widget .widgettitle {
  position: relative;
  width: 100%;
  padding-top: 1rem;
  padding-bottom: 1.8rem;
  border-bottom: 1px solid #AAAAAA;
  color: #8CB729;
  font-size: 1.8rem;
  font-weight: 500;
  text-align: center;
}
.site-sidebar .wp-block-categories-list {
  width: 100%;
  margin-top: 2rem;
}
.site-sidebar .wp-block-categories-list .cat-item {
  width: 100%;
  margin-top: 1rem;
  list-style-type: none;
}
.site-sidebar .wp-block-categories-list .cat-item a {
  display: block;
  position: relative;
  color: #333333;
  font-size: 1.6rem;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.site-sidebar .wp-block-categories-list .cat-item a:hover {
  text-decoration: underline;
}
.site-sidebar .wp-block-categories-list .cat-item a::after {
  content: "\f054";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 0;
  color: #333333;
  font-size: 1.6rem;
  font-family: "Font Awesome 6 Free";
  font-weight: 700;
  transform: translateY(-50%);
}
.site-sidebar .rpwwt-widget li {
  width: 100%;
  margin-top: 2rem;
}
.site-sidebar .rpwwt-widget a {
  color: #333333;
  font-size: 1.5rem;
  font-weight: 500;
  text-decoration: none;
  line-height: 1.5;
}
.site-sidebar .rpwwt-widget img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.site-sidebar .rpwwt-widget .rpwwt-post-title {
  width: calc(100% - 130px - 1rem);
  height: auto;
}

/* fade in 
--------------------------------------------- */
@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadein_up {
  0% {
    transform: translateY(4rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadein_right {
  0% {
    transform: translateX(-4rem);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadein_left {
  0% {
    transform: translateX(4rem);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
/* mask
--------------------------------------------- */
@keyframes mask-bg {
  0% {
    transform: translate(-100%, 0);
  }
  40% {
    transform: translate(0, 0%);
  }
  60% {
    transform: translate(0, 0%);
  }
  100% {
    transform: translate(100%, 0);
  }
}
/* Breadcrumbs
--------------------------------------------- */
#breadcrumbs {
  width: 100%;
  padding: 1rem 0;
  text-align: right;
}
#breadcrumbs span {
  color: #333333;
  font-size: 1.4rem;
  font-weight: 400;
}
#breadcrumbs span > span {
  margin-left: 0.4rem;
}
#breadcrumbs span > span:first-child {
  margin-right: 0.4rem;
  margin-left: 0;
}
#breadcrumbs span a {
  color: #333333;
  font-size: 1.6rem;
  text-decoration: none;
}

.l-main-content #breadcrumbs {
  background-color: #F7F7F7;
}

.p-main-content #breadcrumbs {
  background-color: #FFFFFF;
}

/* Button
--------------------------------------------- */
.link-btn {
  display: block;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 600px) {
  .link-btn {
    padding: 1rem 1.5rem;
    font-size: 1.4rem;
  }
}
.link-btn:hover {
  opacity: 0.75;
  filter: opacity(75%);
}
.link-btn.btn-primary {
  padding: 2.4rem 5.6rem;
  border-radius: 50px;
  background: rgb(148, 196, 43);
  background: linear-gradient(270deg, rgb(148, 196, 43) 0%, rgb(70, 177, 59) 40%, rgb(98, 150, 117) 100%);
  color: #FFFFFF;
  font-size: 2rem;
}
@media screen and (max-width: 600px) {
  .link-btn.btn-primary {
    padding: 1.6rem 2.4rem;
    font-size: 1.8rem;
  }
}
.link-btn.btn-primary::after {
  content: "";
  display: inline-block;
  position: relative;
  top: -6px;
  right: -8px;
  width: 22px;
  height: 6px;
  background-image: url("../img/common/icon_arrow_wh.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.link-btn.btn-outline {
  padding: 1rem 6rem 1.2rem 2.4rem;
  border: 2px solid #8CB729;
  border-radius: 25px;
  color: #8CB729;
  font-size: 1.6rem;
  font-weight: 500;
  text-align: left;
}
.link-btn.btn-outline::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: calc(50% - 1px);
  right: 1rem;
  width: 22px;
  height: 6px;
  background-image: url("../img/common/icon_arrow_gr.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  transform: translateY(-50%);
}
.link-btn.btn-header {
  padding: 1.2rem 1.8rem;
  border-radius: 50px;
  background: rgb(148, 196, 43);
  background: linear-gradient(270deg, rgb(148, 196, 43) 0%, rgb(70, 177, 59) 40%, rgb(98, 150, 117) 100%);
  color: #FFFFFF;
  font-size: 1.5rem;
}
.link-btn.btn-footer {
  padding: 1.6rem;
  border: 2px solid #8CB729;
  background-color: transparent;
  color: #8CB729;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}
@media screen and (max-width: 600px) {
  .link-btn.btn-footer {
    padding: 1.2rem 1.6rem;
    font-size: 1.4rem;
  }
}
.link-btn.btn-footer::after {
  content: "\f054";
  display: inline-block;
  margin-left: 0.8rem;
  color: #8CB729;
  font-size: 1.5rem;
  font-family: "Font Awesome 6 Free";
  font-weight: 700;
  transition: all 0.3s ease-in-out;
}
.link-btn.btn-footer:hover {
  opacity: 1;
  filter: opacity(100%);
  background-color: #8CB729;
  color: #000000;
}
.link-btn.btn-footer:hover::after {
  color: #000000;
}

.link-txt {
  position: relative;
  color: #8CB729;
  font-size: 18px;
  font-weight: 500;
  text-decoration: underline;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 600px) {
  .link-txt {
    font-size: 1rem;
  }
}
.link-txt:hover {
  opacity: 0.7;
  filter: opacity(70%);
}
.link-txt::after {
  content: "\f35a";
  display: inline-block;
  margin-left: 0.5rem;
  color: #8CB729;
  font-size: 1rem;
  font-family: "Font Awesome 6 Free";
  font-weight: 700;
  transition: all 0.3s ease-in-out;
}

.fixed-btn {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  position: fixed;
  top: 10rem;
  right: 0;
  opacity: 0;
  visibility: hidden;
  z-index: 10;
  width: 56px;
  transition: all 0.5s ease-in-out;
}
@media screen and (max-width: 960px) {
  .fixed-btn {
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 1rem;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    background-color: rgba(51, 51, 51, 0.75);
  }
}
.fixed-btn.is-active {
  opacity: 1;
  visibility: visible;
}
.fixed-btn__item {
  width: 56px;
  height: -moz-fit-content;
  height: fit-content;
}
@media screen and (max-width: 960px) {
  .fixed-btn__item {
    width: 100%;
    height: 48px;
  }
}
@media screen and (max-width: 960px) {
  .fixed-btn__item.personal img {
    display: none;
  }
}
@media screen and (max-width: 960px) {
  .fixed-btn__item.personal a {
    padding: 1.2rem 0;
    font-size: 1.5rem;
  }
}
.fixed-btn a {
  display: block;
  width: 56px;
  height: -moz-fit-content;
  height: fit-content;
  padding: 2rem 1.5rem 3rem 1.5rem;
  border-radius: 5px 0 0 5px;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: all 0.3s ease-in-out;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 960px) {
  .fixed-btn a {
    width: 100%;
    height: 48px;
    margin: 0 auto;
    padding: 1.2rem 0;
    border-bottom: none;
    border-radius: 5px;
    font-size: 1.6rem;
    writing-mode: horizontal-tb;
  }
}
.fixed-btn a:hover {
  opacity: 0.75;
  filter: opacity(75%);
}
.fixed-btn a.btn-primary {
  background-color: #333333;
  color: #FFFFFF;
}
@media screen and (max-width: 960px) {
  .fixed-btn a.btn-primary {
    background-color: #FFFFFF;
    color: #333333;
  }
}
.fixed-btn a.btn-secondary {
  background: rgb(148, 196, 43);
  background: linear-gradient(90deg, rgb(148, 196, 43) 0%, rgb(70, 177, 59) 40%, rgb(98, 150, 117) 100%);
  color: #FFFFFF;
}
.fixed-btn img {
  display: inline-block;
  width: 28px;
  height: auto;
  margin: 0 -4px 1rem auto;
  color: #FFFFFF;
}
@media screen and (max-width: 960px) {
  .fixed-btn img {
    width: 24px;
    margin: 0 1rem -6px 0;
  }
}

/* contact form 7
--------------------------------------------- */
.wpcf7 {
  position: relative;
  width: 100%;
  margin-top: 40px;
}
@media screen and (max-width: 600px) {
  .wpcf7 {
    margin-top: 1.5rem;
  }
}
.wpcf7 .cf-item {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  width: 100%;
  margin-top: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #AAAAAA;
}
.wpcf7 .cf-item:last-of-type {
  border-bottom: none;
}
@media screen and (max-width: 600px) {
  .wpcf7 .cf-item {
    flex-wrap: wrap;
    padding-bottom: 0;
    border-bottom: none;
  }
}
.wpcf7 .cf-item dt {
  display: block;
  width: 160px;
  color: #333333;
  font-size: 1rem;
  font-weight: 500;
}
@media screen and (max-width: 600px) {
  .wpcf7 .cf-item dt {
    width: 100%;
  }
}
.wpcf7 .cf-item dt span {
  display: block;
  color: #F1EA1C;
  font-size: 12px;
  font-weight: 500;
}
@media screen and (max-width: 600px) {
  .wpcf7 .cf-item dt span {
    display: inline-block;
    margin-left: 0.5rem;
  }
}
.wpcf7 .cf-item dd {
  width: calc(100% - 160px);
  color: #333333;
  font-size: 1rem;
}
@media screen and (max-width: 600px) {
  .wpcf7 .cf-item dd {
    width: 100%;
    margin-top: 0.5rem;
  }
}
.wpcf7 .cf-item dd .wpcf7-radio .wpcf7-list-item {
  margin: 0 1rem 0 0;
}
.wpcf7 .cf-item dd input[type=text],
.wpcf7 .cf-item dd input[type=tel],
.wpcf7 .cf-item dd input[type=email] {
  width: 100%;
  padding: 0.5rem 1rem;
  border: 1px solid #AAAAAA;
  border-radius: 3px;
  background-color: #FFFFFF;
  color: #333333;
  font-size: 1rem;
}
.wpcf7 .cf-item dd textarea {
  width: 100%;
  padding: 0.5rem 1rem;
  border: 1px solid #AAAAAA;
  border-radius: 3px;
  background-color: #FFFFFF;
  color: #333333;
  font-size: 1rem;
}
.wpcf7 .cf-item dd select {
  padding: 0.75rem 1rem;
  border: 1px solid #AAAAAA;
  background-color: #FFFFFF;
  color: #333333;
  font-size: 1rem;
}
.wpcf7 .cf-item dd input[type=radio] {
  position: relative;
  width: 20px;
  height: 20px;
  margin-right: 4px;
  border: 2px solid #AAAAAA;
  border-radius: 50%;
  vertical-align: -5px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.wpcf7 .cf-item dd input[type=radio]:checked::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #333333;
  transform: translate(-50%, -50%);
}
.wpcf7 .cf-item dd .wpcf7-not-valid-tip {
  margin-top: 4px;
  color: #F1EA1C;
  font-size: 12px;
}
.wpcf7 .cf-link-btn {
  display: block;
  margin-top: 40px;
}
@media screen and (max-width: 600px) {
  .wpcf7 .cf-link-btn {
    margin-top: 1.5rem;
  }
}
.wpcf7 .cf-link-btn .submit-btn {
  margin: 0 auto;
}
.wpcf7 .cf-link-btn .back-btn {
  background-color: #fcfcfc;
  color: #333333;
}

.pagination {
  position: relative;
  width: 100%;
  margin: 6rem auto 0;
}
@media screen and (max-width: 600px) {
  .pagination {
    margin: 4rem auto 0;
  }
}
.pagination__list {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 1rem;
  width: 100%;
  margin: 0 auto;
  color: #8CB729;
  list-style-type: none;
}
.pagination__list .current {
  display: block;
  justify-self: center;
  align-self: center;
  width: 50px;
  height: 50px;
  padding: 1rem 0;
  border: 2px solid #8CB729;
  border-radius: 50px;
  background: #8CB729;
  color: #FFFFFF;
  font-size: 2rem;
  font-family: "Oswald", serif;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 600px) {
  .pagination__list .current {
    width: 42px;
    height: 42px;
    padding: 6px 0;
    font-size: 1.8rem;
  }
}
.pagination__list a {
  display: block;
  justify-self: center;
  align-self: center;
  width: 50px;
  height: 50px;
  padding: 1rem 0;
  border: 2px solid #333333;
  border-radius: 50px;
  background: #FFFFFF;
  color: #333333;
  font-size: 2rem;
  font-family: "Oswald", serif;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 600px) {
  .pagination__list a {
    width: 42px;
    height: 42px;
    padding: 6px 0;
    font-size: 1.8rem;
  }
}
.pagination__list a:hover {
  border: 2px solid #8CB729;
  background-color: #8CB729;
  color: #FFFFFF;
}
.pagination__list .prev a,
.pagination__list .next a {
  display: block;
  justify-self: center;
  align-self: center;
  width: 50px;
  height: 50px;
  padding: 1rem 0;
  border: 2px solid #333333;
  border-radius: 50px;
  background: #FFFFFF;
  color: #333333;
  font-size: 2rem;
  font-family: "Oswald", serif;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 600px) {
  .pagination__list .prev a,
  .pagination__list .next a {
    width: 42px;
    height: 42px;
    padding: 6px 0;
    font-size: 1.8rem;
  }
}
.pagination__list .prev a:hover,
.pagination__list .next a:hover {
  border: 2px solid #8CB729;
  background-color: #8CB729;
  color: #FFFFFF;
}
.pagination__list .prev {
  position: relative;
  left: -5rem;
}
@media screen and (max-width: 600px) {
  .pagination__list .prev {
    left: -3rem;
  }
}
.pagination__list .next {
  position: relative;
  right: -5rem;
}
@media screen and (max-width: 600px) {
  .pagination__list .next {
    right: -3rem;
  }
}

.pager {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: nowrap;
}
@media screen and (max-width: 600px) {
  .pager {
    flex-wrap: wrap;
  }
}
.pager .prev,
.pager .next {
  position: relative;
  width: 100%;
}
.pager .prev a,
.pager .next a {
  color: #333333;
  text-decoration: none;
}
.pager .prev {
  order: 1;
  width: calc(50% - 10px);
}
@media screen and (max-width: 600px) {
  .pager .prev {
    width: 100%;
  }
}
.pager .prev a {
  display: block;
  position: relative;
  padding: 1rem 1rem 1rem 2rem;
  border: 1px solid #AAAAAA;
}
.pager .prev a:hover {
  background-color: #fcfcfc;
}
.pager .prev a::after {
  content: "\f053";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 1rem;
  font-family: "Font Awesome 6 Free";
  font-weight: 700;
  transform: translateY(-50%);
}
.pager .next {
  justify-self: flex-end;
  order: 2;
  width: calc(50% - 10px);
}
@media screen and (max-width: 600px) {
  .pager .next {
    width: 100%;
  }
}
.pager .next a {
  display: block;
  position: relative;
  padding: 1rem 2rem 1rem 1rem;
  border: 1px solid #AAAAAA;
}
.pager .next a:hover {
  background-color: #fcfcfc;
}
.pager .next a::after {
  content: "\f054";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 1rem;
  font-family: "Font Awesome 6 Free";
  font-weight: 700;
  transform: translateY(-50%);
}

/* kakomi
--------------------------------------------- */
.kakomi {
  margin: 2rem auto 0;
  padding: 3rem 2rem;
  border-top: 4px solid #8CB729;
  background-color: #F7F7F7;
  font-size: 1.6rem;
}
@media screen and (max-width: 600px) {
  .kakomi {
    padding: 2rem 1.6rem;
  }
}

.kakomi_with_title {
  position: relative;
}
.kakomi_with_title .title {
  display: inline-block;
  color: #333333;
  font-weight: 700;
}
.kakomi_with_title .title i {
  margin-right: 6px;
  color: #8CB729;
}

/* related
--------------------------------------------- */
.related {
  position: relative;
  margin: 2rem 0 0;
  padding: 3rem 2rem;
  border: 2px solid #333333;
}
@media screen and (max-width: 600px) {
  .related {
    padding: 2rem 1.6rem;
  }
}
.related .title {
  color: #333333;
  font-size: 1.8rem;
  font-weight: 500;
}
.related .title i {
  margin-right: 6px;
  color: #333333;
}
.related .related_title {
  color: #8CB729;
  font-size: 1.8rem;
  font-weight: 500;
}
.related .related_title i {
  margin-right: 6px;
  color: #8CB729;
}
.related p {
  position: relative;
  margin-top: 0 !important;
}
.related ul {
  margin: 0 !important;
}
.related ul li {
  margin: 0 !important;
  padding: 1rem 0;
  border-top: 1px solid #333333;
  list-style-type: none;
}
.related ul li:first-child {
  border-top: none;
}
.related ul li a {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 0 1rem;
  text-decoration: none !important;
}
.related ul li a .thumbnail {
  width: 132px;
  margin-top: 0 !important;
}
@media screen and (max-width: 600px) {
  .related ul li a .thumbnail {
    width: 90px;
  }
}
.related ul li a .post_title {
  width: calc(100% - 148px);
  color: #333333;
  font-size: 1.6rem;
}
@media screen and (max-width: 600px) {
  .related ul li a .post_title {
    width: calc(100% - 108px);
  }
}

.related_link {
  position: relative;
  margin: 2rem auto 0;
  padding: 3rem 2rem;
  border: 2px solid #8CB729;
}
@media screen and (max-width: 600px) {
  .related_link {
    padding: 2rem 1.6rem;
  }
}
.related_link .title {
  font-size: 1.8rem;
  font-weight: 500;
}
.related_link .title i {
  margin-right: 6px;
}
.related_link p {
  position: relative;
  font-size: 1.6rem;
}
.related_link p::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 5px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #8CB729;
}
.related_link p::before:last-of-type {
  padding-bottom: 0;
  border-bottom: none;
  margin-bottom: 0;
}
.related_link p a {
  color: #333333;
  text-decoration: none;
}
.related_link ul {
  margin: 0;
}
.related_link ul li {
  margin-top: 1rem;
  padding-left: 0;
  padding-bottom: 1rem;
  border-bottom: 1px solid #333333;
  font-size: 1.6rem;
  list-style-type: none;
}
.related_link ul li::before {
  display: none;
}
.related_link ul li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.related_link ul li a {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 600px) {
  .related_link ul li a {
    gap: 5px;
  }
}
.related_link ul li a .thumbnail {
  width: 150px;
}
@media screen and (max-width: 600px) {
  .related_link ul li a .thumbnail {
    width: 80px;
  }
}
.related_link ul li a .post_title {
  width: calc(100% - 160px);
}
@media screen and (max-width: 600px) {
  .related_link ul li a .post_title {
    width: calc(100% - 85px);
  }
}

/* cv btn
--------------------------------------------- */
.cvbtn {
  display: block;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 280px;
  margin: 2rem 0;
  padding: 1.6rem 2rem;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none !important;
  transition: all 0.3s ease-in-out;
}
.cvbtn:hover {
  opacity: 1 !important;
  filter: opacity(100%) !important;
}
.cvbtn.cvbtn_1 {
  border: 2px solid #8CB729;
  background-color: #8CB729;
  color: #FFFFFF !important;
}
.cvbtn.cvbtn_1:hover {
  opacity: 0.75;
  filter: opacity(75%);
}
.cvbtn.cvbtn_2 {
  border: 2px solid #333333;
  background: #FFFFFF;
  color: #333333;
}
.cvbtn.cvbtn_2:hover {
  background-color: #333333;
  color: #FFFFFF;
}
.cvbtn.cvbtn_3 {
  border: 2px solid #FEBD69;
  border-radius: 10px;
  background: #FEBD69;
  color: #333333;
}
.cvbtn.cvbtn_3:hover {
  opacity: 0.75;
  filter: opacity(75%);
}

.txtlink {
  position: relative;
  color: #333333;
  text-decoration: underline;
}
.txtlink::before {
  content: "\f0c1";
  display: inline-block;
  margin-right: 0.5rem;
  color: #333333;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

/* table wrap
--------------------------------------------- */
.table-wrap table {
  overflow-x: scroll;
  white-space: nowrap;
}

.c-reserve {
  position: relative;
  width: 100%;
  padding: 12rem 0 12rem;
  background-color: #333333;
  background-image: url("../img/common/reserve_bg_01-pc.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 600px) {
  .c-reserve {
    background-image: url("../img/common/reserve_bg_01-sp.webp");
  }
}
.c-reserve__title {
  opacity: 0;
  transition: 0.5s;
  transform: translateY(4rem);
  text-align: center;
}
.c-reserve__title.is-inview {
  animation: fadein_up 0.5s forwards 0.2s;
}
.c-reserve__title h2 {
  margin-top: -1.6rem;
  color: #8CB729;
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 600px) {
  .c-reserve__title h2 {
    font-size: 2.8rem;
  }
}
.c-reserve__title img {
  display: block;
  width: auto;
  height: 114px;
  margin: 0 auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 600px) {
  .c-reserve__title img {
    width: 100%;
    height: auto;
  }
}
.c-reserve__txt {
  width: 100%;
  margin-top: 8rem;
}
@media screen and (max-width: 600px) {
  .c-reserve__txt {
    margin-top: 6.4rem;
  }
}
.c-reserve__txt p {
  color: #FFFFFF;
  font-weight: 500;
  text-align: center;
  line-height: 2.4;
}
@media screen and (max-width: 600px) {
  .c-reserve__txt p {
    text-align: left;
    line-height: 2;
  }
}
.c-reserve__txt p.note {
  margin-top: 1.6rem;
  font-size: 1.5rem;
}
@media screen and (max-width: 600px) {
  .c-reserve__txt p.note {
    font-size: 1.4rem;
    text-align: center;
  }
}
.c-reserve__link {
  width: 100%;
  margin-top: 6.4rem;
}
@media screen and (max-width: 600px) {
  .c-reserve__link {
    margin-top: 4rem;
  }
}
.c-reserve__link h3 {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding-bottom: 1rem;
  color: #F1EA1C;
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.7;
  letter-spacing: 5%;
}
@media screen and (max-width: 600px) {
  .c-reserve__link h3 {
    font-size: 2rem;
    letter-spacing: 0;
  }
}
.c-reserve__link h3::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: -2rem;
  width: 3px;
  height: 48px;
  background-color: #F1EA1C;
  transform: translateY(-50%) rotate(330deg);
}
@media screen and (max-width: 600px) {
  .c-reserve__link h3::before {
    left: -1.2rem;
    height: 64px;
  }
}
.c-reserve__link h3::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: -2rem;
  width: 3px;
  height: 48px;
  background-color: #F1EA1C;
  transform: translateY(-50%) rotate(30deg);
}
@media screen and (max-width: 600px) {
  .c-reserve__link h3::after {
    right: -1.2rem;
    height: 64px;
  }
}
.c-reserve__link .link-btn {
  margin-top: 1.6rem;
  padding: 2.4rem 10rem;
  border-radius: 50px;
  font-size: 2.2rem;
}
@media screen and (max-width: 600px) {
  .c-reserve__link .link-btn {
    padding: 2rem 3.2rem;
    font-size: 2rem;
  }
}
@media screen and (max-width: 480px) {
  .c-reserve__link .link-btn {
    font-size: 5.4vw;
  }
}
.c-reserve__image {
  display: none;
}
@media screen and (max-width: 600px) {
  .c-reserve__image {
    display: -moz-grid;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    gap: 0;
    margin-top: 2rem;
  }
}
.c-reserve__image img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.c-reserve__image .img01 {
  width: 104%;
  margin-left: -2rem;
  padding-bottom: 10%;
}
.c-reserve__image .img02 {
  width: 92.59%;
  margin: auto 0 0 auto;
}

.wp-block-search {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  border-radius: 10px;
  background-color: #fcfcfc;
}
.wp-block-search__wrap {
  width: 100%;
  margin-top: 4rem;
}
.wp-block-search__input {
  width: calc(100% - 48px);
  height: 54px;
  padding: 10px 1rem;
  border: none;
  background-color: transparent;
  font-size: 1.6rem;
}
.wp-block-search__input:focus {
  outline: none;
}
.wp-block-search__button {
  width: 48px;
  height: 54px;
  padding: 10px;
  border: none;
  background-color: transparent;
  color: #333333;
  font-size: 1.6rem;
  text-align: center;
}

/* table of contents
--------------------------------------------- */
#toc_container {
  position: relative;
  width: 100%;
  margin-top: 4rem;
  padding: 3rem 2rem;
  border: none;
  background-color: #F7F7F7;
}
@media screen and (max-width: 600px) {
  #toc_container {
    padding: 2rem 1.5rem;
  }
}
#toc_container::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 50%;
  width: 56.25%;
  height: 10px;
  background-color: #8CB729;
  transform: translateX(-50%);
}
#toc_container .toc_title {
  color: #333333;
  font-size: 2.4rem;
  font-weight: 700;
}
#toc_container .toc_title span {
  color: #333333;
  font-weight: 400;
}
#toc_container .toc_list {
  margin: 0;
  padding: 0;
}
#toc_container .toc_list > li {
  margin: 0;
  padding: 1rem 0;
  list-style-type: none;
}
#toc_container .toc_list > li a {
  color: #333333;
  font-size: 1.6rem;
  font-weight: 500;
  text-decoration: none;
}
#toc_container .toc_list ul {
  margin: 0 0 0 1rem;
  padding: 1rem 0 !important;
  border-bottom: 1px solid #AAAAAA;
}
#toc_container .toc_list ul li {
  margin-top: 1rem;
}
#toc_container .toc_list ul li:first-of-type {
  margin-top: 0;
}
#toc_container .toc_list ul li a {
  color: #333333;
  font-size: 1.4rem;
  font-weight: 400;
  text-decoration: none;
}
#toc_container .toc_list ul ul {
  margin: 0;
  padding: 0;
}

/* title
--------------------------------------------- */
.f-main__title {
  opacity: 0;
  text-align: center;
  transition: 0.5s;
  transform: translateY(4rem);
}
.f-main__title.is-inview {
  animation: fadein_up 0.5s forwards;
}
.f-main__title h2 {
  position: relative;
  margin-top: -1.6rem;
  color: #333333;
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 600px) {
  .f-main__title h2 {
    margin-top: -1rem;
    font-size: 2.8rem;
  }
}
.f-main__title h2::after {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: -3.2rem;
  left: 50%;
  width: 56px;
  height: 2px;
  background-color: #8CB729;
  transform: translateX(-50%);
}
@media screen and (max-width: 600px) {
  .f-main__title h2::after {
    bottom: -2rem;
  }
}
.f-main__title img {
  display: block;
  width: auto;
  height: 114px;
  margin: 0 auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 600px) {
  .f-main__title img {
    height: 75px;
  }
}

/* main visual
--------------------------------------------- */
.f-main-fv {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 700px;
  background-image: url("../img/front/fv_bg_01.webp");
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 600px) {
  .f-main-fv {
    height: 85vh;
  }
}
.f-main-fv__inner {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 3;
  height: 100%;
}
@media screen and (max-width: 600px) {
  .f-main-fv__inner {
    flex-direction: column;
  }
}
.f-main-fv__image {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 100%;
  padding-top: 5vh;
}
@media screen and (max-width: 600px) {
  .f-main-fv__image {
    width: 100%;
    height: 90%;
    padding-top: 0;
  }
}
.f-main-fv__image img {
  width: auto;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 0 0 auto;
}
@media screen and (max-width: 960px) {
  .f-main-fv__image img {
    width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 600px) {
  .f-main-fv__image img {
    width: auto;
    height: 100%;
    margin: auto -15% 0 auto;
  }
}
.f-main-fv__txt {
  position: relative;
  z-index: 10;
  opacity: 0;
  padding-top: 6rem;
  transition: 0.5s;
}
@media screen and (max-width: 600px) {
  .f-main-fv__txt {
    padding-top: 25vh;
  }
}
.f-main-fv__txt.is-inview {
  animation: fadein_right 0.5s forwards 0.4s;
}
.f-main-fv__txt h1 {
  color: #FFFFFF;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.1em;
  margin-bottom: 2.4rem;
}
@media screen and (max-width: 600px) {
  .f-main-fv__txt h1 {
    font-size: 2.8rem;
  }
}
.f-main-fv__txt h1 span {
  font-size: 5rem;
}
@media screen and (max-width: 600px) {
  .f-main-fv__txt h1 span {
    font-size: 4rem;
  }
}
.f-main-fv__txt p {
  margin-top: 2.4rem;
  color: #FFFFFF;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2;
}
@media screen and (max-width: 600px) {
  .f-main-fv__txt p {
    font-size: 1.6rem;
  }
}
.f-main-fv__link {
  margin-top: 4rem;
}
@media screen and (max-width: 600px) {
  .f-main-fv__link {
    margin-top: 2.4rem;
  }
}
.f-main-fv__link .link-btn {
  margin: 0;
}

/* about
--------------------------------------------- */
.f-main-about {
  position: relative;
  padding-top: 12rem;
  padding-bottom: 12rem;
  background-color: #333333;
}
@media screen and (max-width: 600px) {
  .f-main-about {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}
.f-main-about__title h2 {
  color: #8CB729;
}
.f-main-about__txt {
  opacity: 0;
  transition: 0.5s;
}
.f-main-about__txt.is-inview {
  animation: fadein 0.5s forwards 0.4s;
}
@media screen and (max-width: 600px) {
  .f-main-about__txt {
    padding: 0 1rem;
  }
}
.f-main-about__txt p {
  margin-top: 6.4rem;
  color: #FFFFFF;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .f-main-about__txt p {
    margin-top: 4rem;
    text-align: left;
  }
}
.f-main-about__txt p:first-of-type {
  margin-top: 8rem;
}
@media screen and (max-width: 600px) {
  .f-main-about__txt p:first-of-type {
    margin-top: 6.4rem;
  }
}
.f-main-about__txt p.message {
  margin-top: 0 !important;
  color: #FFFFFF;
  font-size: 2.4rem;
  font-weight: 700;
}
@media screen and (max-width: 600px) {
  .f-main-about__txt p.message {
    font-size: 2rem;
  }
}
.f-main-about__txt-image {
  width: 100%;
  margin-top: 6.4rem;
}
@media screen and (max-width: 600px) {
  .f-main-about__txt-image {
    margin-top: 4rem;
  }
}
.f-main-about__txt-image img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.f-main-about__effect {
  position: relative;
  width: 100%;
  margin-top: 6.4rem;
  padding: 0 4rem 4rem 4rem;
  border: 2px solid #8CB729;
  border-radius: 10px;
}
@media screen and (max-width: 600px) {
  .f-main-about__effect {
    padding: 0 2.4rem 2.4rem 2.4rem;
  }
}
.f-main-about__effect h3 {
  display: block;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: -2.4rem;
  margin-inline: auto;
  padding: 0.8rem 4rem 1rem 4rem;
  background-color: #8CB729;
  color: #FFFFFF;
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}
@media screen and (max-width: 600px) {
  .f-main-about__effect h3 {
    margin-top: -4rem;
    padding: 0.8rem 2.4rem 1rem 2.4rem;
    font-size: 2rem;
    white-space: wrap;
  }
}
.f-main-about__effect h3::after {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: -2rem;
  left: 50%;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 20px solid #8CB729;
  border-right: 20px solid transparent;
  border-bottom: 0;
  border-left: 20px solid transparent;
  transform: translateX(-50%);
}
@media screen and (max-width: 600px) {
  .f-main-about__effect h3::after {
    bottom: -1.5rem;
    border-top: 15px solid #8CB729;
    border-right: 15px solid transparent;
    border-bottom: 0;
    border-left: 15px solid transparent;
  }
}
.f-main-about__effect ul {
  display: -moz-grid;
  display: grid;
  grid-template-rows: repeat(5, auto);
  grid-auto-flow: column;
  gap: 1.6rem;
  margin-top: 4rem;
}
@media screen and (max-width: 600px) {
  .f-main-about__effect ul {
    grid-template-rows: repeat(10, auto);
    gap: 1rem;
  }
}
.f-main-about__effect ul li {
  position: relative;
  padding-left: 1.4em;
  color: #FFFFFF;
  font-size: 2.2rem;
  font-weight: 500;
  text-indent: -1.4em;
}
@media screen and (max-width: 600px) {
  .f-main-about__effect ul li {
    font-size: 1.8rem;
  }
}
.f-main-about__effect ul li::marker {
  color: transparent;
}
.f-main-about__effect ul li::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 6px;
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #8CB729;
}
.f-main-about__link {
  margin-top: 10rem;
}
@media screen and (max-width: 600px) {
  .f-main-about__link {
    margin-top: 6.4rem;
  }
}

/* reason
--------------------------------------------- */
.f-main-reason {
  position: relative;
  padding: 12rem 0 12rem;
  background-color: #F7F7F7;
}
@media screen and (max-width: 600px) {
  .f-main-reason {
    padding: 8rem 0 8rem;
  }
}
.f-main-reason__list {
  margin-top: 10rem;
}
@media screen and (max-width: 600px) {
  .f-main-reason__list {
    margin-top: 6.4rem;
  }
}
.f-main-reason__item {
  display: -moz-grid;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  gap: 2rem 0;
  margin-top: 4rem;
}
@media screen and (max-width: 600px) {
  .f-main-reason__item {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(2, auto);
    margin-top: 3.2rem;
  }
}
.f-main-reason__item:nth-of-type(odd) .f-main-reason__thumb {
  order: 1;
}
.f-main-reason__item:nth-of-type(odd) .f-main-reason__thumb.is-inview {
  animation: fadein_left 0.5s forwards 0.4s;
}
.f-main-reason__item:nth-of-type(odd) .f-main-reason__txt {
  order: 2;
  justify-self: flex-end;
}
.f-main-reason__item:nth-of-type(even) .f-main-reason__thumb {
  order: 2;
  margin-right: 0;
  margin-left: auto;
}
@media screen and (max-width: 600px) {
  .f-main-reason__item:nth-of-type(even) .f-main-reason__thumb {
    order: 1;
  }
}
.f-main-reason__item:nth-of-type(even) .f-main-reason__thumb.is-inview {
  animation: fadein_right 0.5s forwards 0.4s;
}
.f-main-reason__item:nth-of-type(even) .f-main-reason__txt {
  order: 1;
  justify-self: flex-start;
}
@media screen and (max-width: 600px) {
  .f-main-reason__item:nth-of-type(even) .f-main-reason__txt {
    order: 2;
  }
}
.f-main-reason__thumb {
  opacity: 0;
  width: calc(100% - 4rem);
  transition: 0.5s;
}
@media screen and (max-width: 600px) {
  .f-main-reason__thumb {
    width: 100%;
  }
}
.f-main-reason__thumb img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.f-main-reason__txt {
  width: 100%;
  padding-top: 4rem;
}
@media screen and (max-width: 600px) {
  .f-main-reason__txt {
    padding-top: 0;
  }
}
.f-main-reason__txt h3 {
  color: #8CB729;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (max-width: 600px) {
  .f-main-reason__txt h3 {
    font-size: 2.2rem;
  }
}
.f-main-reason__txt p {
  margin-top: 3.2rem;
  color: #333333;
  font-weight: 400;
}
@media screen and (max-width: 600px) {
  .f-main-reason__txt p {
    margin-top: 2rem;
  }
}

/* room
--------------------------------------------- */
.f-main-room {
  position: relative;
  padding-top: 12rem;
  padding-bottom: 12rem;
}
@media screen and (max-width: 600px) {
  .f-main-room {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}
.f-main-room__list {
  display: -moz-grid;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  gap: 4rem;
  width: 100%;
  margin-top: 8rem;
}
@media screen and (max-width: 960px) {
  .f-main-room__list {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(2, 1fr);
    margin-top: 6.4rem;
  }
}
.f-main-room__item {
  opacity: 0;
  transition: 0.5s;
}
.f-main-room__item.is-inview {
  animation: fadein 0.5s forwards 0.4s;
}
.f-main-room__item figure {
  width: 100%;
  margin: 0;
}
.f-main-room__item figure img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.f-main-room__item h3 {
  margin-top: 1rem;
  color: #333333;
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.5;
}
@media screen and (max-width: 600px) {
  .f-main-room__item h3 {
    font-size: 2rem;
  }
}
.f-main-room__item p {
  margin-top: 0.8rem;
  font-size: 1.6rem;
  text-align: center;
}
.f-main-room__item p.align-left {
  text-align: left;
}

/* benefit
--------------------------------------------- */
.f-main-benefit {
  position: relative;
  padding-top: 12rem;
  padding-bottom: 12rem;
  background-image: url("../img/front/benefit_bg.webp");
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 600px) {
  .f-main-benefit {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}
.f-main-benefit__inner p {
  margin-top: 4rem;
  color: #FFFFFF;
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
}
.f-main-benefit__title h2 {
  color: #FFFFFF;
}
.f-main-benefit__txt {
  width: -moz-fit-content;
  width: fit-content;
  margin: 8rem auto 0;
  padding: 0.8rem 4rem 1rem;
  border: 2px solid #8CB729;
  background-color: #333333;
}
@media screen and (max-width: 600px) {
  .f-main-benefit__txt {
    margin: 6.4rem auto 0;
    padding: 0.8rem 2.4rem 1rem;
  }
}
.f-main-benefit__txt p {
  margin-top: 0 !important;
  color: #FFFFFF;
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .f-main-benefit__txt p {
    font-size: 2rem;
  }
}
.f-main-benefit__txt p span {
  color: #8CB729;
}
.f-main-benefit__list {
  display: -moz-grid;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 1.6rem 2.4rem;
  width: 100%;
  margin-top: 4rem;
}
@media screen and (max-width: 960px) {
  .f-main-benefit__list {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 3.2rem;
  }
}
.f-main-benefit__list.is-inview .f-main-benefit__item:nth-of-type(1) {
  animation: fadein_left 0.5s forwards 0.2s;
}
.f-main-benefit__list.is-inview .f-main-benefit__item:nth-of-type(2) {
  animation: fadein_left 0.5s forwards 0.4s;
}
.f-main-benefit__list.is-inview .f-main-benefit__item:nth-of-type(3) {
  animation: fadein_left 0.5s forwards 0.6s;
}
.f-main-benefit__list.is-inview .f-main-benefit__item:nth-of-type(4) {
  animation: fadein_left 0.5s forwards 0.8s;
}
.f-main-benefit__list.is-inview .f-main-benefit__item:nth-of-type(5) {
  animation: fadein_left 0.5s forwards 1s;
}
.f-main-benefit__list.is-inview .f-main-benefit__item:nth-of-type(6) {
  animation: fadein_left 0.5s forwards 1.2s;
}
.f-main-benefit__item {
  opacity: 0;
  width: 100%;
  margin: 0;
  transition: 0.5s;
  transform: translateY(4rem);
}
.f-main-benefit__item img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.f-main-benefit__item figcaption {
  margin-top: 1.6rem;
  color: #FFFFFF;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.5;
}
@media screen and (max-width: 600px) {
  .f-main-benefit__item figcaption {
    margin-top: 1rem;
    font-size: 1.6rem;
  }
}
.f-main-benefit__item figcaption span {
  display: block;
  margin-top: 0;
  color: #FFFFFF;
  font-size: 1.4rem;
  font-weight: 400;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .f-main-benefit__item figcaption span {
    margin-top: 0.4rem;
    font-size: 1.3rem;
  }
}

/* staff
--------------------------------------------- */
.f-main-staff {
  position: relative;
  padding: 12rem 0;
}
@media screen and (max-width: 600px) {
  .f-main-staff {
    padding: 8rem 0;
  }
}
.f-main-staff__item {
  display: -moz-grid;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.2rem 0;
  width: 100%;
  margin-top: 8rem;
}
@media screen and (max-width: 600px) {
  .f-main-staff__item {
    grid-template-columns: 1fr;
    margin-top: 6.4rem;
  }
}
.f-main-staff__item:nth-of-type(odd) .f-main-staff__thumb {
  order: 1;
}
.f-main-staff__item:nth-of-type(odd) .f-main-staff__thumb.is-inview {
  animation: fadein_left 0.5s forwards 0.4s;
}
.f-main-staff__item:nth-of-type(odd) .f-main-staff__txt {
  order: 2;
  justify-self: flex-end;
}
.f-main-staff__item:nth-of-type(even) .f-main-staff__thumb {
  order: 2;
  margin-right: 0;
  margin-left: auto;
}
@media screen and (max-width: 600px) {
  .f-main-staff__item:nth-of-type(even) .f-main-staff__thumb {
    order: 1;
  }
}
.f-main-staff__item:nth-of-type(even) .f-main-staff__thumb.is-inview {
  animation: fadein_right 0.5s forwards 0.4s;
}
.f-main-staff__item:nth-of-type(even) .f-main-staff__txt {
  order: 1;
  justify-self: flex-start;
}
@media screen and (max-width: 600px) {
  .f-main-staff__item:nth-of-type(even) .f-main-staff__txt {
    order: 2;
  }
}
.f-main-staff__thumb {
  opacity: 0;
  width: calc(100% - 6rem);
  transition: 0.5s;
}
@media screen and (max-width: 600px) {
  .f-main-staff__thumb {
    width: 100%;
  }
}
.f-main-staff__thumb img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.f-main-staff__txt {
  width: 100%;
}
@media screen and (max-width: 600px) {
  .f-main-staff__txt {
    padding: 0 1rem;
  }
}
.f-main-staff__txt-title {
  width: 100%;
  margin-bottom: 3.2rem;
}
@media screen and (max-width: 600px) {
  .f-main-staff__txt-title {
    margin-bottom: 2.4rem;
  }
}
.f-main-staff__txt-title h2 {
  color: #333333;
  font-size: 2.2rem;
  font-weight: 700;
}
@media screen and (max-width: 600px) {
  .f-main-staff__txt-title h2 {
    font-size: 1.8rem;
  }
}
.f-main-staff__txt-title h2 span {
  display: block;
  margin-bottom: 0.4rem;
  color: #333333;
  font-size: 5rem;
  font-family: "Oswald", serif;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 600px) {
  .f-main-staff__txt-title h2 span {
    font-size: 4rem;
  }
}
.f-main-staff__txt-title p.position {
  margin-top: 0.6rem;
  color: #8CB729;
  font-size: 1.8rem;
  font-weight: 700;
}
.f-main-staff__txt p {
  color: #333333;
  font-size: 1.6rem;
}

/* voice
--------------------------------------------- */
.f-main-voice {
  position: relative;
  padding-top: 12rem;
  padding-bottom: 12rem;
  background-color: #F7F7F7;
}
@media screen and (max-width: 600px) {
  .f-main-voice {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}
.f-main-voice__list {
  display: -moz-grid;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  gap: 3.2rem 4rem;
  opacity: 0;
  width: 100%;
  margin-top: 8rem;
  transition: 0.5s;
  transform: translateY(4rem);
}
@media screen and (max-width: 600px) {
  .f-main-voice__list {
    grid-template-columns: 1fr;
    margin-top: 6.4rem;
  }
}
.f-main-voice__list.is-inview {
  animation: fadein_up 0.5s forwards 0.2s;
}
.f-main-voice__item {
  width: 100%;
  margin: 0;
  padding: 3.2rem;
  border-radius: 10px;
  background-color: #FFFFFF;
}
@media screen and (max-width: 600px) {
  .f-main-voice__item {
    padding: 2.4rem;
  }
}
.f-main-voice__info {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1.6rem;
}
.f-main-voice__info-icon {
  width: 80px;
  height: 80px;
}
.f-main-voice__info-icon img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.f-main-voice__info-name {
  width: calc(100% - 80px);
}
.f-main-voice__info-name h3 {
  color: #333333;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 5%;
}
.f-main-voice__info-name h3 span {
  position: relative;
  top: -0.3rem;
  color: #999999;
  font-size: 1.4rem;
}
.f-main-voice__info-name p {
  margin-top: 0.6rem;
  color: #8CB729;
  font-size: 1.4rem;
  font-weight: 700;
}
.f-main-voice__change {
  margin-top: 4rem;
}
@media screen and (max-width: 600px) {
  .f-main-voice__change {
    margin-top: 2.4rem;
  }
}
.f-main-voice__change p {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding-bottom: 1rem;
  color: #333333;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.7;
  letter-spacing: 5%;
}
@media screen and (max-width: 600px) {
  .f-main-voice__change p {
    font-size: 1.8rem;
    letter-spacing: 0;
  }
}
.f-main-voice__change p::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: -2rem;
  width: 3px;
  height: 48px;
  background-color: #333333;
  transform: translateY(-50%) rotate(330deg);
}
@media screen and (max-width: 600px) {
  .f-main-voice__change p::before {
    left: -2rem;
    height: 64px;
  }
}
.f-main-voice__change p::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: -2rem;
  width: 3px;
  height: 48px;
  background-color: #333333;
  transform: translateY(-50%) rotate(30deg);
}
@media screen and (max-width: 600px) {
  .f-main-voice__change p::after {
    right: -2rem;
    height: 64px;
  }
}
.f-main-voice__change .link-btn {
  margin-top: 1.6rem;
}

/* price
--------------------------------------------- */
.f-main-price {
  position: relative;
  padding-top: 12rem;
  padding-bottom: 12rem;
}
@media screen and (max-width: 600px) {
  .f-main-price {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}
.f-main-price__tbl {
  width: 100%;
  margin-top: 3rem;
}
@media screen and (max-width: 600px) {
  .f-main-price__tbl {
    overflow-x: scroll;
  }
}
.f-main-price__tbl table {
  border: 1px solid #AAAAAA;
  border-collapse: collapse;
}
.f-main-price__tbl table.table-normal {
  width: -moz-fit-content;
  width: fit-content;
  max-width: 480px;
}
.f-main-price__tbl table.table-normal td {
  width: 20%;
  max-width: 240px;
}
.f-main-price__tbl table.table-stripe {
  width: 100%;
  white-space: nowrap;
}
.f-main-price__tbl table.table-stripe tr td:first-of-type {
  width: 20%;
}
.f-main-price__tbl table.table-stripe tr td:nth-of-type(2) {
  width: 20%;
}
.f-main-price__tbl table.table-stripe tr td:last-of-type {
  width: 60%;
}
.f-main-price__tbl table tr:nth-child(odd) td {
  background-color: #FFFFFF;
}
.f-main-price__tbl table tr:nth-child(even) td {
  background-color: #F7F7F7;
}
.f-main-price__tbl table tbody td {
  height: 68px;
  padding: 1.6rem 2.4rem;
  border: 1px solid #AAAAAA;
  color: #333333;
  font-size: 1.6rem;
  text-align: left;
}
.f-main-price__tbl table tbody td.price {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: right;
}
.f-main-price__tbl table tbody td.price span {
  color: #8CB729;
  font-weight: 700;
}
.f-main-price__tbl table tbody td.price small {
  font-size: 1.6rem;
  font-weight: 400;
}
.f-main-price h3 {
  position: relative;
  margin-top: 8rem;
  padding: 0.4rem 1rem 0.4rem;
  border-left: 8px solid #8CB729;
  color: #333333;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (max-width: 600px) {
  .f-main-price h3 {
    margin-top: 6.4rem;
    font-size: 2rem;
  }
}
.f-main-price h3 span {
  display: inline-block;
  position: relative;
  top: -0.3rem;
  margin-left: 1.6rem;
  color: #333333;
  font-size: 1.6rem;
  font-weight: 400;
}
@media screen and (max-width: 600px) {
  .f-main-price h3 span {
    display: block;
    top: 0;
    margin-left: 0;
    font-size: 1.5rem;
  }
}
.f-main-price figcaption {
  margin-top: 2.4rem;
  color: #333333;
  font-size: 1.6rem;
  font-weight: 400;
  text-align: left;
}
@media screen and (max-width: 600px) {
  .f-main-price figcaption {
    margin-top: 2rem;
    font-size: 1.5rem;
  }
}

/* faq
--------------------------------------------- */
.f-main-faq {
  position: relative;
  padding-top: 12rem;
  padding-bottom: 12rem;
  background-color: #F7F7F7;
}
@media screen and (max-width: 600px) {
  .f-main-faq {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}
.f-main-faq__list {
  width: 100%;
  margin-top: 8rem;
}
@media screen and (max-width: 600px) {
  .f-main-faq__list {
    margin-top: 6.4rem;
  }
}
.f-main-faq__item {
  opacity: 0;
  width: 100%;
  margin-top: 2.4rem;
  padding: 2.5rem 3rem;
  border-radius: 10px;
  background-color: #FFFFFF;
  transition: 0.5s;
  transform: translateY(4rem);
}
@media screen and (max-width: 600px) {
  .f-main-faq__item {
    padding: 2rem 2.4rem;
  }
}
.f-main-faq__item.is-inview {
  animation: fadein_up 0.5s forwards 0.2s;
}
.f-main-faq__item summary {
  display: block;
  position: relative;
  padding-right: 2rem;
  padding-left: 5.6rem;
  color: #333333;
  font-size: 2rem;
  font-weight: 700;
  text-align: left;
  line-height: 1.7;
  list-style: none;
}
@media screen and (max-width: 600px) {
  .f-main-faq__item summary {
    padding-left: 4rem;
    font-size: 1.8rem;
  }
}
.f-main-faq__item summary::before {
  content: "Q";
  display: inline-block;
  position: absolute;
  top: -2px;
  left: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #8CB729;
  color: #FFFFFF;
  font-family: "Oswald", serif;
  font-weight: 700;
  text-align: center;
  line-height: 36px;
}
@media screen and (max-width: 600px) {
  .f-main-faq__item summary::before {
    top: -2px;
    width: 32px;
    height: 32px;
    line-height: 28px;
  }
}
.f-main-faq__item summary::after {
  content: "+";
  display: inline-block;
  position: absolute;
  top: 2px;
  right: 0;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}
.f-main-faq__item summary::marker {
  content: "";
  display: none;
}
.f-main-faq__item[open] summary::after {
  content: "\f068";
}
.f-main-faq__txt {
  margin-top: 1.6rem;
  padding-left: 5.6rem;
}
@media screen and (max-width: 600px) {
  .f-main-faq__txt {
    padding-left: 4rem;
  }
}
.f-main-faq__txt p {
  color: #333333;
  font-size: 1.6rem;
}
@media screen and (max-width: 600px) {
  .f-main-faq__txt p {
    font-size: 1.5rem;
  }
}
.f-main-faq__txt .faq-btn__link {
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 1.6rem;
}

/* introduction
--------------------------------------------- */
.l-contact-introduction {
  position: relative;
  padding-top: 12rem;
  padding-bottom: 6rem;
}
@media screen and (max-width: 600px) {
  .l-contact-introduction {
    padding-top: 8rem;
  }
}
.l-contact-introduction__inner h2 {
  color: #333333;
  font-size: 2.4rem;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .l-contact-introduction__inner h2 {
    font-size: 2rem;
  }
}
.l-contact-introduction-list {
  display: -moz-grid;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  gap: 4rem 8rem;
  width: 100%;
  margin-top: 4rem;
}
@media screen and (max-width: 600px) {
  .l-contact-introduction-list {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 1fr);
  }
}
.l-contact-introduction-list__item {
  width: 100%;
}
.l-contact-introduction-list__item dt {
  margin: 0;
  padding: 0;
  color: #8CB729;
  font-size: 2.4rem;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .l-contact-introduction-list__item dt {
    font-size: 1.8rem;
  }
}
.l-contact-introduction-list__item dd {
  margin: 2rem 0 0 0;
  padding: 0;
  font-size: 2.8rem;
  font-family: "Oswald", serif;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .l-contact-introduction-list__item dd {
    margin: 1rem 0 0 0;
    font-size: 2.4rem;
  }
}
.l-contact-introduction-list__item dd a {
  color: #333333;
  font-size: 3.6rem;
  font-family: "Oswald", serif;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 600px) {
  .l-contact-introduction-list__item dd a {
    font-size: 2.8rem;
  }
}
.l-contact-introduction-list__item dd a:hover {
  opacity: 0.75;
  filter: opacity(75%);
  text-decoration: underline;
}
.l-contact-introduction-list__item dd p {
  margin-top: 1rem !important;
  color: #333333;
  font-size: 1.4rem;
  font-family: "Noto Sans JP", serif;
  font-weight: 400;
  text-align: center;
  line-height: 1.6;
}
.l-contact-introduction-form {
  display: -moz-grid;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  gap: 0 8rem;
  width: 100%;
  margin-top: 12rem;
}
@media screen and (max-width: 600px) {
  .l-contact-introduction-form {
    gap: 0 2rem;
    margin-top: 8rem;
  }
}
.l-contact-introduction-form__item {
  width: 100%;
}
.l-contact-introduction-form__item .link-btn {
  width: 100%;
  height: 60px;
  margin-top: 0;
  padding: 1.8rem 2rem 1.8rem;
  background: rgb(148, 196, 43);
  background: linear-gradient(90deg, rgb(148, 196, 43) 0%, rgb(70, 177, 59) 40%, rgb(98, 150, 117) 100%);
  color: #FFFFFF;
  font-size: 1.8rem;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 600px) {
  .l-contact-introduction-form__item .link-btn {
    height: 40px;
    padding: 0.8rem 2rem 1rem;
    font-size: 1.5rem;
  }
}
.l-contact-introduction__txt {
  margin-top: 6rem;
}
@media screen and (max-width: 600px) {
  .l-contact-introduction__txt {
    margin-top: 2rem;
  }
}
.l-contact-introduction__txt p {
  color: #333333;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .l-contact-introduction__txt p {
    font-size: 1.6rem;
    text-align: left;
  }
}

/* form
--------------------------------------------- */
.l-contact-form {
  position: relative;
  padding-top: 8rem;
  padding-bottom: 12rem;
  background-color: #F7F7F7;
}
@media screen and (max-width: 600px) {
  .l-contact-form {
    padding-top: 6.4rem;
    padding-bottom: 8rem;
  }
}
.l-contact-form__inner {
  position: relative;
}
.l-contact-form__inner h2 {
  text-align: center;
}
.l-contact-form .frm-show-form {
  margin-top: 6rem;
}
@media screen and (max-width: 600px) {
  .l-contact-form .frm-show-form {
    margin-top: 2rem;
  }
}
.l-contact-form .frm-show-form .frm_form_field {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  gap: 1.6rem 3rem;
  width: 100%;
  margin-top: 2.4rem;
  padding-bottom: 2.4rem;
  border-bottom: 1px dashed #333333;
}
@media screen and (max-width: 600px) {
  .l-contact-form .frm-show-form .frm_form_field {
    flex-wrap: wrap;
  }
}
.l-contact-form .frm-show-form .frm_form_field label {
  width: 24%;
  color: #333333;
  font-size: 1.6rem;
  font-weight: 600;
  vertical-align: top;
}
@media screen and (max-width: 600px) {
  .l-contact-form .frm-show-form .frm_form_field label {
    width: 100%;
  }
}
.l-contact-form .frm-show-form .frm_form_field input,
.l-contact-form .frm-show-form .frm_form_field textarea {
  width: calc(76% - 3rem);
  padding: 2rem 3rem;
  border: 1px solid #AAAAAA;
  border-radius: 10px;
  color: #333333;
  font-size: 1.6rem;
  font-weight: 400;
}
@media screen and (max-width: 600px) {
  .l-contact-form .frm-show-form .frm_form_field input,
  .l-contact-form .frm-show-form .frm_form_field textarea {
    width: 100%;
    padding: 1.6rem 2.4rem;
  }
}
.l-contact-form .frm-show-form .frm_form_field select {
  width: -moz-fit-content;
  width: fit-content;
  padding: 1.6rem 2rem;
  border: 1px solid #AAAAAA;
  border-radius: 10px;
  color: #333333;
  font-size: 1.6rem;
  font-weight: 400;
}
@media screen and (max-width: 600px) {
  .l-contact-form .frm-show-form .frm_form_field select {
    width: 100%;
    padding: 1.2rem 2rem;
  }
}
.l-contact-form .frm-show-form .frm_form_field.btn-block {
  justify-content: center;
  margin-top: 6rem;
  border: none;
}
.l-contact-form .frm-show-form .frm_form_field.btn-block button {
  display: block;
  width: 280px;
  margin: 0 auto;
  padding: 2.4rem 0 2.6rem;
  background: #8CB729;
  color: #FFFFFF;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: all 0.3s ease-in-out;
}

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

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

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

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

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

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

.icon-line {
  display: inline-block;
  width: 37px;
  aspect-ratio: 1;
  margin: 0;
  padding: 0;
  background: url("./../img/common/icon_line.svg") no-repeat 50% 50%/contain;
}/*# sourceMappingURL=style.css.map */