@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Baskervville:ital,wght@0,400..700;1,400..700&family=Zen+Old+Mincho&display=swap");
.fadeInUp {
  opacity: 0;
  transform: translateY(45px);
}

.fadeInDown {
  opacity: 0;
  transform: translateY(-45px);
}

.fadeInLeft {
  opacity: 0;
  transform: translate(-45px, 0);
}

.fadeInRight {
  opacity: 0;
  transform: translateX(45px);
}

@keyframes fadeIn {
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
.fadeIn {
  animation-name: fadeIn;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  src: url("../font/NotoSansJP-Regular.woff2") format("woff2"), url("../font/NotoSansJP-Regular.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 700;
  src: url("../font/NotoSansJP-Bold.woff2") format("woff2"), url("../font/NotoSansJP-Bold.woff") format("woff");
  font-display: swap;
}
:root {
  --notosansjp:
  	"Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN",
  	"Arial", "Yu Gothic", "Meiryo", sans-serif;
}

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

body {
  width: 100%;
  height: 100%;
  font-family: var(--notosansjp);
  font-size: 16px;
  font-weight: 400;
  font-feature-settings: "palt";
  color: #000000;
  background-color: #ffffff;
}
body.noscroll {
  overflow: hidden;
}

/* ios用の初期化 */
input,
button,
textarea,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

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

.pc {
  display: block;
}

.sp,
img.sp {
  display: none;
}

img.pc {
  display: inline-block;
}

a {
  display: block;
}

@media (width <= 600px) {
  .sp {
    display: block;
  }
  .pc,
  img.pc {
    display: none;
  }
  img.sp {
    display: inline-block;
  }
}
/*ヘッダー*/
.site_header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: flex;
  width: 100%;
  height: 90px;
  background-color: #fff;
}
@media (width <= 600px) {
  .site_header {
    height: 16vw;
  }
}
.site_header h1 {
  position: absolute;
  top: 34px;
  left: 30px;
  z-index: 100;
  width: 50vw;
  max-width: 300px;
}
@media (width <= 600px) {
  .site_header h1 {
    top: 5vw;
    left: 5vw;
  }
}
.site_header h1 .cls-1 {
  fill: #000;
}
.site_header h1 .cls-2 {
  fill: #58b431;
}

.g-nav {
  position: absolute;
  top: 25px;
  right: 150px;
}
@media (width <= 768px) {
  .g-nav {
    display: none;
  }
}
.g-nav ul {
  display: flex;
  gap: 30px;
}
.g-nav ul li a {
  padding: 10px 0;
  font-size: 15px;
  font-weight: bolder;
  color: #000000;
  letter-spacing: 0.1em;
}
.g-nav ul li .text::before {
  bottom: -5px;
  height: 1px;
  transition: 0.2s all;
}

.menuBtn {
  position: fixed;
  top: 20px;
  right: 30px;
  z-index: 20;
  width: 76px;
  height: 49px;
  cursor: pointer;
  background-color: #438e50;
  border-radius: 50px;
}
@media (width <= 600px) {
  .menuBtn {
    top: 2vw;
    right: 3vw;
    z-index: 20;
    width: 15vw;
    height: 11vw;
  }
}

.open .menuBtn {
  background-color: #333;
}

.menuBtn .menuBtn--circle {
  position: relative;
  width: 100%;
  height: 100%;
}

.menuBtn .menuBtn__open--icon > span {
  position: absolute;
  top: calc(50% - 9px);
  left: 25%;
  display: block;
  width: 50%;
  height: 2px;
  overflow: hidden;
  background-color: #fff;
  transition: 0.2s;
}
.menuBtn .menuBtn__open--icon > span:nth-child(2) {
  top: calc(50% - 1px);
}
.menuBtn .menuBtn__open--icon > span:nth-child(3) {
  top: calc(50% + 7px);
}

.open .menuBtn .menuBtn__open--icon > span:first-child {
  display: none;
}
.open .menuBtn .menuBtn__open--icon > span:nth-child(2) {
  transform: rotate(20deg);
}
.open .menuBtn .menuBtn__open--icon > span:nth-child(3) {
  top: calc(50% - 1px);
  transform: rotate(-20deg);
}

.menu {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  visibility: hidden;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  pointer-events: none;
  opacity: 0;
  transition-timing-function: cubic-bezier(0.43, 0.05, 0.17, 1);
  transition-duration: 0.5s;
  -webkit-overflow-scrolling: touch;
}

.open .menu {
  z-index: 10;
  display: flex;
  visibility: visible;
  justify-content: center;
  overscroll-behavior: contain;
  pointer-events: all;
  opacity: 1;
  -ms-scroll-chaining: none;
}

.menu .menuBg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: #666;
}

.nav {
  z-index: 10;
  display: flex;
  align-content: center;
}
.nav ul {
  display: flex;
  flex-flow: column;
  gap: 30px;
  justify-content: center;
}
.nav ul li a {
  font-size: 20px;
  color: #fff;
  letter-spacing: 0.1em;
}

.g-nav .text {
  position: relative;
  display: inline-block;
}
.g-nav .text::before {
  position: absolute;
  bottom: -10px;
  left: 0;
  display: block;
  width: 0;
  height: 2px;
  content: "";
  background-color: #438e50;
  transition: 0.5s all;
}
.g-nav .text:hover {
  color: #438e50;
}
.g-nav .text:hover::before {
  width: 100%;
}

/*footer*/
.site_footer {
  box-sizing: border-box;
  padding: 150px 10%;
  background-color: #333;
}
@media (width <= 1024px) {
  .site_footer {
    padding: 20vw 0;
    text-align: center;
  }
}

.site_footer_wrap {
  display: flex;
  gap: 150px;
  justify-content: space-between;
  width: 100%;
}
@media (width <= 1500px) {
  .site_footer_wrap {
    gap: 5vw;
  }
}
@media (width <= 1024px) {
  .site_footer_wrap {
    flex-flow: column;
  }
}
.site_footer_wrap .footer_left {
  width: 30%;
}
@media (width <= 1024px) {
  .site_footer_wrap .footer_left {
    width: 100%;
    margin: 0 0 10vw;
  }
}
.site_footer_wrap .footer_left img {
  margin: 0 0 50px;
}
@media (width <= 1024px) {
  .site_footer_wrap .footer_left img {
    width: 70vw;
    max-width: 200px;
  }
}
.site_footer_wrap .footer_left p {
  font-size: 14px;
  line-height: 1.8;
  color: #fff;
}
.site_footer_wrap .footer_right {
  justify-content: end;
  width: 70%;
  max-width: 650px;
}
@media (width <= 1024px) {
  .site_footer_wrap .footer_right {
    width: 100%;
    margin: 0 auto;
  }
}
.site_footer_wrap .footer_right ul {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
@media (width <= 1024px) {
  .site_footer_wrap .footer_right ul {
    flex-flow: column;
  }
}
@media (width <= 600px) {
  .site_footer_wrap .footer_right ul {
    gap: 4.5vw;
  }
}
.site_footer_wrap .footer_right ul li a {
  font-size: 16px;
  color: #fff;
  letter-spacing: 0.1em;
}
@media (width <= 600px) {
  .site_footer_wrap .footer_right ul li a {
    font-size: 3.6vw;
  }
}
.site_footer_wrap .footer_right ul .text::before {
  bottom: -5px;
  height: 1px;
  transition: 0.2s all;
}

.copy {
  padding: 10px;
  font-size: 12px;
  color: #fff;
  text-align: right;
  background-color: #438e50;
}
.copy a {
  display: inline-block;
  font-size: 12px;
  color: #fff;
}

/*個別ページ共通部分*/
.common_header {
  display: flex;
  justify-content: space-between;
  height: 673px;
  padding-top: 90px;
  overflow: hidden;
  background-color: #4d4d4d;
}
@media (width <= 1024px) {
  .common_header {
    flex-flow: column-reverse;
    height: auto;
  }
}
@media (width <= 600px) {
  .common_header {
    padding: 16vw 0 14vw;
  }
}
.common_header .txt {
  box-sizing: border-box;
  display: flex;
  flex-flow: column;
  justify-content: center;
  width: 50%;
  max-width: 600px;
  padding: 0 80px;
  color: #fff;
}
@media screen and (min-width: 1500px) {
  .common_header .txt {
    width: 100%;
    padding: 0 6vw;
  }
}
@media (width <= 1024px) {
  .common_header .txt {
    width: 100%;
    padding: 8vw 8vw 8vw;
  }
}
.common_header .txt h2 {
  margin: 0 0 50px;
  font-size: 18px;
  color: #fff;
  letter-spacing: 0.2em;
}
@media (width <= 600px) {
  .common_header .txt h2 {
    margin: 0 0 10vw;
    font-size: 4vw;
  }
}
.common_header .txt h2 span {
  position: relative;
  display: block;
  margin: 0 0 60px;
  font-size: 70px;
  font-weight: bold;
  color: #58b431;
  letter-spacing: 0.1em;
}
@media (width <= 1024px) {
  .common_header .txt h2 span {
    font-size: 9vw;
  }
}
@media (width <= 600px) {
  .common_header .txt h2 span {
    margin: 0 0 10vw;
  }
}
.common_header .txt h2 span::before {
  position: absolute;
  bottom: -22px;
  left: 0;
  display: block;
  width: 50px;
  height: 8px;
  content: "";
  background-color: #58b431;
}
@media (width <= 600px) {
  .common_header .txt h2 span::before {
    bottom: -4vw;
    left: 0;
    display: block;
    width: 9vw;
    height: 1vw;
  }
}
.common_header .txt p {
  font-size: 14px;
  line-height: 2;
  color: #fff;
}
.common_header .main_img {
  width: 66%;
  height: 100%;
}
@media (width <= 1024px) {
  .common_header .main_img {
    width: 100%;
  }
}
.common_header .main_img img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
}
@media screen and (min-width: 1600px) {
  .common_header .main_img img {
    width: 100%;
    height: auto;
    margin-top: -6vw;
  }
}
@media (width <= 1024px) {
  .common_header .main_img img {
    width: 100%;
    clip-path: none;
  }
}
@media (width <= 600px) {
  .common_header .main_img img {
    width: 100%;
  }
}

