@charset "UTF-8";
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html, body {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  color: rgb(73, 70, 60);
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  html, body {
    font-size: 14.4px;
  }
}
@media screen and (max-width: 374px) {
  html, body {
    font-size: 12.8px;
  }
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
  font-size: 1rem;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
  padding: 0;
}

.select-wrap {
  position: relative;
}
.select-wrap::after {
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  z-index: 2;
  width: 15px;
  height: 10px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  pointer-events: none;
  background-color: rgb(231, 231, 231);
}

input[type=submit],
button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  border: none;
  outline: none;
  border: 1px solid rgb(190, 190, 190);
  padding: 10px;
  border-radius: 5px;
}

section {
  padding: 150px 0;
}
@media screen and (max-width: 767px) {
  section {
    padding: 100px 0;
  }
}
section.section-bottom {
  padding-bottom: 0;
}

.contents-wrapper {
  width: calc(100% - 100px);
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .contents-wrapper {
    width: calc(100% - 40px);
  }
}
.contents-wrapper.mini {
  max-width: 1075px;
}
.contents-wrapper.big {
  width: 100%;
  max-width: 1550px;
}

.ipad-block {
  display: none;
}
@media (max-width: 1023px) {
  .ipad-block {
    display: block;
  }
}

@media (max-width: 1023px) {
  .ipad-none {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}
.main-contents {
  text-align: left;
  word-wrap: break-word;
  line-height: 200%;
}
.main-contents p:not(:last-child) {
  margin-bottom: 15px;
}
.main-contents img:not(.emoji) {
  width: 50% !important;
  height: auto !important;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .main-contents img:not(.emoji) {
    width: 100% !important;
  }
}

.left-float {
  float: left;
}

.right-float {
  float: right;
}

.clear {
  clear: both;
}

img, iframe {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

a {
  text-decoration: none;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

a:hover {
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.color-black {
  color: rgb(0, 0, 0);
}

.color-white {
  color: rgb(255, 255, 255);
}

table {
  width: 100%;
  margin: 0 auto;
  border-collapse: collapse;
  border-spacing: 0;
}

.block-item {
  display: block;
}

.inlineblock-item {
  display: inline-block;
}

.inline-item {
  display: inline;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.right-flex {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.white-space {
  white-space: nowrap;
}

figure {
  margin: 0;
  padding: 0;
}

.bg-title {
  margin: 0 auto 30px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-family: "Zen Maru Gothic", sans-serif;
  padding: 10px 30px;
  border-radius: 10px;
  font-size: 2rem;
  font-weight: 500;
  background-color: rgb(213, 227, 164);
}
@media screen and (max-width: 767px) {
  .bg-title {
    padding: 10px;
    font-size: 1.5rem;
  }
}

.yellow-dot-title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
}
.yellow-dot-title::before {
  content: "";
  display: inline-block;
  width: 12px;
  aspect-ratio: 1/1;
  background-color: rgb(239, 204, 40);
  border-radius: 50%;
  margin-right: 10px;
}
.yellow-dot-title.big {
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .yellow-dot-title.big {
    font-size: 1.8rem;
  }
}
.yellow-dot-title.big::before {
  margin-bottom: 4px;
}
.yellow-dot-title.center {
  text-align: center;
}
.yellow-dot-title.small {
  font-size: 1.1rem;
}
@media screen and (max-width: 767px) {
  .yellow-dot-title.small {
    font-size: 1rem;
  }
}

.grow-point-title {
  margin-bottom: 50px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  text-align: center;
}
.grow-point-title .big {
  margin-top: 30px;
  display: block;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .grow-point-title .big {
    font-size: 1.5rem;
  }
}

.white-icon-title {
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  color: rgb(255, 255, 255);
  font-size: 3rem;
  text-transform: capitalize;
}
.white-icon-title::before {
  content: "";
  display: inline-block;
  width: 45px;
  aspect-ratio: 1/1;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background-color: rgb(255, 255, 255);
  vertical-align: middle;
  margin-right: 5px;
}
.white-icon-title span {
  vertical-align: middle;
}
.white-icon-title.blog::before {
  -webkit-mask-image: url("../../images/menu-icon/blog.svg");
          mask-image: url("../../images/menu-icon/blog.svg");
}
.white-icon-title.instagram::before {
  -webkit-mask-image: url("../../images/menu-icon/instagram.svg");
          mask-image: url("../../images/menu-icon/instagram.svg");
}

.other-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px 30px;
}
.other-btn .btn-link {
  min-width: 200px;
  font-family: "Zen Maru Gothic", sans-serif;
}
.other-btn .btn-link p {
  text-align: center;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  margin-bottom: 5px;
}
.other-btn .btn-link a {
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 5px;
  gap: 20px;
  border: 1px solid;
}
.other-btn .btn-link .text {
  display: block;
  margin: auto;
}
.other-btn .btn-link a.contact {
  background-color: rgb(239, 204, 40);
  color: rgb(73, 70, 60);
  border-color: rgb(239, 204, 40);
}
.other-btn .btn-link a.contact .icon-box::before {
  width: 40px;
  -webkit-mask-image: url("../../images/menu-icon/mail.svg");
          mask-image: url("../../images/menu-icon/mail.svg");
  background-color: rgb(73, 70, 60);
}
@media screen and (max-width: 1415px) {
  .other-btn .btn-link a.contact .icon-box::before {
    width: 25px;
  }
}
.other-btn .btn-link a.contact:hover {
  background-color: rgb(255, 246, 206);
}
.other-btn .btn-link a.line {
  border-color: rgb(6, 199, 85);
  color: rgb(255, 255, 255);
  background-color: rgb(6, 199, 85);
}
.other-btn .btn-link a.line:hover {
  background-color: rgb(29, 106, 54);
}
.other-btn .btn-link a.line img {
  width: 40px;
}
@media screen and (max-width: 1415px) {
  .other-btn .btn-link a.line img {
    width: 25px;
  }
}

.link-wrapper {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px 65px;
}
.link-wrapper .yellow-btn {
  margin: 0;
}

.yellow-btn {
  display: block;
  font-family: "Zen Maru Gothic", sans-serif;
  background-color: rgb(239, 204, 40);
  border: 1px solid rgb(239, 204, 40);
  border-radius: 50px;
  color: rgb(73, 70, 60);
  padding: 10px;
  font-size: 1.35rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 280px;
  text-align: center;
  margin: 70px auto 0;
}
@media screen and (max-width: 767px) {
  .yellow-btn {
    margin-top: 40px;
  }
}
.yellow-btn:hover {
  background-color: rgb(255, 246, 206);
}

.litalico-link {
  display: block;
  margin-top: 100px;
  max-width: 995px;
  width: 90%;
  margin: 100px auto 0;
}
@media screen and (max-width: 767px) {
  .litalico-link {
    width: 100%;
  }
}
.litalico-link:hover {
  -webkit-box-shadow: 5px 5px 5px rgba(29, 105, 54, 0.5);
          box-shadow: 5px 5px 5px rgba(29, 105, 54, 0.5);
}

.drawer.drawer--top .sp-navigation {
  display: none;
}
@media screen and (max-width: 1120px) {
  .drawer.drawer--top .sp-navigation {
    display: block;
  }
}
.drawer.drawer--top .drawer-hamburger {
  position: relative;
  padding: 0;
  padding: 20px 20px 30px;
  background-color: rgb(134, 171, 0);
}
@media screen and (max-width: 767px) {
  .drawer.drawer--top .drawer-hamburger {
    border-radius: 50%;
    padding: 10px 7px 20px;
  }
}
.drawer.drawer--top .drawer-hamburger .drawer-hamburger-icon {
  width: 30px;
  background-color: transparent;
}
@media screen and (max-width: 767px) {
  .drawer.drawer--top .drawer-hamburger .drawer-hamburger-icon {
    width: 17px;
    margin-inline: auto;
  }
}
.drawer.drawer--top .drawer-hamburger .drawer-hamburger-icon::before, .drawer.drawer--top .drawer-hamburger .drawer-hamburger-icon::after {
  background-color: rgb(255, 255, 255);
}
.drawer.drawer--top .drawer-hamburger .drawer-hamburger-icon::before {
  top: -5px;
}
@media screen and (max-width: 767px) {
  .drawer.drawer--top .drawer-hamburger .drawer-hamburger-icon::before {
    top: -3px;
  }
}
.drawer.drawer--top .drawer-hamburger .drawer-hamburger-icon::after {
  top: 5px;
}
@media screen and (max-width: 767px) {
  .drawer.drawer--top .drawer-hamburger .drawer-hamburger-icon::after {
    top: 3px;
  }
}
.drawer.drawer--top nav.drawer-nav {
  padding: 0 50px;
  max-height: calc(100vh - 92px);
  top: 82px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  max-height: 0;
  width: calc(100% - 20px);
  border-radius: 10px;
  overflow: scroll;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  z-index: 10000;
}
@media screen and (max-width: 767px) {
  .drawer.drawer--top nav.drawer-nav {
    padding: 0 20px;
  }
}
.drawer.drawer--top nav.drawer-nav .bg {
  position: absolute;
  bottom: 30px;
  width: 50%;
  right: 0;
  z-index: -1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 20px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .drawer.drawer--top nav.drawer-nav .bg {
    width: 95%;
  }
}
.drawer.drawer--top nav.drawer-nav .bg .small {
  margin-bottom: 35px;
  width: 30%;
}
.drawer.drawer--top nav.drawer-nav .bg .big {
  width: calc(70% - 20px);
}
.drawer.drawer--top nav.drawer-nav .header-menu {
  padding-top: 50px;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 10px;
}
.drawer.drawer--top nav.drawer-nav .header-menu li {
  width: calc((100% - 10px) / 2);
}
.drawer.drawer--top nav.drawer-nav .sub-menu {
  display: none;
}
.drawer.drawer--top nav.drawer-nav .menu-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  color: rgb(73, 70, 60);
  font-family: "Zen Maru Gothic", sans-serif;
}
.drawer.drawer--top nav.drawer-nav .menu-link .icon-box {
  width: 65px;
  aspect-ratio: 65/51;
  background-color: rgb(220, 234, 188);
  border: 1px solid rgb(84, 73, 58);
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media screen and (max-width: 1285px) {
  .drawer.drawer--top nav.drawer-nav .menu-link .icon-box {
    width: 50px;
  }
}
@media screen and (max-width: 767px) {
  .drawer.drawer--top nav.drawer-nav .menu-link .icon-box {
    width: 40px;
  }
}
.drawer.drawer--top nav.drawer-nav .tel-box {
  margin: 0 auto 30px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.drawer.drawer--top nav.drawer-nav .other-btn {
  padding-bottom: 50px;
}
.drawer.drawer--top.drawer-open header {
  border-radius: 10px;
}
.drawer.drawer--top.drawer-open .drawer-hamburger-icon::before, .drawer.drawer--top.drawer-open .drawer-hamburger-icon::after {
  top: 0;
}
.drawer.drawer--top.drawer-open nav.drawer-nav {
  max-height: 100%;
}
.drawer.drawer--top.drawer-open .page-name {
  display: none;
}

.hovercontent {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.4s ease;
  transition: max-height 0.4s ease;
}

.hovertrigger:hover .hovercontent {
  max-height: var(--max-height);
}

.footer-menu-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 50px;
}
@media screen and (max-width: 1023px) {
  .footer-menu-box {
    display: none;
  }
}
.footer-menu-box li:not(:last-child) {
  margin-bottom: 10px;
}
.footer-menu-box a {
  color: rgb(73, 70, 60);
}
.footer-menu-box a::before {
  content: "";
  display: inline-block;
  width: 5px;
  aspect-ratio: 1/1;
  background-color: rgb(255, 255, 255);
  border-radius: 50%;
  vertical-align: middle;
  margin-right: 10px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.footer-menu-box a:hover::before {
  background-color: rgb(29, 105, 54);
}
.footer-menu-box a span {
  vertical-align: middle;
}

.dot-list li:not(:last-child) {
  margin-bottom: 5px;
}
.dot-list li::before {
  content: "";
  display: inline-block;
  width: 5px;
  aspect-ratio: 1/1;
  background-color: rgb(239, 204, 40);
  border-radius: 50%;
  vertical-align: middle;
  margin-right: 10px;
}
.dot-list li span {
  vertical-align: middle;
}
.dot-list.white li:before {
  background-color: rgb(255, 255, 255);
}

.blog-list li:not(:last-child) {
  margin-bottom: 40px;
}
@media screen and (max-width: 1023px) {
  .blog-list li:not(:last-child) {
    margin-bottom: 20px;
  }
}
.blog-list a {
  color: rgb(73, 70, 60);
  padding: 20px 35px;
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgb(255, 255, 255);
}
.blog-list a:hover .link-arrow {
  background-color: rgb(255, 255, 255);
}
.blog-list a:hover .link-arrow::before {
  background-color: rgb(160, 188, 58);
}
.blog-list .time {
  font-family: "Montserrat", sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: rgb(106, 106, 106);
}
.blog-list .title {
  font-size: 1.1rem;
}
.blog-list .title span {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.blog-list .link-arrow {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.blog-list.top {
  width: calc(100% - 80px - 165px);
}
@media screen and (max-width: 1023px) {
  .blog-list.top {
    width: 100%;
  }
}
.blog-list.top a {
  gap: 5px 20px;
}
@media screen and (max-width: 767px) {
  .blog-list.top a {
    position: relative;
    padding-inline: 20px 50px;
  }
}
.blog-list.top .title {
  width: calc(100% - 40px - 120px - 34px);
}
@media screen and (max-width: 767px) {
  .blog-list.top .title {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .blog-list.top .link-arrow {
    position: absolute;
    top: 50%;
    right: 10px;
    -webkit-transform: translateY(-50%) rotate(90deg);
            transform: translateY(-50%) rotate(90deg);
  }
}
.blog-list.archive a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .blog-list.archive a {
    gap: 30px 10px;
    padding: 20px;
  }
}
.blog-list.archive .image-box {
  width: 35%;
}
@media screen and (max-width: 767px) {
  .blog-list.archive .image-box {
    width: 100%;
  }
}
.blog-list.archive .time {
  display: block;
  margin-bottom: 10px;
}
.blog-list.archive .title {
  font-size: 1.2rem;
  font-weight: 700;
}
.blog-list.archive .text-box {
  width: calc(65% - 60px - 35px);
}
@media screen and (max-width: 767px) {
  .blog-list.archive .text-box {
    width: calc(100% - 35px - 10px);
  }
}

.wp-pagenavi {
  margin-top: 50px;
  text-align: center;
}
.wp-pagenavi a, .wp-pagenavi span {
  display: inline-block;
  border: none;
  outline: none;
  color: rgb(73, 70, 60);
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}
.wp-pagenavi a.current, .wp-pagenavi span.current {
  color: rgb(134, 171, 0);
}
.wp-pagenavi a:hover {
  color: rgb(134, 171, 0);
}
.wp-pagenavi .nextpostslink,
.wp-pagenavi .previouspostslink {
  width: 20px;
  background-color: rgb(134, 171, 0);
  clip-path: polygon(0 50%, 100% 0, 100% 100%);
}
.wp-pagenavi .nextpostslink:hover,
.wp-pagenavi .previouspostslink:hover {
  background-color: rgb(255, 255, 255);
}
.wp-pagenavi .previouspostslink {
  margin-right: 15px;
}
.wp-pagenavi .nextpostslink {
  margin-left: 15px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

html {
  background-color: rgb(205, 226, 156);
}

.hidden {
  overflow: hidden;
}

header {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  padding-left: 30px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 100000;
}
@media screen and (max-width: 1120px) {
  header {
    gap: 0;
    padding-left: 0;
    width: calc(100% - 20px);
    margin: 10px 10px 0;
    border-radius: 10px;
    overflow: hidden;
    background-color: rgb(255, 255, 255);
  }
}
@media screen and (max-width: 767px) {
  header {
    padding: 10px 10px 10px 0;
  }
}
header.page {
  position: absolute;
  background-color: rgb(255, 255, 255);
}
header.page .pc-menu .sub-menu {
  background-color: rgb(255, 255, 255);
}
header.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgb(255, 255, 255);
}
@media screen and (max-width: 1120px) {
  header.is-fixed {
    border-radius: 10px 10px 0 0;
  }
  header.is-fixed + .page-name {
    position: fixed;
    top: 72px;
    left: 10px;
    width: calc(100% - 20px);
    display: block;
  }
}
header.is-fixed .pc-menu .sub-menu {
  background-color: rgb(255, 255, 255);
}
@media screen and (max-width: 1120px) {
  header .pc-menu {
    margin-left: auto;
  }
}
header .pc-menu .header-menu-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  height: 100%;
  gap: 20px;
}
header .pc-menu .header-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 10px;
}
@media screen and (max-width: 1285px) {
  header .pc-menu .header-menu {
    gap: 20px;
  }
}
@media screen and (max-width: 1120px) {
  header .pc-menu .header-menu {
    display: none;
  }
}
header .pc-menu .header-menu li {
  position: relative;
  height: 100%;
  min-width: 110px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1285px) {
  header .pc-menu .header-menu li {
    min-width: 75px;
    font-size: 0.9rem;
  }
}
header .pc-menu .header-menu a.current, header .pc-menu .header-menu a:hover {
  color: rgb(29, 105, 54);
}
header .pc-menu .header-menu a.current .icon-box, header .pc-menu .header-menu a:hover .icon-box {
  border-color: rgb(29, 105, 54);
}
header .pc-menu .header-menu a.current .icon-box::before, header .pc-menu .header-menu a:hover .icon-box::before {
  background-color: rgb(29, 105, 54);
}
header .pc-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  text-align: left;
  width: 100%;
  background-color: rgb(205, 226, 156);
}
header .pc-menu .sub-menu li:first-child {
  padding-top: 10px;
}
header .pc-menu .sub-menu li:last-child {
  padding-bottom: 10px;
}
header .pc-menu .tel-box {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}
@media screen and (max-width: 1145px) {
  header .pc-menu .tel-box .number {
    font-size: 1.2rem;
  }
  header .pc-menu .tel-box .icon-box::before {
    width: 25px;
  }
}
@media screen and (max-width: 767px) {
  header .pc-menu .tel-box {
    display: none;
  }
}
header .pc-menu a {
  color: rgb(73, 70, 60);
  font-family: "Zen Maru Gothic", sans-serif;
  text-align: center;
  display: block;
}
header .pc-menu .menu-link .icon-box {
  width: 65px;
  aspect-ratio: 65/51;
  background-color: rgb(220, 234, 188);
  border: 1px solid rgb(84, 73, 58);
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: auto;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media screen and (max-width: 1285px) {
  header .pc-menu .menu-link .icon-box {
    width: 50px;
  }
}
header .pc-menu .other-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  height: 100%;
  width: 190px;
  gap: 0;
}
@media screen and (max-width: 1415px) {
  header .pc-menu .other-btn {
    width: 60px;
  }
}
@media screen and (max-width: 1120px) {
  header .pc-menu .other-btn {
    width: 150px;
  }
}
@media screen and (max-width: 767px) {
  header .pc-menu .other-btn {
    display: none;
  }
}
header .pc-menu .other-btn .btn-link {
  width: 50%;
  min-width: auto;
  height: 100%;
}
@media screen and (max-width: 1415px) {
  header .pc-menu .other-btn .btn-link {
    width: 100%;
    height: 50%;
  }
}
@media screen and (max-width: 1120px) {
  header .pc-menu .other-btn .btn-link {
    height: 100%;
    width: 50%;
  }
}
header .pc-menu .other-btn .btn-link p {
  display: none;
}
header .pc-menu .other-btn .btn-link a {
  width: 100%;
  height: 100%;
  border-radius: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header .pc-menu .other-btn .btn-link a.contact .icon-box::before {
  background-color: rgb(255, 255, 255);
}
header .pc-menu .other-btn .btn-link a.contact:hover .icon-box::before {
  background-color: rgb(73, 70, 60);
}
header .pc-menu .other-btn .text {
  display: none;
}

@media screen and (max-width: 1120px) {
  .header-logo .icon {
    display: none;
  }
}
.header-logo .side {
  display: none;
}
@media screen and (max-width: 1120px) {
  .header-logo .side {
    display: block;
  }
}
.header-logo img {
  height: 100px;
  width: auto;
}
@media screen and (max-width: 1120px) {
  .header-logo img {
    height: 60px;
  }
}
@media screen and (max-width: 767px) {
  .header-logo img {
    height: 45px;
  }
}

.icon-box::before {
  content: "";
  -webkit-transition: 0.5s;
  transition: 0.5s;
  display: block;
  margin: auto;
  width: 60%;
  aspect-ratio: 1/1;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background-color: rgb(73, 70, 60);
}
.icon-box.home::before {
  -webkit-mask-image: url("../../images/menu-icon/home.svg");
          mask-image: url("../../images/menu-icon/home.svg");
}
.icon-box.growpoint::before {
  -webkit-mask-image: url("../../images/menu-icon/growpoint.svg");
          mask-image: url("../../images/menu-icon/growpoint.svg");
}
.icon-box.information::before {
  -webkit-mask-image: url("../../images/menu-icon/information.svg");
          mask-image: url("../../images/menu-icon/information.svg");
}
.icon-box.staff::before {
  -webkit-mask-image: url("../../images/menu-icon/staff.svg");
          mask-image: url("../../images/menu-icon/staff.svg");
}
.icon-box.voice::before {
  -webkit-mask-image: url("../../images/menu-icon/voice.svg");
          mask-image: url("../../images/menu-icon/voice.svg");
}
.icon-box.cases::before {
  -webkit-mask-image: url("../../images/menu-icon/cases.svg");
          mask-image: url("../../images/menu-icon/cases.svg");
}
.icon-box.blog::before {
  -webkit-mask-image: url("../../images/menu-icon/blog.svg");
          mask-image: url("../../images/menu-icon/blog.svg");
}

.tel-box a {
  color: rgb(73, 70, 60);
}
.tel-box a:hover {
  color: rgb(29, 105, 54);
}
.tel-box a:hover .icon-box::before {
  background-color: rgb(29, 105, 54);
}
.tel-box .number {
  gap: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 600;
  font-size: 1.4rem;
  font-family: "Montserrat", sans-serif;
}
.tel-box .number.icon-box::before {
  width: 30px;
  margin: 0;
  -webkit-mask-image: url("../../images/menu-icon/tel.svg");
          mask-image: url("../../images/menu-icon/tel.svg");
}
.tel-box .time {
  display: block;
  text-align: right;
  font-weight: 400;
  font-size: 0.7rem;
  font-family: "Noto Sans JP", sans-serif;
}

@media screen and (max-width: 767px) {
  .header-page-top {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    width: 42px;
    aspect-ratio: 1/1;
    background-color: rgb(236, 243, 210);
    color: rgb(160, 188, 58);
    border-radius: 50%;
    text-transform: capitalize;
    font-family: "Montserrat", sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    margin-right: 10px;
  }
  .header-page-top::before {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    content: "";
    display: block;
    width: 25px;
    aspect-ratio: 2/1;
    background-color: rgb(255, 255, 255);
    clip-path: polygon(50% 0, 100% 100%, 0 100%);
  }
  .header-page-top span {
    position: relative;
    z-index: 2;
  }
}

.page-name {
  display: none;
  padding: 10px;
  text-align: center;
  font-size: 0.9rem;
  background-color: rgb(239, 204, 40);
  border-radius: 0 0 10px 10px;
  z-index: 100;
}

.footer {
  position: relative;
}
@media screen and (max-width: 767px) {
  .footer {
    padding-top: 100px;
  }
}
.footer .big-leaf-green {
  position: absolute;
  z-index: -1;
  top: 0;
  -webkit-transform: translateY(-20%) rotate(5deg);
          transform: translateY(-20%) rotate(5deg);
  right: -31%;
}
@media screen and (max-width: 767px) {
  .footer .big-leaf-green {
    -webkit-transform: translateY(-10%) rotate(5deg);
            transform: translateY(-10%) rotate(5deg);
  }
}
.footer .footer-wrapper {
  padding-top: 180px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-position: top;
  background-image: url("../../images/footer-bg.png");
}

.footer-icon {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -70%);
          transform: translate(-50%, -70%);
  width: 150px;
}
@media screen and (max-width: 767px) {
  .footer-icon {
    -webkit-transform: translate(-50%, -20%);
            transform: translate(-50%, -20%);
  }
}

.footer-info-wrapper {
  margin-bottom: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -ms-flex-direction: row-reverse;
      flex-direction: row-reverse;
  gap: 100px 40px;
}
@media screen and (max-width: 767px) {
  .footer-info-wrapper {
    gap: 50px;
    margin-bottom: 50px;
  }
}
.footer-info-wrapper .footer-contact-wrapper {
  width: 50%;
  background-color: rgb(255, 255, 255);
  padding: 50px 25px;
  border-radius: 20px;
}
@media screen and (max-width: 1023px) {
  .footer-info-wrapper .footer-contact-wrapper {
    width: 100%;
    max-width: 535px;
    margin: auto;
  }
}
.footer-info-wrapper .tel-box {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 30px;
}
.footer-info-wrapper .tel-box .number {
  font-size: 3rem;
}
@media screen and (max-width: 767px) {
  .footer-info-wrapper .tel-box .number {
    font-size: 2.5rem;
  }
}
.footer-info-wrapper .tel-box .number::before {
  width: 40px;
}
@media screen and (max-width: 767px) {
  .footer-info-wrapper .tel-box .number::before {
    width: 30px;
  }
}
.footer-info-wrapper .tel-box .time {
  font-size: 1rem;
  text-align: center;
}
@media screen and (max-width: 1110px) {
  .footer-info-wrapper .other-btn {
    gap: 10px;
  }
}
.footer-info-wrapper .btn-link {
  width: calc((100% - 30px) / 2);
}
@media screen and (max-width: 1110px) {
  .footer-info-wrapper .btn-link {
    width: calc((100% - 10px) / 2);
  }
}
@media screen and (max-width: 767px) {
  .footer-info-wrapper .btn-link {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.footer-info-wrapper .btn-link a {
  font-size: 1.4rem;
}
@media screen and (max-width: 1220px) {
  .footer-info-wrapper .btn-link a {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 1050px) {
  .footer-info-wrapper .btn-link a {
    font-size: 1rem;
  }
}
.footer-info-wrapper .btn-link a.line img,
.footer-info-wrapper .btn-link a .contact.icon-box::before {
  margin: 0;
  width: 35px;
}
@media screen and (max-width: 1110px) {
  .footer-info-wrapper .btn-link a.line img,
  .footer-info-wrapper .btn-link a .contact.icon-box::before {
    width: 30px;
  }
}

.footer-access-wrapper {
  width: calc(50% - 40px);
}
@media screen and (max-width: 1023px) {
  .footer-access-wrapper {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 20px 10px;
  }
}
.footer-access-wrapper .address {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .footer-access-wrapper .address {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 1023px) {
  .footer-access-wrapper .text-box {
    width: 50%;
  }
}
@media screen and (max-width: 767px) {
  .footer-access-wrapper .text-box {
    width: 100%;
  }
}
.footer-access-wrapper .google-map {
  height: 230px;
  border-radius: 20px;
}
@media screen and (max-width: 1023px) {
  .footer-access-wrapper .google-map {
    width: calc(50% - 10px);
  }
}
@media screen and (max-width: 767px) {
  .footer-access-wrapper .google-map {
    width: 100%;
  }
}

.footer-company-name {
  font-size: 4rem;
  font-family: "Zen Maru Gothic", sans-serif;
  color: rgb(29, 105, 54);
  font-weight: 500;
}
@media screen and (max-width: 1110px) {
  .footer-company-name {
    font-size: 3rem;
  }
}
@media screen and (max-width: 1023px) {
  .footer-company-name {
    font-size: 2.8rem;
  }
}

.footer-menu-wrapper {
  margin-bottom: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
}
@media screen and (max-width: 1023px) {
  .footer-menu-wrapper {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-right: 50px;
  }
}
@media screen and (max-width: 767px) {
  .footer-menu-wrapper {
    padding-right: 0;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.footer-menu-wrapper .logo-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.footer-menu-wrapper .footer-logo {
  width: 280px;
}
.footer-menu-wrapper .instagram {
  margin-top: 15px;
  display: block;
  width: 30px;
}

.copy-right {
  padding: 20px 0;
  background-color: rgb(134, 171, 0);
  color: rgb(255, 255, 255);
  font-size: 0.9rem;
}
.copy-right .contents-wrapper {
  position: relative;
}
.copy-right .contents-wrapper > span {
  margin-right: 30px;
}
.copy-right a {
  color: rgb(255, 255, 255);
}
.copy-right a:hover {
  color: rgb(29, 105, 54);
}

a.footer-page-top {
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transform: translateY(calc(-50% - 20px));
          transform: translateY(calc(-50% - 20px));
  width: 65px;
  aspect-ratio: 1/1;
  background-color: rgb(255, 255, 255);
  color: rgb(160, 188, 58);
  text-transform: capitalize;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  -ms-flex-direction: column;
      flex-direction: column;
}
@media screen and (max-width: 767px) {
  a.footer-page-top {
    width: 45px;
  }
}
a.footer-page-top::before {
  content: "";
  display: block;
  width: 15px;
  aspect-ratio: 2/1;
  background-color: rgb(239, 204, 40);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.link-arrow {
  display: block;
  width: 35px;
  aspect-ratio: 1/1;
  background-color: rgb(160, 188, 58);
  border-radius: 50%;
  padding: 12px 5px 4px;
  pointer-events: none;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border: 1px solid rgb(160, 188, 58);
}
.link-arrow::before {
  content: "";
  display: block;
  margin: auto;
  width: 80%;
  aspect-ratio: 2/1;
  background-color: rgb(255, 255, 255);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.fv-section {
  position: relative;
  padding: 0;
}
@media screen and (max-width: 1023px) {
  .fv-section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    flex-direction: column-reverse;
    padding-top: 50px;
  }
}
.fv-section .contents-wrapper {
  position: absolute;
  left: 50%;
  bottom: 100px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 1250px) {
  .fv-section .contents-wrapper {
    bottom: 50px;
  }
}
@media screen and (max-width: 1023px) {
  .fv-section .contents-wrapper {
    position: static;
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}

.bg-image {
  position: relative;
  width: 70%;
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (max-width: 1023px) {
  .bg-image {
    width: 100%;
  }
}
.bg-image .left {
  margin-bottom: 70px;
  width: 55%;
}
@media screen and (max-width: 767px) {
  .bg-image .left {
    position: absolute;
    z-index: 1;
    left: 20px;
    width: 50%;
    bottom: 0;
    margin-bottom: 40px;
  }
}
.bg-image .right {
  width: 45%;
}
@media screen and (max-width: 767px) {
  .bg-image .right {
    width: 80%;
    margin-right: 0;
    -webkit-transform: translateX(10%);
            transform: translateX(10%);
  }
}
.bg-image .deco {
  position: absolute;
  top: 50px;
  left: 50%;
  width: 27%;
}

.fv-company-name {
  position: relative;
  margin-bottom: 30px;
  color: rgb(29, 105, 54);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.fv-company-name .deco {
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transform: translateY(-60%);
          transform: translateY(-60%);
  width: 110px;
}
.fv-company-name .small {
  font-size: 1.4rem;
}
.fv-company-name .big {
  display: block;
  line-height: 1em;
  font-size: 7rem;
}
@media screen and (max-width: 1250px) {
  .fv-company-name .big {
    font-size: 6rem;
  }
}
@media screen and (max-width: 1023px) {
  .fv-company-name .big {
    font-size: 5rem;
  }
}
@media screen and (max-width: 767px) {
  .fv-company-name .big {
    font-size: 3rem;
  }
}

.fv-message {
  font-size: 2rem;
}
@media screen and (max-width: 1023px) {
  .fv-message {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  .fv-message {
    font-size: 1.3rem;
  }
}

.top-grow-point-section {
  position: relative;
}
.top-grow-point-section .bg-image {
  position: absolute;
}
.top-grow-point-section .bg-image.big {
  bottom: 0;
  right: -5%;
  max-width: 1160px;
}
@media screen and (max-width: 1023px) {
  .top-grow-point-section .bg-image.big {
    width: 75%;
  }
}
@media screen and (max-width: 767px) {
  .top-grow-point-section .bg-image.big {
    bottom: 90px;
    width: 100%;
    right: -17%;
  }
}
.top-grow-point-section .bg-image.small {
  width: 30%;
  left: 0;
  bottom: 150px;
  max-width: 700px;
}
@media screen and (max-width: 767px) {
  .top-grow-point-section .bg-image.small {
    bottom: 150px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.top-grow-point-section .contents-wrapper {
  position: relative;
}

.grow-point-first-message {
  margin-bottom: 50px;
  font-size: 1.35rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .grow-point-first-message {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }
}
.grow-point-first-message p:not(:last-child) {
  margin-bottom: 20px;
}

.top-grow-point-image {
  max-width: 300px;
}
@media screen and (max-width: 767px) {
  .top-grow-point-image {
    max-width: 200px;
  }
}

.top-point-section {
  position: relative;
  background-color: rgb(255, 255, 255);
}
.top-point-section.last-section {
  padding-bottom: 450px;
}

.point-title {
  position: absolute;
  top: 0;
  left: 50%;
  padding: 50px 30px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: rgb(255, 255, 255);
  border-radius: 50%;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .point-title {
    width: 90%;
    padding: 30px;
  }
}
.point-title .title-deco {
  position: absolute;
  top: 0;
  right: 30px;
  width: 90px;
}
@media screen and (max-width: 767px) {
  .point-title .title-deco {
    width: 50px;
    right: 80px;
    top: 10px;
  }
}
.point-title .en {
  font-size: 4rem;
  font-family: "Oooh Baby", cursive;
  text-transform: capitalize;
  color: rgb(160, 188, 58);
}
@media screen and (max-width: 767px) {
  .point-title .en {
    font-size: 3.5rem;
  }
}
.point-title .ja {
  display: block;
  font-size: 2rem;
  font-weight: 500;
  font-family: "Zen Maru Gothic", sans-serif;
}
@media screen and (max-width: 767px) {
  .point-title .ja {
    font-size: 1.5rem;
  }
}

.top-point-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
}
.top-point-wrapper .top-point-box {
  padding: 30px 20px;
  border-radius: 20px;
  border: 3px solid rgb(134, 171, 0);
  width: calc((100% - 60px) / 3);
  text-align: center;
  max-width: 300px;
}
@media screen and (max-width: 1023px) {
  .top-point-wrapper .top-point-box {
    width: 100%;
    max-width: 500px;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 0 30px;
  }
}
@media screen and (max-width: 767px) {
  .top-point-wrapper .top-point-box {
    max-width: 300px;
  }
}
.top-point-wrapper .top-point-box img {
  margin-bottom: 30px;
  height: 100px;
  width: auto;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .top-point-wrapper .text-box {
    width: 100%;
  }
}
.top-point-wrapper .inner-title {
  font-size: 1.8rem;
  font-weight: 500;
  font-family: "Zen Maru Gothic", sans-serif;
  margin-bottom: 10px;
}
.top-point-wrapper p {
  font-size: 1.1rem;
}

.top-work-contents-section {
  background-color: rgb(236, 243, 210);
}

.top-work-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 50px 65px;
}
.top-work-wrapper .image-box {
  width: calc(60% + 75px);
  margin-left: -140px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 35px 25px;
}
@media screen and (max-width: 1023px) {
  .top-work-wrapper .image-box {
    width: 100%;
    margin-left: -60px;
  }
}
@media screen and (max-width: 767px) {
  .top-work-wrapper .image-box {
    width: calc(100% + 20px);
    margin-left: -20px;
    gap: 10px;
  }
}
.top-work-wrapper .image-box img {
  border-radius: 20px;
  -o-object-fit: cover;
     object-fit: cover;
  width: calc((100% - 25px) / 2);
}
@media screen and (max-width: 1023px) {
  .top-work-wrapper .image-box img {
    border-radius: 10px;
  }
}
@media screen and (max-width: 767px) {
  .top-work-wrapper .image-box img {
    width: calc((100% - 10px) / 2);
  }
}
.top-work-wrapper .image-box img.three {
  width: 35%;
}
.top-work-wrapper .image-box img.four {
  width: calc(65% - 25px);
}
@media screen and (max-width: 767px) {
  .top-work-wrapper .image-box img.four {
    width: calc(65% - 10px);
  }
}
.top-work-wrapper .text-box {
  width: 40%;
}
@media screen and (max-width: 1023px) {
  .top-work-wrapper .text-box {
    width: 60%;
    margin: auto;
  }
}
@media screen and (max-width: 767px) {
  .top-work-wrapper .text-box {
    width: 100%;
  }
}
.top-work-wrapper .work-box {
  margin-top: 20px;
  background-color: rgb(255, 255, 255);
  border-radius: 20px;
}
.top-work-wrapper .work-btn-wrapper {
  padding: 10px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 2rem;
  font-family: "Zen Maru Gothic", sans-serif;
  cursor: pointer;
}
.top-work-wrapper .work-btn-wrapper:hover .link-arrow {
  background-color: rgb(255, 255, 255);
}
.top-work-wrapper .work-btn-wrapper:hover .link-arrow::before {
  background-color: rgb(160, 188, 58);
}
.top-work-wrapper .work-btn-wrapper span {
  width: calc(100% - 10px - 35px);
  pointer-events: none;
}
.top-work-wrapper .work-btn-wrapper span.link-arrow {
  width: 35px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.top-work-wrapper .work-contents-box {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.4s ease;
  transition: max-height 0.4s ease;
  font-size: 1.1rem;
}
.top-work-wrapper .work-contents-box .inner-box {
  padding: 0 30px 20px;
  font-size: 1.1rem;
}
.top-work-wrapper .dot-list:not(:last-child) {
  margin-bottom: 10px;
}
.top-work-wrapper .work-btn-wrapper.is-open + .work-contents-box {
  max-height: var(--max-height);
}
.top-work-wrapper .work-btn-wrapper.is-open .link-arrow {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

.top-staff-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 40px 60px;
}
.top-staff-wrapper .title-wrapper img {
  margin-top: 30px;
  width: 70%;
}
@media screen and (max-width: 1023px) {
  .top-staff-wrapper .title-wrapper img {
    display: none;
  }
}
.top-staff-wrapper .top-staff-list {
  width: calc(100% - 215px - 60px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 20px 40px;
}
@media screen and (max-width: 1023px) {
  .top-staff-wrapper .top-staff-list {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .top-staff-wrapper .top-staff-list {
    gap: 10px;
  }
}
.top-staff-wrapper .top-staff-list li {
  width: calc((100% - 80px) / 3);
}
@media screen and (max-width: 767px) {
  .top-staff-wrapper .top-staff-list li {
    width: calc((100% - 20px) / 3);
  }
}
.top-staff-wrapper .top-staff-list li img {
  height: auto;
  aspect-ratio: 270/260;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0 40px 0 0;
}
.top-staff-wrapper .top-staff-list .image-box {
  margin-bottom: 10px;
}
.top-staff-wrapper .top-staff-list .name {
  font-size: 1.1rem;
  color: rgb(73, 70, 60);
}
@media screen and (max-width: 767px) {
  .top-staff-wrapper .top-staff-list .name {
    font-size: 0.8rem;
  }
}

.top-voice-section {
  position: relative;
}
.top-voice-section .contents-wrapper {
  position: relative;
  z-index: 2;
}
.top-voice-section .yellow-dot-title {
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .top-voice-section .yellow-dot-title {
    margin-bottom: 40px;
  }
}
.top-voice-section .voice-bg {
  position: absolute;
  width: 150%;
  top: 0;
  left: 50%;
  max-width: 2000px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 1023px) {
  .top-voice-section .voice-bg {
    top: 12%;
    width: 200%;
    -webkit-transform: translateX(-60%);
            transform: translateX(-60%);
  }
}
@media screen and (max-width: 767px) {
  .top-voice-section .voice-bg {
    -webkit-transform: translateX(-60%) rotate(-5deg);
            transform: translateX(-60%) rotate(-5deg);
  }
}
.top-voice-section .voice-box {
  display: block;
  height: auto;
}
.top-voice-section .voice-inner {
  height: 100%;
}
.top-voice-section .swiper.voice-swiper {
  overflow: visible;
}
.top-voice-section .swiper-pagination {
  margin-top: 50px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .top-voice-section .swiper-pagination {
    margin-top: 30px;
  }
}
.top-voice-section .swiper-pagination .swiper-pagination-bullet {
  background-color: rgb(231, 231, 231);
  opacity: 1;
}
.top-voice-section .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: rgb(134, 171, 0);
}

.voice-inner {
  background-color: rgb(236, 243, 210);
  padding: 30px;
  border-radius: 80px 0 0 0;
  color: rgb(73, 70, 60);
}
@media screen and (max-width: 767px) {
  .voice-inner {
    padding: 25px 20px;
    border-radius: 50px 0 0 0;
  }
}
.voice-inner .title-wrapper {
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .voice-inner .title-wrapper {
    margin-bottom: 20px;
  }
}
.voice-inner .title-wrapper .image-box {
  width: 115px;
}
@media screen and (max-width: 767px) {
  .voice-inner .title-wrapper .image-box {
    width: 75px;
  }
}
.voice-inner .title-wrapper .text-box {
  padding-bottom: 10px;
  width: calc(100% - 115px);
  padding-left: 30px;
  border-bottom: 2px dotted rgb(255, 255, 255);
}
@media screen and (max-width: 767px) {
  .voice-inner .title-wrapper .text-box {
    width: calc(100% - 75px);
    padding-left: 10px;
  }
}
.voice-inner .prof {
  margin-bottom: 5px;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .voice-inner .prof {
    font-size: 1.2rem;
  }
}
.voice-inner .ago {
  margin-right: 10px;
}
@media screen and (max-width: 767px) {
  .voice-inner .disease {
    font-size: 0.8rem;
  }
}
.voice-inner .message-box {
  font-size: 1.1rem;
}
@media screen and (max-width: 767px) {
  .voice-inner .message-box {
    font-size: 1rem;
  }
}
.voice-inner .message-box span {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
}

.top-instagram-section {
  position: relative;
  z-index: 2;
}
.top-instagram-section .yellow-dot-title {
  margin-bottom: 50px;
}

.top-blog-section {
  position: relative;
  z-index: 2;
}

.top-blog-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 50px 80px;
}

.top-cases-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0 50px;
}
@media screen and (max-width: 1023px) {
  .top-cases-wrapper {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .top-cases-wrapper .title-wrapper {
    display: contents;
  }
}
@media screen and (max-width: 767px) {
  .top-cases-wrapper .title-text {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-bottom: 30px;
  }
}
.top-cases-wrapper .yellow-dot-title {
  margin-bottom: 50px;
}
@media screen and (max-width: 1023px) {
  .top-cases-wrapper .yellow-dot-title {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 1023px) {
  .top-cases-wrapper .yellow-btn {
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .top-cases-wrapper .yellow-btn {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
.top-cases-wrapper .case-main-wrapper {
  max-width: 600px;
  width: calc(100% - 50px - 280px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 80px;
}
@media screen and (max-width: 1023px) {
  .top-cases-wrapper .case-main-wrapper {
    gap: 10px;
  }
}
@media screen and (max-width: 767px) {
  .top-cases-wrapper .case-main-wrapper {
    width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.top-cases-wrapper .case-box {
  width: calc((100% - 80px) / 2);
  color: rgb(73, 70, 60);
}
@media screen and (max-width: 1023px) {
  .top-cases-wrapper .case-box {
    width: calc((100% - 10px) / 2);
  }
}
.top-cases-wrapper .text-box {
  display: none;
}

.cases-inner img {
  margin-bottom: 10px;
  height: auto;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}
.cases-inner .image-text-box {
  font-weight: 500;
}
.cases-inner .image-text-box span:not(:last-child) {
  margin-right: 10px;
}
.cases-inner .company {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.3rem;
  margin-bottom: 5px;
}
@media screen and (max-width: 767px) {
  .cases-inner .company {
    font-size: 1.1rem;
  }
}

.last-section {
  padding-bottom: 300px;
}
@media screen and (max-width: 767px) {
  .last-section {
    padding-bottom: 150px;
  }
}

.mv-section {
  padding: 100px 0 0;
  position: relative;
  background-image: url("../../images/mv/mv-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-position: bottom;
}
@media screen and (max-width: 1120px) {
  .mv-section {
    padding-top: 80px;
  }
}
.mv-section .contents-wrapper {
  padding: 150px 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .mv-section .contents-wrapper {
    padding: 50px 0;
  }
}
.mv-section .right-bg {
  position: absolute;
  right: 0;
  top: 0;
  width: auto;
  height: calc(100% + 30px);
}
@media screen and (max-width: 1023px) {
  .mv-section .right-bg {
    right: -100px;
  }
}
@media screen and (max-width: 767px) {
  .mv-section .right-bg {
    right: -10%;
    height: calc(100% + 20px);
  }
}
.mv-section .mv-title {
  position: relative;
  z-index: 2;
  color: rgb(29, 105, 54);
  font-weight: 500;
  font-size: 2.5rem;
  font-family: "Zen Maru Gothic", sans-serif;
}
@media screen and (max-width: 767px) {
  .mv-section .mv-title {
    font-size: 2rem;
  }
}

.contact-page-tel-wrapper {
  max-width: 990px;
  margin: 0 auto 100px;
  background-color: rgb(255, 255, 255);
  padding: 60px;
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .contact-page-tel-wrapper {
    padding: 30px;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 767px) {
  .contact-page-tel-wrapper .bg-title {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .contact-page-tel-wrapper .link-wrapper {
    gap: 30px;
  }
  .contact-page-tel-wrapper .link-wrapper p {
    font-size: 1.2rem;
  }
}
.contact-page-tel-wrapper .tel-box .number {
  font-size: 3rem;
}
@media screen and (max-width: 1023px) {
  .contact-page-tel-wrapper .tel-box .number {
    font-size: 2.2rem;
  }
}
.contact-page-tel-wrapper .tel-box .number::before {
  width: 35px;
}
.contact-page-tel-wrapper .tel-box .time {
  font-size: 1rem;
  text-align: center;
}
.contact-page-tel-wrapper .btn-link {
  width: 300px;
}
@media screen and (max-width: 1023px) {
  .contact-page-tel-wrapper .btn-link {
    width: auto;
  }
}
.contact-page-tel-wrapper .btn-link.contact {
  display: none;
}
.contact-page-tel-wrapper .btn-link a {
  font-size: 1.4rem;
  padding: 15px;
}
@media screen and (max-width: 1023px) {
  .contact-page-tel-wrapper .btn-link a {
    font-size: 1.1rem;
  }
}

.contact-form-wrapper {
  padding: 60px;
  border-radius: 20px;
  background-color: rgb(255, 255, 255);
}
@media screen and (max-width: 1023px) {
  .contact-form-wrapper {
    padding: 60px 30px;
  }
}
@media screen and (max-width: 767px) {
  .contact-form-wrapper {
    padding: 40px 15px;
  }
}
.contact-form-wrapper .yellow-dot-title {
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .contact-form-wrapper .yellow-dot-title {
    font-size: 1.6rem;
    margin-bottom: 30px;
  }
}
.contact-form-wrapper .contact-form-box:not(:last-child) {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .contact-form-wrapper .contact-form-box:not(:last-child) {
    margin-bottom: 30px;
  }
}
.contact-form-wrapper .title {
  margin-bottom: 15px;
}
.contact-form-wrapper .title.must::after {
  font-size: 0.7rem;
  vertical-align: top;
  content: "*必須";
  color: rgb(222, 0, 0);
}
.contact-form-wrapper .text-common {
  display: block;
  width: 100%;
  background-color: rgb(231, 231, 231);
  padding: 15px;
  border-radius: 10px;
  border: 1px solid rgb(231, 231, 231);
  outline: none;
}
.contact-form-wrapper a {
  color: rgb(73, 70, 60);
  border-bottom: 1px solid rgb(73, 70, 60);
}
.contact-form-wrapper .button-submit {
  margin: auto;
  width: 280px;
  padding: 20px 30px;
  border-radius: 20px;
  background-color: rgb(239, 204, 40);
  border: 1px solid rgb(239, 204, 40);
  color: rgb(73, 70, 60);
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  opacity: 0.3;
}
.contact-form-wrapper .button-submit::after {
  content: "";
  display: block;
  width: 24px;
  aspect-ratio: 1/1;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url("../../images/black-arrow.svg");
}
.contact-form-wrapper .button-submit.active {
  opacity: 1;
}
.contact-form-wrapper .button-submit.active:hover {
  background-color: rgb(255, 246, 206);
}

.philosophy-section {
  position: relative;
  z-index: 2;
  text-align: center;
}
.philosophy-section .yellow-dot-title {
  margin-bottom: 40px;
}
.philosophy-section .philosophy-title {
  font-size: 2.1rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .philosophy-section .philosophy-title {
    font-size: 1.7rem;
  }
}
.philosophy-section .text-box {
  font-size: 1.1rem;
}
@media screen and (max-width: 767px) {
  .philosophy-section .text-box {
    font-size: 1rem;
  }
}
.philosophy-section .text-box p:not(:last-child) {
  margin-bottom: 20px;
}
.philosophy-section .text-box .big {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .philosophy-section .text-box .big {
    font-size: 1.1rem;
  }
}

.greeting-section .contents-wrapper {
  position: relative;
}
.greeting-section .contents-wrapper.big {
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .greeting-section .contents-wrapper.big {
    padding-bottom: 0;
  }
}
.greeting-section .small-bg {
  position: absolute;
  bottom: 15%;
  left: 0;
  width: 30%;
}
@media screen and (max-width: 767px) {
  .greeting-section .small-bg {
    bottom: 10%;
  }
}
.greeting-section .big-bg {
  position: absolute;
  bottom: 0;
  right: -10%;
  width: 80%;
}
@media screen and (max-width: 767px) {
  .greeting-section .big-bg {
    right: -30%;
    width: 100%;
  }
}

.greeting-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
.greeting-wrapper .yellow-dot-title {
  margin-bottom: 30px;
}
@media screen and (max-width: 1023px) {
  .greeting-wrapper .yellow-dot-title {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-bottom: 0;
  }
}
.greeting-wrapper .text-box {
  width: calc(60% - 30px);
}
@media screen and (max-width: 1023px) {
  .greeting-wrapper .text-box {
    display: contents;
  }
}
.greeting-wrapper .text-inner {
  font-size: 1.1rem;
}
@media screen and (max-width: 1023px) {
  .greeting-wrapper .text-inner {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: auto;
  }
}
.greeting-wrapper .text-inner p:not(:last-child) {
  margin-bottom: 20px;
}
.greeting-wrapper .text-inner .name {
  text-align: right;
  font-size: 0.9rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
}
.greeting-wrapper .text-inner .name .big {
  margin-left: 10px;
  font-size: 1.4rem;
}
.greeting-wrapper .image-box {
  position: relative;
  width: 40%;
}
@media screen and (max-width: 1023px) {
  .greeting-wrapper .image-box {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 55%;
    margin-left: auto;
    max-width: 370px;
  }
}
@media screen and (max-width: 767px) {
  .greeting-wrapper .image-box {
    width: 85%;
    margin: 0 auto;
  }
}
.greeting-wrapper .image-box img {
  border-radius: 0 68px 0 0;
  aspect-ratio: 415/440;
  -o-object-fit: cover;
     object-fit: cover;
}
.greeting-wrapper .image-box p {
  position: absolute;
  bottom: 0;
  right: 0;
  -webkit-transform: translate(20%, 30%) rotate(-10deg);
          transform: translate(20%, 30%) rotate(-10deg);
  font-family: "Oooh Baby", cursive;
  font-size: 4rem;
  color: rgb(160, 188, 58);
  text-transform: capitalize;
}
@media screen and (max-width: 1200px) {
  .greeting-wrapper .image-box p {
    -webkit-transform: translate(10%, 30%) rotate(-10deg);
            transform: translate(10%, 30%) rotate(-10deg);
    transform: translate(10%, 30%) rotate(-10deg);
  }
}
.features-section {
  position: relative;
  background-color: rgb(236, 243, 210);
}
.features-section .yellow-dot-title {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .features-section .yellow-dot-title {
    margin-bottom: 50px;
  }
}

.features-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 100px;
}
@media screen and (max-width: 1023px) {
  .features-box {
    gap: 0 50px;
  }
}
.features-box:not(:last-child) {
  margin-bottom: 50px;
}
.features-box .image-box {
  position: relative;
  width: 50%;
}
@media screen and (max-width: 1023px) {
  .features-box .image-box {
    width: 45%;
  }
}
@media screen and (max-width: 767px) {
  .features-box .image-box {
    width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-bottom: 35px;
  }
}
.features-box .image-text {
  position: absolute;
  bottom: 0;
  right: -50px;
  display: -ms-grid;
  display: grid;
  gap: 10px;
  -ms-grid-columns: 1fr 10px 1fr;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 1023px) {
  .features-box .image-text {
    right: -20px;
    bottom: -20px;
  }
}
@media screen and (max-width: 767px) {
  .features-box .image-text {
    right: 0;
  }
}
.features-box .image-text p {
  padding: 15px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1rem;
  aspect-ratio: 1/1;
  background-color: rgb(255, 255, 255);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  color: rgb(29, 105, 54);
  text-align: center;
}
.features-box .text-box {
  width: calc(50% - 100px);
  font-size: 1.1rem;
}
@media screen and (max-width: 1023px) {
  .features-box .text-box {
    width: calc(55% - 50px);
  }
}
@media screen and (max-width: 767px) {
  .features-box .text-box {
    display: contents;
  }
}
@media screen and (max-width: 767px) {
  .features-box .text-box p {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}

.features-title {
  margin-bottom: 30px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .features-title {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.features-title span {
  position: relative;
}
.features-title span::after {
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transform: translate(60%, -60%) rotate(12deg);
          transform: translate(60%, -60%) rotate(12deg);
  content: "";
  display: block;
  width: 81px;
  aspect-ratio: 81/60;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url("../../images/fv-deco.png");
}

.top-point-section.comapny-section {
  position: relative;
}
@media screen and (max-width: 1023px) {
  .top-point-section.comapny-section {
    padding-bottom: 250px;
  }
}
@media screen and (max-width: 767px) {
  .top-point-section.comapny-section {
    padding-bottom: 200px;
  }
}
.top-point-section.comapny-section .point-title {
  -webkit-transform: translate(-50%, -45%);
          transform: translate(-50%, -45%);
  padding: 50px 80px;
}
.top-point-section.comapny-section + footer {
  margin-top: -10%;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .top-point-section.comapny-section + footer {
    margin-top: -30%;
  }
}

.comapny-table {
  max-width: 865px;
  margin: auto;
}
.comapny-table th, .comapny-table td {
  padding-bottom: 30px;
  border-bottom: 1px solid;
  font-weight: 400;
  font-size: 1.1rem;
  padding-inline: 30px;
}
@media screen and (max-width: 767px) {
  .comapny-table th, .comapny-table td {
    display: block;
    width: 100%;
  }
}
.comapny-table tr:not(:first-child) th, .comapny-table tr:not(:first-child) td {
  padding-top: 50px;
}
@media screen and (max-width: 767px) {
  .comapny-table tr:not(:first-child) th, .comapny-table tr:not(:first-child) td {
    padding-top: 30px;
  }
}
.comapny-table th {
  width: 245px;
  border-color: rgb(134, 171, 0);
}
@media screen and (max-width: 1023px) {
  .comapny-table th {
    width: 170px;
  }
}
@media screen and (max-width: 767px) {
  .comapny-table th {
    width: 100%;
    border-bottom: none;
    padding-bottom: 0;
    font-weight: 600;
    color: rgb(29, 105, 54);
  }
}
.comapny-table td {
  padding-inline: 30px;
  border-color: rgb(236, 243, 210);
}
@media screen and (max-width: 767px) {
  .comapny-table td {
    border-color: rgb(134, 171, 0);
    padding-inline: 20px;
    padding-top: 30px;
  }
}

.mv-section.info {
  position: relative;
  z-index: 2;
}

.information-wrapper {
  padding: 0 0 300px;
  position: relative;
  background-color: rgb(255, 255, 255);
}
@media screen and (max-width: 1023px) {
  .information-wrapper {
    padding-bottom: 150px;
  }
}
.information-wrapper + footer {
  margin-top: -10%;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .information-wrapper + footer {
    margin-top: -30%;
  }
}
.information-wrapper .point-title {
  padding: 30px;
}
.information-wrapper .side-menu-box {
  position: absolute;
  left: 0;
  top: 0px;
  padding-left: 50px;
  z-index: 1;
}
@media screen and (min-width: 1450px) {
  .information-wrapper .side-menu-box {
    width: calc(25% - 50px);
  }
}
@media screen and (max-width: 1023px) {
  .information-wrapper .side-menu-box {
    position: static !important;
    background-color: rgb(205, 226, 156);
    width: 100%;
    padding: 100px 50px 0;
  }
}
@media screen and (max-width: 767px) {
  .information-wrapper .side-menu-box {
    padding: 70px 20px 0;
  }
}
.information-wrapper .side-menu-list {
  width: 165px;
}
@media screen and (min-width: 1450px) {
  .information-wrapper .side-menu-list {
    margin-left: auto;
  }
}
@media screen and (max-width: 1023px) {
  .information-wrapper .side-menu-list {
    width: 100%;
    display: -ms-grid;
    display: grid;
    gap: 10px;
    -ms-grid-columns: 1fr 10px 1fr 10px 1fr;
    grid-template-columns: repeat(3, 1fr);
  }
}
.information-wrapper .side-menu-list li:not(:last-child) {
  margin-bottom: 10px;
}
@media screen and (max-width: 1023px) {
  .information-wrapper .side-menu-list li:not(:last-child) {
    margin-bottom: 0;
  }
}
.information-wrapper .side-menu-list a {
  display: block;
  background-color: rgb(255, 255, 255);
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.1rem;
  border-radius: 50px;
  color: rgb(73, 70, 60);
}
@media screen and (max-width: 767px) {
  .information-wrapper .side-menu-list a {
    padding: 5px;
    font-size: 1rem;
  }
}
.information-wrapper .side-menu-list a.active {
  background-color: rgb(239, 204, 40);
}
@media screen and (max-width: 1023px) {
  .information-wrapper .side-menu-list a.active {
    background-color: rgb(255, 255, 255);
  }
}
.information-wrapper .side-menu-list a:hover {
  background-color: rgb(239, 204, 40);
}
.information-wrapper .info-work-section {
  padding-top: 150px;
  background-color: rgb(205, 226, 156);
}
@media screen and (max-width: 1023px) {
  .information-wrapper .info-work-section {
    padding-top: 50px;
  }
}
.information-wrapper .page .contents-wrapper {
  width: calc(100% - 250px);
  max-width: 1145px;
  padding-right: 50px;
  margin-left: 250px;
}
@media screen and (min-width: 1450px) {
  .information-wrapper .page .contents-wrapper {
    margin-left: calc((100vw - 1095px) / 2 + 165px);
  }
}
@media screen and (max-width: 1023px) {
  .information-wrapper .page .contents-wrapper {
    width: calc(100% - 100px);
    padding-right: 0;
    margin-left: auto;
  }
}
@media screen and (max-width: 767px) {
  .information-wrapper .page .contents-wrapper {
    width: calc(100% - 40px);
  }
}
.information-wrapper .yellow-dot-title {
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .information-wrapper .yellow-dot-title {
    margin-bottom: 30px;
  }
}

.info-work-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 100px;
  -ms-flex-direction: row-reverse;
      flex-direction: row-reverse;
}
@media screen and (max-width: 1023px) {
  .info-work-box {
    gap: 30px;
  }
}
.info-work-box:not(:last-child) {
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .info-work-box:not(:last-child) {
    margin-bottom: 30px;
  }
}
.info-work-box .image-box {
  width: calc(50% - 100px);
}
@media screen and (max-width: 1023px) {
  .info-work-box .image-box {
    width: calc(50% - 30px);
  }
}
@media screen and (max-width: 767px) {
  .info-work-box .image-box {
    width: 100%;
  }
}
.info-work-box .text-box {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .info-work-box .text-box {
    width: 100%;
  }
}
.info-work-box .title {
  margin-bottom: 25px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 2rem;
  background-color: rgb(255, 255, 255);
  border-radius: 50px;
  max-width: 410px;
  padding: 0 30px;
}
@media screen and (max-width: 767px) {
  .info-work-box .title {
    text-align: center;
  }
}
.info-work-box .contents {
  font-size: 1.1rem;
  padding-left: 30px;
}
.info-work-box .dot-list {
  margin-bottom: 15px;
}

.day-flow-section {
  background-color: rgb(236, 243, 210);
}

.day-flow-wrapper {
  padding: 45px 50px;
  position: relative;
  border-radius: 40px;
  border: 2px solid rgb(134, 171, 0);
  background-color: rgb(255, 255, 255);
}
@media screen and (max-width: 767px) {
  .day-flow-wrapper {
    padding: 45px 20px;
  }
}
.day-flow-wrapper:not(:last-child) {
  margin-bottom: 100px;
}
.day-flow-wrapper .side-en {
  position: absolute;
  top: -30px;
  left: 0;
  -webkit-transform: rotate(-10deg);
          transform: rotate(-10deg);
  color: rgb(239, 204, 40);
  font-size: 2.5rem;
  font-family: "Oooh Baby", cursive;
}
@media screen and (max-width: 767px) {
  .day-flow-wrapper .side-en {
    top: -10px;
  }
}
.day-flow-wrapper .time-title {
  background-color: rgb(205, 226, 156);
  font-size: 1.1rem;
  font-weight: 500;
  font-family: "Zen Maru Gothic", sans-serif;
  text-align: center;
  max-width: 200px;
  margin: 0 auto 40px;
  border-radius: 15px;
}
.day-flow-wrapper .day-flow-inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 30px;
}
.day-flow-wrapper .day-flow-inner::before {
  position: absolute;
  top: 77.5px;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  content: "";
  display: block;
  width: 90%;
  height: 2px;
  background-image: linear-gradient(to right, transparent, transparent 5px, rgb(134, 171, 0) 5px, rgb(134, 171, 0) 10px);
  background-size: 10px 3px;
}
@media screen and (max-width: 1150px) {
  .day-flow-wrapper .day-flow-inner::before {
    width: 2px;
    height: 90%;
    top: 50%;
    left: 77.5px;
    background-image: linear-gradient(to top, transparent, transparent 5px, rgb(134, 171, 0) 5px, rgb(134, 171, 0) 10px);
    background-size: 1px 12px;
    background-repeat: repeat-y;
    background-position: left top;
  }
}
@media screen and (max-width: 767px) {
  .day-flow-wrapper .day-flow-inner::before {
    display: none;
  }
}
.day-flow-wrapper .day-flow-inner img {
  position: relative;
  z-index: 2;
  width: 155px;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .day-flow-wrapper .day-flow-inner img {
    position: absolute;
    top: 0;
    left: 0;
    width: 70px;
  }
}
@media screen and (max-width: 767px) {
  .day-flow-wrapper .title-wrapper {
    padding-left: 80px;
  }
}
.day-flow-wrapper .inner-box {
  width: calc((100% - 90px) / 4);
}
@media screen and (max-width: 1150px) {
  .day-flow-wrapper .inner-box {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0 30px;
  }
}
@media screen and (max-width: 767px) {
  .day-flow-wrapper .inner-box {
    position: relative;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.day-flow-wrapper .inner-box:first-child img {
  margin-left: 0;
}
@media screen and (max-width: 767px) {
  .day-flow-wrapper .inner-box:first-child img {
    margin-left: auto;
  }
}
.day-flow-wrapper .inner-box:last-child img {
  margin-right: 0;
}
@media screen and (max-width: 767px) {
  .day-flow-wrapper .inner-box:last-child img {
    margin-right: auto;
  }
}
@media screen and (max-width: 1150px) {
  .day-flow-wrapper .text-box {
    width: calc(100% - 30px - 155px);
  }
}
@media screen and (max-width: 767px) {
  .day-flow-wrapper .text-box {
    width: 100%;
  }
}
.day-flow-wrapper .text-box p:not(:last-child) {
  margin-bottom: 10px;
}
.day-flow-wrapper .time {
  font-weight: 600;
  font-size: 1.1rem;
  font-family: "Montserrat", sans-serif;
  color: rgb(134, 171, 0);
}
.day-flow-wrapper .title {
  margin: 5px 0 15px;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
}

.pay-section {
  background-color: rgb(205, 226, 156);
}

.pay-wrapper {
  background-color: rgb(255, 255, 255);
  padding: 50px;
  border-radius: 40px 0 0 0;
}
@media screen and (max-width: 767px) {
  .pay-wrapper {
    padding: 50px 15px;
  }
}
.pay-wrapper .pay-title {
  background-color: rgb(134, 171, 0);
  color: rgb(255, 255, 255);
  border-radius: 50px;
  font-size: 1.8rem;
  padding: 10px;
  max-width: 430px;
  margin: 0 auto 30px;
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
}
.pay-wrapper .first-text {
  margin-bottom: 50px;
}
.pay-wrapper .image-box {
  max-width: 690px;
  margin: 0 auto 100px;
}
.pay-wrapper .levelup-wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px 0;
}
.pay-wrapper .en-text {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translate(-10%, -100%) rotate(-10deg);
          transform: translate(-10%, -100%) rotate(-10deg);
  color: rgb(239, 204, 40);
  font-size: 2.5rem;
  font-family: "Oooh Baby", cursive;
}
.pay-wrapper .text-box {
  position: relative;
  z-index: 1;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.8rem;
}
@media screen and (max-width: 1220px) {
  .pay-wrapper .text-box {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 1023px) {
  .pay-wrapper .text-box {
    font-size: 1.1rem;
  }
}
.pay-wrapper .text-box p:not(:last-child) {
  margin-bottom: 10px;
}
.pay-wrapper .pay-box {
  position: relative;
  color: rgb(134, 171, 0);
}
@media screen and (max-width: 767px) {
  .pay-wrapper .pay-box {
    margin-left: auto;
  }
}
.pay-wrapper .pay-box > span {
  position: relative;
  z-index: 2;
}
.pay-wrapper .pay-box .number {
  font-weight: 600;
  font-size: 4.2rem;
  font-family: "Montserrat", sans-serif;
}
@media screen and (max-width: 1220px) {
  .pay-wrapper .pay-box .number {
    font-size: 3.5rem;
  }
}
@media screen and (max-width: 1050px) {
  .pay-wrapper .pay-box .number {
    font-size: 3rem;
  }
}
.pay-wrapper .pay-box img {
  position: absolute;
  width: 60%;
  bottom: 0;
  right: 0;
}

.guide-section {
  background-color: rgb(205, 226, 156);
}

.guide-wrapper {
  border-radius: 40px;
  padding: 80px 30px;
  background-color: rgb(236, 243, 210);
}
.guide-wrapper td {
  border-color: rgb(255, 255, 255);
}
@media screen and (max-width: 767px) {
  .guide-wrapper td {
    border-color: rgb(134, 171, 0);
    padding-inline: 0;
  }
}

.info-flow-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 50px 30px;
}
.info-flow-wrapper .flow-box {
  max-width: 480px;
  width: calc((100% - 30px) / 2);
}
@media screen and (max-width: 767px) {
  .info-flow-wrapper .flow-box {
    width: 100%;
  }
}
.info-flow-wrapper .flow-box.green .title {
  color: rgb(255, 255, 255);
  background-color: rgb(29, 105, 54);
}
.info-flow-wrapper .flow-box.green .step::before {
  background-color: rgb(29, 105, 54);
}
.info-flow-wrapper .flow-box.yellow .title {
  background-color: rgb(239, 204, 40);
}
.info-flow-wrapper .flow-box.yellow .step::before {
  background-color: rgb(239, 204, 40);
}
.info-flow-wrapper .flow-detail-wrapper {
  position: relative;
}
.info-flow-wrapper .flow-detail-wrapper::before {
  position: absolute;
  top: 40px;
  left: 35px;
  clip-path: polygon(25% 0, 75% 0, 75% calc(100% - 40px), 100% calc(100% - 40px), 50% 100%, 0 calc(100% - 40px), 25% calc(100% - 40px));
  content: "";
  display: block;
  width: 60px;
  height: 90%;
  background-color: rgb(236, 243, 210);
}
@media screen and (max-width: 1180px) {
  .info-flow-wrapper .flow-detail-wrapper::before {
    height: 85%;
    left: 25px;
  }
}
.info-flow-wrapper .title {
  margin-bottom: 50px;
  display: block;
  padding: 10px;
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.1rem;
  border-radius: 30px;
}
@media screen and (max-width: 767px) {
  .info-flow-wrapper .title {
    margin-bottom: 30px;
  }
}
.info-flow-wrapper .flow-step-box {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
@media screen and (max-width: 1180px) {
  .info-flow-wrapper .flow-step-box {
    gap: 20px;
  }
}
.info-flow-wrapper .flow-step-box:not(:last-child) {
  margin-bottom: 30px;
}
@media screen and (max-width: 1180px) {
  .info-flow-wrapper .flow-step-box:not(:last-child) {
    margin-bottom: 20px;
  }
}
.info-flow-wrapper .step {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 1.4rem;
  color: rgb(134, 171, 0);
}
@media screen and (max-width: 1180px) {
  .info-flow-wrapper .step {
    font-size: 1.2rem;
  }
}
.info-flow-wrapper .step::before {
  content: "";
  display: inline-block;
  width: 12px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  vertical-align: middle;
  margin-right: 10px;
}
.info-flow-wrapper .step span {
  vertical-align: middle;
}
.info-flow-wrapper img {
  margin: 0;
  width: 45px;
}
@media screen and (max-width: 1180px) {
  .info-flow-wrapper img {
    width: 40px;
  }
}
.info-flow-wrapper .text {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
  width: calc(100% - 45px - 60px - 120px);
}
@media screen and (max-width: 1180px) {
  .info-flow-wrapper .text {
    width: calc(100% - 40px - 40px - 105px);
    font-size: 0.9rem;
  }
}
.info-flow-wrapper .small {
  font-size: 0.9rem;
}
@media screen and (max-width: 1180px) {
  .info-flow-wrapper .small {
    font-size: 0.7rem;
  }
}

.policy-wrapper:not(:last-child) {
  margin-bottom: 50px;
}
.policy-wrapper .yellow-dot-title {
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .policy-wrapper .yellow-dot-title {
    font-size: 1.5rem;
  }
}

.sidebar-box {
  width: 150px;
  margin: 0 0 50px auto;
}
.sidebar-box .archive-title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 10px;
}
.sidebar-box select {
  display: block;
  width: 100%;
}

.single-title {
  margin-bottom: 50px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgb(134, 171, 0);
}
.single-title .time {
  font-family: "Montserrat", sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  display: block;
  margin-bottom: 5px;
}
.single-title .title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
}
@media screen and (max-width: 1023px) {
  .single-title .title {
    font-size: 1.3rem;
  }
}

.main-contents {
  padding: 0 50px;
}
@media screen and (max-width: 1023px) {
  .main-contents {
    padding: 0;
  }
}

.single-pager {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
.single-pager .single-summary {
  display: block;
  width: 250px;
  background-color: rgb(245, 245, 245);
  padding: 10px;
  text-align: center;
  color: rgb(73, 70, 60);
  border-radius: 50px;
}
@media (max-width: 767px) {
  .single-pager .single-summary {
    width: 200px;
  }
}
.single-pager .single-summary:hover {
  background-color: rgb(134, 171, 0);
}
.single-pager .pager-box {
  width: 20px;
}
.single-pager .pager-box a:hover .arrow-button.right {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}
.single-pager .pager-box a:hover .arrow-button.left {
  -webkit-transform: rotate(-180deg) translateX(5px);
          transform: rotate(-180deg) translateX(5px);
}
.single-pager .arrow-button {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  background-color: rgb(134, 171, 0);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.single-pager .arrow-button.left {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.case-page-message {
  font-size: 1.3rem;
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .case-page-message {
    font-size: 1.2rem;
    margin-bottom: 50px;
  }
}

.case-main-wrapper.archive li:not(:last-child) {
  margin-bottom: 50px;
}
.case-main-wrapper.archive .cases-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 60px;
}
@media screen and (max-width: 1023px) {
  .case-main-wrapper.archive .cases-inner {
    gap: 30px;
  }
}
@media screen and (max-width: 767px) {
  .case-main-wrapper.archive .cases-inner {
    gap: 20px;
  }
}
.case-main-wrapper.archive .image-box {
  width: 250px;
}
@media screen and (max-width: 1023px) {
  .case-main-wrapper.archive .image-box {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px 30px;
  }
}
@media screen and (max-width: 1023px) {
  .case-main-wrapper.archive .image-box img {
    width: 200px;
    margin: 0;
  }
}
@media screen and (max-width: 767px) {
  .case-main-wrapper.archive .image-box img {
    margin: auto;
  }
}
@media screen and (max-width: 1023px) {
  .case-main-wrapper.archive .image-box .image-text-box {
    width: calc(100% - 200px - 30px);
  }
}
@media screen and (max-width: 767px) {
  .case-main-wrapper.archive .image-box .image-text-box {
    width: 100%;
  }
}
.case-main-wrapper.archive .text-box {
  width: calc(100% - 250px - 60px);
}
@media screen and (max-width: 1023px) {
  .case-main-wrapper.archive .text-box {
    width: 100%;
  }
}

.voice-main-wrapper.archive li:not(:last-child) {
  margin-bottom: 50px;
}
.voice-main-wrapper.archive .message-box span {
  display: contents;
}

.top-staff-list.archive .staff-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 10px 40px;
}
.top-staff-list.archive .staff-box:not(:last-child) {
  margin-bottom: 70px;
}
.top-staff-list.archive .image-box {
  width: 300px;
}
@media screen and (max-width: 1023px) {
  .top-staff-list.archive .image-box {
    width: 250px;
  }
}
@media screen and (max-width: 767px) {
  .top-staff-list.archive .image-box {
    width: 200px;
    margin: auto;
  }
}
.top-staff-list.archive .image-box img {
  height: auto;
  aspect-ratio: 270/260;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0 40px 0 0;
}
.top-staff-list.archive .text-box {
  width: calc(100% - 300px - 40px);
}
@media screen and (max-width: 1023px) {
  .top-staff-list.archive .text-box {
    display: contents;
  }
}
@media screen and (max-width: 1023px) {
  .top-staff-list.archive .staff-date {
    width: calc(100% - 250px - 40px);
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
  }
}
@media screen and (max-width: 767px) {
  .top-staff-list.archive .staff-date {
    width: 100%;
  }
}
.top-staff-list.archive .staff-date:not(:last-child) {
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .top-staff-list.archive .staff-date:not(:last-child) {
    margin-bottom: 0;
  }
}
.top-staff-list.archive .yellow-dot-title {
  display: block;
}
.top-staff-list.archive .yellow-dot-title:not(:last-child) {
  margin-bottom: 5px;
}
.top-staff-list.archive .name {
  font-size: 1.3rem;
  font-family: "Zen Maru Gothic", sans-serif;
}
.top-staff-list.archive .name:not(:last-child) {
  margin-bottom: 5px;
}
.top-staff-list.archive .qualification-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 5px;
  font-size: 1.1rem;
}
.top-staff-list.archive .qualification-wrapper .title {
  width: 53px;
}
.top-staff-list.archive .qualification-wrapper .contents {
  width: calc(100% - 53px - 5px);
}
/*# sourceMappingURL=main.css.map */