@charset "UTF-8";
/*
Theme Name: 株式会社TOMO
Theme URI: https://example.com/my-custom-theme
Author: S.Fukushima
Author URI: https://example.com
Description: A custom WordPress theme.
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: my-custom-theme
*/
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: bottom;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ------------------------------
    フォント種類
------------------------------ */
/* ------------------------------
    背景グラデーション
------------------------------ */
/* ------------------------------
    テキストシャドウ
------------------------------ */
/* ------------------------------
    レスポンシブ
------------------------------ */
html,
body {
  scroll-behavior: smooth;
}

html {
  font-size: 0.5208333333vw;
}
@media (max-width: 1280px) {
  html {
    font-size: 0.7421875vw;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 1.171875vw;
  }
}
@media (max-width: 480px) {
  html {
    font-size: 1.7708333333vw;
  }
}

body {
  font-size: 1.8rem;
  line-height: 1.75;
  font-family: "Noto Sans JP", serif;
  font-weight: 500;
}

a {
  transition: all 0.4s;
}
a:hover {
  opacity: 0.6;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
a {
  letter-spacing: 0.05em;
}

.l-header {
  width: 100%;
  height: 11rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  padding: 0 26.5rem 0 5rem;
  position: fixed;
  top: 0;
  z-index: 100;
}
@media (max-width: 1280px) {
  .l-header {
    padding: 0 24rem 0 2.5rem;
  }
}
@media (max-width: 768px) {
  .l-header {
    padding: 0 5rem;
  }
}
@media (max-width: 480px) {
  .l-header {
    padding: 0 2.5rem;
  }
}
.l-header__logo {
  font-size: 1rem;
  width: 30rem;
}
@media (max-width: 1280px) {
  .l-header__logo {
    width: 27.5rem;
  }
}
.l-header__list {
  display: flex;
  align-items: center;
}
.l-header__item + .l-header__item {
  margin-left: 4rem;
}
.l-header__item a {
  position: relative;
}
.l-header__item a::before {
  content: "";
  width: 0;
  height: 2px;
  display: block;
  background: #1AAB37;
  position: absolute;
  bottom: -2px;
  left: 0;
  transition: all 0.4s;
}
.l-header__item a:hover {
  color: #1AAB37;
  opacity: 1;
}
.l-header__item a:hover::before {
  width: 100%;
}
.l-header__tel-box {
  margin-left: 4rem;
}
.l-header__tel-box a {
  display: flex;
  flex-direction: column;
}
.l-header__tel-title {
  font-family: "Noto Sans JP", serif;
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 1.5;
  text-align: center;
}
.l-header__tel-number {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.l-header__tel-number img {
  width: 3.7rem;
  -o-object-fit: contain;
     object-fit: contain;
}
.l-header__tel-number span {
  font-family: "Noto Sans JP", serif;
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 1.5;
  color: #1AAB37;
}
.l-header__mail-box {
  width: 22.5rem;
  height: 16rem;
  border-radius: 8.5rem 0 8.5rem 0;
  position: fixed;
  top: 0;
  right: 0;
  overflow: hidden;
}
@media (max-width: 768px) {
  .l-header__mail-box {
    position: static;
  }
}
.l-header__mail-box a {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(215deg, #1AAB37, #a4cb0c);
  position: relative;
  z-index: 0;
  transition: all 0.8s;
}
.l-header__mail-box a::after {
  content: "";
  display: block;
  background: #009944;
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  transition: all 0.8s;
}
.l-header__mail-box a p {
  transition: all 0.8s;
}
.l-header__mail-box a:hover {
  opacity: 1;
}
.l-header__mail-box a:hover::after {
  opacity: 1;
}
.l-header__mail-box a:hover p {
  scale: 1.1;
}
.l-header__mail-icon {
  width: 4.25rem;
  margin-bottom: 1.2rem;
}
.l-header__mail-icon img {
  -o-object-fit: contain;
     object-fit: contain;
}
.l-header__mail-title-jp {
  font-family: "Noto Sans JP", serif;
  font-weight: 600;
  color: #fff;
  line-height: 1.5;
}
.l-header__mail-title-eg {
  font-family: "Noto Sans JP", serif;
  font-weight: 600;
  color: #fff371;
  line-height: 1.5;
}

.l-footer__contact {
  background: url(assets/images/t_contact.webp) center/cover;
  position: relative;
  z-index: 0;
}
.l-footer__contact::before {
  content: "";
  background: rgba(17, 93, 32, 0.45);
  position: absolute;
  inset: 0;
  z-index: -1;
}
.l-footer__contact-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  padding-top: 2rem;
}
@media (max-width: 768px) {
  .l-footer__contact-list {
    display: block;
  }
}
.l-footer__contact-item {
  width: 54rem;
  aspect-ratio: 540/320;
  background: #fff;
  border-radius: 5rem;
  text-align: center;
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.l-footer__contact-item::after {
  content: "";
  position: absolute;
  inset: 0;
  display: block;
  background: #1AAB37;
  z-index: -1;
  opacity: 0;
  transition: all 0.8s;
}
@media (max-width: 768px) {
  .l-footer__contact-item {
    width: 100%;
    aspect-ratio: inherit;
    padding: 4rem;
    margin: 0 auto;
  }
}
@media (max-width: 480px) {
  .l-footer__contact-item {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .l-footer__contact-item:first-child {
    margin-bottom: 5rem;
  }
}
.l-footer__contact-item a,
.l-footer__contact-item h3,
.l-footer__contact-item p,
.l-footer__contact-item span {
  transition: all 0.8s;
}
.l-footer__contact-item:hover::after {
  opacity: 0.3;
}
.l-footer__contact-item:hover a,
.l-footer__contact-item:hover h3,
.l-footer__contact-item:hover p,
.l-footer__contact-item:hover span {
  opacity: 1;
  scale: 1.02;
}
.l-footer__contact-item a {
  display: block;
  width: 100%;
  height: 100%;
  padding-top: 7.8rem;
}
@media (max-width: 768px) {
  .l-footer__contact-item a {
    padding-top: 0;
  }
}
.l-footer__contact-title {
  font-family: "Noto Sans JP", serif;
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 1.5;
  margin-bottom: 3.2rem;
}
.l-footer__contact-tel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
}
.l-footer__contact-icon {
  display: inline-block;
  width: 4rem;
}
.l-footer__contact-icon img {
  -o-object-fit: contain;
     object-fit: contain;
}
.l-footer__contact-number {
  font-family: "Noto Sans JP", serif;
  font-weight: 700;
  font-size: 4rem;
  line-height: 1.5;
  color: #1AAB37;
}
.l-footer__contact-time {
  font-size: 2rem;
}
.l-footer__info {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 2fr;
  background: #fff;
}
@media (max-width: 768px) {
  .l-footer__info {
    display: block;
  }
}
.l-footer__company {
  height: 100%;
  padding-top: 6rem;
  padding-bottom: 4rem;
  margin: 0 auto;
}
.l-footer__logo {
  width: 18rem;
  height: 18rem;
  margin: 0 auto 3.2rem;
}
.l-footer__logo img {
  -o-object-fit: contain;
     object-fit: contain;
}
.l-footer__name {
  font-family: "Noto Sans JP", serif;
  font-weight: 700;
  font-size: 4rem;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 1.6rem;
}
@media (max-width: 768px) {
  .l-footer__address {
    text-align: center;
  }
}
@media (max-width: 768px) {
  .l-footer__map {
    width: 100%;
    height: 100%;
    aspect-ratio: 16/9;
  }
}
.l-footer__nav {
  background: #105D20;
  color: #fff;
  text-align: center;
  padding: 6rem 0 1.6rem;
}
.l-footer__list {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4rem;
}
@media (max-width: 480px) {
  .l-footer__list {
    display: block;
  }
}
.l-footer__item + .l-footer__item {
  margin-left: 6rem;
}
@media (max-width: 480px) {
  .l-footer__item + .l-footer__item {
    margin-top: 3rem;
    margin-left: 0;
  }
}
.l-footer__item a {
  position: relative;
}
.l-footer__item a::before {
  content: "";
  width: 0;
  height: 2px;
  display: block;
  background: #fff;
  position: absolute;
  bottom: -2px;
  left: 0;
  transition: all 0.4s;
}
.l-footer__item a:hover {
  opacity: 1;
}
.l-footer__item a:hover::before {
  width: 100%;
}
.l-footer__copyright {
  font-family: "Noto Sans JP", serif;
  font-weight: 500;
  font-size: 10px;
}

.l-main {
  margin-top: 11rem;
}
.l-main__sec {
  padding: 10rem 0;
}
.l-main__inner {
  padding: 0 34rem;
}
@media (max-width: 1280px) {
  .l-main__inner {
    padding: 0 12rem;
  }
}
@media (max-width: 768px) {
  .l-main__inner {
    padding: 0 5rem;
  }
}
@media (max-width: 480px) {
  .l-main__inner {
    padding: 0 2.5rem;
  }
}
.l-main__inner2 {
  padding: 0 44rem;
}
@media (max-width: 1280px) {
  .l-main__inner2 {
    padding: 0 24rem;
  }
}
@media (max-width: 768px) {
  .l-main__inner2 {
    padding: 0 5rem;
  }
}
@media (max-width: 480px) {
  .l-main__inner2 {
    padding: 0 2.5rem;
  }
}

.l-header__hum {
  display: none;
  border: none;
  background: transparent;
}

@media (max-width: 768px) {
  .l-header__hum {
    display: block;
    width: 4rem;
    height: 4rem;
    cursor: pointer;
    position: relative;
    z-index: 9999;
  }
  .l-header__bar {
    display: block;
    height: 2px;
    border-radius: 1px;
    background: linear-gradient(90deg, #1AAB37, #a4cb0c);
    position: relative;
    transition: all 0.4s;
  }
  .l-header__bar::before, .l-header__bar::after {
    content: "";
    width: 100%;
    height: inherit;
    display: block;
    background: linear-gradient(90deg, #1AAB37, #a4cb0c);
    border-radius: inherit;
    position: absolute;
    left: 0;
    transition: all 0.4s;
  }
  .l-header__bar::before {
    top: -1.5rem;
  }
  .l-header__bar::after {
    top: 1.5rem;
  }
  .l-header__bar.on {
    background: transparent;
  }
  .l-header__bar.on::before {
    top: 0;
    rotate: 45deg;
  }
  .l-header__bar.on::after {
    top: 0;
    rotate: -45deg;
  }
  .l-header__nav {
    background: rgba(204, 204, 204, 0.5);
    position: fixed;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s;
  }
  .l-header__nav.on {
    opacity: 1;
    visibility: visible;
  }
  .l-header__list {
    max-width: 50rem;
    background: #fff;
    flex-direction: column;
    padding: 15rem 4rem 8rem;
    border-radius: 0 0 0 8rem;
    margin: 0 0 0 auto;
    transform-origin: top right;
    transform: translate(100%, -100%);
    opacity: 0;
    transition: all 0.8s;
  }
  .l-header__list.on {
    transform: translate(0, 0);
    opacity: 1;
  }
  .l-header__item {
    font-family: "Noto Sans JP", serif;
    font-weight: 600;
    font-size: 2.4rem;
  }
  .l-header__item + .l-header__item {
    margin-top: 5rem;
    margin-left: 0;
  }
  .l-header__tel-box {
    margin-top: 5rem;
    margin-left: 0;
  }
  .l-header__mail-box {
    width: 100%;
    height: 20rem;
    font-size: 2.4rem;
    margin-top: 5rem;
    border-radius: 4rem;
  }
}

.c-scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #1AAB37;
  position: absolute;
  right: 6.5rem;
  bottom: -9rem;
}
@media (max-width: 1280px) {
  .c-scroll-indicator {
    right: 2.5rem;
  }
}
@media (max-width: 768px) {
  .c-scroll-indicator {
    right: 0.8rem;
  }
}
@media (max-width: 480px) {
  .c-scroll-indicator {
    right: 0.4rem;
  }
}
.c-scroll-indicator__text {
  writing-mode: vertical-rl;
  font-family: "Noto Sans JP", serif;
  font-weight: 700;
  padding-bottom: 2.4rem;
}
.c-scroll-indicator__line {
  width: 1px;
  height: 18rem;
  background-color: #1AAB37;
  transform-origin: top left;
  animation: lineScroll 2s infinite;
}

@keyframes lineScroll {
  0% {
    transform: scaleY(0);
  }
  100% {
    transform: scaleY(1);
  }
}
.c-breadcrumb {
  padding-top: 3.2rem;
}
.c-breadcrumb__nav {
  font-family: "Noto Sans JP", serif;
  font-weight: 400;
  font-size: 14px;
  color: #403223;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.c-breadcrumb__link {
  text-decoration: underline;
}

.c-btn,
.wp-block-button,
.wpcf7-submit {
  display: inline-block;
  font-family: "Noto Sans JP", serif;
  font-weight: 500;
  font-size: 1.6rem;
  min-width: 24rem;
  min-height: 6rem;
  line-height: 6rem;
  background: linear-gradient(90deg, #1AAB37, #a4cb0c);
  color: #fff;
  border-radius: 4rem;
  text-align: center;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  z-index: 0;
  transition: all 0.8s;
}
.c-btn::before,
.wp-block-button::before,
.wpcf7-submit::before {
  content: "";
  display: block;
  background: #009944;
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  transition: all 0.8s;
}
.c-btn::after,
.wp-block-button::after,
.wpcf7-submit::after {
  content: "";
  display: block;
  width: 0.6rem;
  height: 100%;
  aspect-ratio: 6/12;
  background: url(assets/images/arrow.svg) no-repeat center/contain;
  position: absolute;
  top: 50%;
  right: 4.5rem;
  transform: translateY(-50%);
  transition: all 0.8s;
}
.c-btn:hover a,
.wp-block-button:hover a,
.wpcf7-submit:hover a {
  opacity: 1;
}
.c-btn:hover::before,
.wp-block-button:hover::before,
.wpcf7-submit:hover::before {
  opacity: 1;
}
.c-btn:hover::after,
.wp-block-button:hover::after,
.wpcf7-submit:hover::after {
  right: 2.5rem;
}
.c-btn a,
.wp-block-button a,
.wpcf7-submit a {
  display: block;
  width: 100%;
  height: 100%;
  font-size: inherit;
  background: transparent;
  color: inherit;
  box-shadow: inherit;
  text-decoration: inherit;
  border-radius: inherit;
  padding: 0 6rem 0 5rem;
}
.c-btn__footer,
.wp-block-button__footer,
.wpcf7-submit__footer {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 37.5rem;
  height: 7.5rem;
  margin: 0 auto;
}
.c-btn__footer::before, .c-btn__footer::after,
.wp-block-button__footer::before,
.wp-block-button__footer::after,
.wpcf7-submit__footer::before,
.wpcf7-submit__footer::after {
  display: none;
}
.c-btn__footer-icon,
.wp-block-button__footer-icon,
.wpcf7-submit__footer-icon {
  display: flex;
  align-items: center;
  width: 3rem;
  margin-right: 1.25em;
}
.c-btn__footer-icon img,
.wp-block-button__footer-icon img,
.wpcf7-submit__footer-icon img {
  -o-object-fit: contain;
     object-fit: contain;
}
.c-btn__footer-text,
.wp-block-button__footer-text,
.wpcf7-submit__footer-text {
  font-family: "Noto Sans JP", serif;
  font-weight: 700;
  font-size: 1.25em;
}

.wp-block-button:hover,
.wpcf7-submit:hover {
  opacity: 0.6;
}

@media (max-width: 768px) {
  .c-link-btn {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }
}
.c-link-btn a {
  display: flex;
  align-items: center;
}
.c-link-btn a span,
.c-link-btn a img {
  transition: all 0.8s;
}
.c-link-btn a:hover {
  opacity: 1;
}
.c-link-btn a:hover span {
  color: #1AAB37;
}
.c-link-btn a:hover span::before {
  opacity: 1;
}
.c-link-btn a:hover img {
  scale: 1.5;
}
.c-link-btn .circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6rem;
  height: 6rem;
  background: linear-gradient(90deg, #1AAB37, #a4cb0c);
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.c-link-btn .circle::before {
  content: "";
  display: block;
  background: #1AAB37;
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  transition: all 0.8s;
}
.c-link-btn .circle img {
  display: inline-block;
  width: 0.6rem;
  -o-object-fit: contain;
     object-fit: contain;
}
.c-link-btn .text {
  font-family: "Noto Sans JP", serif;
  font-weight: 700;
  font-size: 1.6rem;
  padding-left: 1.6rem;
}

h2.wp-block-heading {
  font-family: "Noto Sans JP", serif;
  font-weight: 700;
  font-size: 3.4rem;
  line-height: 1.5;
}

h3.wp-block-heading {
  font-family: "Noto Sans JP", serif;
  font-weight: 700;
  font-size: 2.8rem;
  line-height: 1.5;
}

h4.wp-block-heading {
  font-family: "Noto Sans JP", serif;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.5;
}

h5.wp-block-heading {
  font-family: "Noto Sans JP", serif;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.5;
}

p.wp-block-heading {
  font-family: "Noto Sans JP", serif;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1.5;
}

.wpcf7-form {
  /* ---- 入力時 ------------------------ */
}
.wpcf7-form label {
  width: 100%;
  display: inline-block;
  margin-bottom: 3.2rem;
  cursor: pointer;
}
.wpcf7-form .contact-title {
  font-family: "Noto Sans JP", serif;
  font-weight: 700;
}
.wpcf7-form .contact-required {
  font-family: "Noto Sans JP", serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.4rem 1.2rem;
  background: #1AAB37;
  color: #fff;
  border-radius: 0.5rem;
  margin-left: 1.6rem;
  vertical-align: middle;
}
.wpcf7-form input[type=text],
.wpcf7-form input[type=email],
.wpcf7-form input[type=tel],
.wpcf7-form textarea {
  font-size: 1.8rem;
  font-family: "Noto Sans JP", serif;
  font-weight: 500;
  width: 100%;
  padding: 1.8rem 2rem;
  border: 2px solid #1AAB37;
  border-radius: 0.5rem;
  margin-top: 1rem;
}
.wpcf7-form p:has(a.privacy) {
  text-align: center;
}
.wpcf7-form a.privacy {
  color: #1AAB37;
  text-decoration: underline;
}
.wpcf7-form input[type=checkbox] {
  width: 2.6rem;
  height: 2.6rem;
  margin-right: 1.6rem;
  accent-color: #1AAB37;
  vertical-align: middle;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid #1AAB37;
  border-radius: 0.5rem;
}
.wpcf7-form input[type=checkbox]:checked {
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
}
.wpcf7-form p:has(.wpcf7-submit) {
  text-align: center;
}
.wpcf7-form .wpcf7-submit {
  border: none;
}
.wpcf7-form .wpcf7-submit:disabled {
  cursor: not-allowed;
  opacity: 0.2;
}
.wpcf7-form .wpcf7-spinner {
  display: none;
}
.wpcf7-form input::-moz-placeholder, .wpcf7-form textarea::-moz-placeholder {
  font-family: "Noto Sans JP", serif;
  font-weight: 500;
  color: #C1C1C1;
}
.wpcf7-form input::placeholder,
.wpcf7-form textarea::placeholder {
  font-family: "Noto Sans JP", serif;
  font-weight: 500;
  color: #C1C1C1;
}
.wpcf7-form .wpcf7-not-valid-tip {
  font-family: "Noto Sans JP", serif;
  font-weight: 700;
  color: #E60012;
}
.wpcf7-form .wpcf7-not-valid-tip::before {
  content: "※";
}
.wpcf7-form .wpcf7-response-output {
  border: none !important;
  font-family: "Noto Sans JP", serif;
  font-weight: 700;
  color: #E60012;
  text-align: center;
}
.wpcf7-form .wpcf7-response-output::before {
  content: "※";
}
.wpcf7-form {
  /* ---- 確認画面 ------------------------ */
}
.wpcf7-form label:has(.input-text) {
  cursor: not-allowed;
}
.wpcf7-form .input-text {
  display: block;
  font-family: "Noto Sans JP", serif;
  font-weight: 700;
  width: 100%;
  padding: 1rem;
  border: 2px solid #1AAB37;
  border-radius: 0.5rem;
  margin-top: 1rem;
  min-height: 6rem;
}
.wpcf7-form p:has(input[type=button]) {
  margin-top: 5rem;
}
.wpcf7-form input[type=button] {
  border: none;
  font-family: "Noto Sans JP", serif;
  font-weight: 500;
  font-size: 1.6rem;
  min-width: 24rem;
  min-height: 6rem;
  line-height: 6rem;
  background: #e2e2e2;
  color: #000;
  border-radius: 4rem;
  text-align: center;
  position: relative;
  cursor: pointer;
  margin-right: 5rem;
}
@media (max-width: 480px) {
  .wpcf7-form input[type=button] {
    margin-right: 3rem;
  }
}

.c-heading {
  margin-bottom: 4rem;
}
.c-heading__title-eg {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 4.8rem;
  line-height: 1.25;
  color: #1AAB37;
}
@media (max-width: 480px) {
  .c-heading__title-eg {
    font-size: 4rem;
  }
}
.c-heading__title-jp {
  font-family: "Noto Sans JP", serif;
  font-weight: 600;
  font-size: 3.2rem;
  line-height: 1.25;
  color: #a4cb0c;
}
@media (max-width: 480px) {
  .c-heading__title-jp {
    font-size: 2.4rem;
  }
}

.u-news-list__item {
  background: #F8FAF2;
  border-radius: 1rem;
  transition: all 0.8s;
}
.u-news-list__item:not(:last-child) {
  margin-bottom: 1.6rem;
}
.u-news-list__item:hover {
  background: #009944;
}
.u-news-list__item:hover a,
.u-news-list__item:hover span,
.u-news-list__item:hover h3 {
  opacity: 1;
  color: #fff;
}
.u-news-list__flex {
  display: flex;
  padding: 2.4rem 4rem;
}
.u-news-list__date {
  font-family: "Noto Sans JP", serif;
  font-weight: 700;
  color: #a4cb0c;
  margin-right: 5rem;
}
.u-news-list__title {
  font-family: "Noto Sans JP", serif;
  font-weight: 700;
  font-size: 1.8rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

.c-definition-list {
  padding: 0 27rem;
}
@media (max-width: 1280px) {
  .c-definition-list {
    padding: 0 15rem;
  }
}
@media (max-width: 768px) {
  .c-definition-list {
    padding: 5rem;
  }
}
.c-definition-list__flex {
  display: flex;
  flex-wrap: wrap;
  padding: 3rem 0;
  border-bottom: 1px solid #707070;
}
@media (max-width: 480px) {
  .c-definition-list__flex {
    display: block;
  }
}
.c-definition-list__term {
  width: 20rem;
  font-family: "Noto Sans JP", serif;
  font-weight: 700;
}
@media (max-width: 480px) {
  .c-definition-list__term {
    padding-bottom: 1rem;
  }
}
.c-pagination {
  display: flex;
  justify-content: center;
  gap: 1.6rem;
}
.c-pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.8rem;
  height: 4.8rem;
  color: #1AAB37;
  border-radius: 50%;
  border: 1px solid #1AAB37;
}
.c-pagination .page-numbers.current {
  background: #1AAB37;
  color: #fff;
}
.c-pagination__prev {
  rotate: 180deg;
  width: 0.6rem;
  -o-object-fit: contain;
     object-fit: contain;
}
.c-pagination__next {
  width: 0.6rem;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-home__bg1 {
  background: url(assets/images/bg1.webp) no-repeat top right/cover;
  z-index: -10;
}
.p-home__fv {
  width: 100%;
  position: relative;
}
.p-home__fv-copy {
  position: absolute;
  top: 14rem;
  left: 0;
  padding: 6.5rem 5.5rem 6.5rem 19rem;
}
@media (max-width: 1280px) {
  .p-home__fv-copy {
    padding: 5rem 4rem 5rem 11rem;
  }
}
@media (max-width: 768px) {
  .p-home__fv-copy {
    top: 10rem;
    padding: 4rem 3rem 4rem 6rem;
  }
}
@media (max-width: 480px) {
  .p-home__fv-copy {
    padding: 3rem 1rem 3rem 3rem;
  }
}
.p-home__fv-copy::after {
  content: "";
  display: block;
  width: 100%;
  background: linear-gradient(90deg, #1AAB37, #a4cb0c);
  opacity: 0.6;
  position: absolute;
  inset: 0;
}
.p-home__fv-copy h2 {
  font-family: "Noto Sans JP", serif;
  font-weight: 700;
  font-size: 5.6rem;
  line-height: 1.75;
  color: #fff;
  position: relative;
  z-index: 1;
  text-shadow: 3px 3px 6px rgba(12, 78, 25, 0.2);
}
@media (max-width: 1280px) {
  .p-home__fv-copy h2 {
    font-size: 4rem;
  }
}
@media (max-width: 768px) {
  .p-home__fv-copy h2 {
    font-size: 3.2rem;
  }
}
@media (max-width: 480px) {
  .p-home__fv-copy h2 {
    font-size: 2.4rem;
  }
}
.p-home__inner {
  padding: 0 16rem;
}
@media (max-width: 1280px) {
  .p-home__inner {
    padding: 0 8rem;
  }
}
@media (max-width: 768px) {
  .p-home__inner {
    padding: 0;
  }
}
.p-home__fv-img {
  width: 100%;
  height: calc(100vh - 11rem);
  min-height: 60rem;
}
@media (max-width: 768px) {
  .p-home__fv-img {
    min-height: 90rem;
  }
}
.p-home__fv-img img {
  -o-object-position: 80% 100%;
     object-position: 80% 100%;
}
.p-home__about {
  padding-top: 16rem;
  padding-bottom: 0;
}
.p-home__about-flex {
  display: flex;
  flex-direction: row-reverse;
  gap: 12rem;
}
@media (max-width: 1280px) {
  .p-home__about-flex {
    gap: 6rem;
  }
}
@media (max-width: 768px) {
  .p-home__about-flex {
    display: block;
  }
}
.p-home__about-text-box {
  width: 50%;
  position: relative;
}
@media (max-width: 768px) {
  .p-home__about-text-box {
    width: 100%;
    margin-bottom: 5rem;
    padding-bottom: 8rem;
  }
}
.p-home__about-text-box-btn {
  position: absolute;
  right: 0;
  bottom: 0;
}
.p-home__about-img-box {
  width: 50%;
  height: 100%;
  aspect-ratio: 560/420;
}
@media (max-width: 768px) {
  .p-home__about-img-box {
    width: 100%;
  }
}
.p-home__feature {
  padding-top: 12rem;
  padding-bottom: 23rem;
}
.p-home__feature-flex {
  display: flex;
  gap: 12rem;
}
@media (max-width: 1280px) {
  .p-home__feature-flex {
    gap: 6rem;
  }
}
@media (max-width: 768px) {
  .p-home__feature-flex {
    display: block;
  }
}
.p-home__feature-text-box {
  width: 50%;
}
@media (max-width: 768px) {
  .p-home__feature-text-box {
    width: 100%;
    margin-bottom: 5rem;
  }
}
.p-home__feature-img-box {
  width: 50%;
  height: 100%;
  aspect-ratio: 560/420;
}
@media (max-width: 768px) {
  .p-home__feature-img-box {
    width: 100%;
  }
}
.p-home__service {
  position: relative;
  padding-top: 7.5rem;
  padding-bottom: 20rem;
  background: url(assets/images/bg2.webp) no-repeat bottom center/contain;
}
@media (max-width: 768px) {
  .p-home__service {
    background: url(assets/images/bg2.webp) no-repeat center/cover;
  }
}
.p-home__service::before {
  content: "";
  display: block;
  width: 100%;
  height: 8rem;
  background: url(assets/images/ellipse.svg) no-repeat center/cover;
  position: absolute;
  top: -8rem;
  left: 50%;
  transform: translateX(-50%);
}
.p-home__service-text-box {
  text-align: center;
  margin-bottom: 6rem;
}
.p-home__service-lead {
  font-size: 2.4rem;
}
@media (max-width: 480px) {
  .p-home__service-lead {
    font-size: 2rem;
  }
}
.p-home__service-list {
  display: flex;
  gap: 12rem;
}
@media (max-width: 1280px) {
  .p-home__service-list {
    gap: 6rem;
  }
}
@media (max-width: 768px) {
  .p-home__service-list {
    display: block;
  }
}
.p-home__service-item {
  width: 50%;
}
@media (max-width: 768px) {
  .p-home__service-item {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .p-home__service-item:first-child {
    margin-bottom: 10rem;
  }
}
.p-home__service-item h3 {
  font-family: "Noto Sans JP", serif;
  font-weight: 700;
  font-size: 3.2rem;
  margin-bottom: 1.6rem;
}
.p-home__service-item p {
  margin-bottom: 4rem;
}
.p-home__service-img-box {
  width: 100%;
  aspect-ratio: 560/420;
  margin-bottom: 4rem;
  position: relative;
}
.p-home__service-point {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15rem;
  height: 15rem;
  background: #1AAB37;
  color: #fff371;
  border-radius: 50%;
  text-align: center;
  position: absolute;
  top: -7.5rem;
  left: -7.5rem;
}
@media (max-width: 768px) {
  .p-home__service-point {
    top: 1rem;
    left: 1rem;
  }
}
@media (max-width: 480px) {
  .p-home__service-point {
    width: 12rem;
    height: 12rem;
  }
}
.p-home__service-point span {
  font-family: "Noto Sans JP", serif;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.5;
}
@media (max-width: 480px) {
  .p-home__service-point span {
    font-size: 2rem;
  }
}
.p-home__service-btn {
  margin: 0 auto;
}
.p-home__news {
  padding-bottom: 20rem;
}
.p-home__news-grid {
  display: grid;
  grid-template-columns: 30rem auto;
}
@media (max-width: 768px) {
  .p-home__news-grid {
    display: block;
  }
}
.p-home__news-heading {
  position: relative;
}

.p-header {
  width: 100%;
  padding: 20rem 0;
  position: relative;
}
.p-header__title-eg {
  font-family: "Noto Sans JP", serif;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.5;
  color: #fff;
}
.p-header__title-jp {
  font-family: "Noto Sans JP", serif;
  font-weight: 700;
  font-size: 4.8rem;
  line-height: 1.5;
  color: #fff;
  text-shadow: 3px 3px 6px rgba(12, 78, 25, 0.2);
}
.p-header__bg-img {
  position: absolute;
  inset: 0;
  z-index: -1;
}

body.contact,
body.confirm,
body.thanks {
  background: #F8FAF2;
}

.p-about {
  padding: 15rem 0 20rem;
}
.p-about__philosophy {
  padding-bottom: 20rem;
}
.p-about__philosophy-item {
  display: grid;
  grid-template-columns: 1fr 2fr;
}
.p-about__philosophy-item:not(:last-child) {
  margin-bottom: 8rem;
}
@media (max-width: 768px) {
  .p-about__philosophy-item {
    display: block;
  }
}
@media (max-width: 768px) {
  .p-about__philosophy-title {
    padding-bottom: 2rem;
  }
}
.p-about__philosophy-title-eg {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 4.8rem;
  line-height: 1.25;
  color: #1AAB37;
}
@media (max-width: 480px) {
  .p-about__philosophy-title-eg {
    font-size: 4rem;
  }
}
.p-about__philosophy-title-jp {
  font-family: "Noto Sans JP", serif;
  font-weight: 600;
  font-size: 2rem;
  line-height: 1.25;
  color: #a4cb0c;
}
.p-about__philosophy-text {
  font-family: "Noto Sans JP", serif;
  font-weight: 700;
  font-size: 2.8rem;
  line-height: 1.5;
}
.p-about__message {
  padding: 12rem 0 20rem;
  background: url(assets/images/bg1.webp) no-repeat top right/cover;
  z-index: -10;
}
.p-about__message-item {
  display: flex;
  justify-content: space-between;
  padding-top: 2rem;
}
@media (max-width: 1280px) {
  .p-about__message-item {
    gap: 5rem;
  }
}
@media (max-width: 768px) {
  .p-about__message-item {
    display: block;
  }
}
.p-about__message-img {
  width: 50rem;
  height: 100%;
  aspect-ratio: 500/600;
}
@media (max-width: 768px) {
  .p-about__message-img {
    width: 100%;
    aspect-ratio: 1/1;
    margin-right: 0;
    margin-bottom: 5rem;
  }
}
.p-about__message-text-box {
  width: 64rem;
}
@media (max-width: 768px) {
  .p-about__message-text-box {
    width: 100%;
  }
}
.p-about__message-text-box p:not(:last-child) {
  margin-bottom: 4rem;
}
.p-about__bg {
  width: 100%;
  position: relative;
  background: url(assets/images/bg2.webp) no-repeat 50% 80%/contain;
}
@media (max-width: 768px) {
  .p-about__bg {
    background: url(assets/images/bg2.webp) no-repeat center/cover;
  }
}
.p-about__company {
  padding-top: 10rem;
  position: relative;
}
.p-about__company::before {
  content: "";
  display: block;
  width: 100%;
  height: 8rem;
  background: url(assets/images/ellipse.svg) no-repeat center/cover;
  position: absolute;
  top: -8rem;
  left: 50%;
  transform: translateX(-50%);
}
.p-about__history {
  padding-top: 20rem;
}

.p-archive {
  padding-top: 10rem;
  padding-bottom: 20rem;
}
.p-archive__pagination {
  padding-top: 5rem;
}

.p-single__header {
  padding-top: 10rem;
}
.p-single__header-img {
  margin-bottom: 8rem;
}
.p-single__header-title {
  font-family: "Noto Sans JP", serif;
  font-weight: 700;
  font-size: 3.4rem;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}
.p-single__header-date {
  font-family: "Noto Sans JP", serif;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.5;
}
.p-single__content {
  padding: 10rem 0 20rem;
}
.p-single__btn {
  margin-top: 5.6rem;
}

.wp-block-file {
  padding: 2rem 4rem;
  margin: 2rem 0;
  border: 1px solid #ccc;
  border-radius: 0.5rem;
}
.wp-block-file__button {
  padding: 0.5rem 2rem;
  background: linear-gradient(90deg, #1AAB37, #a4cb0c);
}

.p-custom {
  padding-top: 10rem;
  padding-bottom: 20rem;
}
.p-custom__header {
  width: 100%;
  position: relative;
  text-align: center;
  padding-bottom: 6rem;
}
.p-custom__header-title-eg {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 4.8rem;
  line-height: 1.5;
  color: #1AAB37;
}
.p-custom__header-title-jp {
  font-family: "Noto Sans JP", serif;
  font-weight: 600;
  font-size: 3.2rem;
  line-height: 1.5;
  color: #a4cb0c;
}
.p-error {
  padding: 11rem 0 20rem;
  text-align: center;
}
.p-error__heading {
  margin-bottom: 12rem;
}
.p-error__title {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 9rem;
  line-height: 1.25;
  color: #1AAB37;
}
.p-error__sub-title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  color: #a4cb0c;
}
.p-error__text {
  margin-bottom: 6rem;
}
.p-error__btn {
  margin: 0 auto;
}

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

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

.u-np-none {
  display: block;
}
@media (max-width: 1280px) {
  .u-np-none {
    display: none;
  }
}

.u-tb-none {
  display: block;
}
@media (max-width: 768px) {
  .u-tb-none {
    display: none;
  }
}

.u-sp-none {
  display: block;
}
@media (max-width: 480px) {
  .u-sp-none {
    display: none;
  }
}

.u-white {
  color: #fff;
}

.u-text-shadow {
  text-shadow: 3px 3px 6px rgba(12, 78, 25, 0.2);
}

.home .js-fv01 {
  opacity: 0;
  transition: all 0.8s;
}
.home .js-fv01.active {
  opacity: 1;
}
.home .js-fv02 {
  opacity: 0;
  transition: all 0.8s;
}
.home .js-fv02.active {
  opacity: 1;
}
.home .js-fv03 {
  opacity: 0;
  transform: translateX(-5rem);
  filter: blur(10px);
  transition: all 0.8s;
}
.home .js-fv03.active {
  opacity: 1;
  transform: translateX(0);
  filter: blur(0);
}
.home .js-fv04 {
  opacity: 0;
  transition: all 0.8s;
}
.home .js-fv04.top {
  transform: translateY(-2.5rem);
}
.home .js-fv04.bottom {
  transform: translateY(2.5rem);
}
.home .js-fv04.active {
  opacity: 1;
  transform: translateY(0);
}

.js-top {
  opacity: 0;
  transform: translateY(-2.5rem);
  transition: all 0.8s;
}
.js-top.active {
  opacity: 1;
  transform: translateY(0);
}

.js-bottom {
  opacity: 0;
  transform: translateY(2.5rem);
  transition: all 0.8s;
}
.js-bottom.active {
  opacity: 1;
  transform: translateY(0);
}

.js-left {
  opacity: 0;
  transform: translateX(-2.5rem);
  transition: all 0.8s;
}
.js-left.active {
  opacity: 1;
  transform: translateX(0);
}

.js-right {
  opacity: 0;
  transform: translateX(2.5rem);
  transition: all 0.8s;
}
.js-right.active {
  opacity: 1;
  transform: translateX(0);
}/*# sourceMappingURL=style.css.map */