/*個別ページ共通部分*/
/*個別アクセス共通部分*/
.common_access {
  background-color: #f2f2f2;
}
.common_access > div {
  width: 85%;
  max-width: 1100px;
  padding: 150px 0;
  margin: 0 auto;
}
@media (width <= 600px) {
  .common_access > div {
    padding: 14vw 0;
  }
}
.common_access .access_ttl {
  margin: 0 0 50px;
  font-size: 16px;
  color: #333;
  letter-spacing: 0.2em;
}
@media (width <= 600px) {
  .common_access .access_ttl {
    margin: 0 0 10vw;
    font-size: 3.8vw;
  }
}
.common_access .access_ttl span {
  position: relative;
  display: block;
  margin: 0 0 40px;
  font-size: 50px;
  font-weight: bold;
  color: #58b431;
  letter-spacing: 0.1em;
}
@media (width <= 600px) {
  .common_access .access_ttl span {
    margin: 0 0 10vw;
    font-size: 6vw;
  }
}
.common_access .access_ttl span::before {
  position: absolute;
  bottom: -22px;
  left: 0;
  display: block;
  width: 50px;
  height: 8px;
  content: "";
  background-color: #58b431;
}
@media (width <= 600px) {
  .common_access .access_ttl span::before {
    bottom: -4vw;
    left: 0;
    display: block;
    width: 9vw;
    height: 1vw;
  }
}
.common_access .access_inner {
  display: flex;
  gap: 7%;
}
@media (width <= 1024px) {
  .common_access .access_inner {
    flex-flow: column;
  }
}
.common_access .access_inner .txt {
  width: 40%;
  max-width: 500px;
}
@media (width <= 1024px) {
  .common_access .access_inner .txt {
    width: 100%;
    max-width: none;
    margin: 0 0 100px;
  }
}
@media (width <= 600px) {
  .common_access .access_inner .txt {
    margin: 0 0 10vw;
  }
}
.common_access .access_inner .txt dl {
  padding: 30px;
  margin: 0 0 30px;
  background: #fff;
}
@media (width <= 600px) {
  .common_access .access_inner .txt dl {
    padding: 5vw;
    margin: 0 0 5vw;
  }
}
.common_access .access_inner .txt dt {
  margin: 0 0 15px;
}
@media (width <= 600px) {
  .common_access .access_inner .txt dt {
    margin: 0 0 3vw;
    font-size: 3.8vw;
  }
}
.common_access .access_inner .txt dd {
  line-height: 2;
}
@media (width <= 600px) {
  .common_access .access_inner .txt dd {
    font-size: 3.8vw;
  }
}
.common_access .access_inner .txt li {
  margin: 0 0 20px;
}
@media (width <= 600px) {
  .common_access .access_inner .txt li {
    margin: 0 0 3vw;
    font-size: 3.6vw;
  }
}
.common_access .access_inner .txt li h3 {
  display: inline-block;
  width: 100px;
  padding: 5px 0;
  margin-right: 1em;
  font-size: 15px;
  color: #fff;
  text-align: center;
  letter-spacing: 0.1em;
  background-color: #438e50;
  border-radius: 20px;
}
@media (width <= 600px) {
  .common_access .access_inner .txt li h3 {
    width: 18vw;
    padding: 5px 0;
    font-size: 3.6vw;
  }
}
.common_access .access_inner .map {
  width: 53%;
}
@media (width <= 1024px) {
  .common_access .access_inner .map {
    width: 100%;
    height: 400px;
  }
}
@media (width <= 600px) {
  .common_access .access_inner .map {
    height: 50vw;
  }
}

/*個別お問い合わせ共通部分*/
.common_contact {
  background-color: #438e50;
}
.common_contact > div {
  width: 85%;
  max-width: 1100px;
  padding: 150px 0;
  margin: 0 auto;
}
@media (width <= 600px) {
  .common_contact > div {
    padding: 14vw 0;
  }
}
.common_contact .contact_inner {
  display: flex;
  gap: 50px;
  align-items: center;
  justify-content: space-between;
}
@media (width <= 768px) {
  .common_contact .contact_inner {
    flex-flow: column;
    gap: 0;
  }
}
.common_contact .contact_ttl {
  margin: 0 0 50px;
  font-size: 16px;
  color: #fff;
  letter-spacing: 0.2em;
}
@media (width <= 600px) {
  .common_contact .contact_ttl {
    margin: 0 0 10vw;
    font-size: 3.8vw;
  }
}
.common_contact .contact_ttl span {
  position: relative;
  display: block;
  margin: 0 0 40px;
  font-size: 50px;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.1em;
}
@media (width <= 600px) {
  .common_contact .contact_ttl span {
    margin: 0 0 10vw;
    font-size: 8vw;
  }
}
.common_contact .contact_ttl span::before {
  position: absolute;
  bottom: -22px;
  left: 0;
  display: block;
  width: 50px;
  height: 8px;
  content: "";
  background-color: #fff;
}
@media (width <= 600px) {
  .common_contact .contact_ttl span::before {
    bottom: -4vw;
    left: 0;
    display: block;
    width: 9vw;
    height: 1vw;
  }
}
.common_contact h3 {
  margin: 0 0 30px;
  font-size: 20px;
  line-height: 1.5;
  color: #fff;
}
.common_contact p {
  margin: 0 0 50px;
  font-size: 14px;
  line-height: 2;
  color: #fff;
}
.common_contact ul {
  display: flex;
  flex-flow: column;
  gap: 30px;
  width: 50%;
  max-width: 400px;
}
@media (width <= 768px) {
  .common_contact ul {
    width: 100%;
  }
}
@media (width <= 600px) {
  .common_contact ul {
    gap: 3vw;
    width: 100%;
  }
}
.common_contact ul li a {
  display: block;
  height: 100px;
  padding: 36px 0;
  font-size: 18px;
  color: #fff;
  text-align: center;
  letter-spacing: 0.1em;
  background-color: #999;
  border: 1px solid #fff;
  border-radius: 50px;
  transition: 0.3s all;
}
@media (width <= 600px) {
  .common_contact ul li a {
    font-size: 16px;
  }
}
.common_contact ul li a span {
  display: block;
  margin: 10px 0 0;
  font-size: 12px;
  color: #fff;
  transition: 0.3s all;
}
@media (width <= 600px) {
  .common_contact ul li a span {
    margin: 1vw 0 0;
    font-size: 10px;
  }
}
.common_contact ul li:hover a {
  color: #000;
  background-color: #fff;
}
.common_contact ul li:hover span {
  color: #000;
}
.common_contact ul li:first-child a {
  padding: 24px 0 20px;
  font-size: 24px;
}
@media (width <= 600px) {
  .common_contact ul li:first-child a {
    font-size: 20px;
  }
}
.common_contact ul li:last-child a {
  position: relative;
}
.common_contact ul li:last-child a::before {
  position: absolute;
  top: calc(50% - 5px);
  right: 50px;
  display: block;
  width: 10px;
  height: 10px;
  content: "";
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
}
.common_contact ul li:last-child:hover a::before {
  border-top: 1px solid #000;
  border-right: 1px solid #000;
}

