@charset "UTF-8";
html {
 scroll-behavior: smooth;
 scroll-padding-top: 110px;
}
@media screen and (max-width: 900px) {
 html {
  scroll-padding-top: 80px;
 }
}
body {
 font-family: "Noto Sans JP", sans-serif;
 font-style: normal;
 line-height: 1;
 letter-spacing: 0;
}
main {
 overflow: hidden;
}
/*
@media screen and (max-width: 768px) {
 body {
  padding-bottom: calc(85px + env(safe-area-inset-bottom));
 }
}
*/
/* iOS対策を含めたスクロール固定 */
body.no-scroll {
 overflow: hidden;
 height: 100%;
}
/* 主に改行に使用 */
@media screen and (min-width: 769px) {
 .pcnone {
  display: none !important;
 }
}
@media screen and (max-width: 768px) {
 .spnone {
  display: none !important;
 }
}
/*改行制御を追加*/
.budoux {
 word-break: keep-all;
 overflow-wrap: anywhere;
}
/*トップへ戻る*/
#page-top a {
 display: flex;
 justify-content: center;
 align-items: center;
 width: 40px;
 aspect-ratio: 1/1;
 background-color: #72B239;
 border-radius: 50%;
 background-image: url("../img/arrow_up.svg");
 background-repeat: no-repeat;
 background-position: center;
 background-size: 12px 20px;
 bottom: 49px;
 position: fixed;
 right: 5.6%;
 z-index: 10000;
 transition: background-position 0.3s ease, background-color 0.3s;
 -webkit-tap-highlight-color: transparent;
 opacity: 0;
 visibility: hidden;
 pointer-events: none;
}
#page-top a.is-show {
 opacity: 1;
 visibility: visible;
 pointer-events: auto;
}
#page-top a:hover {
 background-color: #C5E29F;
 background-position: center 35%;
}
@media screen and (max-width: 768px) {
 #page-top a {
  bottom: 50px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-image: url("../img/arrow_up2.svg");
  background-size: 12px;
  transform: none;
 }
}
.fade {
 transition: 0.3s ease-in-out;
}
.fade:hover {
 opacity: 0.8;
 filter: alpha(opacity=80);
 -ms-filter: "alpha(opacity=70)";
}
/* 共通クラス */
.flex-between {
 position: relative;
 display: flex;
 justify-content: space-between;
 align-items: center;
 width: 100%;
}
.flex-start {
 display: flex;
 justify-content: flex-start;
 align-items: center;
}
.relative {
 position: relative;
}
.content {
 width: clamp(331px, 88.2666vw, 1000px);
 margin: 0 auto;
}
.content2 {
 width: clamp(331px, 88.2666vw, 1200px);
 margin: 0 auto;
}
@media screen and (max-width: 350px) {
 .content, .content2 {
  width: 88.2666%;
 }
}
/* パンくずリスト */
.breadcrumb {
 position: relative;
 z-index: 2;
 background: transparent;
}
div.breadcrumb nav ol {
 display: flex;
 justify-content: flex-start;
 align-items: flex-start;
}
div.breadcrumb nav ol li {
 display: flex;
 justify-content: center;
 align-items: center;
 gap: 3px;
}
div.breadcrumb nav ol li:nth-child(1), div.breadcrumb nav ol li:nth-child(2) {
 white-space: nowrap;
}
div.breadcrumb nav ol li, div.breadcrumb nav ol li a {
 color: #FFF;
 font-family: "Noto Sans JP", sans-serif;
 font-size: 17px;
 font-style: normal;
 font-weight: 700;
 line-height: normal;
 text-overflow: ellipsis;
}
div.breadcrumb nav ol li a:hover {
 opacity: 0.5;
}
div.breadcrumb nav ol li:not(:last-child)::after {
 content: ">";
 display: block;
 width: 10px;
 height: 20px;
 flex-shrink: 0;
 text-align: center;
 margin-right: 3px;
}
div.breadcrumb nav ol li a[aria-current=page] {
 display: block;
 max-width: 380px;
 overflow: hidden;
 white-space: nowrap;
 text-decoration: none;
 pointer-events: none;
}
@media screen and (max-width: 768px) {
 .breadcrumb {}
 div.breadcrumb nav ol {
  flex-wrap: nowrap;
  overflow: hidden;
 }
 div.breadcrumb nav ol li, div.breadcrumb nav ol li a {
  font-size: 1.4rem;
 }
 div.breadcrumb nav ol li:last-child {
  justify-content: flex-start;
  flex: 1;
  min-width: 0;
 }
 div.breadcrumb nav ol li a[aria-current=page] {
  max-width: 100%;
 }
}
/*hgroup*/
hgroup {
 display: flex;
 flex-direction: column;
 gap: 40px;
}
hgroup p {
 color: #39B54A;
 font-family: "Outfit", sans-serif;
 font-size: 15px;
 font-weight: 700;
 line-height: 25px; /* 166.667% */
}
hgroup h2 {
 color: #042;
 font-family: "Noto Serif JP", serif;
 font-size: 20px;
 font-weight: 700;
 line-height: normal;
}
hgroup.h2-large h2 {
 font-size: 45px;
}
hgroup.part {
 position: relative;
 z-index: 2;
 align-items: center;
 gap: 32px;
}
hgroup.part p {
 display: flex;
 align-items: center;
 gap: 16px;
}
hgroup.part p::before, hgroup.part p::after {
 content: "";
 display: block;
 width: 20px;
 height: 2px;
 border: 1px solid #39B54A;
}
hgroup.part h2 {
 font-size: 45px;
}
hgroup.part.color p, hgroup.part.color h2 {
 color: #fff;
}
hgroup.part.color p::before, hgroup.part.color p::after {
 border: 1px solid #FFF;
}
@media screen and (max-width: 768px) {
 hgroup {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
 }
 hgroup p {
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
 }
 hgroup h2 {
  font-size: 32px;
  line-height: normal;
 }
 hgroup.h2-large h2 {
  font-size: 32px;
 }
 hgroup.part {
  position: relative;
  z-index: 2;
  align-items: center;
  gap: 8px;
 }
 hgroup.part p {
  display: flex;
  align-items: center;
  gap: 16px;
 }
 hgroup.part p::before, hgroup.part p::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  border: 1px solid #39B54A;
 }
 hgroup.part h2 {
  font-size: 32px;
  text-align: center;
 }
}
/*ボタン*/
.link-btn {
 display: flex;
 width: fit-content;
 padding: 20px 20px 20px 40px;
 align-items: center;
 gap: 30px;
 border-radius: 5px;
 background-color: #72B239;
 color: #FFF;
 font-feature-settings: 'hwid'on, 'palt'on;
 font-family: "Noto Sans JP", sans-serif;
 font-size: 15px;
 font-style: normal;
 font-weight: 700;
 line-height: normal;
 transition: background-color 0.3s ease;
}
.link-btn span.arrow {
 display: block;
 width: 8px;
 height: 16px;
 background-image: url("../img/arrow_right_white.svg");
 background-repeat: no-repeat;
 background-size: contain;
 background-position: center;
 transition: transform 0.3s ease;
}
.link-btn:hover {
 background: #C5E29F;
}
.link-btn:hover span.arrow {
 transform: translateX(5px);
}
@media screen and (max-width: 768px) {
 .link-btn.policy-btn {
  margin: 0 auto;
 }
 .link-btn.sp-absolute {
  position: absolute;
  bottom: -80px;
  left: 0;
  width: 100%;
  height: 80px;
  gap: 16px;
  justify-content: center;
  border-radius: 0;
  padding: 0;
  text-align: justify;
  font-size: 16px;
  line-height: 200%; /* 32px */
 }
 .link-btn.sp-absolute span.arrow {
  width: 20px;
  height: 20px;
  background-color: #fff;
  border-radius: 50%;
  background-image: url("../img/arrow_right_light-green.svg");
  background-repeat: no-repeat;
  background-size: 10px 8px;
  background-position: center;
 }
}
/*header*/
.header {
 position: fixed;
 top: 0;
 left: 0;
 width: 100%;
 z-index: 6;
}
.header-inner {
 width: 100%;
 margin: 0 auto;
 padding: 24px 50px;
 align-items: flex-start;
 background-color: #fff;
}
.logo {
 width: 120px;
 height: 47px;
}
.logo a {
 width: 100%;
 height: 100%;
 display: block;
}
.logo a:hover {
 opacity: 0.7;
}
.logo a img {
 object-fit: contain;
}
.global-nav {
 display: inline-flex;
 align-items: center;
 justify-content: space-between;
 gap: 56px;
}
.nav-list {
 display: flex;
 align-items: center;
 gap: 48px;
 list-style: none;
 margin: 0;
 padding: 0;
}
.nav-list .nav-item > a {
 color: #4D4D4D;
 font-feature-settings: 'hwid'on, 'palt'on;
 font-family: "Noto Sans JP", sans-serif;
 font-size: 15px;
 font-weight: 700;
 line-height: normal;
 transition: color 0.2s ease;
}
.nav-list .nav-item > a:hover {
 color: #878787;
}
.btn-contact {
 display: flex;
 align-items: center;
 justify-content: space-between;
 gap: 8px;
 padding: 18px 27px 18px 29px;
 border-radius: 5px;
 background: #042;
 color: #FFF;
 font-family: "Inter", sans-serif;
 font-size: 15px;
 font-weight: 700;
 line-height: 1;
 transition: background-color 0.3s ease;
 -webkit-tap-highlight-color: transparent;
}
.btn-contact:hover {
 background-color: #72B239;
}
.btn-contact .icon {
 display: inline-flex;
 width: 28px;
 height: 20px;
 flex-direction: column;
 justify-content: center;
 align-items: center;
 gap: 10px;
 background-image: url("../img/mail.svg");
 background-position: center;
 background-repeat: no-repeat;
 background-size: cover;
 transition: transform 0.2s ease;
}
@media screen and (max-width: 1070px) {
 .header-inner {
  padding: 24px 28px;
 }
 .global-nav {
  gap: 28px;
 }
 .nav-list {
  gap: 28px;
 }
 .btn-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 18px 18px 18px 20px;
  border-radius: 5px;
  color: #FFF;
  font-weight: 700;
  line-height: 130%;
  transition: opacity 0.2s ease;
  -webkit-tap-highlight-color: transparent;
 }
 .btn-contact:hover {
  opacity: 0.9;
 }
}
/*ハンバーガーメニュー*/
.menu-toggle {
 position: relative;
 z-index: 10;
 display: flex;
 width: 40px;
 height: 40px;
 flex-direction: column;
 justify-content: center;
 align-items: center;
 background-color: #042;
 flex-shrink: 0;
 -webkit-tap-highlight-color: transparent;
}
.menu-toggle:hover {
 opacity: 0.5;
}
.menu-toggle .toggle_line {
 display: block;
 position: absolute;
 left: 50%;
 transform: translateX(-50%);
 width: 20px;
 height: 3px;
 background-color: #FFF;
 transition: all 0.3s;
}
.menu-toggle .toggle_line:nth-child(1) {
 top: 13.6px;
}
.menu-toggle .toggle_line:nth-child(2) {
 top: 20px;
}
.menu-toggle .toggle_line:nth-child(3) {
 top: 26.4px;
}
.menu-toggle.open .toggle_line:nth-of-type(1) {
 transform: translate(-50%, 5px) rotate(-45deg);
}
.menu-toggle.open .toggle_line:nth-of-type(2) {
 opacity: 0;
 transform: translate(-100%, 0);
}
.menu-toggle.open .toggle_line:nth-of-type(3) {
 transform: translate(-50%, -8px) rotate(45deg);
}
.menu-area {
 position: fixed;
 top: 0;
 left: 0;
 width: 100%;
 height: 100vh;
 height: 100dvh;
 display: flex;
 flex-direction: column;
 align-items: center;
 z-index: 9;
 transform: translateX(100%);
 visibility: hidden;
 transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.4s;
 background-color: #FFF;
 overflow-y: auto;
 box-sizing: border-box;
 -webkit-overflow-scrolling: touch;
}
.menu-area.open {
 transform: translateX(0);
 visibility: visible !important;
 will-change: transform;
 opacity: 1;
}
.menu-area-nav-wrap {
 position: relative;
 width: 100%;
 height: 100%;
 border-radius: 0 0 20px 20px;
 background-color: rgba(197, 226, 159, 0.20);
 margin-top: 60px;
}
.contact-box-btn.is-gap40.menu-area-under {
 width: 76.5333%;
 padding: 40px 0 120px;
}
.cmn-nav.g-nav .nav-list {
 display: flex;
 flex-direction: column;
 align-items: flex-start;
 gap: 0;
 padding: 41px 0 48px;
}
.cmn-nav.g-nav .nav-list .nav-item {
 display: flex;
 justify-content: space-between;
 align-items: center;
 width: 100%;
 border-bottom: 1px solid #72B239;
 padding: 20px 0;
}
.cmn-nav.g-nav .nav-list .nav-item a {
 display: flex;
 justify-content: space-between;
 align-items: center;
 width: 100%;
 color: #333;
 font-family: "Noto Sans JP", sans-serif;
 font-size: 15px;
 font-style: normal;
 font-weight: 700;
 line-height: 1.2;
}
.cmn-nav.g-nav .nav-list .nav-item span {
 display: block;
 width: 20px;
 height: 20px;
 background-color: #72B239;
 border-radius: 50%;
 background-image: url("../img/arrow_right_white.svg");
 background-size: 10px 5px;
 background-position: center;
 background-repeat: no-repeat;
}
@media screen and (max-width: 850px) {
 .header-inner {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding: 10px 19px;
  align-items: center;
 }
 .logo {
  position: relative;
  z-index: 10;
  width: 77px;
  height: 30px;
 }
 .logo a {
  width: 100%;
  height: 100%;
  display: inline-flex;
 }
 .logo a img {
  width: 77px;
  aspect-ratio: 77/30;
 }
 .header-right {
  display: none;
 }
}
@media screen and (min-width: 850px) {
 .menu-toggle {
  display: none;
 }
}
/*footer*/
.footer {
 background-color: #195738;
 padding: 60px 0;
}
.footer-inner {
 display: flex;
 justify-content: flex-start;
 gap: 32px;
}
.footer-logo {
 width: 94px;
 height: 119px;
 margin-top: 4px;
}
.footer-logo a {
 width: 100%;
 height: 100%;
 display: block;
}
.footer-logo a:hover {
 opacity: 0.6;
}
.footer-logo a img {
 width: 100%;
 height: 100%;
 object-fit: contain;
}
.footer-info {
 display: flex;
 flex-direction: column;
 gap: 8px;
 padding-left: 40px;
 border-left: 2px solid #fff;
 margin-top: 11px;
}
.footer-info .company-name {
 color: #FFF;
 font-family: "Noto Serif JP", serif;
 font-size: 35px;
 font-weight: 700;
 line-height: normal;
}
.footer-info .address {
 color: #FFF;
 font-family: "Noto Sans JP", sans-serif;
 font-size: 16px;
 font-weight: 400;
 line-height: normal;
}
.footer-info .tel-wrap {
 display: flex;
 justify-content: flex-start;
 align-items: center;
 gap: 10px;
}
.footer-info .tel-wrap a.tel, p.fax {
 color: #FFF;
 font-family: "Noto Sans JP", sans-serif;
 font-size: 16px;
 font-weight: 400;
 line-height: normal;
}
.footer-info .tel-wrap a.tel:hover {
 opacity: 0.7;
}
.footer-partner {
 display: flex;
 flex-direction: column;
 gap: 16px;
 width: 284px;
}
.footer-partner p, .footer-group_company p {
 color: #FFF;
 text-align: center;
 font-family: "Inter", sans-serif;
 font-size: 20px;
 font-weight: 700;
 line-height: normal;
}
.footer-partner ul {
 display: flex;
 flex-direction: column;
}
.footer-partner ul li {
 display: flex;
 gap: 8px;
 color: #FFF;
 font-family: "Noto Sans JP", sans-serif;
 font-size: 14px;
 font-weight: 500;
 line-height: 2;
}
.footer-group_company {
 display: flex;
 flex-direction: column;
 gap: 32px;
 max-width: 175px;
}
.footer-group_company ul {
 display: flex;
 flex-direction: column;
 gap: 3px;
}
.footer-group_company ul li {
 width: 100%;
 height: 66px;
}
.footer-group_company ul li img {
 width: 100%;
 height: 100%;
 object-fit: cover;
}
.footer-under {
 display: flex;
 align-items: center;
 gap: 80px;
 width: fit-content;
 margin: 50px auto 0;
}
.footer-privacy a {
 color: #FFF;
 font-feature-settings: 'hwid'on, 'palt'on;
 font-family: "Noto Sans JP", sans-serif;
 font-size: 15px;
 font-weight: 400;
 line-height: normal;
}
.footer-privacy a:hover {
 opacity: 0.7;
}
.copyright small {
 color: #FFF;
 font-family: "Noto Sans JP", sans-serif;
 font-size: 16px;
 font-weight: 400;
 line-height: normal;
}
@media screen and (max-width: 1120px) {
 .footer-info .company-name {
  font-size: 24px;
 }
 .footer-info .address span {
  display: block;
 }
 .footer-info .tel-wrap {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 3px;
 }
}
@media screen and (max-width: 1080px) {
 .footer-inner {
  gap: 16px;
 }
 .footer-info {
  gap: 16px;
 }
}
@media screen and (max-width: 1000px) {
 .footer-partner {
  width: auto;
 }
 .footer-partner ul {
  gap: 6px;
 }
 .footer-partner ul li {
  flex-direction: column;
  gap: 0;
 }
}
@media screen and (max-width: 768px) {
 .footer {
  background-color: #195738;
  padding: 48px 0 41px;
  margin-top: -1px;
 }
 .footer-inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
  width: 81.8666%;
  margin: 0 auto;
 }
 .footer-logo {
  width: 89px;
  height: 114px;
  flex-shrink: 0;
  margin-top: 0;
 }
 .footer-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 0;
  border-left: none;
  margin-top: 0;
  padding-bottom: 8px;
 }
 .footer-info .company-name {
  font-size: 35px;
 }
 .footer-info .address span {
  display: inline-flex;
 }
 .footer-info .tel-wrap {
  display: flex;
  justify-content: flex-start;
  flex-direction: row;
  align-items: center;
  gap: 10px;
 }
 .footer-partner {
  width: auto;
  padding-bottom: 8px;
 }
 .footer-partner p, .footer-group_company p {
  color: #FFF;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
 }
 .footer-partner ul {
  gap: 0;
 }
 .footer-partner ul li {
  flex-direction: row;
  gap: 8px;
  line-height: 32px;
 }
 .footer-group_company {
  gap: 16px;
 }
 .footer-under {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
  width: fit-content;
  margin: 32px auto 0;
 }
 .copyright small {
  font-size: 1.5rem;
 }
}
/*footer上のお問い合わせ*/
.footer-up_contact {
 width: 100%;
 background-image: url("../img/footer-up-bg.png");
 background-repeat: no-repeat;
 background-size: 100% 100%;
 padding: 63px 0;
}
.footer-up_contact-inner {
 display: flex;
 justify-content: space-between;
 align-content: center;
}
.footer-up_contact-inner p.footer-up_contact-inner_text {
 width: fit-content;
 color: #FFF;
 font-family: "Noto Serif JP", serif;
 font-size: 35px;
 font-weight: 700;
 line-height: normal;
}
.footer-up_contact-inner_right {
 display: flex;
 flex-direction: column;
 align-items: center;
 gap: 16px;
 text-align: center;
 max-width: 241px;
 width: 100%;
}
.footer-up_contact-inner_right p {
 color: #FFF;
 text-align: center;
 font-family: "Noto Sans JP", sans-serif;
 font-size: 14px;
 font-weight: 500;
 line-height: 20px; /* 142.857% */
}
.footer-up_contact-inner_right a {
 display: flex;
 justify-content: space-between;
 align-items: center;
 width: 100%;
 padding: 20px 20px 20px 40px;
 color: #042;
 font-feature-settings: 'hwid'on, 'palt'on;
 font-family: "Noto Sans JP", sans-serif;
 font-size: 15px;
 font-weight: 700;
 line-height: 1;
 border-radius: 5px;
 background-color: #FFF;
 transition: background-color 0.3s ease;
}
.footer-up_contact-inner_right a span {
 display: inline-block;
 width: 10px;
 height: 18px;
 background-image: url("../img/arrow_right.svg");
 background-repeat: no-repeat;
 background-size: contain;
 background-position: center;
 transition: transform 0.3s ease;
}
.footer-up_contact-inner_right a:hover {
 background-color: #C5E29F;
}
.footer-up_contact-inner_right a:hover span {
 transform: translateX(5px);
}
@media screen and (max-width: 768px) {
 .footer-up_contact {
  position: relative;
  width: 100%;
  height: 521px;
  background-image: url("../img/sp-footer-up-bg.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 0 0 40px;
 }
 .footer-up_contact-inner {
  display: block;
  width: 100vw;
 }
 .footer-up_contact-inner p.footer-up_contact-inner_text {
  width: 100%;
  min-height: 103px;
  background-color: #72B239;
  font-family: "Noto Serif JP", serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: normal;
  padding: 21px 10%;
  text-align: center;
 }
 .footer-up_contact-inner_right {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  max-width: 241px;
  width: 100%;
 }
 .footer-up_contact-inner_right p {
  color: #FFF;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px; /* 142.857% */
 }
 .footer-up_contact-inner_right a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 20px 20px 40px;
  color: #042;
  font-feature-settings: 'hwid'on, 'palt'on;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  border-radius: 5px;
  background-color: #FFF;
 }
 .footer-up_contact-inner_right a span {
  display: inline-block;
  width: 10px;
  height: 18px;
  background-image: url("../img/arrow_right.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
 }
}
/*MV*/
.mv-wrap {
 position: relative;
 top: 0;
 width: 100%;
 height: 909.5px;
 display: flex;
 overflow: hidden;
}
.mv-wrap::after {
 content: "";
 width: 100%;
 height: 883px;
 display: block;
 position: absolute;
 bottom: 0;
 background-image: url("../img/mv-under.png");
 background-repeat: no-repeat;
 background-size: 100% 100%;
}
.mv-left {
 position: absolute;
 top: 104px;
 left: 0;
 z-index: 2;
 width: 60%;
 height: 772.2px;
 background-image: url("../img/mv-left_bg.png");
 background-repeat: no-repeat;
 background-position: top;
 background-size: 100% 772.2px;
}
.text-absolute {
 position: relative;
 display: flex;
 flex-direction: column;
 justify-content: flex-start;
 gap: 40px;
 max-width: 1152px;
 width: 100%;
 margin: 224px auto 0;
 z-index: 3;
}
@media screen and (max-width: 1230px) {
 .text-absolute, .text-absolute.sub {
  width: 90%;
 }
}
.main-text {
 color: #FFF;
 font-feature-settings: 'palt'on;
 font-family: "Noto Serif JP", serif;
 font-size: 56px;
 font-weight: 700;
 line-height: normal;
 letter-spacing: 5.6px;
}
.sub-text {
 color: #FFF;
 font-feature-settings: 'hwid'on, 'palt'on;
 font-family: "Noto Sans JP", sans-serif;
 font-size: 20px;
 font-style: normal;
 font-weight: 500;
 line-height: 45px;
}
.mv-right {
 position: absolute;
 top: 104px;
 right: 0;
 z-index: 1;
 width: 54.2459%;
 height: 757.81px;
 -webkit-clip-path: url(#mv-arch-clip);
 clip-path: url(#mv-arch-clip);
}
.mv-right picture, .mv-right img {
 width: 100%;
 height: 100%;
 display: block;
 object-fit: cover;
 object-position: center;
}
.mv-buttons {
 display: flex;
 gap: 32px;
}
.mv-buttons a {
 display: flex;
 justify-content: flex-start;
 align-items: center;
 gap: 30px;
 max-width: 263px;
 height: 58px;
 padding: 0 20px 0 40px;
 color: #FFF;
 font-feature-settings: 'hwid'on, 'palt'on;
 font-family: "Noto Sans JP", sans-serif;
 font-size: 15px;
 font-style: normal;
 font-weight: 700;
 line-height: normal;
 text-decoration: none;
 border-radius: 5px;
 transition: background-color 0.3s ease;
}
.btn-green {
 background-color: #72B239;
 color: #fff;
}
.btn-green:hover {
 background-color: #5e9930;
}
.btn-outline {
 border: 1px solid #fff;
 color: #fff;
}
.btn-outline:hover {
 background-color: rgba(255, 255, 255, 0.1);
}
.mv-buttons .arrow {
 display: inline-block;
 width: 8px;
 height: 16px;
 background-image: url("../img/arrow_right_white.svg");
 background-repeat: no-repeat;
 background-size: contain;
 background-position: center;
 transition: transform 0.3s ease;
}
.mv-buttons a:hover {
 background-color: #C5E29F;
}
.mv-buttons a:hover .arrow {
 transform: translateX(5px);
}
@media screen and (max-width: 1150px) {
 .mv-buttons {
  flex-direction: column;
  gap: 16px;
 }
}
@media screen and (max-width: 850px) {
 .mv-wrap {
  height: 820.5px;
  display: flex;
  overflow: hidden;
 }
 .mv-wrap::after {
  height: 745.5px;
 }
 .mv-right {
  top: 60px;
  height: 713.81px;
 }
 .mv-right picture, .mv-right img {
  width: 100%;
  height: 100%;
  display: block;
  object-position: top;
 }
 .mv-left {
  top: 60px;
  height: 728.2px;
  background-size: 100% 100%;
 }
 .text-absolute {
  margin: 180px auto 0;
 }
 .main-text {
  font-size: clamp(28px, 6.5vw, 56px);
  line-height: 1.3;
 }
 .sub-text {
  font-size: clamp(14px, 2.2vw, 20px);
  line-height: 2;
 }
}
@media screen and (max-width: 600px) {
 .mv-wrap {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
 }
 .mv-left, .mv-wrap::after {
  display: none;
 }
 .mv-right {
  top: 60px;
  width: 100%;
  height: 47.1%;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 99%, 0 78%);
  clip-path: polygon(0 0, 100% 0, 100% 99%, 0 78%);
 }
 .mv-right::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 104%;
  background-color: rgba(0, 0, 0, 0.1);
  z-index: 1;
  pointer-events: none;
 }
 .mv-right, .mv-right::after {
  /* Safari用のチラつき・描画ズレ防止 */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  /* エッジのギザギザ・ノイズ軽減 */
  will-change: clip-path;
 }
 .mv-right.policy_img {
  top: 60px;
  width: 100%;
  height: 340px;
  -webkit-clip-path: none;
  clip-path: none;
 }
 .mv-right.policy_img::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../img/policy_img_after.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  pointer-events: none;
 }
 .mv-wrap.top {
  width: 100%;
  height: auto;
  aspect-ratio: 375 / 667;
  flex-direction: column;
  background-image: url("../img/sp-mv.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
 }
 .mv-wrap.policy-mv {
  position: relative;
  width: 100%;
  height: 667px;
  max-height: 80vh;
  flex-direction: column;
  background-color: #042;
 }
 .mv-wrap.policy-mv::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  display: block;
  width: 100%;
  height: 8px;
  background-color: #72B239;
 }
 .text-absolute {
  margin: 58.66vw auto 0;
  width: 100%;
  align-items: center;
  text-align: center;
  gap: 16px;
  z-index: 3;
 }
 .main-text {
  color: #FFF;
  text-align: center;
  font-feature-settings: 'palt'on;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(32px, 5vw + 10.33px, 45px);
  font-style: normal;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 3.2px;
  margin-left: 5%;
 }
 .sub-text {
  color: #FFF;
  text-align: center;
  font-feature-settings: 'hwid'on, 'palt'on;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(13px, 2.5vw, 15px);
  font-style: normal;
  font-weight: 500;
  line-height: 200%; /* 28px */
 }
 .mv-buttons {
  flex-direction: column;
  max-width: 234px;
  width: 100%;
  gap: 16px;
  margin-top: 16px;
 }
 .mv-buttons a {
  justify-content: space-between;
  width: 100%;
  height: 48px;
  padding: 0 30px;
  color: #FFF;
  font-size: 14px;
  font-weight: 500;
  line-height: 200%; /* 28px */
  gap: 16px;
 }
 .mv-buttons .arrow {
  width: 6px;
  height: 10px;
 }
}
@media screen and (max-width: 350px) {
 .text-absolute {
  width: 90%;
  margin: 40vw auto 0;
 }
 .main-text {
  font-size: 7vw;
 }
 .sub-text {
  font-size: 4vw;
 }
}
/*アグリエについて*/
.about {
 padding: 120px 0;
}
.about-inner {
 display: flex;
 justify-content: space-between;
 align-items: flex-start;
 gap: 50px;
}
.about-left {
 width: 44.7%;
}
.about-left__lead {
 color: #333;
 font-feature-settings: 'hwid'on, 'palt'on;
 font-family: "Noto Sans JP", sans-serif;
 font-size: 25px;
 font-style: normal;
 font-weight: 700;
 line-height: 45px; /* 180% */
 margin: 40px 0;
}
.about-left__lead::after {
 content: "";
 display: block;
 width: 50px;
 height: 2px;
 padding-bottom: 40px;
 border-bottom: 2px solid #042;
}
.about-left__text-box {}
.about-left__text-box p {
 color: #333;
 font-feature-settings: 'palt'on;
 font-family: "Noto Sans JP", sans-serif;
 font-size: 15px;
 font-style: normal;
 font-weight: 500;
 line-height: 32px; /* 213.333% */
}
.about__image {
 width: 50.3%;
 aspect-ratio: 503 / 719;
 flex: 1;
}
.about__image img {
 width: 100%;
 height: 100%;
 border-radius: 5px;
 object-fit: cover;
}
@media screen and (max-width: 1000px) {
 .about {
  padding: 80px 0;
 }
 .about-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
 }
 .about-left .h2-large {
  order: 1;
 }
 .about-left__lead {
  order: 3;
  margin-bottom: 16px;
 }
 .about-left__text-box {
  order: 4;
 }
 .about-left {
  display: contents;
 }
 .about-left__lead {
  color: #333;
  font-feature-settings: 'hwid'on, 'palt'on;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
  text-align: center;
  margin: 0;
 }
 .about-left__lead::after {
  padding-bottom: 24px;
  margin: 0 auto;
 }
 .about-left__text-box {}
 .about-left__text-box p {
  font-size: 14px;
  font-weight: 400;
  line-height: 28px;
  padding-bottom: 0;
 }
 .about__image {
  order: 2;
  width: 86.7%;
  aspect-ratio: 287 / 420;
  flex: 1;
 }
 .about__image img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 3px;
  object-fit: cover;
 }
}
/*part1*/
.part1 {
 background-color: #F9FCF5;
 padding: 50px 0 120px;
}
.part__text {
 color: #333;
 text-align: center;
 font-feature-settings: 'palt'on;
 font-family: "Noto Sans JP", sans-serif;
 font-size: 15px;
 font-style: normal;
 font-weight: 500;
 line-height: 32px;
 margin: 32px 0 50px;
}
.part1-list {
 display: flex;
 gap: 20px;
 list-style: none;
 padding: 20px 0 0;
}
.part1-list__item {
 flex: 1;
 position: relative;
 display: flex;
 flex-direction: column;
 background-color: #fff;
 border-radius: 10px;
 box-shadow: inset 0 0 0 2px rgba(140, 140, 140, 0.2);
 padding-top: 20px;
}
.part1-list__number {
 position: absolute;
 top: -18px;
 left: 50%;
 transform: translateX(-50%);
 width: 40px;
 height: 40px;
 background-color: #042;
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 color: #FFF;
 text-align: center;
 font-family: "Outfit", sans-serif;
 font-size: 16.4px;
 font-style: normal;
 font-weight: 700;
 line-height: normal;
 z-index: 1;
}
.part1-list__content {
 flex: 1;
 padding: 59px 30px 30px;
 text-align: center;
}
.part1-list__icon {
 margin-bottom: 40px;
}
.part1-list__icon img {
 width: 97px;
 height: 60px;
 object-fit: contain;
}
.part1-list__title {
 color: #042;
 text-align: center;
 font-family: "Noto Serif JP", serif;
 font-size: clamp(16px, 1.5625vw + 3.66px, 25px);
 font-weight: 700;
 line-height: normal;
 margin: 0 0 20px;
}
.part1-list__title::after {
 content: "";
 display: block;
 width: 82%;
 height: 2px;
 padding-bottom: 20px;
 border-bottom: 2px solid #042;
 margin: 0 auto;
}
.part1-list__text {
 color: #333;
 text-align: center;
 font-feature-settings: 'palt'on;
 font-family: "Noto Sans JP", sans-serif;
 font-size: clamp(14px, 0.266vw + 11.37px, 15px);
 font-style: normal;
 font-weight: 500;
 line-height: 32px;
}
.part1-list__image {
 margin-top: auto;
}
.part1-list__image img {
 display: block;
 width: 100%;
 height: 150px;
 object-fit: cover;
 border-radius: 0 0 10px 10px;
}
@media screen and (max-width: 1080px) {
 .part1-list__content {
  flex: 1;
  padding: 59px 16px 30px;
  text-align: center;
 }
}
@media screen and (max-width: 930px) {
 .part1 {
  padding: 80px 0;
 }
 .part__text {
  width: 88.26%;
  margin: 16px auto 32px;
 }
 .part1-list {
  display: flex;
  flex-direction: column;
  gap: 44px;
 }
 .part1-list__item {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: inset 0 0 0 2px rgba(140, 140, 140, 0.2);
  padding-top: 20px;
 }
 .part1-list__number {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background-color: #042;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  text-align: center;
  font-family: "Outfit", sans-serif;
  font-size: 16.4px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  z-index: 1;
 }
 .part1-list__content {
  flex: 1;
  padding: 59px 30px 30px;
  text-align: center;
 }
 .part1-list__icon {
  margin-bottom: 40px;
 }
 .part1-list__icon img {
  width: 97px;
  height: 60px;
  object-fit: contain;
 }
 .part1-list__title {
  color: #042;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: 25px;
  font-weight: 700;
  line-height: normal;
  margin: 0 0 20px;
 }
 .part1-list__title::after {
  content: "";
  display: block;
  width: 82%;
  height: 2px;
  padding-bottom: 20px;
  border-bottom: 2px solid #042;
  margin: 0 auto;
 }
 .part1-list__text {
  color: #333;
  text-align: center;
  font-feature-settings: 'palt'on;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
 }
 .part1-list__image {
  margin-top: auto;
 }
 .part1-list__image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 331 / 150;
 }
}
/*part2*/
.part2 {
 background-color: #042;
 padding: 66px 0 50px;
}
.part__text.color {
 color: #fff;
 margin-bottom: 66px;
}
.part2-list {
 display: flex;
 justify-content: center;
 list-style: none;
 margin-bottom: 32px;
}
.part2-list__item {
 flex: 1;
 background: #ffffff;
 border-radius: 8px;
 text-align: center;
 position: relative;
 clip-path: polygon(0% 0%, calc(100% - 30px) 0%, 100% 50%, calc(100% - 30px) 100%, 0% 100%, 24px 50%);
 margin-left: -10px;
}
.part2-list__item:first-child {
 flex: 0 1 265px;
 margin-left: 0;
 padding: 29px 60px 29px 45px;
 clip-path: polygon(0% 0%, calc(100% - 30px) 0%, 100% 50%, calc(100% - 30px) 100%, 0% 100%);
}
.part2-list__item:nth-child(2) {
 flex: 0 1 265px;
 padding: 29px 45px 29px 60px;
 clip-path: polygon(0% 0%, calc(100% - 30px) 0%, 100% 50%, calc(100% - 30px) 100%, 0% 100%, 30px 50%);
 z-index: 2;
}
.part2-list__item:nth-child(3) {
 flex: 0 1 265px;
 padding: 29px 35px 29px 50px;
 clip-path: polygon(0% 0%, calc(100% - 30px) 0%, 100% 50%, calc(100% - 30px) 100%, 0% 100%, 30px 50%);
 z-index: 3;
}
.part2-list__item:last-child {
 flex: 0 1 235px;
 padding: 29px 16px 29px 42px;
 clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%, 30px 50%);
 z-index: 4;
}
.part2-list__icon {
 width: 100%;
 display: flex;
 justify-content: center;
 align-items: center;
 margin-bottom: 18px;
}
.part2-list__icon img {
 width: 100px;
 height: 100px;
 padding: 14px 14px 18px 14px;
 object-fit: contain;
 box-sizing: border-box;
}
.part2-list__title {
 color: #042;
 text-align: center;
 font-family: "Noto Sans JP", sans-serif;
 font-size: clamp(22px, 1.835vw + 4.93px, 30px);
 font-style: normal;
 font-weight: 700;
 line-height: normal;
 margin: 0 0 8px 0;
}
.part2-list__image {
 width: 100%;
 max-width: 160px;
 margin: 0 auto 8px;
 overflow: hidden;
}
.part2-list__image img {
 width: 100%;
 height: auto;
 object-fit: cover;
 aspect-ratio: 16 / 10;
}
.part2-list__text {
 color: #333;
 text-align: center;
 font-feature-settings: 'palt'on;
 font-family: "Noto Sans JP", sans-serif;
 font-size: 14px;
 font-style: normal;
 font-weight: 500;
 line-height: 24px; /* 171.429% */
}
.part2-under {
 background: #ffffff;
 padding: 30px;
}
.part2-under_wrap {
 display: flex;
 justify-content: center;
 align-items: center;
 gap: 30px;
 width: fit-content;
 margin: 0 auto;
}
.part2-under__icon {
 width: 55px;
 aspect-ratio: 55/67;
 flex-shrink: 0;
}
.part2-under__icon img {
 width: 100%;
 height: 100%;
 object-fit: contain;
}
.part2-under__body {
 flex: 1;
}
.part2-under__title {
 color: #042;
 font-family: "Inter", sans-serif;
 font-size: 25px;
 font-weight: 700;
 line-height: 1;
 margin: 0 0 6px 0;
}
.part2-under__text {
 color: #333;
 font-feature-settings: 'palt'on;
 font-family: "Noto Sans JP", sans-serif;
 font-size: 15px;
 font-style: normal;
 font-weight: 500;
 line-height: 32px; /* 213.333% */
}
@media screen and (max-width: 930px) {
 .part2 {
  padding: 80px 0;
 }
 .part__text.color {
  margin-bottom: 32px;
 }
 .part2-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  list-style: none;
  margin-bottom: 34px;
 }
 .part2-list__item, .part2-list__item:first-child, .part2-list__item:nth-child(2), .part2-list__item:nth-child(3) {
  width: 68.58%;
  flex: none;
  background: #ffffff;
  padding: 30px 0 24px;
  border-radius: 5px 5px 0 0;
  box-sizing: border-box;
  clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 25px), 50% 100%, 0% calc(100% - 25px));
  margin-left: 0;
 }
 .part2-list__item:last-child {
  clip-path: none;
  border-radius: 12px;
  padding: 30px 0 0;
 }
 .part2-list__title_flex {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
 }
 .part2-list__icon {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  background-color: #E2F1CF;
  border-radius: 50%;
 }
 .part2-list__icon img {
  width: 40px;
  height: 40px;
  padding: 0;
 }
 .part2-list__title {
  color: #042;
  text-align: center;
  font-size: 2rem;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
  margin: 0 0 8px 0;
 }
 .part2-list__image {
  width: 70%;
  max-width: none;
  margin: 0 auto 16px;
 }
 .part2-list__text {
  padding-bottom: 30px;
 }
 .part2-under {
  position: relative;
  border-radius: 5px;
  padding: 20px 36px;
 }
 .part2-under::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  border: 1px solid #042;
  border-radius: 3px;
  pointer-events: none;
 }
 .part2-under_wrap {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 8px;
  width: 100%;
 }
 .part2-under__icon {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  width: 40px;
  aspect-ratio: 5/6;
  flex-shrink: 0;
 }
 .part2-under__body {
  display: contents;
 }
 .part2-under__title {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
  color: #042;
  font-family: "Inter", sans-serif;
  font-size: 1.6rem;
  line-height: 150%;
  margin: 0;
 }
 .part2-under__text {
  grid-column: 1 / 3;
  grid-row: 2 / 3;
  color: #333;
  font-feature-settings: 'palt'on;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
 }
}
@media screen and (max-width: 768px) {
 .part2-list__image {
  width: 100%;
  max-width: 160px;
  aspect-ratio: 16 / 10;
 }
}
/*part3*/
.part3 {
 position: relative;
 padding: 50px 0 120px;
}
.part3::before {
 content: "";
 position: absolute;
 top: 0;
 left: 0;
 background-image: url("../img/part3-top-bg.jpg");
 background-repeat: no-repeat;
 background-size: contain;
 width: 708px;
 height: 400px;
}
.part3-total {
 position: absolute;
 top: 13px;
 right: 0;
 width: 170px;
 height: 170px;
 border: 2px solid #042;
 border-radius: 50%;
 display: flex;
 flex-direction: column;
 justify-content: center;
 align-items: center;
}
.part3-total_text {
 color: #042;
 font-family: "Noto Serif JP", serif;
 font-size: 15px;
 font-style: normal;
 font-weight: 700;
 line-height: normal;
}
.part3-total_num {
 display: flex;
 align-items: flex-end;
 color: #042;
 font-family: "Noto Serif JP", serif;
 font-size: 25px;
 font-style: normal;
 font-weight: 700;
 line-height: normal;
}
.part3-total_num span {
 color: #042;
 font-family: "Noto Serif JP", serif;
 font-size: 60px;
 font-style: normal;
 font-weight: 700;
 line-height: 1;
}
@media screen and (max-width: 768px) {
 .part3 {
  padding: 80px 0;
 }
 .part3::before {
  width: 90%;
  height: auto;
  aspect-ratio: 333 / 178;
 }
 .part3-total {
  top: 202px;
  right: 0;
  width: 100%;
  height: 60px;
  border: 1px solid #042;
  border-radius: 5px;
  flex-direction: row;
  align-items: flex-end;
  padding-bottom: 12px;
 }
 .part3-total_text {
  margin-right: 6px;
 }
 .part3-total_num {
  font-size: 2.4rem;
  line-height: 1.2;
 }
 .part3-total_num span {
  font-size: 4rem;
 }
 .part__text.mgb108 {
  margin: 16px auto 108px;
 }
}
.farm-list-wrapper {
 display: flex;
 flex-direction: column;
 gap: 30px;
 width: clamp(331px, 88.2666vw, 1160px);
 margin: 0 auto;
}
.farm-intro {
 position: relative;
 z-index: 2;
 outline: 3px solid #042;
}
.farm-header-inner {
 display: flex;
 align-items: center;
 gap: 40px;
 width: 100%;
 border: 3.05px solid #042;
 background-color: #042;
 padding: 20px 50px;
}
.farm-header-inner p {
 color: #FFF;
 text-align: center;
 font-family: "Noto Serif JP", serif;
 font-size: 20px;
 font-style: normal;
 font-weight: 700;
 line-height: 1.2;
}
.farm-header-inner p span {
 display: block;
 color: #FFF;
 text-align: center;
 font-family: "Noto Serif JP", serif;
 font-size: 36px;
 font-style: normal;
 font-weight: 700;
 line-height: 1;
}
.farm-header-inner h3 {
 color: #FFF;
 text-align: center;
 font-family: "Noto Serif JP", serif;
 font-size: clamp(30px, 4.098vw - 10.98px, 45px);
 font-style: normal;
 font-weight: 700;
 line-height: normal;
 padding-left: 40px;
 border-left: 2px solid #fff;
}
.farm-header-inner_map {
 display: flex;
 align-items: center;
 gap: 10px;
 color: #FFF;
 text-align: center;
 font-family: "Noto Serif JP", serif;
 font-size: 20px;
 font-style: normal;
 font-weight: 700;
 line-height: normal;
}
@media screen and (max-width: 900px) {
 .farm-header-inner {
  gap: 20px;
  padding: 20px 30px;
 }
 .farm-header-inner_map {
  font-size: 1.6rem;
 }
}
.farm-header-inner_map span {
 width: 20px;
 height: 30px;
 background-image: url("../img/map.svg");
 background-repeat: no-repeat;
 background-size: cover;
}
.farm-main-visual {
 width: 100%;
 height: 180px;
}
.farm-main-visual img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 object-position: top;
}
.farm-content-body {
 display: flex;
 gap: 40px;
 padding: 20px 21px 20px 20px;
}
.profile {
 display: flex;
 justify-content: flex-start;
 align-items: flex-start;
 gap: 21px;
 flex: 1;
}
.profile img {
 width: 46.8%;
 height: auto;
 aspect-ratio: 250 / 392;
 object-fit: contain;
}
.profile-info {
 margin-top: 22px;
 flex: 1;
}
.profile-info h4 {
 display: inline-flex;
 padding: 8px 20px;
 justify-content: center;
 align-items: center;
 gap: 10px;
 background: #042;
 color: #FFF;
 text-align: center;
 font-family: "Noto Serif JP", serif;
 font-size: clamp(16px, 1.093vw + 5.07px, 20px);
 font-style: normal;
 font-weight: 700;
 line-height: normal;
 margin-bottom: 15px;
}
.profile-info-rep {
 color: #042;
 font-family: "Noto Serif JP", serif;
 font-size: 40px;
 font-style: normal;
 font-weight: 700;
 line-height: normal;
 margin-bottom: 15px;
}
.profile-info-rep span {
 display: block;
 color: #042;
 font-family: "Noto Serif JP", serif;
 font-size: clamp(16px, 3vw, 20px);
 font-style: normal;
 font-weight: 700;
 line-height: normal;
 margin-left: -4px;
}
.profile-info h5 {
 display: flex;
 align-items: center;
 gap: 5px;
 color: #042;
 font-family: "Noto Serif JP", serif;
 font-size: clamp(16px, 1.093vw + 5.07px, 20px);
 font-style: normal;
 font-weight: 700;
 line-height: normal;
 margin-bottom: 5px;
}
.profile-info h5::before {
 content: "";
 width: 20px;
 height: 17px;
 background-image: url("../img/leaf.svg");
 background-repeat: no-repeat;
 background-size: contain;
}
.profile-info-rep-message {
 color: #333;
 font-family: "Noto Sans JP", sans-serif;
 font-size: 14px;
 font-style: normal;
 font-weight: 500;
 line-height: 35px;
 font-feature-settings: 'palt'on;
}
.farm-info {
 width: 47.632%;
 padding-left: 40px;
 border-left: 2px solid #80A190;
}
.farm-info-img-list {
 display: flex;
 justify-content: space-between;
 gap: 20px;
 list-style: none;
 padding: 0;
 margin: 0 0 22px;
}
.farm-info-img-list li {
 flex: 1;
 aspect-ratio: 151 / 130;
 overflow: hidden;
}
.farm-info-img-list li img {
 width: 100%;
 height: 100%;
 object-fit: cover;
}
.table-wrap {
 width: 100%;
 padding: 20px;
 background: #034121;
 border-radius: 10px;
}
.table-wrap h4 {
 color: #FFF;
 font-family: "Noto Serif JP", serif;
 font-size: 20px;
 font-weight: 700;
 line-height: normal;
 display: flex;
 align-items: center;
 gap: 10px;
 margin-bottom: 2px;
}
.table-wrap h4::before {
 content: "";
 display: inline-block;
 width: 20px;
 height: 30px;
 background-image: url('../img/map.svg');
 background-size: contain;
 background-repeat: no-repeat;
 background-position: center;
}
.table-wrap table {
 width: 100%;
 border-collapse: collapse;
 overflow: hidden;
 margin: 0;
}
.table-wrap tr {
 border-bottom: 1px solid #80A190;
}
.table-wrap tr:last-child {
 border-bottom: none;
}
.table-wrap th {
 width: 28.697%;
 color: #FFF;
 font-feature-settings: 'palt'on;
 font-family: "Noto Sans JP", sans-serif;
 font-size: 15px;
 font-weight: 500;
 line-height: 20px;
 text-align: left;
 vertical-align: middle;
 padding: 10px 0 6px;
}
.table-wrap td {
 flex: 1;
 color: #FFF;
 font-family: "Noto Sans JP", sans-serif;
 font-size: 15px;
 font-weight: 500;
 line-height: 20px;
 vertical-align: middle;
 padding: 10px 0 6px;
}
.table-wrap tr:last-child th, .table-wrap tr:last-child td {
 padding-bottom: 0;
}
.map-iframe-wrapper {
 width: 100%;
 padding: 0 20px 0;
}
.map-iframe-wrapper iframe {
 width: 100%;
 height: 500px;
}
.accordion-toggle-btn {
 display: none;
}
.farm-accordion-body {
 display: block;
}
@media screen and (max-width: 1315px) {
 .farm-content-body {
  gap: 20px;
 }
 .profile {
  gap: 14px;
 }
 .profile-info {
  margin-top: 0;
 }
 .profile-info-rep {
  font-size: 30px;
 }
 .profile-info h4 {
  padding: 4px 20px;
  margin-bottom: 8px;
 }
 .farm-info {
  padding-left: 20px;
 }
}
@media screen and (max-width: 1100px) {
 .profile-info-rep {
  font-size: 20px;
 }
 .profile-info-rep-message {
  line-height: 1.8;
 }
}
@media screen and (max-width: 768px) {
 .farm-accordion-trigger {
  cursor: pointer;
  position: relative;
 }
 .farm-header-inner {
  gap: 16px;
  border: 2px solid #042;
  padding: 11px 17px;
 }
 .farm-header-inner p {
  font-size: 1.5rem;
 }
 .farm-header-inner p span {
  font-size: 2.4rem;
 }
 .farm-header-inner h3 {
  font-size: 1.8rem;
  padding-left: 16px;
 }
 .farm-main-visual {
  position: relative;
  height: 95px;
  transition: height 0.35s ease-out;
  overflow: hidden;
 }
 .farm-main-slider-sp .slider-item img {
  width: 100%;
  height: auto;
  display: block;
 }
 .farm-intro.is-open .farm-main-visual {
  height: 128px;
 }
 .farm-main-visual img, .farm-main-slider-sp, .farm-main-slider-sp .slick-list, .farm-main-slider-sp .slick-track, .farm-main-slider-sp .slider-item, .farm-main-slider-sp img {
  height: 95px !important;
  width: 100%;
  object-fit: cover;
  object-position: top;
 }
 .farm-intro.is-open .farm-main-visual, .farm-intro.is-open .farm-main-slider-sp, .farm-intro.is-open .farm-main-slider-sp .slick-list, .farm-intro.is-open .farm-main-slider-sp .slick-track, .farm-intro.is-open .farm-main-slider-sp .slider-item, .farm-intro.is-open .farm-main-slider-sp img {
  height: 128px !important;
 }
 .farm-accordion-body {
  display: grid !important;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease-out;
  overflow: hidden;
 }
 .farm-accordion-body-inner {
  min-height: 0;
 }
 .farm-intro.is-open .farm-accordion-body {
  grid-template-rows: 1fr;
 }
 .farm-content-body {
  flex-direction: column;
  gap: 19px;
  padding: 0;
 }
 .profile {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 13px;
  padding: 24px 0 0 30px;
 }
 .profile img {
  width: 33%;
  height: auto;
  aspect-ratio: 10 / 12;
  object-fit: cover;
 }
 .profile-info {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  gap: 16px;
  margin-top: 0;
  padding-left: 5%;
  flex: 1;
 }
 .profile-info .sp-flex {
  display: flex;
  flex-direction: column;
  gap: 5px;
 }
 .profile-info h4 {
  width: fit-content;
  font-size: 1.6rem;
  padding: 5px 10px;
  margin-bottom: 0;
 }
 .profile-info-rep {
  font-size: 1.6rem;
  margin-bottom: 0;
 }
 .profile-info-rep span {
  display: inline-flex;
  font-size: 1.6rem;
 }
 .profile-info.sp-column {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding-left: 0;
 }
 .profile-info.sp-column h5 {
  font-size: 1.4rem;
  margin-bottom: 0;
 }
 .profile-info-rep-message {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 200%;
 }
 .farm-info {
  width: 100%;
  padding-left: 0;
  border-left: none;
 }
 .farm-info-img-list {
  gap: 10px;
 }
 .accordion-toggle-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #fff;
  border: none;
  z-index: 2;
  cursor: pointer;
 }
 .accordion-toggle-btn::after {
  content: "";
  display: block;
  width: 10px;
  height: 5px;
  background-image: url(../img/arrow_down_green.svg);
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.3s ease;
  background-size: 10px 5px;
 }
 .farm-intro.is-open .accordion-toggle-btn::after {
  transform: translateY(0px) rotate(-180deg);
 }
 .table-wrap {
  width: 100%;
  padding: 20px 30px 30px;
  background: #042;
  border-radius: 30px 30px 0 0;
 }
 .table-wrap h4 {
  margin-bottom: 16px;
 }
 .table-wrap tr {
  border-bottom: 1px solid #C5E29F;
 }
 .table-wrap th {
  width: 45%;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
  padding: 5px 0;
  vertical-align: top;
 }
 .table-wrap td {
  flex: 1;
  color: #FFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
  padding: 5px 0 0;
 }
 .table-wrap td br {
  display: none;
 }
 .map-iframe-wrapper {
  width: 100%;
  padding: 0 24px 84px;
  background-color: #042;
  margin-top: -1px;
 }
 .map-iframe-wrapper iframe {
  width: 100%;
  height: 150px;
 }
 .farm-intro.is-open .accordion-toggle-btn {
  display: none;
 }
 .accordion-close-btn {
  display: none;
 }
 .farm-intro.is-open .accordion-close-btn {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #fff;
  border: none;
  cursor: pointer;
 }
 .accordion-close-btn::after {
  content: "";
  display: block;
  width: 10px;
  height: 5px;
  background-image: url(../img/arrow_down_green.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 10px 5px;
  transform: rotate(-180deg);
 }
}
@media screen and (min-width: 768px) and (max-width: 1285px) {
 .profile-info-rep-message br {
  display: none;
 }
}
/*産地の見えるお米を、食の現場へ*/
.thought {
 display: flex;
 align-items: center;
 width: 100%;
 height: auto;
 min-height: 715px;
 aspect-ratio: 1366 / 715;
 background-image: url(../img/thought-bg.png);
 background-repeat: no-repeat;
 background-size: cover;
 background-position: right;
}
.thought-inner {
 display: flex;
 flex-direction: column;
 gap: 30px;
}
.thought-inner h2 {
 color: #FFF;
 font-family: "Noto Serif JP", serif;
 font-size: 45px;
 font-style: normal;
 font-weight: 700;
 line-height: normal;
}
.thought-inner p {
 color: #FFF;
 font-feature-settings: 'hwid'on, 'palt'on;
 font-family: "Noto Sans JP", sans-serif;
 font-size: clamp(16px, 0.707vw + 10.35px, 20px);
 font-style: normal;
 font-weight: 500;
 line-height: 45px;
}
@media screen and (max-width: 768px) {
 .thought {
  position: relative;
  align-items: flex-start;
  width: 100%;
  height: auto;
  max-height: 612px;
  aspect-ratio: 375 / 612;
  background-image: url("../img/sp-thought_bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
  padding: 43px 0 0;
  margin-bottom: 80px;
 }
 .thought-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
 }
 .thought-inner h2 {
  width: 86.7%;
  margin: 0 auto;
  font-size: 2.8rem;
 }
 .thought-inner p {
  width: 86.7%;
  margin: 0 auto;
  font-size: 1.6rem;
  line-height: 200%;
 }
}
@media screen and (max-width: 400px) {
 /*
 .thought-inner h2 {
  width: 86.7%;
  margin: 0 auto;
  font-size: 2.8rem;
 }
*/
 .thought-inner p {
  font-size: 1.4rem;
 }
}
/*part4*/
.part4 {
 position: relative;
 padding: 67px 0 80px;
 background-color: #F9FCF5;
}
.part4::after {
 content: "";
 position: absolute;
 top: 40px;
 right: 6px;
 background-image: url("../img/part4-decoration.png");
 background-repeat: no-repeat;
 background-size: contain;
 width: 530px;
 height: 522px;
}
.target-box_wrap {
 position: relative;
 z-index: 2;
 padding: 30px 0 50px;
 display: flex;
 justify-content: space-between;
 gap: 20px;
}
.target-box {
 flex: 1;
 min-width: 0;
 display: flex;
 flex-direction: column;
 gap: 20px;
 background: #fff;
 box-shadow: 1px 2px 7px 1px rgba(0, 0, 0, 0.10);
 border-radius: 10px;
 padding: 30px 10px;
}
.target-title {
 display: flex;
 align-items: center;
 gap: 10px;
 color: #042;
 font-family: "Noto Serif JP", serif;
 font-size: 20px;
 font-style: normal;
 font-weight: 700;
 line-height: 32px; /* 160% */
}
.target-title span {
 display: flex;
 justify-content: center;
 align-items: center;
 width: 60px;
 height: 60px;
 background-color: #042;
 border-radius: 50%;
}
.target-title span img {
 object-position: center;
 object-fit: cover;
}
.target-box-ul {
 display: flex;
 flex-direction: column;
 gap: 5px;
 padding-left: 15px;
 list-style: none;
}
.target-box-ul li {
 position: relative;
 color: #333;
 font-family: "Noto Sans JP", sans-serif;
 font-size: 14px;
 font-style: normal;
 font-weight: 500;
 line-height: 32px;
 font-feature-settings: 'halt'on, 'palt'on;
 padding-left: 28px;
}
.target-box-ul li::before {
 content: '';
 position: absolute;
 left: 0;
 top: 10px;
 width: 18px;
 height: 12px;
 background-image: url('../img/check.svg');
 background-repeat: no-repeat;
 background-size: contain;
 background-position: center;
}
.part4-text {
 color: #333;
 text-align: center;
 font-feature-settings: 'palt'on;
 font-family: "Noto Sans JP", sans-serif;
 font-size: 15px;
 font-style: normal;
 font-weight: 500;
 line-height: 32px; /* 213.333% */
 padding: 10px 0 30px;
}
.voice-container {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 20px;
}
.voice-item {
 flex: 1;
 min-width: 0;
 display: flex;
 flex-direction: column;
 border-radius: 10px;
 background-color: #FFF;
 box-shadow: 1px 2px 7px 1px rgba(0, 0, 0, 0.10);
 padding: 20px;
}
.voice-img {
 margin-bottom: 16px;
}
.voice-img img {
 width: 100%;
 height: auto;
 aspect-ratio: 280 / 120;
 object-fit: cover;
}
.voice-content {
 display: flex;
 flex-direction: column;
 gap: 10px;
}
.voice-content h3 {
 color: #042;
 text-align: center;
 font-family: "Noto Serif JP", serif;
 font-size: 20px;
 font-style: normal;
 font-weight: 700;
 line-height: 32px; /* 160% */
}
.voice-content p {
 color: #333;
 text-align: center;
 font-family: "Noto Sans JP", sans-serif;
 font-size: 14px;
 font-style: normal;
 font-weight: 500;
 line-height: 25px; /* 178.571% */
}
@media screen and (max-width: 768px) {
 .part4 {
  padding: 80px 0;
  overflow: hidden;
 }
 .part4::after {
  content: "";
  position: absolute;
  top: 18px;
  right: -54px;
  background-image: url("../img/part4-decoration.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 308px;
  height: 304px;
 }
 .target-box_wrap {
  padding: 32px 0 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
 }
 .target-box {
  width: 96.6768%;
  margin: 0 auto;
  padding: 30px 6%;
 }
 .part4-text {
  color: #333;
  text-align: center;
  font-feature-settings: 'palt'on;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px; /* 213.333% */
  padding: 16px 0 32px;
 }
 .voice-container {
  grid-template-columns: 1fr;
  gap: 24px;
 }
 .voice-item {
  width: 96.6767%;
  margin: 0 auto;
 }
 .voice-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 280 / 120;
 }
 .target-box-ul {
  padding-left: 0;
 }
 .target-box-ul li {
  padding-left: 24px;
 }
}
/*代表message*/
.message {
 background-color: #F9FCF5;
 padding-bottom: 173px;
}
.message-inner {
 display: flex;
 justify-content: space-between;
 align-items: flex-start;
}
.message-left {
 display: flex;
 flex-direction: column;
 width: 45%;
}
.message-left__lead {
 color: #042;
 font-family: "Noto Serif JP", serif;
 font-size: clamp(20px, 1.736vw + 6.28px, 30px);
 font-weight: 700;
 line-height: 45px; /* 150% */
 margin: 40px 0;
}
.message-left__lead::before {
 content: "";
 display: block;
 width: 50px;
 height: 2px;
 padding-top: 40px;
 border-top: 2px solid #042;
}
.message-left__text-box {
 margin-bottom: 13px;
}
.message-left__text-box p {
 color: #333;
 font-variant-east-asian: proportional-widths;
 -webkit-font-feature-settings: "palt";
 font-feature-settings: "palt";
 font-family: "Noto Sans JP", sans-serif;
 font-size: 15px;
 font-weight: 500;
 line-height: 32px;
}
.rep-name {
 display: flex;
 justify-content: flex-start;
 align-items: flex-end;
 gap: 30px;
 color: #333;
 font-family: "Noto Serif JP", serif;
 font-size: 30px;
 font-weight: 700;
 line-height: normal;
}
.rep-name span {
 color: #333;
 font-family: "Noto Serif JP", serif;
 font-size: 20px;
 font-weight: 700;
 line-height: normal;
 margin-bottom: 3px;
}
.message__image {
 width: 50.3%;
 height: 100%;
}
.message__image img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 border-radius: 10px;
}
@media screen and (max-width: 768px) {
 .message {
  padding-bottom: 120px;
 }
 .message-inner {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  align-items: center;
  width: 76.533%;
  margin: 0 auto;
 }
 .message-left {
  display: contents;
  flex-direction: column;
 }
 .message-left__lead {
  order: 1;
  color: #042;
  font-family: "Noto Serif JP", serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 150%;
  text-align: center;
  margin: 24px 0 32px;
 }
 .message-left__lead::before {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  padding-top: 24px;
  border-top: 2px solid #042;
  margin: 0 auto;
 }
 .message-left__text-box {
  width: 100%;
  margin-bottom: 16px;
  order: 3;
 }
 .message-left__text-box p {
  font-size: 15px;
  font-weight: 400;
  line-height: 200%;
 }
 .rep-name {
  gap: 24px;
  order: 4;
  margin-right: auto;
 }
 .message__image {
  order: 2;
  width: 100%;
  height: 200px;
  margin-bottom: 32px;
 }
 .message__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
 }
}
/*プライバシーポリシー*/
.text-absolute.sub {
 gap: 50px;
 max-width: 1152px;
 width: 100%;
 margin: 191px auto 0;
 z-index: 3;
}
@media screen and (max-width: 1180px) {
 .text-absolute.sub {
  width: 90%;
 }
}
.text-absolute.sub > div {
 display: flex;
 flex-direction: column;
 gap: 30.05px;
}
@media screen and (max-width: 600px) {
 .text-absolute.sub {
  align-items: flex-start;
  text-align: left;
  z-index: 3;
  gap: 16px;
  max-width: none;
  width: 100%;
  height: 100%;
  margin: 92px auto 0;
  padding: 0 37px 0 22px;
 }
 .text-absolute.sub > div {
  display: flex;
  flex-direction: column;
  gap: 16px;
 }
}
.subpage-h2 {
 color: #FFF;
 font-feature-settings: 'palt'on;
 font-family: "Noto Serif JP", serif;
 font-size: 56px;
 font-style: normal;
 font-weight: 700;
 line-height: normal;
 letter-spacing: 5.6px;
}
.subpage-text {
 color: #FFF;
 font-family: "Noto Sans", sans-serif;
 font-size: 25px;
 font-style: normal;
 font-weight: 700;
 line-height: 50px; /* 200% */
}
.subpage-sub_text {
 color: #FFF;
 font-feature-settings: 'hwid'on, 'palt'on;
 font-family: "Noto Sans JP", sans-serif;
 font-size: 20px;
 font-style: normal;
 font-weight: 500;
 line-height: 45px; /* 225% */
}
.policy {
 background-color: #F9FCF5;
 margin-top: -47.7px;
 padding: 167.65px 6% 120px;
}
.policy-inner {
 max-width: 1200px;
 border-radius: 10px 10px 0 0;
 background-color: #FFF;
 padding: 100px 100px 109px;
 margin: 0 auto;
}
.policy-content h3, .policy-content p, .policy-content ul li, .policy-address {
 color: #000;
 font-family: "Noto Sans JP", sans-serif;
 font-size: 20px;
 font-style: normal;
 font-weight: 400;
 line-height: 200%; /* 40px */
}
/* 各項目の見出し（1. 個人情報の取得について など） */
.policy-content h3 {
 margin-bottom: 0.5em; /* 見出しと本文の間の余白 */
}
/* 各項目の本文（段落） */
.policy-content p {
 margin-bottom: 2em; /* 以前の li の padding-bottom: 2em をここで再現 */
}
/* 箇条書きリスト（利用目的など） */
.policy-content ul {
 list-style: none;
 padding-left: 0;
 margin-top: -1em; /* 直前の段落との余白調整 */
 margin-bottom: 2em; /* リスト全体の後の余白 */
}
.policy-content ul li {
 position: relative;
 padding-left: 1.2em;
 padding-bottom: 0.5em;
 line-height: 1.6;
}
.policy-content ul li::before {
 content: "•";
 position: absolute;
 left: 0;
 top: 0;
 color: #000;
 font-size: 1em;
}
.policy-address {
 font-style: normal;
 margin-bottom: 60px;
}
.policy-address p span {
 margin-right: 10px;
}
.policy-address p span a:hover {
 text-decoration: underline;
 color: inherit;
}
.link-btn.light-green {
 background-color: #042;
}
.link-btn.light-green {
 background-color: #042;
}
@media screen and (max-width: 768px) {
 .subpage-h2 {
  position: relative;
  z-index: 1;
  display: inline-block;
  max-width: 100%;
  color: #FFF;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(20px, 8vw, 30px);
  letter-spacing: 1px;
  font-feature-settings: "palt";
  padding: 5px 0 5px 0;
  margin: 0;
  word-break: keep-all;
  overflow-wrap: break-word;
 }
 .subpage-h2 wbr {
  display: inline-block;
 }
 .subpage-h2::before {
  content: "";
  position: absolute;
  top: 0;
  left: -22px;
  width: calc(100% + 37px);
  height: 100%;
  background-color: #004D25;
  z-index: -1;
 }
 .subpage-text {
  margin-top: 0;
  position: absolute;
  left: 10%;
  bottom: 246px;
  width: 81%;
  color: #FFF;
  font-family: "Noto Sans", sans-serif;
  font-size: 1.8rem;
  line-height: 150%;
 }
 .subpage-sub_text {
  position: absolute;
  left: 10%;
  bottom: 50px;
  width: 81%;
  text-align: justify;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 200%;
 }
 .policy {
  background-color: #F9FCF5;
  margin-top: 0;
  padding: 80px 22px;
 }
 .policy-inner {
  max-width: none;
  border-radius: 20px 0;
  background-color: #FFF;
  padding: 40px 26px;
  margin: 0 auto;
 }
 .policy-content h3, .policy-content p, .policy-content ul li, .policy-address {
  font-size: 1.6rem;
 }
 .policy-content p {
  margin-bottom: 1.8em;
 }
 .policy-content ul li {
  padding-left: 1em;
 }
 .policy-address {
  margin-bottom: 40px;
 }
 .policy-address p span {
  display: block;
 }
 .subpage-text br, .subpage-sub_text br {
  display: none;
 }
}
element.style {}
@media screen and (max-width: 330px) {
 .subpage-text {
  left: 5%;
  width: 90%;
  font-size: 1.4rem;
 }
 .subpage-sub_text {
  left: 5%;
  width: 90%;
  font-size: 1.3rem;
 }
}
/*contact*/
.contact-mv {
 background-color: #042;
}
.contact-mv_inner {
 display: flex;
 flex-direction: column;
 justify-content: flex-start;
 gap: 36px;
 max-width: 1152px;
 width: 100%;
 margin: 104px auto 0;
 padding: 87px 0 96px;
}
@media screen and (max-width: 1170px) {
 .contact-mv_inner {
  width: 90%;
 }
}
.subpage-h2.contact-subpage-h2 {
 text-align: center;
 margin-bottom: 40px;
}
.contact-sub_text {
 color: #FFF;
 text-align: center;
 font-feature-settings: 'hwid'on, 'palt'on;
 font-family: "Noto Sans JP";
 font-size: 20px;
 font-style: normal;
 font-weight: 500;
 line-height: 45px; /* 225% */
}
.contact-detail {
 background-color: #F9FCF5;
 padding: 120px 0;
}
.contact-detail_inner {
 border-radius: 10px 10px 0 0;
 background: #FFF;
 max-width: 1200px;
 margin: 0 auto;
 padding: 80px 100px;
}
@media screen and (max-width: 768px) {
 .contact-mv_inner {
  gap: 32px;
  max-width: none;
  width: 100%;
  margin: 60px auto 0;
  padding: 32px 23px 40px;
  border-bottom: 8px solid #72B239;
 }
 .subpage-h2.contact-subpage-h2 {
  width: stretch;
  width: -webkit-fill-available;
  text-align: center;
  margin-bottom: 11px;
 }
 .subpage-h2.contact-subpage-h2::before {
  display: none;
 }
 .contact-sub_text {
  width: 88%;
  margin: 0 auto;
  color: #FFF;
  font-feature-settings: 'hwid'on, 'palt'on;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 200%; /* 30px */
  text-align: left;
  letter-spacing: 0.5px;
 }
 .contact-sub_text br {
  display: none;
 }
 .contact-detail {
  background-color: #F9FCF5;
  padding: 80px 0;
 }
 .contact-detail_inner {
  width: 88.266%;
  border-radius: 20px;
  background: #FFF;
  max-width: none;
  margin: 0 auto;
  padding: 40px 6.5% 40px 6.8%;
 }
}
/*contactform7*/
.contact__block {
 margin-bottom: 28px;
}
.contact__block label {
 display: block;
 cursor: pointer;
}
.formtitle {
 display: flex;
 align-items: center;
 gap: 10px;
 color: #333;
 font-feature-settings: 'hwid'on, 'palt'on;
 font-family: "Noto Sans JP", sans-serif;
 font-size: 20px;
 font-style: normal;
 font-weight: 700;
 line-height: 45px;
}
.hisu {
 display: inline-block;
 width: 60px;
 color: #72B239;
 font-feature-settings: 'hwid'on, 'palt'on;
 font-family: "Noto Sans JP", sans-serif;
 font-size: 15px;
 font-weight: 700;
 line-height: 25px;
 text-align: center;
 border-radius: 5px;
 border: 1px solid #72B239;
 background: #FFF;
}
.nyuryokubox-item {
 width: 100%;
}
.nyuryokubox-item input[type="text"], .nyuryokubox-item input[type="tel"], .nyuryokubox-item input[type="email"], .nyuryokubox-item textarea {
 width: 100%;
 padding: 16px 14px;
 border-radius: 10px;
 border: 1px solid rgba(51, 51, 51, 0.5);
 color: #333;
 font-size: 20px;
 font-weight: 500;
 line-height: 45px;
 background-color: #FFF;
 box-sizing: border-box;
 transition: border-color 0.2s, box-shadow 0.2s;
 outline: none;
}
.nyuryokubox-item textarea {
 line-height: 1.6;
}
.nyuryokubox-item input[type="text"]:focus, .nyuryokubox-item input[type="tel"]:focus, .nyuryokubox-item input[type="email"]:focus, .nyuryokubox-item textarea:focus {
 border-color: #72B239;
 box-shadow: 0 0 0 2px rgba(114, 178, 57, 0.2);
}
.nyuryokubox-item .wpcf7-checkbox {
 display: flex;
 flex-direction: column;
 gap: 5px;
 margin-top: 10px;
}
.nyuryokubox-item .wpcf7-checkbox .wpcf7-list-item {
 display: flex;
 justify-content: flex-start;
 align-items: center;
 gap: 10px;
 margin: 0;
}
.nyuryokubox-item .wpcf7-checkbox .wpcf7-list-item-label {
 color: #333;
 font-family: "Noto Sans JP", sans-serif;
 font-size: 20px;
 font-style: normal;
 font-weight: 500;
 line-height: 45px; /* 225% */
 cursor: pointer;
}
.nyuryokubox-item .wpcf7-checkbox input[type="checkbox"] {
 display: inline-flex;
 width: 30px;
 height: 30px;
 flex-direction: column;
 justify-content: center;
 align-items: center;
 gap: 10px;
 border-radius: 5px;
 border: 2px solid #C5E29F;
 background-color: #FFF;
 -webkit-appearance: none;
 appearance: none;
 cursor: pointer;
}
.nyuryokubox-item .wpcf7-checkbox input[type="checkbox"]:checked {
 background-color: #72B239;
 border: 2px solid #72B239;
}
.nyuryokubox-item .wpcf7-checkbox input[type="checkbox"]:checked::before {
 content: "";
 width: 8px;
 height: 16px;
 border: solid #ffffff;
 border-width: 0 3px 3px 0;
 transform: rotate(45deg);
}
/*送信ボタン*/
.form-submit {
 position: relative;
 text-align: center;
}
/*スピナー要素*/
.wpcf7-spinner {
 position: absolute;
 top: 50%;
 right: -36px;
 transform: translateY(-50%);
 margin: 0 !important;
}
.btn-submit, .btn-prev {
 display: inline-flex;
 justify-content: center;
 align-items: center;
 width: fit-content;
 padding: 20px 20px 20px 40px;
 gap: 30px;
 border-radius: 5px;
 background-color: #72B239;
 color: #FFF;
 text-align: left;
 font-feature-settings: 'hwid'on, 'palt'on;
 font-family: "Noto Sans JP", sans-serif;
 font-size: 15px;
 font-weight: 700;
 line-height: 1.2;
 cursor: pointer;
 transition: background-color 0.2s, background-position 0.2s, transform 0.2s;
 background-image: url(../img/arrow_right_white.svg);
 background-repeat: no-repeat;
 background-position: right 20px center;
 background-size: 8px 16px;
 min-width: 173px;
 border: none;
 box-sizing: border-box;
}
.btn-submit:hover, .btn-prev:hover {
 background-color: #C5E29F;
 background-position: right 14px center;
}
.btn-submit:active {
 transform: translateY(1px);
}
@media screen and (max-width: 768px) {
 .contact__block {
  margin-bottom: 24px;
 }
 .contact__block label {
  display: block;
  cursor: pointer;
 }
 .formtitle {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #333;
  font-feature-settings: 'hwid'on, 'palt'on;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 45px;
 }
 .hisu {
  display: inline-block;
  width: 60px;
  color: #72B239;
  font-feature-settings: 'hwid'on, 'palt'on;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 25px;
  text-align: center;
  border-radius: 5px;
  border: 1px solid #72B239;
  background: #FFF;
 }
 .nyuryokubox-item {
  width: 100%;
  min-height: 66px;
 }
 .nyuryokubox-item input[type="text"], .nyuryokubox-item input[type="tel"], .nyuryokubox-item input[type="email"], .nyuryokubox-item textarea {
  width: 100%;
  padding: 12px 10px;
  font-size: 2rem;
  line-height: 1.4;
 }
 .nyuryokubox-item textarea {
  height: 160px;
  line-height: 1.4;
  padding: 10px 8px;
 }
 .nyuryokubox-item .wpcf7-checkbox {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 10px;
 }
 .nyuryokubox-item .wpcf7-checkbox .wpcf7-list-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  margin: 0;
 }
 .nyuryokubox-item .wpcf7-checkbox .wpcf7-list-item-label {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 45px; /* 225% */
  cursor: pointer;
 }
 .nyuryokubox-item .wpcf7-checkbox input[type="checkbox"] {
  display: inline-flex;
  width: 30px;
  height: 30px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 5px;
  border: 2px solid #C5E29F;
  background-color: #FFF;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
 }
 .nyuryokubox-item .wpcf7-checkbox input[type="checkbox"]:checked {
  background-color: #72B239;
  border: 2px solid #72B239;
 }
 .nyuryokubox-item .wpcf7-checkbox input[type="checkbox"]:checked::before {
  content: "";
  width: 8px;
  height: 16px;
  border: solid #ffffff;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
 }
 /*送信ボタン*/
 .form-submit {
  position: relative;
  text-align: center;
 }
 .form-submit {
  padding-top: 16px;
 }
 /*スピナー要素*/
 .wpcf7-spinner {
  position: absolute;
  top: 50%;
  right: -36px;
  transform: translateY(-50%);
  margin: 0 !important;
 }
 .btn-submit, .btn-prev {
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  width: fit-content;
  padding: 20px 20px 20px 40px;
  gap: 30px;
  border-radius: 5px;
  background-color: #72B239;
  color: #FFF;
  text-align: left;
  font-feature-settings: 'hwid'on, 'palt'on;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  transition: background-color 0.2s, background-position 0.2s, transform 0.2s;
  background-image: url(../img/arrow_right_white.svg);
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 8px 16px;
  min-width: 173px;
  border: none;
  box-sizing: border-box;
 }
 .btn-submit:hover, .btn-prev:hover {
  background-color: #C5E29F;
  background-position: right 14px center;
 }
}
/*内容確認*/
.form-submit_wrap {
 display: flex;
 flex-direction: column;
 justify-content: center;
 align-items: center;
 gap: 30px;
}
.contact-confirm-wrap label {
 cursor: default;
}
.contact-confirm-wrap .nyuryokubox-item {
 display: block;
 width: 100%;
 padding: 16px 14px;
 border-radius: 10px;
 border: 1px solid rgba(51, 51, 51, 0.5);
 color: #333;
 font-size: 20px;
 font-weight: 500;
 line-height: 1.6;
 background-color: #FFF;
 box-sizing: border-box;
 outline: none;
 cursor: default !important;
}
.contact-detail_inner-p {
 color: #000;
 font-family: "Noto Sans JP", sans-serif;
 font-size: 20px;
 font-style: normal;
 font-weight: 400;
 line-height: 200%;
 margin-bottom: 40px;
}
.wpcf7 form br {
 display: none;
}
@media screen and (max-width: 768px) {
 .form-submit_wrap {
  gap: 10px;
 }
 .contact-confirm-wrap label {
  cursor: default;
 }
 .contact-detail_inner-p {
  font-size: 1.6rem;
  line-height: 30px;
  margin-bottom: 40px;
 }
}