@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700;900&display=swap");
/* ===============================================
# RULES
=============================================== */
/* ===============================================
# MIXINS
=============================================== */
/* ===============================================
# COMMON
=============================================== */
* {
  min-width: 0;
  min-height: 0;
}

html {
  font-size: 62.5%;
}

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

a {
  cursor: pointer;
  text-decoration: none;
}

img {
  width: 100%;
}

.inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: content-box;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .inner {
    padding: 0 2rem;
  }
}
@media screen and (max-width: 519px) {
  .inner {
    padding: 0 1.5rem;
  }
}

.for-pc {
  display: block;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .for-pc {
    display: none;
  }
}
@media screen and (max-width: 519px) {
  .for-pc {
    display: none;
  }
}

.for-tab {
  display: none;
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .for-tab {
    display: block;
  }
}

.for-sp {
  display: none;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .for-sp {
    display: block;
  }
}
@media screen and (max-width: 519px) {
  .for-sp {
    display: block;
  }
}

.util-title {
  color: #5da732;
  font-size: 32px;
  text-align: center;
  font-weight: 650;
  letter-spacing: 0.1rem;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .util-title {
    font-size: 28px;
  }
}
@media screen and (max-width: 519px) {
  .util-title {
    font-size: 28px;
  }
}

.util-section {
  padding: 80px 0;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .util-section {
    padding: 60px 0;
  }
}
@media screen and (max-width: 519px) {
  .util-section {
    padding: 60px 0;
  }
}

.util-button {
  display: inline-block;
  width: 240px;
  height: 52px;
  line-height: 4.8rem;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.05rem;
  background: #f39800;
  color: #f8f8f8;
  border: 2px solid #f39800;
  border-radius: 50px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease 0s;
}
@media (hover: hover) and (pointer: fine) {
  .util-button:hover {
    background: #f8f8f8;
    color: #f39800;
  }
}