.keyvisual {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 830px;
  background-image: url("../img/keyvisual.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.keyvisual::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(0, 0, 0, 0.2);
}
.keyvisual .inner {
  position: absolute;
  bottom: 40px;
  left: 40px;
  z-index: 2;
  text-align: left;
}
@media (max-width: 600px) {
  .keyvisual .inner {
    bottom: 24px;
    left: 16px;
  }
}
.keyvisual .catchcopy {
  display: flex;
  flex-flow: column;
  margin-bottom: 40px;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.5;
  color: #ffffff;
  letter-spacing: 0.2em;
  white-space: nowrap;
}
@media (max-width: 1024px) {
  .keyvisual .catchcopy {
    margin-bottom: 32px;
    font-size: 40px;
  }
}
@media (max-width: 600px) {
  .keyvisual .catchcopy {
    font-size: clamp(15px, 7vw, 40px);
  }
}
.keyvisual .catchcopy span {
  width: -moz-fit-content;
  width: fit-content;
  background-image: linear-gradient(#58b431, #58b431);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 100% 20px;
}
.keyvisual .message {
  display: flex;
  flex-flow: column;
  gap: 10px;
  margin-bottom: 40px;
  white-space: nowrap;
}
@media (max-width: 1024px) {
  .keyvisual .message {
    padding-right: 24px;
    white-space: initial;
  }
}
.keyvisual .message p {
  font-size: 20px;
  color: #ffffff;
}
@media (max-width: 1024px) {
  .keyvisual .message p {
    font-size: 17px;
    line-height: 1.4;
  }
}
.keyvisual .button_list {
  display: flex;
  flex-flow: row;
  gap: 20px;
}
.keyvisual .button_list a {
  width: 160px;
  height: 56px;
  line-height: 56px;
  color: #ffffff;
  text-align: center;
  border: 1px solid #f0f0f0;
  border-radius: 5px;
  transition: all 0.3s;
}
.keyvisual .button_list a:hover {
  background-color: rgba(0, 0, 0, 0.2);
  border-color: #ffffff;
  backdrop-filter: blur(5px);
}

.front_001 {
  margin-bottom: 64px;
}
@media (max-width: 600px) {
  .front_001 {
    margin-top: 48px;
    margin-bottom: 48px;
  }
}
.front_001 > .inner {
  width: 100%;
  max-width: 1300px;
  padding: 120px 24px;
  margin: 0 auto;
}
@media (max-width: 600px) {
  .front_001 > .inner {
    padding: 32px 24px;
  }
}
.front_001 .title {
  margin-bottom: 56px;
  font-size: 40px;
  font-weight: bold;
  line-height: 1.5;
  color: #438e50;
  letter-spacing: 0.05em;
}
@media (max-width: 600px) {
  .front_001 .title {
    margin-bottom: 32px;
    font-size: clamp(16px, 5.2vw, 30px);
  }
}
.front_001 .service_list {
  display: flex;
  flex-flow: row;
  flex-wrap: nowrap;
  gap: 16px;
}
@media (max-width: 880px) {
  .front_001 .service_list {
    flex-flow: column;
  }
}
.front_001 .service_list li {
  display: flex;
  flex-flow: column;
  gap: 24px;
  width: 33.3333333333%;
  padding: 24px;
  background-color: #f3f5f6;
  border-radius: 5px;
}
@media (max-width: 880px) {
  .front_001 .service_list li {
    display: grid;
    grid-template-rows: auto auto;
    grid-template-columns: auto 1fr;
    gap: 16px 24px;
    width: 100%;
  }
}
@media (max-width: 600px) {
  .front_001 .service_list li {
    display: flex;
    flex-flow: column;
  }
}
.front_001 .service_list .eyecatch {
  text-align: center;
}
@media (max-width: 880px) {
  .front_001 .service_list .eyecatch {
    grid-row: 1/3;
    grid-column: 1/2;
    align-self: center;
  }
}
.front_001 .service_list .eyecatch svg {
  width: 64px;
  height: 64px;
}
@media (max-width: 600px) {
  .front_001 .service_list .eyecatch svg {
    width: 40px;
    height: 40px;
  }
}
.front_001 .service_list .name {
  font-size: 24px;
  line-height: 1.3;
  text-align: center;
  letter-spacing: 0.03em;
}
@media (max-width: 1024px) {
  .front_001 .service_list .name {
    font-size: 20px;
  }
}
@media (max-width: 880px) {
  .front_001 .service_list .name {
    grid-row: 1/2;
    grid-column: 2/3;
    text-align: left;
  }
}
@media (max-width: 600px) {
  .front_001 .service_list .name {
    text-align: center;
  }
}
.front_001 .service_list .name br {
  display: none;
}
@media (max-width: 1024px) {
  .front_001 .service_list .name br {
    display: block;
  }
}
@media (max-width: 880px) {
  .front_001 .service_list .name br {
    display: none;
  }
}
.front_001 .service_list .message {
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
@media (max-width: 880px) {
  .front_001 .service_list .message {
    grid-row: 2/3;
    grid-column: 2/3;
  }
}

.front_002 {
  margin-bottom: 64px;
}
@media (max-width: 600px) {
  .front_002 {
    margin-bottom: 48px;
  }
}
.front_002 > .inner {
  display: flex;
  flex-flow: row;
  gap: 60px;
  justify-content: space-between;
  width: 100%;
  max-width: 1300px;
  padding: 0px 24px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .front_002 > .inner {
    flex-flow: column;
  }
}
@media (max-width: 600px) {
  .front_002 > .inner {
    padding: 32px 24px;
  }
}
@media (max-width: 1024px) {
  .front_002 .eyecatch {
    order: 2;
  }
}
.front_002 .eyecatch img {
  height: 50vw;
  max-height: 700px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 30px;
}
@media (max-width: 1024px) {
  .front_002 .eyecatch img {
    width: 100%;
    height: auto;
    max-height: 450px;
    -o-object-position: left top;
    object-position: left top;
  }
}
@media (max-width: 600px) {
  .front_002 .eyecatch img {
    max-height: 250px;
  }
}
.front_002 .body {
  align-self: center;
  max-width: 600px;
}
@media (max-width: 1024px) {
  .front_002 .body {
    align-self: auto;
    order: 1;
    max-width: none;
  }
}
.front_002 .title {
  margin-bottom: 56px;
  font-size: 40px;
  font-weight: bold;
  line-height: 1.5;
  color: #438e50;
  letter-spacing: 0.05em;
}
@media (max-width: 600px) {
  .front_002 .title {
    margin-bottom: 32px;
    font-size: clamp(16px, 6vw, 30px);
  }
}
.front_002 .message {
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.front_002 .notice {
  font-size: 18px;
  line-height: 1.5;
  color: #da1517;
  letter-spacing: 0.05em;
}

.front_003 {
  margin-bottom: 64px;
}
@media (max-width: 600px) {
  .front_003 {
    margin-bottom: 48px;
  }
}
.front_003 > .inner {
  width: 100%;
  max-width: 1300px;
  padding: 104px 24px;
  margin: 0 auto;
}
@media (max-width: 600px) {
  .front_003 > .inner {
    padding: 32px 24px;
  }
}
.front_003 .title {
  margin-bottom: 32px;
  font-size: 40px;
  font-weight: bold;
  line-height: 1.5;
  color: #438e50;
}
@media (max-width: 600px) {
  .front_003 .title {
    font-size: clamp(16px, 7vw, 30px);
  }
}
.front_003 .title br {
  display: none;
}
@media (max-width: 600px) {
  .front_003 .title br {
    display: block;
  }
}
.front_003 .message {
  margin-bottom: 40px;
  font-size: 17px;
  line-height: 1.7;
  letter-spacing: 0.05em;
}
.front_003 .work_list {
  display: flex;
  flex-flow: row;
  gap: 20px;
}
@media (max-width: 600px) {
  .front_003 .work_list {
    display: grid;
    grid-template-rows: 200px 200px;
    grid-template-columns: auto auto;
  }
}
.front_003 .work_list li {
  width: 33.3333333333%;
}
@media (max-width: 600px) {
  .front_003 .work_list li:nth-of-type(1) {
    grid-row: 2/3;
    grid-column: 1/2;
    width: 100%;
  }
}
@media (max-width: 600px) {
  .front_003 .work_list li:nth-of-type(2) {
    grid-row: 1/2;
    grid-column: 1/3;
    width: 100%;
  }
}
.front_003 .work_list li:nth-of-type(3) {
  align-self: flex-end;
}
@media (max-width: 600px) {
  .front_003 .work_list li:nth-of-type(3) {
    grid-row: 2/3;
    grid-column: 2/3;
    width: 100%;
    height: 100%;
  }
}
.front_003 .work_list img {
  border-radius: 20px;
}
@media (max-width: 600px) {
  .front_003 .work_list img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

.front_004 {
  margin-bottom: 64px;
}
@media (max-width: 600px) {
  .front_004 {
    margin-bottom: 48px;
  }
}
.front_004 > .inner {
  display: flex;
  flex-flow: row;
  gap: 60px;
  justify-content: space-between;
  width: 100%;
  max-width: 1300px;
  padding: 0px 24px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .front_004 > .inner {
    flex-flow: column;
    gap: 32px;
  }
}
@media (max-width: 600px) {
  .front_004 > .inner {
    padding: 32px 24px;
  }
}
.front_004 .eyecatch img {
  height: 50vw;
  max-height: 700px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 30px;
}
@media (max-width: 1024px) {
  .front_004 .eyecatch img {
    width: 100%;
    height: auto;
    max-height: 450px;
    -o-object-position: left 40%;
    object-position: left 40%;
  }
}
@media (max-width: 600px) {
  .front_004 .eyecatch img {
    max-height: 250px;
  }
}
.front_004 .body {
  align-self: center;
  max-width: 600px;
}
@media (max-width: 1024px) {
  .front_004 .body {
    max-width: none;
  }
}
.front_004 .title {
  margin-bottom: 32px;
  font-size: 40px;
  font-weight: bold;
  line-height: 1.5;
  color: #438e50;
}
@media (max-width: 600px) {
  .front_004 .title {
    font-size: clamp(16px, 7vw, 30px);
  }
}
.front_004 .message {
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media (max-width: 1024px) {
  .front_004 .message {
    margin-bottom: 10px;
  }
}
.front_004 .message:last-of-type {
  margin-bottom: 0px;
}

.front_005 {
  margin-bottom: 160px;
}
@media (max-width: 600px) {
  .front_005 {
    margin-bottom: 96px;
  }
}
.front_005 > .inner {
  width: 100%;
  max-width: 1300px;
  padding: 104px 24px;
  margin: 0 auto;
}
@media (max-width: 600px) {
  .front_005 > .inner {
    padding: 32px 24px;
  }
}
.front_005 .title {
  margin-bottom: 32px;
  font-size: 40px;
  font-weight: bold;
  line-height: 1.5;
  color: #438e50;
}
@media (max-width: 600px) {
  .front_005 .title {
    font-size: clamp(16px, 6vw, 30px);
  }
}
.front_005 .title br {
  display: none;
}
@media (max-width: 1024px) {
  .front_005 .title br {
    display: block;
  }
}
.front_005 .body {
  display: grid;
  grid-template-rows: auto 1fr;
  grid-template-columns: auto 1fr;
  gap: 24px 56px;
}
@media (max-width: 1024px) {
  .front_005 .body {
    display: flex;
    flex-flow: column;
  }
}
@media (max-width: 600px) {
  .front_005 .body {
    gap: 32px;
  }
}
.front_005 .message {
  grid-row: 1/2;
  grid-column: 1/2;
  max-width: 600px;
}
@media (max-width: 1024px) {
  .front_005 .message {
    order: 1;
    max-width: none;
  }
}
.front_005 .message p {
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.front_005 .message p:last-child {
  margin-bottom: 0px;
}
.front_005 .link_button {
  display: grid;
  grid-template-columns: auto max-content;
  grid-row: 2/3;
  grid-column: 1/2;
  gap: 1em;
  align-items: center;
  align-self: baseline;
  justify-self: flex-end;
  inline-size: 100%;
  max-width: 260px;
  height: 60px;
  padding: 0.5em;
  border: 1px solid #efefef;
  border-radius: 5px;
  transition: all 0.3s;
}
@media (max-width: 1024px) {
  .front_005 .link_button {
    order: 3;
  }
}
@media (max-width: 600px) {
  .front_005 .link_button {
    align-self: center;
  }
}
.front_005 .link_button .text {
  display: inline;
  margin-inline: auto;
  text-align: center;
  letter-spacing: 0.03em;
}
.front_005 .link_button .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: auto;
  background-color: #3d3535;
  border-radius: 4px;
  transition: all 0.3s;
}
.front_005 .link_button svg {
  width: 12px;
  height: 12px;
}
.front_005 .link_button svg .st0 {
  fill: #ffffff;
}
.front_005 .link_button:hover {
  border: 1px solid #9e9a9a;
}
.front_005 .link_button:hover .icon {
  background-color: #438e50;
}
.front_005 .skill_list {
  display: flex;
  flex-flow: column;
  grid-row: 1/3;
  grid-column: 2/3;
  gap: 20px;
  width: 100%;
}
@media (max-width: 1024px) {
  .front_005 .skill_list {
    order: 2;
  }
}
.front_005 .skill_list li {
  position: relative;
  width: 100%;
  padding: 24px;
  background-color: #f3f5f6;
  border-radius: 10px;
}
.front_005 .skill_list li::before {
  position: absolute;
  top: 20px;
  left: 0px;
  width: 3px;
  height: 32px;
  content: "";
  background-color: #438e50;
}
.front_005 .skill_list li .name {
  margin-bottom: 24px;
  font-size: 20px;
  color: #303234;
}
.front_005 .skill_list li .note {
  color: #6c6d6f;
}

.page-service .common_header {
  padding-bottom: 0;
}

.zen {
  font-family: "Zen Old Mincho", serif;
  font-style: normal;
  font-weight: 400;
}

.baskervville {
  font-family: "Baskervville", serif;
  font-style: normal;
  font-optical-sizing: auto;
}

.service_nav {
  padding: 130px 0 110px;
}
@media (max-width: 600px) {
  .service_nav {
    padding: 15vw 0;
  }
}
.service_nav h3 {
  margin: 0 0 50px;
  font-size: 28px;
  color: #333;
  text-align: center;
  letter-spacing: 0.1em;
}
@media (max-width: 600px) {
  .service_nav h3 {
    margin: 0 0 5vw;
    font-size: 5vw;
  }
}
.service_nav h3 span {
  padding: 0 5px;
  font-family: serif;
  font-size: 35px;
  color: #58b431;
}
@media (max-width: 600px) {
  .service_nav h3 span {
    font-size: 7vw;
  }
}
.service_nav h3 span b {
  margin: 0 5px 0 0;
  font-size: 60px;
  font-style: italic;
  font-weight: normal;
  vertical-align: -2px;
}
@media (max-width: 600px) {
  .service_nav h3 span b {
    font-size: 9vw;
  }
}
.service_nav ul {
  display: flex;
  justify-content: space-between;
  width: 85%;
  max-width: 600px;
  margin: 0 auto;
}
.service_nav ul li {
  position: relative;
  width: 180px;
  height: 180px;
  overflow: hidden;
  letter-spacing: 0.1em;
  background-color: #58b431;
  border-radius: 50%;
  transition: 0.5s all;
}
@media (max-width: 600px) {
  .service_nav ul li {
    width: 30%;
    height: 26vw;
  }
}
.service_nav ul li:hover {
  background-color: #4d4d4d;
}
.service_nav ul li a {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-align: center;
}
.service_nav ul li a p {
  position: relative;
  font-family: "Zen Old Mincho", serif;
  font-size: 24px;
  color: #fff;
  letter-spacing: 0.2em;
}
.service_nav ul li a p::after {
  position: absolute;
  top: -32px;
  left: calc(50% - 48px);
  display: inline-block;
  font-family: serif;
  font-size: 74px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.2);
  content: "01";
}
@media (max-width: 600px) {
  .service_nav ul li a p::after {
    top: -4vw;
    left: calc(50% - 9vw);
    font-size: 13vw;
    color: rgba(255, 255, 255, 0.1);
  }
}
.service_nav ul li:nth-child(2) p::after {
  content: "02";
}
.service_nav ul li:nth-child(3) p::after {
  content: "03";
}

.service_container {
  padding: 150px 0 100px;
  background-color: #999;
}
@media (max-width: 600px) {
  .service_container {
    padding: 15vw 0;
  }
}
.service_container > .service_box {
  width: 85%;
  max-width: 1100px;
  padding: 80px;
  margin: 0 auto 80px;
  background-color: #fff;
  border-radius: 50px;
}
@media (max-width: 600px) {
  .service_container > .service_box {
    padding: 10vw 8vw;
    margin: 0 auto 10vw;
    background-color: #fff;
    border-radius: 6vw;
  }
}
.service_container > .service_box > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 50px;
}
@media (max-width: 834px) {
  .service_container > .service_box > div {
    flex-flow: column-reverse;
  }
}
@media (max-width: 600px) {
  .service_container > .service_box > div {
    margin: 0 0 8vw;
  }
}
.service_container > .service_box > div header {
  width: 55%;
}
@media (max-width: 834px) {
  .service_container > .service_box > div header {
    width: 100%;
  }
}
.service_container > .service_box > div img {
  width: 43%;
}
@media (max-width: 834px) {
  .service_container > .service_box > div img {
    width: 100%;
    margin: 0 0 50px;
  }
}
@media (max-width: 600px) {
  .service_container > .service_box > div img {
    margin: 0 0 5vw;
  }
}
.service_container > .service_box h2 {
  margin: 0 0 30px;
  font-size: 32px;
  letter-spacing: 0.1em;
}
@media (max-width: 600px) {
  .service_container > .service_box h2 {
    margin: 0 0 5vw;
    font-size: 6vw;
  }
}
.service_container > .service_box h2 span {
  margin: 0 9px 0 0;
  font-family: serif;
  font-size: 48px;
  font-style: italic;
  vertical-align: -3px;
  color: #3d7e21;
  letter-spacing: 0.1em;
}
@media (max-width: 600px) {
  .service_container > .service_box h2 span {
    font-size: 7.5vw;
  }
}
.service_container > .service_box h3 {
  margin: 0 0 30px;
  font-size: 24px;
  line-height: 1.7;
  color: #3d7e21;
}
@media (max-width: 600px) {
  .service_container > .service_box h3 {
    font-size: 5vw;
  }
}
.service_container > .service_box p {
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.1em;
}
@media (max-width: 600px) {
  .service_container > .service_box p {
    font-size: 14px;
  }
}
.service_container .service_box_list {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
@media (max-width: 834px) {
  .service_container .service_box_list {
    flex-flow: column;
    gap: 30px;
  }
}
.service_container .service_box_list > li {
  width: 32%;
  background-color: #f2f2f2;
}
@media (max-width: 834px) {
  .service_container .service_box_list > li {
    width: 100%;
  }
}
.service_container .service_box_list > li h4 {
  padding: 14px 0;
  font-size: 18px;
  color: #fff;
  text-align: center;
  background-color: #3d7e21;
}
@media (max-width: 600px) {
  .service_container .service_box_list > li h4 {
    padding: 3vw 0;
    font-size: 4vw;
    color: #fff;
    background-color: #3d7e21;
  }
}
.service_container .service_box_list > li > ul {
  display: flex;
  flex-flow: column;
  gap: 15px;
  padding: 30px 30px 50px;
}
.service_container .service_box_list > li > ul li {
  position: relative;
  font-size: 15px;
  line-height: 1.5;
}
@media (max-width: 600px) {
  .service_container .service_box_list > li > ul li {
    font-size: 14px;
  }
}
.service_container .service_box_list > li > ul li::before {
  position: absolute;
  top: 0.7em;
  left: -10px;
  display: inline-block;
  width: 5px;
  height: 5px;
  content: "";
  background-color: #3d7e21;
  border-radius: 50%;
}
.service_container .service_box_list > li > ol {
  display: flex;
  flex-flow: column;
  gap: 15px;
  padding: 30px 30px 50px;
}
.service_container .service_box_list > li > ol li {
  position: relative;
  margin-left: 0.75em;
  font-size: 15px;
  line-height: 1.5;
  text-indent: -0.75em;
}
.service_container .service_box_list > li > ol li span {
  display: inline-block;
  margin-right: 0.5em;
  color: #3d7e21;
}

.service_area {
  padding: 100px 0;
  background-color: #333;
}
@media (max-width: 600px) {
  .service_area {
    padding: 15vw 0 20vw;
  }
}
.service_area > div {
  width: 85%;
  max-width: 1100px;
  margin: 0 auto;
}
.service_area h2 {
  margin: 0 0 80px;
  font-size: 16px;
  color: #fff;
  letter-spacing: 0.2em;
}
@media (max-width: 600px) {
  .service_area h2 {
    margin: 0 0 10vw;
    font-size: 3.8vw;
  }
}
.service_area h2 span {
  position: relative;
  display: block;
  margin: 0 0 40px;
  font-size: 50px;
  font-weight: bold;
  color: #58b431;
  letter-spacing: 0.1em;
}
@media (max-width: 600px) {
  .service_area h2 span {
    margin: 0 0 10vw;
    font-size: 7vw;
  }
}
.service_area h2 span::before {
  position: absolute;
  bottom: -22px;
  left: 0;
  display: block;
  width: 50px;
  height: 8px;
  content: "";
  background-color: #58b431;
}
@media (max-width: 600px) {
  .service_area h2 span::before {
    bottom: -4vw;
    left: 0;
    display: block;
    width: 9vw;
    height: 1vw;
  }
}
.service_area ul {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 834px) {
  .service_area ul {
    flex-flow: column;
    gap: 30px;
  }
}
.service_area ul li {
  width: 48%;
  padding: 50px;
  text-align: center;
  background-color: #fff;
}
@media (max-width: 834px) {
  .service_area ul li {
    width: 100%;
    padding: 10vw 0;
  }
}
.service_area ul li img {
  display: block;
  width: 50px;
  margin: 0 auto 30px;
}
.service_area ul li h3 {
  position: relative;
  display: inline-block;
  padding: 0 0.5em;
  margin: 0 0 50px;
  font-size: 24px;
  font-weight: bold;
  color: #58b431;
  text-align: center;
  letter-spacing: 0.1em;
}
@media (max-width: 600px) {
  .service_area ul li h3 {
    margin: 0 0 10vw;
    font-size: 5vw;
  }
}
.service_area ul li h3::after {
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 100%;
  height: 3px;
  content: "";
  background-color: #58b431;
}
.service_area ul li p {
  font-size: 20px;
  line-height: 1.6;
}
@media (max-width: 600px) {
  .service_area ul li p {
    font-size: 4vw;
  }
}
.service_area ul li:nth-child(2) img {
  margin-bottom: 30px;
}

.service_flow {
  padding: 100px 0;
}
@media (max-width: 600px) {
  .service_flow {
    padding: 15vw 0 20vw;
  }
}
.service_flow > div {
  width: 85%;
  max-width: 1100px;
  margin: 0 auto;
}
.service_flow h2 {
  margin: 0 0 80px;
  font-size: 16px;
  color: #333;
  letter-spacing: 0.2em;
}
@media (max-width: 600px) {
  .service_flow h2 {
    margin: 0 0 10vw;
    font-size: 3.8vw;
  }
}
.service_flow h2 span {
  position: relative;
  display: block;
  margin: 0 0 40px;
  font-size: 50px;
  font-weight: bold;
  color: #58b431;
  letter-spacing: 0.1em;
}
@media (max-width: 600px) {
  .service_flow h2 span {
    margin: 0 0 10vw;
    font-size: 6vw;
  }
}
.service_flow h2 span::before {
  position: absolute;
  bottom: -22px;
  left: 0;
  display: block;
  width: 50px;
  height: 8px;
  content: "";
  background-color: #58b431;
}
@media (max-width: 600px) {
  .service_flow h2 span::before {
    bottom: -4vw;
    left: 0;
    display: block;
    width: 9vw;
    height: 1vw;
  }
}
.service_flow ol {
  display: flex;
  flex-flow: column;
  gap: 40px;
  margin: 0 0 50px;
}
@media (max-width: 600px) {
  .service_flow ol {
    gap: 7vw;
    margin: 0 0 9vw;
  }
}
.service_flow ol li {
  position: relative;
  display: flex;
  align-items: center;
  background-color: #f2f2f2;
}
.service_flow ol li span {
  position: relative;
  box-sizing: border-box;
  width: 130px;
  padding: 50px 0;
  font-family: serif;
  font-size: 24px;
  font-style: italic;
  font-weight: bold;
  color: #fff;
  text-align: center;
  letter-spacing: 0.1em;
  background-color: #3d7e21;
}
@media (max-width: 600px) {
  .service_flow ol li span {
    width: 15vw;
    font-size: 4.5vw;
  }
}
.service_flow ol li p {
  box-sizing: border-box;
  width: calc(100% - 130px);
  padding-left: 50px;
  font-size: 24px;
  letter-spacing: 0.1em;
}
@media (max-width: 600px) {
  .service_flow ol li p {
    width: calc(100% - 10vw);
    padding: 0 0 0 5vw;
    font-size: 4.5vw;
  }
}
.service_flow ol li small {
  display: block;
  margin-top: 5px;
  margin-left: -10px;
  font-size: 15px;
}
@media (max-width: 600px) {
  .service_flow ol li small {
    margin: 0.5em 0 0 0.5em;
    font-size: 3vw;
    line-height: 1.5;
    text-indent: -1.2em;
  }
}
.service_flow ol li:not(:last-child) span::after {
  position: absolute;
  bottom: -30px;
  left: calc(50% - 20px);
  width: 10px;
  height: 10px;
  content: "";
  border-top: 15px solid #3d7e21;
  border-right: 20px solid transparent;
  border-left: 20px solid transparent;
}
@media (max-width: 600px) {
  .service_flow ol li:not(:last-child) span::after {
    bottom: -5vw;
    left: calc(50% - 4.5vw);
    border-top: 3vw solid #3d7e21;
    border-right: 4.5vw solid transparent;
    border-left: 4.5vw solid transparent;
  }
}
.service_flow div > p {
  font-size: 16px;
  line-height: 1.6;
}
@media (max-width: 600px) {
  .service_flow div > p {
    margin-left: 1em;
    font-size: 3.6vw;
    text-indent: -1em;
  }
}

.service_link {
  padding-top: 100px;
  margin-top: -100px;
}
@media (max-width: 600px) {
  .service_link {
    padding-top: 70px;
    margin-top: -70px;
  }
}

.company_001 {
  margin-bottom: 48px;
}
.company_001-inner {
  display: grid;
  grid-template-rows: auto auto;
  grid-template-columns: 600px auto;
  gap: 56px 0px;
  max-width: 1300px;
  padding: 64px 24px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .company_001-inner {
    display: flex;
    flex-flow: column;
  }
}
@media (max-width: 600px) {
  .company_001-inner {
    gap: 32px;
    padding: 32px 24px;
  }
}
.company_001-header {
  grid-row: 1/2;
  grid-column: 1/2;
  align-self: end;
}
@media (max-width: 1024px) {
  .company_001-header {
    align-self: initial;
  }
}
.company_001-header .title {
  margin-bottom: 8px;
  font-size: 40px;
  font-weight: bold;
  line-height: 1.5;
  color: #438e50;
  letter-spacing: 0.05em;
}
@media (max-width: 600px) {
  .company_001-header .title {
    font-size: clamp(16px, 6vw, 30px);
  }
}
.company_001-header .message {
  font-size: 24px;
  line-height: 1.3;
  letter-spacing: 0.03em;
}
@media (max-width: 1024px) {
  .company_001-header .message {
    font-size: 20px;
  }
}
@media (max-width: 600px) {
  .company_001-header .message {
    font-size: clamp(15px, 3vw, 20px);
  }
}
.company_001-header .message br {
  display: block;
}
@media (max-width: 1024px) {
  .company_001-header .message br {
    display: none;
  }
}
@media (max-width: 600px) {
  .company_001-header .message br {
    display: block;
  }
}
.company_001-body {
  grid-row: 2/3;
  grid-column: 1/2;
}
.company_001-body .description p {
  line-height: 1.5;
}
.company_001-body .description p:not(:last-of-type) {
  margin-bottom: 24px;
}
.company_001-body .description .ceo_name {
  margin-bottom: 24px;
  font-size: 18px;
  font-weight: bold;
}
.company_001-eyecatch {
  grid-row: 1/3;
  grid-column: 2/3;
  align-self: center;
  height: 50vw;
  max-height: 700px;
  margin-left: 40px;
}
@media (max-width: 1024px) {
  .company_001-eyecatch {
    width: 100%;
    height: auto;
    max-height: 350px;
    margin-left: 0px;
    -o-object-position: left top;
    object-position: left top;
  }
}
@media (max-width: 600px) {
  .company_001-eyecatch {
    max-height: 200px;
    margin-left: 0px;
  }
}
.company_001-eyecatch img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 30px;
}

.company_002 {
  margin-bottom: 48px;
  background-color: #f7f7f7;
}
.company_002-inner {
  max-width: 1300px;
  padding: 80px 24px;
  margin: 0 auto;
}
.company_002-header {
  margin-bottom: 40px;
}
.company_002-header .title {
  margin-bottom: 8px;
  font-size: 40px;
  font-weight: bold;
  line-height: 1.5;
  color: #438e50;
  letter-spacing: 0.05em;
}
@media (max-width: 600px) {
  .company_002-header .title {
    font-size: clamp(16px, 6vw, 30px);
  }
}
.company_002-header .message {
  font-size: 24px;
  line-height: 1.3;
  letter-spacing: 0.03em;
}
@media (max-width: 1024px) {
  .company_002-header .message {
    font-size: 20px;
  }
}
@media (max-width: 600px) {
  .company_002-header .message {
    font-size: clamp(15px, 3vw, 20px);
  }
}
.company_002-body .card_list {
  display: flex;
  gap: 30px;
}
@media (max-width: 600px) {
  .company_002-body .card_list {
    flex-flow: column;
  }
}
.company_002-body .card_list li {
  position: relative;
  flex: 1;
  padding: 30px 16px;
  text-align: center;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}
.company_002-body .card_list .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background-color: #58b431;
  border-radius: 50%;
}
.company_002-body .card_list .icon img {
  width: 32px;
  height: auto;
}
.company_002-body .title {
  margin-bottom: 10px;
  font-size: 1.3rem;
  font-weight: bold;
  color: #333;
}
.company_002-body .description {
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.6;
}

.company_003 {
  margin-bottom: 48px;
}
.company_003-inner {
  max-width: 1300px;
  padding: 80px 24px;
  margin: 0 auto;
}
.company_003-header {
  margin-bottom: 40px;
}
.company_003-header .title {
  margin-bottom: 8px;
  font-size: 40px;
  font-weight: bold;
  line-height: 1.5;
  color: #438e50;
  letter-spacing: 0.05em;
}
@media (max-width: 600px) {
  .company_003-header .title {
    font-size: clamp(16px, 6vw, 30px);
  }
}
.company_003 .company_info {
  overflow: hidden;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.company_003 .company_info table {
  width: 100%;
  font-size: 16px;
  border-collapse: collapse;
}
.company_003 .company_info tr {
  border-bottom: 1px solid #ddd;
}
.company_003 .company_info tr:last-child {
  border-bottom: none;
}
.company_003 .company_info th {
  width: 30%;
  padding: 18px 20px;
  font-weight: bold;
  color: #333;
  text-align: left;
  background-color: #f9f9f9;
  border-right: 1px solid #ddd;
}
@media (max-width: 600px) {
  .company_003 .company_info th {
    padding: 12px;
    font-size: 15px;
  }
}
.company_003 .company_info td {
  width: 70%;
  padding: 18px 20px;
  line-height: 25px;
  color: #555;
}
.company_003 .company_info td ul {
  padding-left: 0;
  margin: 0;
  list-style: none;
}
.company_003 .company_info td ul li {
  position: relative;
  padding-left: 15px;
  margin-bottom: 5px;
}
.company_003 .company_info td ul li::before {
  position: absolute;
  left: 0;
  font-weight: bold;
  color: #438e50;
  content: "・";
}

.company_004 {
  margin-bottom: 104px;
}
.company_004-inner {
  display: grid;
  grid-template-rows: auto auto;
  grid-template-columns: auto 600px;
  gap: 56px 0px;
  max-width: 1300px;
  padding: 64px 24px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .company_004-inner {
    display: flex;
    flex-flow: column;
  }
}
@media (max-width: 600px) {
  .company_004-inner {
    padding: 32px 24px;
  }
}
.company_004-header {
  grid-row: 1/2;
  grid-column: 2/3;
  align-self: end;
}
@media (max-width: 1024px) {
  .company_004-header {
    align-self: initial;
  }
}
.company_004-header .title {
  font-size: 40px;
  font-weight: bold;
  line-height: 1.5;
  color: #438e50;
  letter-spacing: 0.05em;
}
@media (max-width: 600px) {
  .company_004-header .title {
    font-size: clamp(16px, 6vw, 30px);
  }
}
.company_004-body {
  grid-row: 2/3;
  grid-column: 2/3;
}
.company_004-body .description p {
  line-height: 1.5;
}
.company_004-body .description p:not(:last-of-type) {
  margin-bottom: 24px;
}
.company_004-body .description ul {
  display: flex;
  flex-flow: column;
  gap: 10px;
  margin-bottom: 24px;
}
.company_004-body .description ul li {
  margin-left: 12px;
  list-style-type: disc;
}
.company_004-eyecatch {
  grid-row: 1/3;
  grid-column: 1/2;
  align-self: center;
  height: 50vw;
  max-height: 700px;
  margin-right: 40px;
}
@media (max-width: 1024px) {
  .company_004-eyecatch {
    width: 100%;
    height: auto;
    max-height: 350px;
    margin-right: 0px;
    -o-object-position: left top;
    object-position: left top;
  }
}
@media (max-width: 600px) {
  .company_004-eyecatch {
    max-height: 250px;
    margin-left: 0px;
  }
}
.company_004-eyecatch img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 30px;
}

.business_001 {
  margin-bottom: 48px;
}
.business_001-inner {
  max-width: 1300px;
  padding: 64px 24px;
  margin: 0 auto;
}
@media (max-width: 600px) {
  .business_001-inner {
    padding: 32px 24px;
  }
}
.business_001-header {
  margin-bottom: 32px;
}
.business_001-header .title {
  font-size: 40px;
  font-weight: bold;
  line-height: 1.5;
  color: #438e50;
  letter-spacing: 0.05em;
}
@media (max-width: 600px) {
  .business_001-header .title {
    font-size: clamp(16px, 6vw, 30px);
  }
}
.business_001-header .message {
  font-size: 24px;
  line-height: 1.3;
  letter-spacing: 0.03em;
}
@media (max-width: 1024px) {
  .business_001-header .message {
    font-size: 20px;
  }
}
@media (max-width: 600px) {
  .business_001-header .message {
    font-size: clamp(15px, 3vw, 20px);
  }
}
.business_001-body .description {
  margin-bottom: 32px;
}
.business_001-body .description p {
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.03em;
}
@media (max-width: 600px) {
  .business_001-body .description p {
    font-size: 16px;
  }
}
.business_001-body .card_content {
  display: flex;
  flex-flow: row;
  flex-wrap: nowrap;
  gap: 24px;
  margin-bottom: 32px;
}
@media (max-width: 600px) {
  .business_001-body .card_content {
    flex-flow: column;
  }
}
.business_001-body .card {
  width: 50%;
  padding: 24px;
  background-color: #f3f5f6;
  border-radius: 10px;
}
@media (max-width: 600px) {
  .business_001-body .card {
    width: 100%;
  }
}
.business_001-body .card .title {
  margin-bottom: 20px;
  font-size: 20px;
  color: #303234;
}
.business_001-body .card ul {
  display: flex;
  flex-flow: column;
  flex-wrap: nowrap;
  gap: 12px;
  padding-left: 24px;
}
.business_001-body .card li {
  font-size: 16px;
  color: #4f4f51;
  letter-spacing: 0.03em;
  list-style: disc;
}
.business_001-body .merit_content .title {
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.2em 1em;
  margin: 0;
  font-size: 17px;
  font-weight: bold;
  line-height: 2;
  color: #fff;
  text-align: center;
  background: #94c37f;
  border-radius: 10px 10px 0 0;
}
.business_001-body .merit_content ul {
  display: flex;
  flex-flow: row;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  width: 100%;
  padding: 24px;
  border: 2px solid #94c37f;
  border-radius: 0 10px 10px 10px;
}
.business_001-body .merit_content ul li {
  margin-left: 20px;
  list-style-type: disc;
}

.business_002 {
  margin-bottom: 48px;
}
.business_002-inner {
  display: grid;
  grid-template-rows: auto auto;
  grid-template-columns: auto auto;
  max-width: 1300px;
  padding: 64px 24px;
  margin: 0 auto;
}
@media (max-width: 600px) {
  .business_002-inner {
    display: flex;
    flex-flow: column;
    padding: 32px 24px;
  }
}
.business_002-header {
  grid-column: 1/2;
  margin-bottom: 32px;
}
.business_002-header .title {
  font-size: 40px;
  font-weight: bold;
  line-height: 1.5;
  color: #438e50;
  letter-spacing: 0.05em;
}
@media (max-width: 600px) {
  .business_002-header .title {
    font-size: clamp(16px, 6vw, 30px);
  }
}
.business_002-header .message {
  font-size: 24px;
  line-height: 1.3;
  letter-spacing: 0.03em;
}
@media (max-width: 600px) {
  .business_002-header .message {
    font-size: clamp(15px, 3vw, 20px);
  }
}
.business_002-body {
  grid-row: 2/3;
  grid-column: 1/2;
}
.business_002-body .description {
  margin-bottom: 32px;
}
.business_002-body .description p {
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.03em;
}
@media (max-width: 600px) {
  .business_002-body .description p {
    font-size: 16px;
  }
}
.business_002-body .description .note {
  margin-top: 24px;
  color: #da1517;
}
.business_002-eyecatch {
  grid-row: 1/3;
  grid-column: 2/3;
  align-self: center;
  max-width: 400px;
  margin-left: 40px;
}
@media (max-width: 600px) {
  .business_002-eyecatch {
    margin-left: 0px;
  }
}

.business_003 {
  margin-bottom: 48px;
}
.business_003-inner {
  max-width: 1300px;
  padding: 64px 24px;
  margin: 0 auto;
}
@media (max-width: 600px) {
  .business_003-inner {
    padding: 32px 24px;
  }
}
.business_003-header {
  margin-bottom: 32px;
}
.business_003-header .title {
  font-size: 40px;
  font-weight: bold;
  line-height: 1.5;
  color: #438e50;
  letter-spacing: 0.05em;
}
@media (max-width: 600px) {
  .business_003-header .title {
    font-size: clamp(16px, 6vw, 30px);
  }
}
.business_003-body .flow_content {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}
.business_003-body .flow_list {
  padding-left: 0;
}
.business_003-body .flow_list > li {
  position: relative;
  padding: 32px;
  background: #f4f6fa;
  border-radius: 15px;
}
@media (max-width: 600px) {
  .business_003-body .flow_list > li {
    padding: 24px;
  }
}
.business_003-body .flow_list > li:not(:last-child) {
  margin-bottom: 20px;
}
.business_003-body .flow_list > li dl {
  display: flex;
  gap: 20px;
  align-items: center;
}
@media (max-width: 600px) {
  .business_003-body .flow_list > li dl {
    flex-flow: column;
    align-items: baseline;
  }
}
.business_003-body .flow_list > li dl dt {
  width: 35%;
  font-size: 20px;
  font-weight: 700;
}
@media (max-width: 600px) {
  .business_003-body .flow_list > li dl dt {
    width: 100%;
  }
}
.business_003-body .flow_list > li .number {
  margin-right: 16px;
  color: #58b431;
}
.business_003-body .flow_list > li dl dd {
  width: calc(65% - 20px);
  margin: 0;
  font-size: 17px;
  line-height: 1.5;
  letter-spacing: 0.03em;
}
@media (max-width: 600px) {
  .business_003-body .flow_list > li dl dd {
    width: 100%;
  }
}

.contact_001 {
  padding: 60px 0;
  background-color: #f8f8f8;
}

.contact_001-inner {
  max-width: 900px;
  padding: 0 20px;
  margin: 0 auto;
}

.contact_001-header {
  margin-bottom: 30px;
  text-align: center;
}

.contact_001-header .description {
  display: inline-block;
  padding: 10px 15px;
  font-size: 14px;
  line-height: 20px;
  color: #d9534f;
  text-align: center;
  border: 2px solid #d9534f;
  border-radius: 4px;
}

.contact_form {
  max-width: 800px;
  margin: 0 auto;
  font-size: 16px;
}

.contact_form dt,
.contact_form dd {
  display: block;
  width: 100%;
  margin-bottom: 0;
}

.contact_form dt {
  display: flex;
  flex-flow: row;
  align-items: center;
  font-weight: bold;
  color: #333;
  background-color: #f9f9f9;
}

.contact_form dd {
  padding-top: 15px;
  padding-bottom: 15px;
}

.contact_form dd:not(:last-of-type) {
  margin-bottom: 24px;
}

.contact_form dt:has(input[aria-required=true])::after {
  display: inline-block;
  padding: 3px 6px;
  margin-left: 10px;
  font-size: 12px;
  font-weight: normal;
  line-height: 12px;
  vertical-align: middle;
  color: #fff;
  content: "必須";
  background-color: #d9534f;
  border-radius: 3px;
}

.contact_form input:not([type=submit]):not([type=radio]):not([type=checkbox]),
.contact_form textarea {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  line-height: 20px;
  border: 1px solid #ccc;
  border-radius: 4px;
  transition: border-color 0.3s;
}

.contact_form input:focus,
.contact_form textarea:focus {
  outline: none;
  border-color: #438e50;
}

.contact_form dd span.wpcf7-list-item {
  margin-right: 20px;
}

.contact_form dd input[type=radio],
.contact_form dd input[type=checkbox] {
  margin-right: 5px;
}

.contact_form input[type=submit] {
  display: block;
  width: 100%;
  max-width: 300px;
  padding: 15px 20px;
  margin: 30px auto 0 auto;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  cursor: pointer;
  background-color: #438e50;
  border: none;
  border-radius: 4px;
  transition: background-color 0.3s;
}

.contact_form input[type=submit]:hover {
  background-color: #387844;
}

.contact_form input:not([type=submit]):not([type=radio]):not([type=checkbox]),
.contact_form textarea,
.contact_form select {
  box-sizing: border-box;
  width: 100%;
  padding: 10px;
  font-size: 16px;
  line-height: 20px;
  border: 1px solid #ccc;
  border-radius: 4px;
  transition: border-color 0.3s;
}

.contact_form select {
  height: 42px;
  padding-right: 30px;
  line-height: 20px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23666' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 14px;
}

.contact_form input:focus,
.contact_form textarea:focus,
.contact_form select:focus {
  outline: none;
  border-color: #438e50;
}

.contact_form input::-moz-placeholder, .contact_form textarea::-moz-placeholder {
  color: #adadad;
}

.contact_form input::placeholder,
.contact_form textarea::placeholder {
  color: #adadad;
}

.contact_form .required {
  padding: 4px 6px;
  margin-left: 10px;
  font-size: 11px;
  font-weight: normal;
  line-height: 1;
  color: #ffffff;
  text-align: center;
  letter-spacing: 0.1em;
  background-color: #d9534f;
}

.contact_form .note_content {
  display: flex;
  flex-flow: column;
  gap: 16px;
  padding: 24px;
  background-color: #ececec;
}

.contact_002 {
  margin-bottom: 48px;
}
.contact_002-inner {
  display: grid;
  grid-template-rows: auto auto;
  grid-template-columns: 600px auto;
  gap: 56px 0px;
  max-width: 1300px;
  padding: 64px 24px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .contact_002-inner {
    display: flex;
    flex-flow: column;
  }
}
@media (max-width: 600px) {
  .contact_002-inner {
    gap: 32px;
    padding: 32px 24px;
  }
}
.contact_002-header {
  grid-row: 1/2;
  grid-column: 1/2;
  align-self: end;
}
@media (max-width: 1024px) {
  .contact_002-header {
    align-self: initial;
  }
}
.contact_002-header .title {
  margin-bottom: 8px;
  font-size: 40px;
  font-weight: bold;
  line-height: 1.5;
  color: #438e50;
  letter-spacing: 0.05em;
}
@media (max-width: 600px) {
  .contact_002-header .title {
    font-size: clamp(16px, 6vw, 30px);
  }
}
.contact_002-header .message {
  font-size: 22px;
  line-height: 1.3;
  letter-spacing: 0.03em;
}
@media (max-width: 1024px) {
  .contact_002-header .message {
    font-size: 20px;
  }
}
@media (max-width: 600px) {
  .contact_002-header .message {
    font-size: clamp(15px, 3vw, 20px);
  }
}
.contact_002-header .message br {
  display: block;
}
@media (max-width: 1024px) {
  .contact_002-header .message br {
    display: none;
  }
}
@media (max-width: 600px) {
  .contact_002-header .message br {
    display: block;
  }
}
.contact_002-body {
  grid-row: 2/3;
  grid-column: 1/2;
}
.contact_002-body .tel_number {
  display: inline-block;
  margin-bottom: 32px;
  font-size: 56px;
  font-weight: bold;
  color: #58b431;
}
@media (max-width: 600px) {
  .contact_002-body .tel_number {
    font-size: 40px;
  }
}
.contact_002-body .opening_hour {
  margin-bottom: 32px;
  font-size: 22px;
}
.contact_002-body .description p {
  line-height: 1.5;
}
.contact_002-body .description p:not(:last-of-type) {
  margin-bottom: 24px;
}
.contact_002-body .description .note {
  color: #da1517;
}
.contact_002-eyecatch {
  grid-row: 1/3;
  grid-column: 2/3;
  align-self: center;
  height: 50vw;
  max-height: 700px;
  margin-left: 40px;
}
@media (max-width: 1024px) {
  .contact_002-eyecatch {
    width: 100%;
    height: auto;
    max-height: 350px;
    margin-left: 0px;
    -o-object-position: left top;
    object-position: left top;
  }
}
@media (max-width: 600px) {
  .contact_002-eyecatch {
    max-height: 200px;
    margin-left: 0px;
  }
}
.contact_002-eyecatch img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 30px;
}
/*# sourceMappingURL=style.css.map */