/* ===============================================
1) HEADER
=============================================== */
.header {
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem 0;
  z-index: 100;
  background: #f8f8f8;
}
.header.UpMove {
  animation: UpScroll 0.5s forwards;
}
@keyframes UpScroll {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-100px);
  }
}
.header.DownMove {
  animation: DownScroll 0.5s forwards;
}
@keyframes DownScroll {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-logo {
  max-width: 120px;
}
@media screen and (min-width: 1200px) {
  .header-logo {
    max-width: 180px;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .header-logo {
    max-width: 150px;
  }
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .header-logo {
    max-width: 120px;
  }
}
@media screen and (max-width: 519px) {
  .header-logo {
    max-width: 120px;
  }
}
.header-logo-link {
  transition: all 0.4s ease 0s;
}
@media (hover: hover) and (pointer: fine) {
  .header-logo-link:hover {
    opacity: 0.3;
  }
}
.header-menu {
  display: flex;
  align-items: center;
  column-gap: 3.2rem;
}
@media screen and (min-width: 960px) {
  .header-menu {
    column-gap: 2rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .header-menu {
    display: none;
  }
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .header-menu {
    display: none;
  }
}
@media screen and (max-width: 519px) {
  .header-menu {
    display: none;
  }
}
.header-nav-list {
  display: flex;
  column-gap: 2rem;
}
@media screen and (min-width: 1200px) {
  .header-nav-list {
    column-gap: 2.4rem;
  }
}
.header-nav-item-link {
  font-size: 1.6rem;
  color: #101010;
  transition: all 0.4s ease 0s;
}
@media (hover: hover) and (pointer: fine) {
  .header-nav-item-link:hover {
    opacity: 0.3;
  }
}
.header-button-link {
  display: inline-block;
  width: 200px;
  height: 48px;
  line-height: 4.8rem;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  background: #f39800;
  color: #f8f8f8;
  border-radius: 50px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease 0s;
}
@media (hover: hover) and (pointer: fine) {
  .header-button-link:hover {
    opacity: 0.7;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .header-sns {
    display: none;
  }
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .header-sns {
    display: none;
  }
}
@media screen and (max-width: 519px) {
  .header-sns {
    display: none;
  }
}
.header-sns-list {
  display: flex;
  column-gap: 2.4rem;
  justify-content: flex-end;
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .header-sns-list {
    justify-content: center;
  }
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .header-sns-list {
    justify-content: center;
  }
}
@media screen and (max-width: 519px) {
  .header-sns-list {
    justify-content: center;
  }
}
.header-sns-item-link {
  font-size: 2.8rem;
  color: #101010;
  transition: all 0.4s ease 0s;
}
@media (hover: hover) and (pointer: fine) {
  .header-sns-item-link:hover {
    opacity: 0.3;
  }
}

/* ===============================================
2) DRAWER
=============================================== */
.drawer {
  width: 100%;
  max-width: 350px;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  background-color: #faf6e9;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  transform: translateX(350px);
  transition: all 0.4s ease 0s;
  z-index: 150;
}
.drawer.is-pull {
  display: block;
  transform: translateX(0);
  transition: all 0.4s ease 0s;
}
@media screen and (min-width: 960px) {
  .drawer {
    display: none;
  }
}
.drawer-icon {
  display: none;
  position: fixed;
  width: 48px;
  height: 48px;
  background-color: #f39800;
  border-radius: 50%;
  z-index: 200;
  cursor: pointer;
  transition: all 0.4s ease 0s;
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .drawer-icon {
    display: block;
    top: 16px;
    right: 20px;
  }
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .drawer-icon {
    display: block;
    top: 6px;
    right: 20px;
  }
}
@media screen and (max-width: 519px) {
  .drawer-icon {
    display: block;
    top: 6px;
    right: 15px;
  }
}
.drawer-icon.is-pull .drawer-icon-bars-first {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.drawer-icon.is-pull .drawer-icon-bars-second {
  opacity: 0;
}
.drawer-icon.is-pull .drawer-icon-bars-third {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.drawer-icon-bars {
  position: relative;
  width: 48px;
  height: 48px;
  display: block;
}
.drawer-icon-bars-first {
  position: absolute;
  top: 30%;
  left: 50%;
  width: 28px;
  height: 2px;
  background: #f8f8f8;
  border-radius: 10px;
  transform: translate(-50%, -50%);
  transition: all 0.4s ease 0s;
}
.drawer-icon-bars-second {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 28px;
  height: 2px;
  background: #f8f8f8;
  border-radius: 10px;
  transform: translate(-50%, -50%);
  transition: all 0.4s ease 0s;
}
.drawer-icon-bars-third {
  position: absolute;
  top: 70%;
  left: 50%;
  width: 28px;
  height: 2px;
  background: #f8f8f8;
  border-radius: 10px;
  transform: translate(-50%, -50%);
  transition: all 0.4s ease 0s;
}
.drawer-inner {
  background: #faf6e9;
}
.drawer-logo {
  width: 100%;
  max-width: 200px;
  margin: 0 auto;
  padding-top: 6rem;
}
.drawer-button {
  margin-top: 4rem;
  text-align: center;
}
.drawer-button-link {
  display: inline-block;
  width: 300px;
  height: 48px;
  line-height: 4.8rem;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.05rem;
  background: #f39800;
  color: #f8f8f8;
  border-radius: 50px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease 0s;
}
@media (hover: hover) and (pointer: fine) {
  .drawer-button-link:hover {
    opacity: 0.3;
  }
}
.drawer-nav {
  margin-top: 4rem;
}
.drawer-nav-list {
  display: block;
}
.drawer-nav-item {
  width: 100%;
}
.drawer-nav-item.is-active img {
  transform: rotate(180deg);
}
.drawer-nav-item-link {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2.4rem;
  font-size: 2rem;
  font-weight: 650;
  letter-spacing: 0.05rem;
  text-align: center;
  color: #101010;
}
.drawer-sns {
  margin-top: 4rem;
}
.drawer-sns-list {
  display: flex;
  column-gap: 3.2rem;
  justify-content: center;
}
.drawer-sns-item-link {
  font-size: 3.2rem;
  color: #101010;
}
.drawer-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(246, 246, 246, 0.75);
  z-index: 115;
  transition: all 0.4s ease 0s;
  visibility: hidden;
  opacity: 0;
}
.drawer-background.is-pull {
  display: block;
  visibility: visible;
  opacity: 1;
}
@media screen and (min-width: 960px) {
  .drawer-background {
    display: none;
  }
}

/* ===============================================
3) FOOTER
=============================================== */
.banner {
  box-shadow: 0 -4px 4px rgba(0, 0, 0, 0.1);
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem 0;
  background: #faf6e9;
  z-index: 20;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .banner {
    padding: 1rem 0;
  }
}
@media screen and (max-width: 519px) {
  .banner {
    padding: 1rem 0;
  }
}
.banner-inner {
  display: flex;
  padding: 0 4rem;
  column-gap: 4rem;
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .banner-inner {
    column-gap: 2rem;
  }
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .banner-inner {
    flex-direction: column;
    align-items: center;
    row-gap: 1rem;
  }
}
@media screen and (max-width: 519px) {
  .banner-inner {
    flex-direction: column;
    align-items: center;
    row-gap: 1rem;
    padding: 0 2rem;
  }
}
.banner-image {
  width: 80px;
  position: relative;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .banner-image {
    display: none;
  }
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .banner-image {
    display: none;
  }
}
@media screen and (max-width: 519px) {
  .banner-image {
    display: none;
  }
}
.banner-image:before {
  content: "";
  position: absolute;
  background: url(../img/img_banner.png) no-repeat center center/cover;
  width: 80px;
  height: 160px;
  bottom: -20px;
  left: 0;
}
.banner-message {
  font-size: 16px;
  font-weight: 650;
  line-height: 1.6;
  width: 100%;
  max-width: 320px;
  text-align: center;
}
.banner-message .location {
  font-size: 2rem;
  font-weight: 650;
  color: #5da732;
}
.banner-buttons {
  width: 100%;
  display: flex;
  justify-content: center;
  column-gap: 4rem;
}
@media screen and (min-width: 960px) {
  .banner-buttons {
    justify-content: flex-end;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .banner-buttons {
    column-gap: 1rem;
    justify-content: flex-end;
  }
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .banner-buttons {
    column-gap: 2rem;
  }
}
@media screen and (max-width: 519px) {
  .banner-buttons {
    column-gap: 1rem;
  }
}
.banner-button {
  width: 100%;
  max-width: 240px;
}
.banner-button-link {
  display: block;
  color: #f8f8f8;
  height: 44px;
  line-height: 4rem;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.05rem;
  background: #f39800;
  border: 2px solid #f39800;
  border-radius: 50px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease 0s;
}
@media (hover: hover) and (pointer: fine) {
  .banner-button-link:hover {
    background: #f8f8f8;
    color: #f39800;
  }
}
.banner-button-link.for-line {
  height: 44px;
  line-height: 4rem;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.05rem;
  background: #06cc75;
  border: 2px solid #06cc75;
  border-radius: 50px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease 0s;
}
@media (hover: hover) and (pointer: fine) {
  .banner-button-link.for-line:hover {
    background: #f8f8f8;
    color: #06cc75;
  }
}

.footer {
  padding: 6rem 0 12rem;
  background: #faf6e9;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .footer {
    padding: 4rem 0 12rem;
  }
}
@media screen and (max-width: 519px) {
  .footer {
    padding: 4rem 0 12rem;
  }
}
.footer-flex {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .footer-flex {
    flex-direction: column;
  }
}
@media screen and (max-width: 519px) {
  .footer-flex {
    flex-direction: column;
  }
}
.footer-menu {
  display: flex;
  row-gap: 3.2rem;
  column-gap: 4rem;
}
@media screen and (min-width: 960px) {
  .footer-menu {
    flex-direction: column;
  }
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .footer-menu {
    justify-content: center;
    column-gap: 6rem;
  }
}
@media screen and (max-width: 519px) {
  .footer-menu {
    justify-content: center;
    column-gap: 6rem;
  }
}
.footer-nav-list {
  display: flex;
  justify-content: flex-end;
}
@media screen and (min-width: 960px) {
  .footer-nav-list {
    column-gap: 4rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .footer-nav-list {
    flex-direction: column;
    row-gap: 3.2rem;
  }
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .footer-nav-list {
    flex-direction: column;
    row-gap: 3.2rem;
  }
}
@media screen and (max-width: 519px) {
  .footer-nav-list {
    flex-direction: column;
    row-gap: 3.2rem;
  }
}
.footer-nav-item-link {
  font-size: 1.6rem;
  color: #101010;
  transition: all 0.4s ease 0s;
}
@media (hover: hover) and (pointer: fine) {
  .footer-nav-item-link:hover {
    opacity: 0.3;
  }
}
.footer-policy-list {
  display: flex;
  justify-content: flex-end;
}
@media screen and (min-width: 960px) {
  .footer-policy-list {
    column-gap: 4rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .footer-policy-list {
    flex-direction: column;
    row-gap: 3.2rem;
  }
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .footer-policy-list {
    flex-direction: column;
    row-gap: 3.2rem;
  }
}
@media screen and (max-width: 519px) {
  .footer-policy-list {
    flex-direction: column;
    row-gap: 3.2rem;
  }
}
.footer-policy-item-link {
  font-size: 1.6rem;
  color: #101010;
  transition: all 0.4s ease 0s;
}
@media (hover: hover) and (pointer: fine) {
  .footer-policy-item-link:hover {
    opacity: 0.3;
  }
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .footer-sns {
    margin-top: 4rem;
  }
}
@media screen and (max-width: 519px) {
  .footer-sns {
    margin-top: 4rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .footer-sns.for-pc {
    display: none;
  }
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .footer-sns.for-pc {
    display: none;
  }
}
@media screen and (max-width: 519px) {
  .footer-sns.for-pc {
    display: none;
  }
}
.footer-sns.for-sm {
  display: none;
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .footer-sns.for-sm {
    display: block;
  }
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .footer-sns.for-sm {
    display: block;
  }
}
@media screen and (max-width: 519px) {
  .footer-sns.for-sm {
    display: block;
  }
}
.footer-sns-list {
  display: flex;
  column-gap: 3.2rem;
  justify-content: flex-end;
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .footer-sns-list {
    justify-content: center;
  }
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .footer-sns-list {
    justify-content: center;
  }
}
@media screen and (max-width: 519px) {
  .footer-sns-list {
    justify-content: center;
  }
}
.footer-sns-item-link {
  font-size: 2.8rem;
  color: #101010;
  transition: all 0.4s ease 0s;
}
@media (hover: hover) and (pointer: fine) {
  .footer-sns-item-link:hover {
    opacity: 0.3;
  }
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .footer-container {
    margin-top: 4rem;
  }
}
@media screen and (max-width: 519px) {
  .footer-container {
    margin-top: 4rem;
  }
}
.footer-logo {
  width: 180px;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .footer-logo {
    width: 240px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 519px) {
  .footer-logo {
    width: 240px;
    margin: 0 auto;
  }
}
.footer-address {
  max-width: 260px;
  margin-top: 2rem;
  font-size: 1.6rem;
  line-height: 1.6;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .footer-address {
    margin: 2rem auto 0;
  }
}
@media screen and (max-width: 519px) {
  .footer-address {
    margin: 2rem auto 0;
  }
}
.footer-meta {
  max-width: 260px;
  display: flex;
  margin-top: 1.2rem;
  font-size: 1.6rem;
  line-height: 1.6;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .footer-meta {
    margin: 1.2rem auto 0;
  }
}
@media screen and (max-width: 519px) {
  .footer-meta {
    margin: 1.2rem auto 0;
  }
}
.footer-label {
  width: 80px;
}
.footer-copyright {
  margin-top: 2rem;
  text-align: center;
  font-size: 1.4rem;
  line-height: 1.6;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .footer-copyright {
    margin-top: 6rem;
  }
}
@media screen and (max-width: 519px) {
  .footer-copyright {
    margin-top: 6rem;
  }
}

/* ===============================================
4) PAGE COMMON
=============================================== */
.headpage {
  width: 100%;
  position: relative;
  background: url(../img/img_headpage.png) no-repeat center center/cover;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .headpage {
    background: url(../img/img_headpage-sp.png) no-repeat center center/cover;
  }
}
@media screen and (max-width: 519px) {
  .headpage {
    background: url(../img/img_headpage-sp.png) no-repeat center center/cover;
  }
}
.headpage::after {
  position: absolute;
  content: "";
  width: 75%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(-90deg, rgba(251, 253, 255, 0) 0%, rgb(251, 253, 255) 100%);
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .headpage::after {
    width: 80%;
    background: linear-gradient(-90deg, rgba(251, 253, 255, 0) 0%, rgb(251, 253, 255) 87.5%);
  }
}
@media screen and (max-width: 519px) {
  .headpage::after {
    width: 80%;
    background: linear-gradient(-90deg, rgba(251, 253, 255, 0) 0%, rgb(251, 253, 255) 87.5%);
  }
}
.headpage-inner {
  position: relative;
  height: 240px;
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .headpage-inner {
    height: 210px;
  }
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .headpage-inner {
    height: 210px;
  }
}
@media screen and (max-width: 519px) {
  .headpage-inner {
    height: 180px;
  }
}
.headpage-title {
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 4rem;
  font-weight: 650;
  line-height: 1.6;
  color: #5da732;
  z-index: 5;
  text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .headpage-title {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 519px) {
  .headpage-title {
    font-size: 3.2rem;
    width: 100%;
    text-align: center;
  }
}

.breadcrumb {
  max-width: 960px;
  margin: 4rem auto 0;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .breadcrumb {
    margin: 2.8rem auto 0;
  }
}
@media screen and (max-width: 519px) {
  .breadcrumb {
    margin: 2.8rem auto 0;
  }
}
.breadcrumb-nav-list {
  display: flex;
  flex-wrap: wrap;
  row-gap: 0.8rem;
}
.breadcrumb-nav-item {
  font-size: 1.6rem;
  line-height: 1.6;
  font-weight: 650;
  color: #f39800;
}
.breadcrumb-nav-item:not(:last-of-type)::after {
  content: ">";
  margin: 0 2.4rem;
  font-size: 1.6rem;
  font-weight: 400;
  color: #101010;
}
.breadcrumb-nav-link {
  color: #101010;
  font-weight: 400;
  transition: all 0.4s ease 0s;
}
@media (hover: hover) and (pointer: fine) {
  .breadcrumb-nav-link:hover {
    opacity: 0.3;
  }
}

.util-post a {
  text-decoration: underline;
  color: #f39800;
  font-weight: 700;
  line-height: 1.6;
}
.util-post span {
  color: #5da732;
  font-weight: 700;
}
.util-post img {
  display: block;
  max-width: 720px;
  padding: 0 6rem;
  margin: 6rem auto 0;
  text-align: center;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .util-post img {
    padding: 0 2rem;
  }
}
@media screen and (max-width: 519px) {
  .util-post img {
    padding: 0;
  }
}
.util-post p, .util-post ul, .util-post ol {
  margin-top: 4rem;
  font-size: 1.6rem;
  line-height: 1.6;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .util-post p, .util-post ul, .util-post ol {
    margin-top: 2.8rem;
  }
}
@media screen and (max-width: 519px) {
  .util-post p, .util-post ul, .util-post ol {
    margin-top: 2.8rem;
  }
}
.util-post ul li {
  list-style: disc;
}
.util-post ol li {
  list-style: decimal;
}
.util-post li {
  font-size: 1.6rem;
  line-height: 1.6;
}
.util-post strong {
  font-weight: 650;
}
.util-post h1 {
  margin-top: 6rem;
  font-size: 4rem;
  font-weight: 650;
  line-height: 1.6;
  color: #f39800;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .util-post h1 {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 519px) {
  .util-post h1 {
    font-size: 3.2rem;
  }
}
.util-post h2 {
  margin-top: 6rem;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.6;
  color: #5da732;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .util-post h2 {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 519px) {
  .util-post h2 {
    font-size: 2.8rem;
  }
}
.util-post h3 {
  margin-top: 6rem;
  padding-left: 20px;
  font-size: 2.8rem;
  font-weight: 650;
  line-height: 1.6;
  color: #101010;
  border-left: 8px solid #5da732;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .util-post h3 {
    padding-left: 15px;
    font-size: 2.4rem;
    border-left: 6px solid #5da732;
  }
}
@media screen and (max-width: 519px) {
  .util-post h3 {
    padding-left: 15px;
    font-size: 2.4rem;
    border-left: 6px solid #5da732;
  }
}
.util-post h4 {
  position: relative;
  margin-top: 4rem;
  padding-left: 28px;
  font-size: 2.4rem;
  font-weight: 650;
  line-height: 1.6;
  color: #101010;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .util-post h4 {
    padding-left: 18px;
    font-size: 2rem;
  }
}
@media screen and (max-width: 519px) {
  .util-post h4 {
    padding-left: 18px;
    font-size: 2rem;
  }
}
.util-post h4:after {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50px;
  background: #5da732;
  top: 20px;
  left: 0;
  transform: translateY(-50%);
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .util-post h4:after {
    top: 16px;
    width: 6px;
    height: 6px;
  }
}
@media screen and (max-width: 519px) {
  .util-post h4:after {
    top: 16px;
    width: 6px;
    height: 6px;
  }
}
.util-post .lower-letter {
  list-style: lower-alpha;
}
.util-post .wp-block-button {
  margin-top: 4rem;
  font-size: 2rem;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .util-post .wp-block-button {
    margin-top: 3.2rem;
  }
}
@media screen and (max-width: 519px) {
  .util-post .wp-block-button {
    margin-top: 3.2rem;
  }
}
.util-post .wp-block-button__link {
  background-color: #f39800;
  font-size: 2rem;
  color: #f8f8f8;
  text-decoration: none !important;
  border: 2px solid #f39800;
  border-radius: 50px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease 0s;
  padding: 0.8rem 3.2rem;
  width: 240px;
}
@media (hover: hover) and (pointer: fine) {
  .util-post .wp-block-button__link:hover {
    background: #f8f8f8;
    color: #f39800;
  }
}
.util-post .wp-block-group {
  margin-top: 6rem;
  background: #faf6e9;
  padding: 4rem 2rem;
}
.util-post .wp-block-group p:first-of-type {
  margin-top: 0;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .util-post .wp-block-group {
    margin-top: 4rem;
  }
}
@media screen and (max-width: 519px) {
  .util-post .wp-block-group {
    padding: 2rem 1rem;
    margin-top: 4rem;
  }
}

.page-numbers {
  display: inline-block;
  width: 48px;
  height: 48px;
  line-height: 4.8rem;
  font-family: "Montserrat", sans-serif;
  font-size: 1.8rem;
  font-weight: 650;
  text-align: center;
  color: #f39800;
  background: #f8f8f8;
  border: 2px solid #f39800;
  border-radius: 50px;
  transition: all 0.4s ease 0s;
}
@media (hover: hover) and (pointer: fine) {
  .page-numbers:hover {
    color: #f8f8f8;
    background: #f39800;
  }
}
.page-numbers.current {
  background: #f39800;
  color: #f8f8f8;
  border: 2px solid #f39800;
  pointer-events: none;
}
@media (hover: hover) and (pointer: fine) {
  .page-numbers.current:hover {
    color: #f8f8f8;
    background: #f39800;
  }
}
.page-numbers.prev {
  position: relative;
  background: #f39800;
  border: 2px solid #f39800;
}
.page-numbers.prev::after {
  position: absolute;
  content: "";
  display: inline-block;
  background: url("../img/img_pagination-left.png") center center no-repeat;
  background-size: 100% auto;
  width: 9px;
  height: 18px;
  top: 50%;
  left: 50%;
  transform: translate(-60%, -50%);
}
@media (hover: hover) and (pointer: fine) {
  .page-numbers.prev:hover {
    opacity: 0.3;
  }
}
.page-numbers.next {
  position: relative;
  background: #f39800;
  border: 2px solid #f39800;
}
.page-numbers.next::after {
  position: absolute;
  content: "";
  display: inline-block;
  background: url("../img/img_pagination-right.png") center center no-repeat;
  background-size: 100% auto;
  width: 9px;
  height: 18px;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -50%);
}
@media (hover: hover) and (pointer: fine) {
  .page-numbers.next:hover {
    opacity: 0.3;
  }
}

/* ===============================================
5) HOME
=============================================== */
.home-visual {
  position: relative;
}
.home-visual-background {
  width: 100%;
}
@media screen and (min-width: 960px) {
  .home-visual-background {
    aspect-ratio: 14.4/7;
    min-height: 700px;
  }
}
@media screen and (min-width: 1200px) {
  .home-visual-background {
    aspect-ratio: 14.4/7;
    max-height: 900px;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .home-visual-background {
    position: relative;
    aspect-ratio: 14.4/7;
    min-height: 700px;
    background-position: -150px center !important;
  }
  .home-visual-background::after {
    position: absolute;
    content: "";
    width: 75%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(90deg, rgba(243, 152, 1, 0.15) 0%, rgba(0, 0, 0, 0) 100%);
  }
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-visual-background {
    aspect-ratio: 4.25/7;
    min-height: 700px;
  }
  .home-visual-background::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(90deg, rgba(243, 152, 1, 0.3) 0%, rgba(255, 255, 255, 0.3) 100%);
  }
}
@media screen and (max-width: 519px) {
  .home-visual-background {
    aspect-ratio: 4.25/7;
    min-height: 700px;
  }
  .home-visual-background::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(90deg, rgba(243, 152, 1, 0.3) 0%, rgba(255, 255, 255, 0.3) 100%);
  }
}
.home-visual-container {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}
@media screen and (min-width: 960px) {
  .home-visual-container {
    right: 6.25%;
  }
}
@media screen and (min-width: 1200px) {
  .home-visual-container {
    right: 8.3333333333%;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .home-visual-container {
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
  }
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-visual-container {
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
@media screen and (max-width: 519px) {
  .home-visual-container {
    top: 52.5%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
.home-visual-title {
  color: #101010;
  font-size: 2.4rem;
  font-weight: 650;
  line-height: 1.6;
  text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.15);
  text-align: center;
}
@media screen and (max-width: 519px) {
  .home-visual-title {
    font-size: 2rem;
  }
}
.home-visual-subtitle {
  margin-top: 2rem;
  color: #00b100;
  font-size: 4rem;
  font-weight: 650;
  text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.15);
  letter-spacing: 0.05rem;
}
.home-visual-subtitle span {
  font-family: "Lato", sans-serif;
  font-size: 8rem;
  padding: 0 0.5rem;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-visual-subtitle span {
    font-size: 8rem;
  }
}
@media screen and (max-width: 519px) {
  .home-visual-subtitle span {
    font-size: 6rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .home-visual-subtitle {
    text-align: center;
  }
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-visual-subtitle {
    font-size: 3rem;
    text-align: center;
    letter-spacing: 0.02rem;
  }
}
@media screen and (max-width: 519px) {
  .home-visual-subtitle {
    font-size: 2rem;
    text-align: center;
  }
}
.home-visual-circles {
  position: relative;
  display: flex;
  justify-content: center;
  margin: 4rem auto 0;
  width: 530px;
  height: 265px;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-visual-circles {
    width: 500px;
    height: 250px;
  }
}
@media screen and (max-width: 519px) {
  .home-visual-circles {
    margin: 2.8rem auto 0;
    width: 350px;
    height: 175px;
  }
}
.home-visual-circle {
  position: absolute;
  width: 265px;
  height: 265px;
  border-radius: 500px;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-visual-circle {
    width: 250px;
    height: 250px;
  }
}
@media screen and (max-width: 519px) {
  .home-visual-circle {
    width: 175px;
    height: 175px;
  }
}
.home-visual-circle.green-1 {
  background: rgba(155, 205, 132, 0.85);
  top: 0;
  left: 5px;
}
.home-visual-circle.green-1:before {
  position: absolute;
  content: "";
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 60px;
  background: url("../img/img_circle-deco.png") no-repeat center center/cover;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-visual-circle.green-1:before {
    width: 48px;
    height: 48px;
    bottom: 0;
    left: 15px;
  }
}
@media screen and (max-width: 519px) {
  .home-visual-circle.green-1:before {
    width: 36px;
    height: 36px;
    bottom: -5px;
    left: 20px;
  }
}
.home-visual-circle.green-1:after {
  position: absolute;
  content: "";
  top: -10px;
  right: 35px;
  width: 60px;
  height: 60px;
  background: url("../img/img_circle-deco.png") no-repeat center center/cover;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-visual-circle.green-1:after {
    width: 48px;
    height: 48px;
  }
}
@media screen and (max-width: 519px) {
  .home-visual-circle.green-1:after {
    width: 36px;
    height: 36px;
  }
}
.home-visual-circle.green-2 {
  background: rgba(184, 221, 167, 0.85);
  top: 0;
  right: 5px;
}
.home-visual-circle.green-2:before {
  position: absolute;
  content: "";
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 60px;
  background: url("../img/img_circle-deco.png") no-repeat center center/cover;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-visual-circle.green-2:before {
    width: 48px;
    height: 48px;
    bottom: 0;
    left: 15px;
  }
}
@media screen and (max-width: 519px) {
  .home-visual-circle.green-2:before {
    width: 36px;
    height: 36px;
    bottom: -5px;
    left: 20px;
  }
}
.home-visual-circle.green-2:after {
  position: absolute;
  content: "";
  top: -10px;
  right: 35px;
  width: 60px;
  height: 60px;
  background: url("../img/img_circle-deco.png") no-repeat center center/cover;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-visual-circle.green-2:after {
    width: 48px;
    height: 48px;
  }
}
@media screen and (max-width: 519px) {
  .home-visual-circle.green-2:after {
    width: 36px;
    height: 36px;
  }
}
.home-visual-text {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  line-height: 1.6;
  font-size: 2.8rem;
  font-weight: 650;
  color: #f8f8f8;
  text-align: center;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-visual-text {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 519px) {
  .home-visual-text {
    font-size: 1.8rem;
  }
}
.home-about {
  background: #eff9c0;
  padding: 8rem 0;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-about {
    padding: 6rem 0;
  }
}
@media screen and (max-width: 519px) {
  .home-about {
    padding: 6rem 0;
  }
}
.home-about-container {
  max-width: 840px;
  padding: 6rem 4rem;
  margin: 0 auto;
  background: #f8f8f8;
  border-radius: 20px;
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .home-about-container {
    max-width: 600px;
  }
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-about-container {
    max-width: 600px;
    padding: 3.2rem 4rem;
  }
}
@media screen and (max-width: 519px) {
  .home-about-container {
    max-width: 600px;
    padding: 3.2rem 2rem;
  }
}
.home-about-text {
  margin-top: 4rem;
  font-size: 16px;
  line-height: 1.6;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-about-text {
    margin-top: 3.2rem;
  }
}
@media screen and (max-width: 519px) {
  .home-about-text {
    margin-top: 3.2rem;
  }
}
.home-strength {
  background: #eff9c0;
}
.home-strength-title .large {
  font-size: 6rem;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-strength-title .large {
    font-size: 5.2rem;
  }
}
@media screen and (max-width: 519px) {
  .home-strength-title .large {
    font-size: 5.2rem;
  }
}
.home-strength-title span {
  color: #f39800;
}
.home-strength-list {
  display: flex;
  flex-wrap: wrap;
  margin: 6rem auto 0;
  max-width: 1200px;
  gap: 15px;
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .home-strength-list {
    max-width: 540px;
    gap: 40px 20px;
  }
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-strength-list {
    max-width: 300px;
    margin: 60px auto 0;
  }
}
@media screen and (max-width: 519px) {
  .home-strength-list {
    max-width: 300px;
    margin: 60px auto 0;
  }
}
.home-strength-item {
  background: #f8f8f8;
  width: calc(25% - 11.25px);
  padding: 1rem 1rem 3.2rem;
  border-radius: 30px;
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .home-strength-item {
    width: calc(50% - 10px);
    padding: 1.5rem 1.5rem 3.2rem;
  }
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-strength-item {
    width: 100%;
    padding: 2rem 2rem 4rem;
  }
}
@media screen and (max-width: 519px) {
  .home-strength-item {
    width: 100%;
    padding: 2rem 2rem 4rem;
  }
}
.home-strength-image {
  width: 100%;
}
.home-strength-image img {
  border-radius: 30px;
}
.home-strength-point {
  margin-top: 2rem;
  font-size: 1.8rem;
  line-height: 1.6;
  font-weight: 650;
  text-align: center;
  color: #5da732;
  min-height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .home-strength-point {
    font-size: 2rem;
  }
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-strength-point {
    font-size: 2rem;
  }
}
@media screen and (max-width: 519px) {
  .home-strength-point {
    font-size: 2rem;
  }
}
.home-strength-description {
  padding: 0 0.8rem;
  margin-top: 2rem;
  font-size: 16px;
  line-height: 1.6;
}
.home-service {
  background: #faf6e9;
}
.home-service-list {
  display: flex;
  width: 100%;
  max-width: 840px;
  margin: 6rem auto 0;
  position: relative;
  align-items: stretch;
  flex-direction: row;
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .home-service-list {
    max-width: 720px;
  }
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-service-list {
    max-width: 420px;
  }
}
@media screen and (max-width: 519px) {
  .home-service-list {
    max-width: 300px;
  }
}
.home-service-list .slick-dots {
  bottom: -34px;
  left: 50%;
  transform: translateX(-50%);
}
.home-service-list .slick-dots li {
  margin: 0 16px 0 0;
  width: 10px;
  height: 10px;
}
.home-service-list .slick-dots li button {
  width: 10px;
  height: 10px;
}
.home-service-list .slick-dots li button::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background-color: #ced1d3;
  opacity: 1;
}
.home-service-list .slick-dots li.slick-active button::before {
  background-color: #f39800;
}
.home-service-list .slick-track {
  display: flex;
}
.home-service-list .slick-next {
  top: 40%;
  right: -40px;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 30px 0 30px 20px;
  border-color: transparent transparent transparent #F39800;
  transform: rotate(0deg);
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .home-service-list .slick-next {
    right: -20px;
    border-width: 22.5px 0 22.5px 15px;
  }
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-service-list .slick-next {
    right: -30px;
  }
}
@media screen and (max-width: 519px) {
  .home-service-list .slick-next {
    right: -30px;
  }
}
.home-service-list .slick-next::before {
  content: "";
}
.home-service-list .slick-prev {
  top: 40%;
  left: -40px;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 30px 20px 30px 0;
  border-color: transparent #F39800 transparent transparent;
  transform: rotate(0deg);
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .home-service-list .slick-prev {
    left: -20px;
    border-width: 22.5px 15px 22.5px 0;
  }
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-service-list .slick-prev {
    left: -30px;
  }
}
@media screen and (max-width: 519px) {
  .home-service-list .slick-prev {
    left: -30px;
  }
}
.home-service-list .slick-prev::before {
  content: "";
}
.home-service-item {
  display: flex !important;
  flex-direction: column;
  justify-content: space-between;
  background: #f8f8f8;
  width: 260px;
  padding: 2rem 2rem 1rem;
  margin: 0 1.5rem;
  border-radius: 30px;
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .home-service-item {
    width: 210px;
    padding: 1.5rem 1.5rem 0.5rem;
    margin: 0 1.5rem;
  }
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-service-item {
    width: 420px;
    padding: 2rem 2rem 1rem;
  }
}
@media screen and (max-width: 519px) {
  .home-service-item {
    width: 300px;
    padding: 1.5rem 1.5rem 0.5rem;
  }
}
.home-service-item-link {
  transition: all 0.4s ease 0s;
}
@media (hover: hover) and (pointer: fine) {
  .home-service-item-link:hover {
    opacity: 0.3;
  }
}
.home-service-item-image {
  width: 100%;
}
.home-service-item-image img {
  border-radius: 20px;
  height: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}
.home-service-item-point {
  margin-top: 2rem;
  font-size: 2rem;
  line-height: 1.6;
  font-weight: 650;
  text-align: center;
  color: #5da732;
  min-height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-service-item-point {
    font-size: 1.8rem;
  }
  .home-service-item-point br {
    display: none;
  }
}
@media screen and (max-width: 519px) {
  .home-service-item-point {
    font-size: 1.8rem;
  }
  .home-service-item-point br {
    display: none;
  }
}
.home-service-item-description {
  margin-top: 1.2rem;
  font-size: 16px;
  line-height: 1.6;
  color: #101010;
}
.home-service-button {
  margin-top: 8rem;
  text-align: center;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-service-button {
    margin-top: 8rem;
  }
}
@media screen and (max-width: 519px) {
  .home-service-button {
    margin-top: 8rem;
  }
}
.home-cta {
  background: url("../img/img_cta.png") no-repeat center center/cover;
  padding: 4rem 0;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-cta {
    background: url("../img/img_cta-sp.png") no-repeat center center/cover;
  }
}
@media screen and (max-width: 519px) {
  .home-cta {
    background: url("../img/img_cta-sp.png") no-repeat center center/cover;
  }
}
.home-cta-container {
  background: rgba(248, 248, 248, 0.9);
  border-radius: 20px;
  padding: 4rem;
  max-width: 720px;
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .home-cta-container {
    padding: 2rem;
  }
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-cta-container {
    padding: 2rem;
    max-width: 480px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 519px) {
  .home-cta-container {
    padding: 2rem 1rem;
    max-width: 480px;
    margin: 0 auto;
  }
}
.home-cta-text {
  font-size: 2.4rem;
  font-weight: 650;
  line-height: 1.6;
  text-align: center;
}
.home-cta-text .location {
  font-size: 3.2rem;
  font-weight: 650;
  color: #5da732;
}
.home-cta-description {
  margin-top: 4rem;
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
}
.home-cta-buttons {
  display: flex;
  justify-content: center;
  margin-top: 4rem;
  column-gap: 4rem;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-cta-buttons {
    flex-direction: column;
    align-items: center;
    row-gap: 2rem;
  }
}
@media screen and (max-width: 519px) {
  .home-cta-buttons {
    flex-direction: column;
    align-items: center;
    row-gap: 2rem;
  }
}
.home-cta-button-link.for-line {
  display: inline-block;
  width: 240px;
  height: 52px;
  line-height: 4.8rem;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.05rem;
  background: #06cc75;
  color: #f8f8f8;
  border: 2px solid #06cc75;
  border-radius: 50px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease 0s;
}
@media (hover: hover) and (pointer: fine) {
  .home-cta-button-link.for-line:hover {
    background: #f8f8f8;
    color: #06cc75;
  }
}
.home-plan {
  background: #eff9c0;
}
.home-plan-list {
  display: flex;
  flex-direction: column;
  max-width: 600px;
  margin: 6rem auto 0;
  gap: 8rem;
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .home-plan-list {
    max-width: 600px;
    margin: 6rem auto 0;
    gap: 6rem;
  }
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-plan-list {
    max-width: 480px;
    margin: 6rem auto 0;
    gap: 6rem;
  }
}
@media screen and (max-width: 519px) {
  .home-plan-list {
    gap: 6rem;
  }
}
.home-plan-item {
  background: #f8f8f8;
  width: 100%;
  border-radius: 30px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .home-plan-item {
    width: 100%;
  }
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-plan-item {
    width: 100%;
  }
}
@media screen and (max-width: 519px) {
  .home-plan-item {
    width: 100%;
  }
}
.home-plan-header {
  background: #5da732;
  padding: 2.4rem 2rem;
  border-radius: 30px 30px 0 0;
}
@media screen and (max-width: 519px) {
  .home-plan-header {
    padding: 2.4rem 1.5rem;
  }
}
.home-plan-advise {
  font-size: 2rem;
  line-height: 1.6;
  color: #f8f8f8;
  text-align: center;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-plan-advise {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 519px) {
  .home-plan-advise {
    font-size: 1.6rem;
  }
}
.home-plan-name {
  margin-top: 0.8rem;
  font-size: 4rem;
  line-height: 1.6;
  font-weight: 650;
  color: #f8f8f8;
  text-align: center;
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .home-plan-name {
    font-size: 3.2rem;
  }
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-plan-name {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 519px) {
  .home-plan-name {
    font-size: 2.4rem;
  }
}
.home-plan-cost {
  margin-top: 4rem;
  font-size: 6rem;
  line-height: 1.6;
  font-weight: 650;
  font-family: "Montserrat", sans-serif;
  color: #f39800;
  text-align: center;
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .home-plan-cost {
    font-size: 4.8rem;
  }
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-plan-cost {
    margin-top: 3.2rem;
    font-size: 4rem;
  }
}
@media screen and (max-width: 519px) {
  .home-plan-cost {
    margin-top: 3.2rem;
    font-size: 4rem;
  }
}
.home-plan-cost.plan-jp {
  font-size: 4.8rem;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .home-plan-cost.plan-jp {
    font-size: 4rem;
  }
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-plan-cost.plan-jp {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 519px) {
  .home-plan-cost.plan-jp {
    font-size: 2.8rem;
  }
}
.home-plan-text {
  max-width: 480px;
  padding: 0 2rem;
  margin: 4rem auto 0;
  font-size: 1.8rem;
  font-weight: 650;
  line-height: 1.6;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-plan-text {
    margin: 3.2rem auto 0;
    padding: 0 2rem;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 519px) {
  .home-plan-text {
    margin: 3.2rem auto 0;
    padding: 0 1.5rem;
    font-size: 1.6rem;
  }
}
.home-plan-footer {
  background: rgba(206, 209, 211, 0.5);
  padding: 2.4rem 2rem;
  margin-top: 6rem;
  border-radius: 0 0 30px 30px;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-plan-footer {
    margin-top: 4rem;
  }
}
@media screen and (max-width: 519px) {
  .home-plan-footer {
    margin-top: 4rem;
    padding: 2.4rem 1.5rem;
  }
}
.home-plan-message {
  max-width: 480px;
  font-size: 1.8rem;
  font-weight: 650;
  line-height: 1.6;
  text-align: center;
  margin: 0 auto;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-plan-message {
    margin: 0 auto;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 519px) {
  .home-plan-message {
    margin: 0 auto;
    font-size: 1.6rem;
  }
}
.home-plan-message .quotation {
  color: #e60012;
}
.home-step-text {
  margin-top: 4rem;
  text-align: center;
  font-size: 2rem;
  line-height: 1.6;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-step-text {
    font-size: 1.8rem;
    margin-top: 3.2rem;
  }
}
@media screen and (max-width: 519px) {
  .home-step-text {
    font-size: 1.8rem;
    margin-top: 3.2rem;
  }
}
.home-step-list {
  display: flex;
  flex-direction: column;
  max-width: 960px;
  margin: 6rem auto 0;
  row-gap: 3rem;
}
.home-step-item {
  display: flex;
  column-gap: 2rem;
  align-items: center;
  background: #faf6e9;
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .home-step-item {
    display: block;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-step-item {
    display: block;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 519px) {
  .home-step-item {
    display: block;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
  }
}
.home-step-arrow {
  max-width: 120px;
  margin: 0 auto;
}
.home-step-image {
  position: relative;
  flex-shrink: 0.75;
  max-width: 360px;
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .home-step-image {
    max-width: 480px;
  }
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-step-image {
    max-width: 360px;
  }
}
@media screen and (max-width: 519px) {
  .home-step-image {
    max-width: 360px;
  }
}
.home-step-no {
  position: absolute;
  top: 5px;
  left: 5px;
  font-size: 4.8rem;
  line-height: 4.8rem;
  font-weight: 650;
  font-family: "Montserrat", sans-serif;
  color: #5da732;
  text-shadow: -2px -2px 0 #f8f8f8, 2px -2px 0 #f8f8f8, -2px 2px 0 #f8f8f8, 2px 2px 0 #f8f8f8;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-step-no {
    font-size: 4.8rem;
  }
}
@media screen and (max-width: 519px) {
  .home-step-no {
    font-size: 4.8rem;
  }
}
.home-step-body {
  background: #faf6e9;
  padding: 2rem;
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .home-step-body {
    padding: 2rem 2rem 4rem;
  }
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-step-body {
    padding: 2rem 2rem 4rem;
  }
}
@media screen and (max-width: 519px) {
  .home-step-body {
    padding: 2rem 1.5rem 4rem;
  }
}
.home-step-point {
  font-size: 2.4rem;
  font-weight: 650;
  line-height: 1.6;
  color: #f39800;
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .home-step-point {
    text-align: center;
  }
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-step-point {
    text-align: center;
  }
}
@media screen and (max-width: 519px) {
  .home-step-point {
    text-align: center;
  }
}
.home-step-message {
  font-weight: 650;
  font-size: 1.6rem;
  margin-top: 2rem;
  line-height: 1.6;
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .home-step-message {
    text-align: center;
  }
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-step-message {
    text-align: center;
  }
}
@media screen and (max-width: 519px) {
  .home-step-message {
    text-align: center;
  }
}
.home-step-description {
  margin-top: 2rem;
  font-size: 1.4rem;
  line-height: 1.6;
}
.home-faq {
  background: #faf6e9;
  padding: 8rem 0;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-faq {
    padding: 6rem 0;
  }
}
@media screen and (max-width: 519px) {
  .home-faq {
    padding: 6rem 0;
  }
}
.home-faq-container {
  max-width: 1080px;
  padding: 6rem;
  margin: 0 auto;
  background: #f8f8f8;
  border-radius: 30px;
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .home-faq-container {
    padding: 4rem 4rem;
  }
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-faq-container {
    padding: 4rem 4rem;
  }
}
@media screen and (max-width: 519px) {
  .home-faq-container {
    padding: 4rem 1.5rem;
  }
}
.home-faq-list {
  margin-top: 6rem;
  border-top: 2px solid #ced1d3;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-faq-list {
    margin-top: 4rem;
  }
}
@media screen and (max-width: 519px) {
  .home-faq-list {
    margin-top: 4rem;
  }
}
.home-faq-item {
  border-bottom: 2px solid #ced1d3;
  padding: 2rem 6rem;
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .home-faq-item {
    padding: 2rem 2rem;
  }
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-faq-item {
    padding: 2rem 2rem;
  }
}
@media screen and (max-width: 519px) {
  .home-faq-item {
    padding: 1.6rem 0;
  }
}
.home-faq-item-row_q {
  display: flex;
}
.home-faq-item-row_q-icon {
  position: relative;
  flex-shrink: 0;
  width: 35px;
  height: 28px;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-faq-item-row_q-icon {
    width: 24px;
    height: 24px;
  }
}
@media screen and (max-width: 519px) {
  .home-faq-item-row_q-icon {
    width: 24px;
    height: 24px;
  }
}
.home-faq-item-row_q-icon span {
  position: absolute;
  top: 50%;
  left: 50%;
  font-family: "Montserrat", sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  color: #5da732;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-faq-item-row_q-icon span {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 519px) {
  .home-faq-item-row_q-icon span {
    font-size: 2.4rem;
  }
}
.home-faq-item-row_q-text {
  margin-left: 2.4rem;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.6;
  color: #5da732;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-faq-item-row_q-text {
    margin-left: 1.2rem;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 519px) {
  .home-faq-item-row_q-text {
    margin-left: 1.2rem;
    font-size: 1.6rem;
  }
}
.home-faq-item-row_a {
  display: flex;
  margin-top: 2rem;
}
.home-faq-item-row_a-icon {
  position: relative;
  flex-shrink: 0;
  width: 35px;
  height: 28px;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-faq-item-row_a-icon {
    width: 24px;
    height: 24px;
  }
}
@media screen and (max-width: 519px) {
  .home-faq-item-row_a-icon {
    width: 24px;
    height: 24px;
  }
}
.home-faq-item-row_a-icon span {
  position: absolute;
  top: 50%;
  left: 50%;
  font-family: "Montserrat", sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  color: #f39800;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-faq-item-row_a-icon span {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 519px) {
  .home-faq-item-row_a-icon span {
    font-size: 2.4rem;
  }
}
.home-faq-item-row_a-text {
  margin-left: 2.4rem;
  font-size: 1.6rem;
  line-height: 1.5;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-faq-item-row_a-text {
    margin-left: 1.2rem;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 519px) {
  .home-faq-item-row_a-text {
    margin-left: 1.2rem;
    font-size: 1.4rem;
  }
}
.home-faq-button {
  margin: 6rem auto 0;
  text-align: center;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-faq-button {
    margin: 4rem auto 0;
  }
}
@media screen and (max-width: 519px) {
  .home-faq-button {
    margin: 4rem auto 0;
  }
}
.home-news-list {
  margin: 6rem auto 0;
  max-width: 840px;
  border-top: 2px solid #ced1d3;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-news-list {
    margin: 4rem auto 0;
  }
}
@media screen and (max-width: 519px) {
  .home-news-list {
    margin: 4rem auto 0;
  }
}
.home-news-item {
  border-bottom: 2px solid #ced1d3;
}
.home-news-item-link {
  display: block;
  padding: 2rem 0;
  transition: all 0.4s ease 0s;
}
@media (hover: hover) and (pointer: fine) {
  .home-news-item-link:hover {
    opacity: 0.3;
  }
}
.home-news-item-body {
  display: flex;
  align-items: center;
  column-gap: 4rem;
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .home-news-item-body {
    flex-direction: column;
    align-items: start;
    row-gap: 2rem;
  }
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-news-item-body {
    flex-direction: column;
    align-items: start;
    row-gap: 2rem;
  }
}
@media screen and (max-width: 519px) {
  .home-news-item-body {
    flex-direction: column;
    align-items: start;
    row-gap: 2rem;
  }
}
.home-news-item-meta {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.home-news-item-date {
  width: 100px;
  font-family: "Montserrat", sans-serif;
  font-size: 1.8rem;
  line-height: 1.2;
  color: #f39800;
  flex-shrink: 0;
}
.home-news-item-title {
  display: block;
  width: 100%;
  font-size: 1.6rem;
  line-height: 1.6;
  color: #101010;
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .home-news-item-title {
    max-width: 100%;
  }
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-news-item-title {
    max-width: 100%;
  }
}
.home-news-button {
  margin: 6rem auto 0;
  text-align: center;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-news-button {
    margin: 4rem auto 0;
  }
}
@media screen and (max-width: 519px) {
  .home-news-button {
    margin: 4rem auto 0;
  }
}
.home-news-none {
  margin-top: 6rem;
  font-size: 2.4rem;
  line-height: 1.5;
  text-align: center;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-news-none {
    margin-top: 4rem;
    font-size: 2rem;
  }
}
@media screen and (max-width: 519px) {
  .home-news-none {
    margin-top: 4rem;
    font-size: 2rem;
  }
}
.home-recruit {
  background: #eff9c0;
}
.home-recruit-inner {
  max-width: 960px;
}
.home-recruit-container {
  display: flex;
  justify-content: space-between;
  column-gap: 3rem;
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .home-recruit-container {
    max-width: 480px;
    flex-direction: column-reverse;
    margin: 4rem auto 0;
  }
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-recruit-container {
    max-width: 480px;
    flex-direction: column-reverse;
    margin: 4rem auto 0;
  }
}
@media screen and (max-width: 519px) {
  .home-recruit-container {
    max-width: 480px;
    flex-direction: column-reverse;
    margin: 4rem auto 0;
  }
}
.home-recruit-body {
  max-width: 480px;
}
.home-recruit-title {
  text-align: left;
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .home-recruit-title {
    display: none;
  }
}
.home-recruit-title.for-sp {
  text-align: center;
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .home-recruit-title.for-sp {
    display: block;
  }
}
.home-recruit-description {
  margin-top: 4rem;
  font-size: 1.5rem;
  line-height: 1.6;
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .home-recruit-description {
    margin-top: 4rem;
  }
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-recruit-description {
    margin-top: 4rem;
  }
}
@media screen and (max-width: 519px) {
  .home-recruit-description {
    margin-top: 4rem;
  }
}
.home-recruit-button {
  margin-top: 4rem;
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .home-recruit-button {
    text-align: center;
  }
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .home-recruit-button {
    margin-top: 3rem;
    text-align: center;
  }
}
@media screen and (max-width: 519px) {
  .home-recruit-button {
    margin-top: 3rem;
    text-align: center;
  }
}
.home-recruit-image {
  max-width: 480px;
}

/* ===============================================
6) SERVICE
=============================================== */
.service {
  padding: 6rem 0 8rem;
}
.service-inner {
  max-width: 840px;
  margin: 0 auto;
}
.service-message {
  display: none;
  max-width: 840px;
  font-size: 16px;
  line-height: 1.6;
}
.service-list {
  max-width: 840px;
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  gap: 6rem;
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .service-list {
    gap: 6rem 4rem;
  }
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .service-list {
    gap: 4rem 2rem;
  }
}
@media screen and (max-width: 519px) {
  .service-list {
    max-width: 300px;
  }
}
.service-item {
  background: #f8f8f8;
  width: calc(33.3333333333% - 40px);
  border-radius: 30px;
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .service-item {
    width: calc(50% - 20px);
  }
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .service-item {
    width: calc(50% - 10px);
    padding: 2rem;
  }
}
@media screen and (max-width: 519px) {
  .service-item {
    width: 100%;
  }
}
.service-item-link {
  transition: all 0.4s ease 0s;
}
@media (hover: hover) and (pointer: fine) {
  .service-item-link:hover {
    opacity: 0.3;
  }
}
.service-item-image {
  width: 100%;
}
.service-item-image img {
  aspect-ratio: 1/1;
  height: 100%;
  object-fit: cover;
}
.service-item-point {
  margin-top: 2rem;
  font-size: 2rem;
  line-height: 1.6;
  font-weight: 650;
  text-align: center;
  color: #5da732;
  min-height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .service-item-point {
    margin-top: 0.4rem;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 519px) {
  .service-item-point {
    margin-top: 0.4rem;
    font-size: 1.8rem;
  }
  .service-item-point br {
    display: none;
  }
}
.service-item-description {
  margin-top: 1rem;
  font-size: 16px;
  line-height: 1.6;
  color: #101010;
}
.service-return {
  padding-top: 6rem;
  text-align: center;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .service-return {
    padding-top: 4rem;
  }
}
@media screen and (max-width: 519px) {
  .service-return {
    padding-top: 4rem;
  }
}
.service-post-inner {
  max-width: 840px;
}
.service-post-title {
  font-size: 3.2rem;
  font-weight: 650;
  line-height: 1.6;
  color: #f39800;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .service-post-title {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 519px) {
  .service-post-title {
    font-size: 2.4rem;
  }
}
.service-post-image {
  margin: 4rem auto 0;
  display: block;
  max-width: 720px;
  padding: 0 6rem;
  text-align: center;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .service-post-image {
    margin: 2.8rem auto 0;
    padding: 0 2rem;
  }
}
@media screen and (max-width: 519px) {
  .service-post-image {
    margin: 2.8rem auto 0;
    padding: 0;
  }
}
.service-post-image img {
  height: 100%;
}
.service-post-return {
  margin-top: 8rem;
  text-align: center;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .service-post-return {
    margin-top: 6rem;
  }
}
@media screen and (max-width: 519px) {
  .service-post-return {
    margin-top: 6rem;
  }
}
/* ===============================================
7) CASE
=============================================== */
.case {
  margin-top: 6rem;
}
.case-inner {
  max-width: 960px;
}
.case-list {
  margin-top: 6rem;
  border-top: 2px solid #ced1d3;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .case-list {
    margin-top: 4rem;
  }
}
@media screen and (max-width: 519px) {
  .case-list {
    margin-top: 4rem;
  }
}
.case-item {
  border-bottom: 2px solid #ced1d3;
}
.case-item-link {
  display: flex;
  column-gap: 4rem;
  padding: 2rem;
  transition: all 0.4s ease 0s;
}
@media (hover: hover) and (pointer: fine) {
  .case-item-link:hover {
    background: #eff9c0;
  }
  .case-item-link:hover .home-news-item-image img {
    transform: scale(1.15, 1.15);
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .case-item-link {
    column-gap: 2rem;
  }
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .case-item-link {
    flex-direction: column;
    align-items: center;
    padding: 3.2rem 1rem;
  }
}
@media screen and (max-width: 519px) {
  .case-item-link {
    flex-direction: column;
    align-items: center;
    padding: 3.2rem 1rem;
  }
}
.case-item-image {
  width: 100%;
  max-width: 240px;
  overflow: hidden;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .case-item-image {
    max-width: 360px;
  }
}
@media screen and (max-width: 519px) {
  .case-item-image {
    max-width: 240px;
  }
}
.case-item-image img {
  transition: all 0.4s ease 0s;
  height: auto;
  aspect-ratio: 3/2;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .case-item-body {
    width: 100%;
    margin-top: 2rem;
  }
}
@media screen and (max-width: 519px) {
  .case-item-body {
    width: 100%;
    margin-top: 2rem;
  }
}
.case-item-meta {
  display: flex;
  align-items: center;
  column-gap: 2rem;
}
.case-item-date {
  width: 120px;
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  line-height: 1.2;
  color: #f39800;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .case-item-date {
    width: 100px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 519px) {
  .case-item-date {
    width: 100px;
    font-size: 1.8rem;
  }
}
.case-item-title {
  margin-top: 2.4rem;
  font-size: 16px;
  line-height: 1.6;
  color: #101010;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .case-item-title {
    margin-top: 2rem;
  }
}
@media screen and (max-width: 519px) {
  .case-item-title {
    margin-top: 2rem;
  }
}
.case-none {
  margin-top: 6rem;
  font-size: 2.4rem;
  line-height: 1.5;
  text-align: center;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .case-none {
    margin-top: 4rem;
    font-size: 2rem;
  }
}
@media screen and (max-width: 519px) {
  .case-none {
    margin-top: 4rem;
    font-size: 2rem;
  }
}
.case-pagination {
  padding-top: 6rem;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .case-pagination {
    padding-top: 4rem;
  }
}
@media screen and (max-width: 519px) {
  .case-pagination {
    padding-top: 4rem;
  }
}
.case-pagination-inner {
  display: flex;
  justify-content: center;
  column-gap: 2.4rem;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .case-pagination-inner {
    column-gap: 1.6rem;
  }
}
@media screen and (max-width: 519px) {
  .case-pagination-inner {
    column-gap: 1.6rem;
  }
}
.case-return {
  padding: 6rem 0 8rem;
  text-align: center;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .case-return {
    padding: 4rem 0 8rem;
  }
}
@media screen and (max-width: 519px) {
  .case-return {
    padding: 4rem 0 8rem;
  }
}
.case-post-inner {
  max-width: 840px;
}
.case-post-image {
  display: block;
  max-width: 720px;
  padding: 0 6rem;
  margin: 0 auto;
  text-align: center;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .case-post-image {
    padding: 0 2rem;
  }
}
@media screen and (max-width: 519px) {
  .case-post-image {
    padding: 0;
  }
}
.case-post-image img {
  aspect-ratio: 3/2;
  height: auto;
}
.case-post-meta {
  margin-top: 4rem;
}
.case-post-date {
  width: 100px;
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  line-height: 1.2;
  color: #f39800;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .case-post-date {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 519px) {
  .case-post-date {
    font-size: 1.8rem;
  }
}
.case-post-title {
  margin-top: 2rem;
  font-size: 4rem;
  font-weight: 650;
  line-height: 1.6;
  color: #101010;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .case-post-title {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 519px) {
  .case-post-title {
    font-size: 3.2rem;
  }
}
.case-post-return {
  margin-top: 8rem;
  text-align: center;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .case-post-return {
    margin-top: 6rem;
  }
}
@media screen and (max-width: 519px) {
  .case-post-return {
    margin-top: 6rem;
  }
}
/* ===============================================
8) NEWS
=============================================== */
.news {
  margin-top: 6rem;
}
.news-list {
  margin: 6rem auto 0;
  max-width: 840px;
  border-top: 2px solid #ced1d3;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .news-list {
    margin: 4rem auto 0;
  }
}
@media screen and (max-width: 519px) {
  .news-list {
    margin: 4rem auto 0;
  }
}
.news-item {
  border-bottom: 2px solid #ced1d3;
}
.news-item-link {
  display: block;
  padding: 2rem 0;
  transition: all 0.4s ease 0s;
}
@media (hover: hover) and (pointer: fine) {
  .news-item-link:hover {
    opacity: 0.3;
  }
}
.news-item-body {
  display: flex;
  align-items: center;
  column-gap: 4rem;
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .news-item-body {
    flex-direction: column;
    align-items: start;
    row-gap: 2rem;
  }
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .news-item-body {
    flex-direction: column;
    align-items: start;
    row-gap: 2rem;
  }
}
@media screen and (max-width: 519px) {
  .news-item-body {
    flex-direction: column;
    align-items: start;
    row-gap: 2rem;
  }
}
.news-item-meta {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.news-item-date {
  width: 100px;
  font-family: "Montserrat", sans-serif;
  font-size: 1.8rem;
  line-height: 1.2;
  color: #f39800;
  flex-shrink: 0;
}
.news-item-title {
  display: block;
  width: 100%;
  font-size: 1.6rem;
  line-height: 1.6;
  color: #101010;
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .news-item-title {
    max-width: 100%;
  }
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .news-item-title {
    max-width: 100%;
  }
}
.news-none {
  margin-top: 6rem;
  font-size: 2.4rem;
  line-height: 1.5;
  text-align: center;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .news-none {
    margin-top: 4rem;
    font-size: 2rem;
  }
}
@media screen and (max-width: 519px) {
  .news-none {
    margin-top: 4rem;
    font-size: 2rem;
  }
}
.news-pagination {
  padding-top: 6rem;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .news-pagination {
    padding-top: 4rem;
  }
}
@media screen and (max-width: 519px) {
  .news-pagination {
    padding-top: 4rem;
  }
}
.news-pagination-inner {
  display: flex;
  justify-content: center;
  column-gap: 2.4rem;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .news-pagination-inner {
    column-gap: 1.6rem;
  }
}
@media screen and (max-width: 519px) {
  .news-pagination-inner {
    column-gap: 1.6rem;
  }
}
.news-return {
  padding: 6rem 0 8rem;
  text-align: center;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .news-return {
    padding: 4rem 0 8rem;
  }
}
@media screen and (max-width: 519px) {
  .news-return {
    padding: 4rem 0 8rem;
  }
}
.news-post-inner {
  max-width: 840px;
}
.news-post-date {
  width: 100px;
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  line-height: 1.2;
  color: #f39800;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .news-post-date {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 519px) {
  .news-post-date {
    font-size: 1.8rem;
  }
}
.news-post-title {
  margin-top: 2rem;
  font-size: 4rem;
  font-weight: 650;
  line-height: 1.6;
  color: #101010;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .news-post-title {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 519px) {
  .news-post-title {
    font-size: 3.2rem;
  }
}
.news-post-return {
  margin-top: 8rem;
  text-align: center;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .news-post-return {
    margin-top: 6rem;
  }
}
@media screen and (max-width: 519px) {
  .news-post-return {
    margin-top: 6rem;
  }
}
/* ===============================================
9) ABOUT
=============================================== */
.about-intro-inner {
  max-width: 840px;
}
.about-intro-title {
  text-align-last: left;
}
.about-intro-flex {
  display: flex;
  column-gap: 4rem;
  margin-top: 4rem;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .about-intro-flex {
    flex-direction: column-reverse;
    row-gap: 4rem;
    margin: 4rem auto 0;
  }
}
@media screen and (max-width: 519px) {
  .about-intro-flex {
    flex-direction: column-reverse;
    row-gap: 4rem;
    margin: 4rem auto 0;
  }
}
.about-intro-body {
  max-width: 300px;
  flex-shrink: 0;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .about-intro-body {
    margin: 0 auto;
  }
}
@media screen and (max-width: 519px) {
  .about-intro-body {
    margin: 0 auto;
  }
}
.about-intro-name {
  margin-top: 2rem;
  font-size: 2rem;
  font-weight: 650;
  line-height: 1.6;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .about-intro-name {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 519px) {
  .about-intro-name {
    font-size: 1.8rem;
  }
}
.about-intro-message {
  font-size: 16px;
  line-height: 1.6;
}
.about-details-inner {
  max-width: 840px;
}
.about-details-title {
  text-align: left;
}
.about-details-list {
  display: flex;
  flex-direction: column;
  margin-top: 4rem;
  border-top: 2px solid #ced1d3;
}
.about-details-item {
  display: flex;
  padding: 2rem 6rem;
  column-gap: 4rem;
  border-bottom: 2px solid #ced1d3;
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .about-details-item {
    padding: 2rem 2rem;
  }
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .about-details-item {
    padding: 2rem 2rem;
  }
}
@media screen and (max-width: 519px) {
  .about-details-item {
    padding: 1.6rem 0;
    column-gap: 2rem;
  }
}
.about-details-item-label {
  width: 120px;
  flex-shrink: 0;
  font-size: 16px;
  font-weight: 650;
  line-height: 1.6;
}
.about-details-item-text {
  max-width: 720px;
  font-size: 16px;
  line-height: 1.6;
}
.about-access-inner {
  max-width: 840px;
}
.about-access-title {
  text-align: left;
}
.about-access-container {
  max-width: 840px;
  margin: 4rem auto 0;
}
.about-access-map {
  width: 100%;
  margin-top: 4rem;
}
.about-access-map-wrap {
  width: 100%;
  padding-top: 35.7142857143%;
  position: relative;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .about-access-map-wrap {
    padding-top: 75%;
  }
}
@media screen and (max-width: 519px) {
  .about-access-map-wrap {
    padding-top: 75%;
  }
}
.about-access-map-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.about-access-text {
  font-size: 1.6rem;
  line-height: 1.6;
}
.about-access-text strong {
  font-weight: 700;
}
.about-return {
  padding-bottom: 8rem;
  text-align: center;
}
/* ===============================================
10) RESULTS
=============================================== */
.results {
  margin-top: 6rem;
}
.results-inner {
  max-width: 840px;
  margin: 0 auto;
}
.results-list {
  max-width: 840px;
  display: flex;
  flex-wrap: wrap;
  margin: 6rem auto 0;
  gap: 6rem;
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .results-list {
    gap: 4rem 2rem;
  }
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .results-list {
    max-width: 480px;
  }
}
@media screen and (max-width: 519px) {
  .results-list {
    max-width: 480px;
  }
}
.results-item {
  width: calc(50% - 30px);
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .results-item {
    width: calc(50% - 10px);
  }
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .results-item {
    width: 100%;
  }
}
@media screen and (max-width: 519px) {
  .results-item {
    width: 100%;
  }
}
.results-item-link {
  transition: all 0.4s ease 0s;
}
@media (hover: hover) and (pointer: fine) {
  .results-item-link:hover {
    opacity: 0.3;
  }
}
.results-item-image {
  width: 100%;
}
.results-item-image img {
  aspect-ratio: 3/2;
  height: auto;
  object-fit: cover;
}
.results-item-title {
  margin-top: 2rem;
  font-size: 2rem;
  color: #101010;
  line-height: 1.6;
  font-weight: 650;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .results-item-title {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 519px) {
  .results-item-title {
    font-size: 1.8rem;
  }
}
.results-item-description {
  margin-top: 2rem;
  font-size: 16px;
  line-height: 1.6;
  color: #101010;
}
.results-none {
  margin-top: 6rem;
  font-size: 2.4rem;
  line-height: 1.5;
  text-align: center;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .results-none {
    margin-top: 4rem;
    font-size: 2rem;
  }
}
@media screen and (max-width: 519px) {
  .results-none {
    margin-top: 4rem;
    font-size: 2rem;
  }
}
.results-pagination {
  padding-top: 6rem;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .results-pagination {
    padding-top: 4rem;
  }
}
@media screen and (max-width: 519px) {
  .results-pagination {
    padding-top: 4rem;
  }
}
.results-pagination-inner {
  display: flex;
  justify-content: center;
  column-gap: 2.4rem;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .results-pagination-inner {
    column-gap: 1.6rem;
  }
}
@media screen and (max-width: 519px) {
  .results-pagination-inner {
    column-gap: 1.6rem;
  }
}
.results-return {
  padding: 6rem 0 8rem;
  text-align: center;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .results-return {
    padding: 4rem 0 8rem;
  }
}
@media screen and (max-width: 519px) {
  .results-return {
    padding: 4rem 0 8rem;
  }
}
.results-post-inner {
  max-width: 840px;
}
.results-post-image {
  display: block;
  max-width: 720px;
  padding: 0 6rem;
  margin: 4rem auto 0;
  text-align: center;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .results-post-image {
    padding: 0 2rem;
  }
}
@media screen and (max-width: 519px) {
  .results-post-image {
    padding: 0;
  }
}
.results-post-image img {
  height: auto;
}
.results-post-meta {
  margin-top: 4rem;
}
.results-post-date {
  width: 100px;
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  line-height: 1.2;
  color: #f39800;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .results-post-date {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 519px) {
  .results-post-date {
    font-size: 1.8rem;
  }
}
.results-post-title {
  font-size: 4rem;
  font-weight: 650;
  line-height: 1.6;
  color: #101010;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .results-post-title {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 519px) {
  .results-post-title {
    font-size: 3.2rem;
  }
}
.results-post-return {
  margin-top: 8rem;
  text-align: center;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .results-post-return {
    margin-top: 6rem;
  }
}
@media screen and (max-width: 519px) {
  .results-post-return {
    margin-top: 6rem;
  }
}
/* ===============================================
11) FAQ
=============================================== */
.faq {
  padding: 8rem 0;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .faq {
    padding: 6rem 0;
  }
}
@media screen and (max-width: 519px) {
  .faq {
    padding: 6rem 0;
  }
}
.faq-inner {
  max-width: 960px;
}
.faq-container {
  padding: 8rem 2rem 0;
  margin: 0 auto;
}
.faq-container:first-of-type {
  padding: 0 2rem;
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .faq-container {
    padding: 6rem 2rem 0;
  }
  .faq-container:first-of-type {
    padding: 0 2rem;
  }
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .faq-container {
    padding: 6rem 2rem 0;
  }
  .faq-container:first-of-type {
    padding: 0 2rem;
  }
}
@media screen and (max-width: 519px) {
  .faq-container {
    padding: 6rem 1.5rem 0;
  }
  .faq-container:first-of-type {
    padding: 0 1.5rem;
  }
}
.faq-category {
  font-size: 2.8rem;
  font-weight: 650;
  color: #f39800;
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .faq-category {
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .faq-category {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 519px) {
  .faq-category {
    font-size: 2.4rem;
  }
}
.faq-list {
  margin-top: 2rem;
  border-top: 2px solid #ced1d3;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .faq-list {
    margin-top: 2rem;
  }
}
@media screen and (max-width: 519px) {
  .faq-list {
    margin-top: 2rem;
  }
}
.faq-item {
  border-bottom: 2px solid #ced1d3;
  padding: 2rem 2rem;
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .faq-item {
    padding: 2rem 2rem;
  }
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .faq-item {
    padding: 2rem 2rem;
  }
}
@media screen and (max-width: 519px) {
  .faq-item {
    padding: 1.6rem 0;
  }
}
.faq-item-row_q {
  display: flex;
}
.faq-item-row_q-icon {
  position: relative;
  flex-shrink: 0;
  width: 35px;
  height: 28px;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .faq-item-row_q-icon {
    width: 24px;
    height: 24px;
  }
}
@media screen and (max-width: 519px) {
  .faq-item-row_q-icon {
    width: 24px;
    height: 24px;
  }
}
.faq-item-row_q-icon span {
  position: absolute;
  top: 50%;
  left: 50%;
  font-family: "Montserrat", sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  color: #5da732;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .faq-item-row_q-icon span {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 519px) {
  .faq-item-row_q-icon span {
    font-size: 2.4rem;
  }
}
.faq-item-row_q-text {
  margin-left: 2.4rem;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.6;
  color: #5da732;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .faq-item-row_q-text {
    margin-left: 1.2rem;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 519px) {
  .faq-item-row_q-text {
    margin-left: 1.2rem;
    font-size: 1.6rem;
  }
}
.faq-item-row_a {
  display: flex;
  margin-top: 2rem;
}
.faq-item-row_a-icon {
  position: relative;
  flex-shrink: 0;
  width: 35px;
  height: 28px;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .faq-item-row_a-icon {
    width: 24px;
    height: 24px;
  }
}
@media screen and (max-width: 519px) {
  .faq-item-row_a-icon {
    width: 24px;
    height: 24px;
  }
}
.faq-item-row_a-icon span {
  position: absolute;
  top: 50%;
  left: 50%;
  font-family: "Montserrat", sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  color: #f39800;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .faq-item-row_a-icon span {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 519px) {
  .faq-item-row_a-icon span {
    font-size: 2.4rem;
  }
}
.faq-item-row_a-text {
  margin-left: 2.4rem;
  font-size: 1.6rem;
  line-height: 1.5;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .faq-item-row_a-text {
    margin-left: 1.2rem;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 519px) {
  .faq-item-row_a-text {
    margin-left: 1.2rem;
    font-size: 1.4rem;
  }
}
.faq-none {
  margin-top: 6rem;
  font-size: 2.4rem;
  line-height: 1.5;
  text-align: center;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .faq-none {
    margin-top: 4rem;
    font-size: 2rem;
  }
}
@media screen and (max-width: 519px) {
  .faq-none {
    margin-top: 4rem;
    font-size: 2rem;
  }
}
.faq-return {
  padding: 0 0 8rem;
  text-align: center;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .faq-return {
    padding: 0 0 8rem;
  }
}
@media screen and (max-width: 519px) {
  .faq-return {
    padding: 0 0 8rem;
  }
}
/* ===============================================
12) CONTACT
=============================================== */
.contact-inner {
  max-width: 840px;
}
.contact-text {
  font-size: 16px;
  line-height: 1.6;
}
.contact-text-thanks {
  font-weight: 650;
  font-size: 2.4rem;
}
.contact-form input[type=text],
.contact-form input[type=email],
.contact-form input[type=tel],
.contact-form textarea {
  border: 1px solid #ced1d3;
  background: rgba(153, 153, 153, 0.15);
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  width: 720px;
  max-width: 100%;
}
.contact-form input[type=text]::placeholder,
.contact-form input[type=email]::placeholder,
.contact-form input[type=tel]::placeholder,
.contact-form textarea::placeholder {
  color: #ced1d3;
}
.contact-form input[type=text]:focus,
.contact-form input[type=email]:focus,
.contact-form input[type=tel]:focus,
.contact-form textarea:focus {
  outline-color: #5da732;
}
.contact-form input[type=text],
.contact-form input[type=email],
.contact-form input[type=tel] {
  padding: 12px 16px;
}
.contact-form textarea {
  padding: 16px;
  min-height: 160px;
  max-height: 200px;
  resize: vertical;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .contact-form textarea {
    min-height: 160px;
    max-height: 200px;
  }
}
@media screen and (max-width: 519px) {
  .contact-form textarea {
    min-height: 160px;
    max-height: 200px;
  }
}
.contact-list {
  margin-top: 60px;
}
.contact-item {
  display: flex;
  align-items: center;
  font-size: 1.6rem;
}
.contact-item:not(:first-child) {
  margin-top: 40px;
}
.contact-item.flex-top {
  align-items: start;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .contact-item {
    display: block;
  }
}
@media screen and (max-width: 519px) {
  .contact-item {
    display: block;
  }
}
.contact-flex {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.contact-flex p {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.contact-required {
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 650;
  color: #f8f8f8;
  background: #e60012;
  border-radius: 20px;
  flex-shrink: 0;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .contact-required {
    padding: 4px 8px;
    font-size: 12px;
  }
}
@media screen and (max-width: 519px) {
  .contact-required {
    padding: 4px 8px;
    font-size: 12px;
  }
}
.contact-optional {
  padding: 4px 12px;
  font-size: 14px;
  font-weight: 650;
  color: #f8f8f8;
  background: #101010;
  border-radius: 10px;
  flex-shrink: 0;
  opacity: 0;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .contact-optional {
    display: none;
  }
}
@media screen and (max-width: 519px) {
  .contact-optional {
    display: none;
  }
}
.contact-name {
  display: block;
  width: 180px;
  margin-left: 2rem;
  font-weight: 650;
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .contact-name {
    width: 150px;
    margin-left: 1.6rem;
  }
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .contact-name {
    margin-left: 1.2rem;
  }
}
@media screen and (max-width: 519px) {
  .contact-name {
    margin-left: 1.2rem;
  }
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .contact-name.optional {
    margin-left: 0;
  }
}
@media screen and (max-width: 519px) {
  .contact-name.optional {
    margin-left: 0;
  }
}
.contact-input {
  margin-left: 2rem;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .contact-input {
    margin-top: 2rem;
    margin-left: 0;
  }
}
@media screen and (max-width: 519px) {
  .contact-input {
    margin-top: 2rem;
    margin-left: 0;
  }
}
.contact-privacy {
  margin-left: 2rem;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .contact-privacy {
    margin-top: 4rem;
    margin-left: 0;
  }
}
@media screen and (max-width: 519px) {
  .contact-privacy {
    margin-top: 4rem;
    margin-left: 0;
  }
}
.contact-privacy [type=checkbox]:checked + span::after {
  display: block;
}
.contact-privacy [type=checkbox]:hover + span::before {
  border: 1px solid #ced1d3;
  outline: none;
}
.contact-privacy [type=checkbox]:focus + span::before {
  border: 1px solid #ced1d3;
  outline: none;
}
.contact-privacy [type=checkbox]:active + span::before {
  border: 1px solid #ced1d3;
  background: rgba(73, 115, 255, 0.2);
  box-shadow: none;
}
.contact-check {
  position: relative;
}
.contact-check span {
  display: inline-block;
  padding-left: 40px;
  position: relative;
  font-size: 16px;
}
.contact-check span::before {
  content: "";
  width: 25px;
  height: 25px;
  background: rgba(153, 153, 153, 0.15);
  border: 1px solid #ced1d3;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.contact-check span::after {
  content: "";
  width: 22px;
  height: 22px;
  position: absolute;
  left: 1.5px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent url(../img/img_checkmark.png) no-repeat center center/contain;
  display: none;
}
.contact-check-input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.contact-check-link {
  color: #005eac;
  font-weight: 650;
  text-decoration: underline;
}
.contact-message {
  margin-left: 2rem;
  width: 100%;
  max-width: 720px;
  font-size: 16px;
  line-height: 1.6;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .contact-message {
    margin-left: 0;
  }
}
@media screen and (max-width: 519px) {
  .contact-message {
    margin-left: 0;
  }
}
.contact-submit {
  margin: 6rem auto 0;
  width: 100%;
}
.contact-submit p {
  display: flex;
  justify-content: center;
  flex-direction: row-reverse;
  column-gap: 2rem;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .contact-submit p {
    flex-direction: column-reverse;
    align-items: center;
  }
}
@media screen and (max-width: 519px) {
  .contact-submit p {
    flex-direction: column-reverse;
    align-items: center;
  }
}
.contact-submit-button {
  border: none;
  font-family: "Noto Sans JP", sans-serif;
  display: inline-block;
  width: 300px;
  height: 60px;
  line-height: 60px;
  border-radius: 50px;
  font-size: 24px;
  font-weight: 650;
  text-align: center;
  color: #f8f8f8;
  background-color: #f39800;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}
.contact-submit-button:focus {
  outline: none;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .contact-submit-button {
    font-size: 20px;
  }
}
@media screen and (max-width: 519px) {
  .contact-submit-button {
    font-size: 20px;
  }
}
.contact-return {
  margin-top: 8rem;
  text-align: center;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .contact-return {
    margin-top: 6rem;
  }
}
@media screen and (max-width: 519px) {
  .contact-return {
    margin-top: 6rem;
  }
}
.wpcf7 input[type=checkbox] {
  content: "";
  width: 25px;
  height: 25px;
  background: rgba(153, 153, 153, 0.15);
  border: 1px solid #999;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
}
.wpcf7 input[type=checkbox]::before {
  height: 8px;
  width: 18px;
  top: 6px;
  left: 3px;
}

.wpcf7-list-item-label::before {
  content: "";
  width: 25px;
  height: 25px;
  background: rgba(153, 153, 153, 0.15);
  border: 1px solid #ced1d3;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}
.wpcf7-list-item-label::after {
  content: "";
  width: 22px;
  height: 22px;
  position: absolute;
  left: 1.5px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent url(../img/img_checkmark.png) no-repeat center center/contain;
  display: none;
  cursor: pointer;
}
.wpcf7-list-item-label span {
  margin-left: 24px;
}

.wpcf7-spinner {
  display: none;
}

.wpcf7-not-valid-tip {
  position: absolute;
  color: #e60012;
  margin-top: 10px;
  font-size: 14px;
}

.wpcf7-previous {
  display: block !important;
}

/* ===============================================
13) POLICY
=============================================== */
.policy-inner {
  max-width: 840px;
}
.policy-post p:first-child {
  margin-top: 0;
}
.policy-button {
  margin-top: 8rem;
  text-align: center;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .policy-button {
    margin-top: 6rem;
  }
}
@media screen and (max-width: 519px) {
  .policy-button {
    margin-top: 6rem;
  }
}
/* ===============================================
14) 404
=============================================== */
.no_found-inner {
  max-width: 840px;
}
.no_found-text {
  font-size: 2.8rem;
  line-height: 1.5;
  text-align: center;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .no_found-text {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 519px) {
  .no_found-text {
    font-size: 2.4rem;
  }
}
.no_found-button {
  margin-top: 8rem;
  text-align: center;
}
@media screen and (min-width: 520px) and (max-width: 767px) {
  .no_found-button {
    margin-top: 6rem;
  }
}
@media screen and (max-width: 519px) {
  .no_found-button {
    margin-top: 6rem;
  }
}