@charset "UTF-8";
/**
 * html5doctor.com Reset Stylesheet v1.6.1 (http://html5doctor.com/html-5-reset-stylesheet/)
 * Richard Clark (http://richclarkdesign.com)
 * http://cssreset.com
 */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
  color: #1f1f1f;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
  outline: none;
  border: none;
  background: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/*--------------------------------------------------------------
印刷用
--------------------------------------------------------------*/
@media print {
  html {
    height: 100%;
  }

  body {
    width: 1280px;
    transform: scale(0.8);
    -moz-transform: scale(0.8);
    -webkit-transform: scale(0.8);
    transform-origin: 0 0;
  }
  body .pagetop {
    display: none;
  }
}
/*--------------------------------------------------------------
htmlタグ指定
--------------------------------------------------------------*/
* {
  min-height: 0vw;
}

html {
  font-size: 62.5%;
  height: -webkit-fill-available;
}

body {
  color: #070203;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.6rem;
  -webkit-text-size-adjust: 100%;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  overflow-x: hidden;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr auto;
  gap: 0px 0px;
  grid-template-areas: "header" "main" "footer";
  min-height: 100vh;
}
@media screen and (max-width: 1024px) {
  body {
    font-size: 1.4rem;
  }
}

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

h1, h2, h3, h4, h5 {
  font-weight: inherit;
}

input, select, textarea {
  font-family: inherit;
  font-weight: inherit;
}

ul, li {
  list-style: none;
}

img {
  vertical-align: top;
  max-width: 100%;
  height: inherit;
}

a {
  cursor: pointer;
  color: currentColor;
}

/*------------------------------layout------------------------------*/
.wrapper {
  position: relative;
  width: 100%;
}
.main, .contents {
  grid-area: main;
  position: relative;
  overflow: hidden;
}

.c-inner {
  width: calc(100% - 100px);
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1024px) {
  .c-inner {
    width: calc(100% - 44px);
  }
}

/*------------------------------header------------------------------*/
.c-header {
  grid-area: header;
  position: absolute;
  top: 0;
  z-index: 1000;
  width: 100%;
  height: 110px;
}
.c-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: start;
}
@media screen and (max-width: 1024px) {
  .c-header__inner {
    width: 100%;
  }
}
.c-header__logo {
  flex-shrink: 0;
  position: relative;
  padding: 22px 30px;
}
@media screen and (max-width: 1024px) {
  .c-header__logo {
    padding: 20px 15px 0;
  }
  .c-header__logo img {
    width: 167px;
    height: 40px;
  }
}
.c-header.home-header .c-header__logo {
  height: 190px;
  font-size: 1rem;
  font-weight: 500;
  padding: 20px 48px 10px 52px;
  background: white;
  border-radius: 0 0 23px 0;
}
@media screen and (max-width: 1024px) {
  .c-header.home-header .c-header__logo {
    font-size: 0.9rem;
    height: 140px;
    padding: 15px 30px 0;
  }
  .c-header.home-header .c-header__logo img {
    width: 80px;
    height: 98px;
  }
}
.c-header.home-header .c-header__logo::before {
  content: "";
  position: absolute;
  top: 110px;
  left: 99.8%;
  display: block;
  width: 30px;
  height: 30px;
  background: url("../img/base/radius_left-top2.svg") no-repeat top left/contain;
}
@media screen and (max-width: 1024px) {
  .c-header.home-header .c-header__logo::before {
    display: none;
  }
}
.c-header.home-header .c-header__logo::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 30px;
  display: block;
  width: 40px;
  height: 40px;
  background: url("../img/base/radius_left-top.svg") no-repeat top left/contain;
}
@media screen and (max-width: 1024px) {
  .c-header.home-header .c-header__logo::after {
    display: none;
  }
}
.c-header.home-header .c-header__logo span {
  margin-top: 10px;
  display: block;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .c-header.home-header .c-header__logo span {
    margin-top: 5px;
  }
}

.c-header__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  padding: 20px 30px;
  font-size: 1.4rem;
  font-weight: 400;
}
@media screen and (max-width: 1024px) {
  .c-header__nav {
    display: none;
  }
}
.c-header__nav-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.c-header__nav-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 20px;
  overflow: hidden;
}
.c-header__nav-button a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 160px;
  height: 60px;
  padding: 10px;
  color: white;
  background-color: #73A524;
}
.c-header.home-header .c-header__nav-button a {
  height: 70px;
}

.c-header__nav-button .career a {
  background-color: #2F7F44;
}
.c-header__sp-toggle {
  display: none;
}
@media screen and (max-width: 1024px) {
  .c-header__sp-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 50px;
    height: 50px;
    background: #2F7F44;
    border-radius: 100%;
    margin-top: 15px;
    margin-right: 15px;
    cursor: pointer;
    /* 左から順番に弾むためにそれぞれに遅延を設定 */
    /* 弾むアニメーション */
  }
  .c-header__sp-toggle span {
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 100%;
    background: white;
    /* 1度弾んだ後、静止する */
    animation: bounce 3s ease-in-out 1s infinite;
  }
  .c-header__sp-toggle span:nth-child(1) {
    animation-delay: 0s;
  }
  .c-header__sp-toggle span:nth-child(2) {
    animation-delay: 0.3s;
  }
  .c-header__sp-toggle span:nth-child(3) {
    animation-delay: 0.6s;
  }
  @keyframes bounce {
    0% {
      transform: translateY(0);
    }
    5% {
      transform: translateY(1px);
    }
    20% {
      transform: translateY(-6px);
      /* 上に弾む */
    }
    40% {
      transform: translateY(0);
      /* 静止 */
    }
    100% {
      transform: translateY(0);
      /* 元の位置に戻る */
    }
  }
}

@media screen and (max-width: 1024px) {
  body.menu-active .header__sp-menu {
    visibility: visible;
    opacity: 1;
  }
}

/*------------------------------footer------------------------------*/
.c-footer {
  margin-top: clamp(100px,25vw,300px);
  grid-area: footer;
  position: relative;
  z-index: 10;
}
.home-footer {
  margin-top: 0;
}
.home-footer .c-footer__inner {
  margin-top: 0;
  padding-top: 50px;
}

.c-footer__inner {
  margin-top: -74px;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  padding: 122px clamp(20px,8.3333333333vw,100px) 96px;
  background-color: #F5F5F5;
}
@media screen and (max-width: 1024px) {
  .c-footer__inner {
    padding: 120px 20px 22px;
    flex-direction: column-reverse;
    gap: 75px;
  }
}
.home-footer .c-footer__inner {
  margin-top: 0;
  padding-top: 50px;
}

.c-footer__info {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: column;
}
@media screen and (max-width: 1024px) {
  .c-footer__info {
    align-items: center;
  }
}
.c-footer__info .website {
  margin-top: 24px;
}
@media screen and (max-width: 1024px) {
  .c-footer__info .website {
    margin-top: 7px;
  }
}
.c-footer__info .website a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
  font-size: 1.4rem;
  font-weight: 500;
  color: #B5B5B5;
}
@media screen and (max-width: 1024px) {
  .c-footer__info .website a {
    font-size: 1.2rem;
    gap: 5px;
  }
}
.c-footer__info .website a::after {
  content: "";
  width: 14px;
  height: 10px;
  background: url("../img/base/icon_blank.svg") no-repeat center center/contain;
}
.c-footer__info .copy {
  margin-top: auto;
  font-size: 1.4rem;
  color: #B5B5B5;
}
@media screen and (max-width: 1024px) {
  .c-footer__info .copy {
    margin-top: 35px;
    font-size: 1.2rem;
  }
}
.c-footer__nav {
  font-weight: 400;
}
@media screen and (max-width: 1024px) {
  .c-footer__nav-list {
    font-size: 1.6rem;
    font-weight: 500;
  }
}
.c-footer__nav-list li {
  margin-top: 39px;
}
@media screen and (max-width: 1024px) {
  .c-footer__nav-list li {
    margin-top: 46px;
  }
}
.c-footer__nav-list li:first-of-type {
  margin-top: 20px;
}
@media screen and (max-width: 1024px) {
  .c-footer__nav-list li:first-of-type {
    margin-top: 0;
  }
}
.c-footer__nav-button {
  margin-top: 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 20px;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .c-footer__nav-button {
    border-radius: 10px;
  }
  .c-footer__nav-button > * {
    flex: 1;
  }
}
.c-footer__nav-button a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 160px;
  height: 70px;
  padding: 10px;
  font-size: 1.4rem;
  color: white;
  background-color: #73A524;
}
@media screen and (max-width: 1024px) {
  .c-footer__nav-button a {
    width: 100%;
    height: 60px;
  }
}
.c-footer__nav-button .career a {
  background-color: #2F7F44;
}

/*------------------------------project------------------------------*/
.c-link {
  color: #1694D6;
}
.c-link.icon {
  display: inline-flex;
  align-items: center;
}
.c-link.icon::after {
  content: "";
  display: block;
  width: 0.6em;
  height: 0.6em;
  border-top: 0.1em solid currentColor;
  border-right: 0.1em solid currentColor;
  margin-left: 0.2em;
  transform: rotate(45deg);
}

.c-join {
  position: relative;
  width: calc(100% - 100px);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: clamp(81px,7.25vw,87px) 60px clamp(68px,10.5833333333vw,127px);
  text-align: center;
  color: white;
  background: #74be5c;
  background: linear-gradient(105deg, #74be5c 0%, #96cc50 100%);
  border-radius: 40px;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .c-join {
    width: calc(100% - 44px);
  }
}
@media screen and (max-width: 1024px) {
  .c-join {
    padding-left: 0;
    padding-right: 0;
    border-radius: 20px;
  }
}
.c-join::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  margin: auto;
  background: url("../img/base/join_bg.jpg") no-repeat center center/cover;
  opacity: 0.07;
}
.c-join__inner {
  position: relative;
  z-index: 10;
}
.c-join__title {
  font-family: "Albert Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: italic;
  font-size: clamp(4rem,7vw,8.4rem);
}
.c-join__text {
  margin-top: 25px;
  font-size: clamp(1.5rem,2vw,2.4rem);
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  .c-join__text {
    margin-top: 15px;
  }
}
.c-join__arrow {
  margin-top: 45px;
}
@media screen and (max-width: 1024px) {
  .c-join__arrow {
    width: 60%;
    margin-left: auto;
    margin-right: auto;
  }
}
.c-join__arrow svg {
  width: 100%;
}

/*------------------------------title------------------------------*/
.c-page-title {
  position: relative;
  display: flex;
  justify-content: start;
  align-items: center;
  width: 100%;
  height: 700px;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .c-page-title {
    height: 50vh;
  }
}
.c-page-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 36%;
  display: block;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, white 100%);
}
.c-page-title.noimage::before {
  display: none;
}
.c-page-title.noimage .title {
  color: #070203;
}
.c-page-title .title {
  padding-top: 53px;
  position: relative;
  z-index: 10;
  margin-left: 70px;
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: column-reverse;
  gap: 18px;
  color: white;
}
@media screen and (max-width: 1024px) {
  .c-page-title .title {
    margin-left: 22px;
    gap: 12px;
  }
}
.c-page-title .title .ja {
  font-size: 2rem;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .c-page-title .title .ja {
    font-size: 1.3rem;
  }
}
.c-page-title .title .en {
  position: relative;
  font-family: "Albert Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: italic;
  font-size: clamp(5.5rem,8.3333333333vw,10rem);
  line-height: 0.87;
}
.c-page-title .title .en::after {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  background-color: currentColor;
}
.c-page-title img {
  position: absolute;
  z-index: 0;
  inset: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

/*------------------------------button------------------------------*/
.c-button {
  --width: 300px;
  --height: 60px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: var(--width);
  height: var(--height);
  padding: 0 40px 0 32px;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.3;
  color: white;
  background: #73A524;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: color ease 0.4s, background-color ease 0.4s;
}
.c-button::before {
  content: "";
  position: absolute;
  z-index: 10;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 30px;
  height: 30px;
  background: url("../img/base/icon_right-arrow2.svg") no-repeat center center;
}
.c-button::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 30px;
  height: 30px;
  border-radius: 100%;
}
.c-button::before {
  filter: invert(54%) sepia(10%) saturate(2921%) hue-rotate(41deg) brightness(104%) contrast(89%);
}
.c-button::after {
  background-color: white;
}
@media screen and (max-width: 1024px) {
  .c-button {
    --width: 500px;
  }
}
.c-button::before, .c-button::after {
  right: 10px;
}
.c-button.is-white {
  color: #8BC854;
  background: white;
}
.c-button.is-white::before {
  content: "";
  position: absolute;
  z-index: 10;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 30px;
  height: 30px;
  background: url("../img/base/icon_right-arrow2.svg") no-repeat center center;
}
.c-button.is-white::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 30px;
  height: 30px;
  border-radius: 100%;
}
.c-button.is-white::before {
  filter: brightness(0) saturate(100%) invert(99%) sepia(83%) saturate(1277%) hue-rotate(30deg) brightness(83%) contrast(86%);
}
.c-button.is-white::after {
  background-color: #C7EE9F;
}
.c-button.is-white::before, .c-button.is-white::after {
  right: 10px;
}
.c-button.disabled {
  background-color: #a3a3a3;
  pointer-events: none;
}

.c-table {
  width: 100%;
  line-height: 1.6;
  border: 1px solid #73A524;
}
.c-table th, .c-table td {
  font-weight: 500;
  text-align: left;
  vertical-align: middle;
  padding: 20px;
}
.c-table th {
  width: 17%;
  background: white;
  border: 1px solid #73A524;
}
.c-table td {
  font-size: 1.2rem;
  border: 1px solid #73A524;
}

/*------------------------------form------------------------------*/
.c-form dl {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: column;
}
.c-form dl .is-border {
  padding-top: 1.1em;
  border-top: 1px solid #73A524;
}
.c-form dl + dl {
  margin-top: 1.875em;
}
.c-form dl dt, .c-form dl dd {
  width: 100%;
}
.c-form dl dt {
  font-weight: 700;
}
.c-form dl dt label {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.3em;
}
.c-form dl dt .required {
  flex-shrink: 0;
  font-size: 1rem;
  color: #73A524;
}
.c-form dl dd {
  margin-top: 1.1em;
  line-height: 1.6;
}
.c-form dl.confirm dt {
  font-weight: 500;
  color: #BFBFBF;
}
.c-form dl.confirm dd {
  padding: 20px;
  background: #F7F7F7;
  border-radius: 10px;
}
.c-form input, .c-form select, .c-form textarea {
  color: #070203 !important;
  font-size: 1.6rem;
  line-height: 1;
}
.c-form textarea {
  line-height: 1.5;
}
.c-form ::placeholder {
  color: #BFBFBF;
}
.c-form__text, .c-form__textarea {
  --width:400px;
  width: 100%;
  max-width: var(--width);
  padding: 18px;
  border-radius: 5px;
  background-color: white;
  border: 1px solid #73A524;
  font-size: 16px;
  outline: 0;
}
.c-form #myTextarea, .c-form #myInputarea {
  display: none;
}
.c-form__textarea {
  width: 100%;
  max-width: inherit;
  height: 200px;
}
.c-form__textarea.h500 {
  height: 500px;
}
.c-form__textarea.is-gray {
  border: none;
  background: #F7F7F7;
}
.c-form__select {
  --width:300px;
  width: 100%;
  max-width: var(--width);
  position: relative;
  font-size: 16px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.c-form__select::after {
  content: "";
  position: absolute;
  right: 20px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 8px 0 8px;
  border-color: #070203 transparent transparent transparent;
}
.c-form__select select {
  color: #070203;
  width: 100%;
  padding: 21px 40px 21px 18px;
  background: white;
  border: 1px solid #73A524;
  border-radius: 5px;
}
.c-form__select.small {
  width: min(200px, 17vw);
}
.c-form input[type=checkbox] {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 5px;
  background-color: white;
  border: 1px solid #73A524;
  margin: 0;
  margin-right: 4px;
}
.c-form input[type=checkbox]:checked {
  position: relative;
  border-color: #367DBE;
  background-color: #367DBE;
}
.c-form input[type=checkbox]:checked::before {
  content: "";
  display: block;
  position: absolute;
  top: 2px;
  left: 5.5px;
  width: 7px;
  height: 10px;
  transform: rotate(40deg);
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
}
.c-form .input-group {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-wrap: wrap;
  gap: 1em 1.5em;
}
.c-form .input-group .col-12 {
  width: calc((100% - (1.5em * 1)) / 1);
}
.c-form .input-group .col-8 {
  width: calc((100% - (1.5em * 1)) / 1.5);
}
.c-form .input-group .col-6 {
  width: calc((100% - (1.5em * 1)) / 2);
}
.c-form .input-group .col-4 {
  width: calc((100% - (1.5em * 2)) / 3);
}
.c-form .input-group .col-3 {
  width: calc((100% - (1.5em * 3)) / 4);
}
.c-form .input-group .col-3 {
  width: calc((100% - (1.5em * 3)) / 4);
}
.c-form .input-group .col-2 {
  width: calc((100% - (1.5em * 5)) / 6);
}
@media screen and (max-width: 1024px) {
  .c-form .input-group .sp-col-12 {
    width: 100%;
  }
  .c-form .input-group .sp-col-8 {
    width: calc((100% - (1.5em * 1)) / 1.5);
  }
  .c-form .input-group .sp-col-6 {
    width: calc((100% - (1.5em * 1)) / 2);
  }
  .c-form .input-group .sp-col-4 {
    width: calc((100% - (1.5em * 2)) / 3);
  }
  .c-form .input-group .sp-col-3 {
    width: calc((100% - (1.5em * 3)) / 4);
  }
  .c-form .input-group .sp-col-3 {
    width: calc((100% - (1.5em * 3)) / 4);
  }
  .c-form .input-group .sp-col-2 {
    width: calc((100% - (1.5em * 5)) / 6);
  }
}
.c-form .label {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 0.5em;
}
.c-form .label-subtext {
  line-height: 1.6;
}
.c-form .label-subtext:not(:first-of-type) {
  margin-top: 15px;
}
.c-form .label-subtext .text {
  margin-top: 2px;
  display: block;
  color: #B5B5B5;
  font-size: 1rem;
  padding-left: 28px;
}
.c-form input[type=radio] {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 100%;
  background-color: white;
  border: 1px solid #73A524;
  margin: 0;
}
.c-form input[type=radio]:checked {
  position: relative;
}
.c-form input[type=radio]:checked::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  margin: auto;
  width: 63%;
  height: 63%;
  background: #CF356C;
  border-radius: 100%;
}
.c-form .caution {
  margin-top: 0.5em;
  color: #BFBFBF;
  font-size: 1.2rem;
  line-height: 1.8;
}
.c-form .caution .icon {
  display: inline-block;
  padding: 2px 6px;
  font-size: 1rem;
  color: white;
  background: #CF8235;
  border-radius: 5px;
  margin-right: 7px;
}
.c-form .error {
  margin-top: 0.5em;
  font-size: 1.2rem;
  line-height: 1.5;
  color: #73A524;
}
.c-form__submit {
  margin-top: 50px;
}
.c-form__drop {
  --width: 600px;
  width: min(var(--width), 100%);
  border: none;
  padding: 0;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #969696;
  font-size: 1.4rem;
}
.c-form__drop-inner {
  position: relative;
}
.c-form__drop-inner .caution {
  font-size: 1.2rem;
}
@media screen and (max-width: 1024px) {
  .c-form__drop-inner .caution {
    line-height: 1.5;
  }
}
.c-form__drop-inner button {
  margin-top: 10px !important;
  font-size: 1.2rem !important;
  color: white !important;
  padding: 10px !important;
  background-color: #969696 !important;
  border-radius: 3px !important;
  cursor: pointer;
}
.c-form__drop-delete {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.c-form__drop-delete button {
  border: none;
  outline: 0;
}
.c-form__drop-image {
  display: flex;
  justify-content: center;
  align-items: start;
  flex-wrap: wrap;
  gap: 20px 2%;
}
.c-form__drop-image .box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 5px;
  width: 49%;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .c-form__drop-image .box {
    width: 80%;
  }
}
.c-form__drop-image .box button {
  background: #969696;
  color: white;
  border-radius: 5px;
  border: 0;
  outline: 0;
  padding: 5px 10px;
}
[data-target] {
  transition: transform 0.8s ease 0.2s, opacity 0.8s ease 0.2s, background-color 0.2s, color 0.2s;
  opacity: 0;
}
[data-target].action {
  opacity: 1;
}
[data-target][data-slideup] {
  transform: translateY(1.56vw) scale(1);
}
[data-target][data-slideup].action {
  transform: translateY(0);
}
[data-target][data-slidedown] {
  transform: translateY(-1.56vw) scale(1);
}
[data-target][data-slidedown].action {
  transform: translateY(0);
}
[data-target][data-slideleft] {
  transform: translateX(1.56vw) scale(1);
}
[data-target][data-slideleft].action {
  transform: translateX(0);
}
[data-target][data-slideright] {
  transform: translateX(-1.56vw) scale(1);
}
[data-target][data-slideright].action {
  transform: translateX(0);
}

[data-lazy] {
  opacity: 0;
}
[data-lazy].action {
  transition: opacity 0.4s ease;
  opacity: 1;
}

[data-dummy] {
  color: tomato;
}

/*--------------------------------------------------------------
共通 class
--------------------------------------------------------------*/
/* settings */
.pc-hidden {
  display: none;
}
@media screen and (max-width: 1024px) {
  .pc-hidden {
    display: block;
  }
}

.tab-hidden {
  display: none;
}
@media screen and (max-width: 767px) {
  .tab-hidden {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .tab-sp-hidden {
    display: none !important;
  }
}

@media screen and (max-width: 1024px) {
  .sp-hidden {
    display: none !important;
  }
}

.nowrap {
  white-space: nowrap;
}

/* text-align */
body .tac {
  text-align: center;
}
body .tal {
  text-align: left;
}
body .tar {
  text-align: right;
}

/* width % */
.w10 {
  width: 10%;
}

.w20 {
  width: 20%;
}

.w30 {
  width: 30%;
}

.w40 {
  width: 40%;
}

.w50 {
  width: 50%;
}

.w60 {
  width: 60%;
}

.w70 {
  width: 70%;
}

.w80 {
  width: 80%;
}

.w90 {
  width: 90%;
}

.w100 {
  width: 100%;
}

/* spacer xs,sm,md,lg,xl */
.mt-0 {
  margin-top: 0px !important;
}

.mb-0 {
  margin-bottom: 0px;
}

.mr-0 {
  margin-right: 0px;
}

.ml-0 {
  margin-left: 0px;
}

.pt-0 {
  padding-top: 0px !important;
}

.pb-0 {
  padding-bottom: 0px;
}

.pr-0 {
  padding-right: 0px;
}

.pl-0 {
  padding-left: 0px;
}

.mt-xxs {
  margin-top: 10px !important;
}

.mb-xxs {
  margin-bottom: 10px;
}

.mr-xxs {
  margin-right: 10px;
}

.ml-xxs {
  margin-left: 10px;
}

.pt-xxs {
  padding-top: 10px !important;
}

.pb-xxs {
  padding-bottom: 10px;
}

.pr-xxs {
  padding-right: 10px;
}

.pl-xxs {
  padding-left: 10px;
}

.mt-xs {
  margin-top: 20px !important;
}

.mb-xs {
  margin-bottom: 20px;
}

.mr-xs {
  margin-right: 20px;
}

.ml-xs {
  margin-left: 20px;
}

.pt-xs {
  padding-top: 20px !important;
}

.pb-xs {
  padding-bottom: 20px;
}

.pr-xs {
  padding-right: 20px;
}

.pl-xs {
  padding-left: 20px;
}

.mt-sm {
  margin-top: clamp(20px, 3vw, 40px) !important;
}

.mb-sm {
  margin-bottom: clamp(20px, 3vw, 40px);
}

.mr-sm {
  margin-right: clamp(20px, 3vw, 40px);
}

.ml-sm {
  margin-left: clamp(20px, 3vw, 40px);
}

.pt-sm {
  padding-top: clamp(20px, 3vw, 40px) !important;
}

.pb-sm {
  padding-bottom: clamp(20px, 3vw, 40px);
}

.pr-sm {
  padding-right: clamp(20px, 3vw, 40px);
}

.pl-sm {
  padding-left: clamp(20px, 3vw, 40px);
}

.mt-md {
  margin-top: clamp(30px, 5vw, 60px) !important;
}

.mb-md {
  margin-bottom: clamp(30px, 5vw, 60px);
}

.mr-md {
  margin-right: clamp(30px, 5vw, 60px);
}

.ml-md {
  margin-left: clamp(30px, 5vw, 60px);
}

.pt-md {
  padding-top: clamp(30px, 5vw, 60px) !important;
}

.pb-md {
  padding-bottom: clamp(30px, 5vw, 60px);
}

.pr-md {
  padding-right: clamp(30px, 5vw, 60px);
}

.pl-md {
  padding-left: clamp(30px, 5vw, 60px);
}

.mt-lg {
  margin-top: clamp(60px, 6.66vw, 80px) !important;
}

.mb-lg {
  margin-bottom: clamp(60px, 6.66vw, 80px);
}

.mr-lg {
  margin-right: clamp(60px, 6.66vw, 80px);
}

.ml-lg {
  margin-left: clamp(60px, 6.66vw, 80px);
}

.pt-lg {
  padding-top: clamp(60px, 6.66vw, 80px) !important;
}

.pb-lg {
  padding-bottom: clamp(60px, 6.66vw, 80px);
}

.pr-lg {
  padding-right: clamp(60px, 6.66vw, 80px);
}

.pl-lg {
  padding-left: clamp(60px, 6.66vw, 80px);
}

.mt-xl {
  margin-top: clamp(80px, 8.33vw, 100px) !important;
}

.mb-xl {
  margin-bottom: clamp(80px, 8.33vw, 100px);
}

.mr-xl {
  margin-right: clamp(80px, 8.33vw, 100px);
}

.ml-xl {
  margin-left: clamp(80px, 8.33vw, 100px);
}

.pt-xl {
  padding-top: clamp(80px, 8.33vw, 100px) !important;
}

.pb-xl {
  padding-bottom: clamp(80px, 8.33vw, 100px);
}

.pr-xl {
  padding-right: clamp(80px, 8.33vw, 100px);
}

.pl-xl {
  padding-left: clamp(80px, 8.33vw, 100px);
}

.mt-xxl {
  margin-top: clamp(90px, 11.66vw, 130px) !important;
}

.mb-xxl {
  margin-bottom: clamp(90px, 11.66vw, 130px);
}

.mr-xxl {
  margin-right: clamp(90px, 11.66vw, 130px);
}

.ml-xxl {
  margin-left: clamp(90px, 11.66vw, 130px);
}

.pt-xxl {
  padding-top: clamp(90px, 11.66vw, 130px) !important;
}

.pb-xxl {
  padding-bottom: clamp(90px, 11.66vw, 130px);
}

.pr-xxl {
  padding-right: clamp(90px, 11.66vw, 130px);
}

.pl-xxl {
  padding-left: clamp(90px, 11.66vw, 130px);
}

.mt-auto {
  margin-top: auto !important;
}

.mb-auto {
  margin-bottom: auto;
}

.mr-auto {
  margin-right: auto;
}

.ml-auto {
  margin-left: auto;
}

.pt-auto {
  padding-top: auto !important;
}

.pb-auto {
  padding-bottom: auto;
}

.pr-auto {
  padding-right: auto;
}

.pl-auto {
  padding-left: auto;
}

.fs20 {
  font-size: 2rem;
}

.fs18 {
  font-size: 1.8rem;
}

.fs14 {
  font-size: 1.4rem;
}

.fs12 {
  font-size: 1.2rem;
}

.fs10 {
  font-size: 1rem;
}

/*--------------------------------------------------------------
indexのみ
--------------------------------------------------------------*/
.home-title {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: column;
  gap: 16px;
  font-size: 1.4rem;
}
@media screen and (max-width: 1024px) {
  .home-title {
    gap: 12px;
    font-size: 1.3rem;
    font-weight: 500;
  }
}
.home-title::before {
  content: attr(data-subtitle);
  color: #73A524;
  font-family: "Albert Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: italic;
  font-size: clamp(5.5rem,6.6666666667vw,8rem);
  line-height: 0.87;
}

.home-mv {
  position: relative;
  padding-top: 110px;
}
@media screen and (max-width: 1024px) {
  .home-mv {
    padding-top: 80px;
  }
}
.home-mv::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  display: block;
  width: 30px;
  height: 100%;
  background: white;
  z-index: 10;
}
@media screen and (max-width: 1024px) {
  .home-mv::before {
    display: none;
  }
}
.home-mv::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 30px;
  display: block;
  width: 40px;
  height: 40px;
  background: url("../img/base/radius_left-bottom.svg") no-repeat top left/contain;
  z-index: 10;
}
@media screen and (max-width: 1024px) {
  .home-mv::after {
    display: none;
  }
}
.home-mv__image {
  padding: 10px 0;
}
@media screen and (max-width: 1024px) {
  .home-mv__image {
    padding: 0;
  }
}
.home-mv__image .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
  -o-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
}
.home-mv__image .swiper-slide {
  width: 800px !important;
  height: calc(100vh - 170px);
}
@media screen and (max-width: 1024px) {
  .home-mv__image .swiper-slide {
    width: auto !important;
    height: calc(100svh - 224px);
    aspect-ratio: 1/1;
  }
}
.home-mv__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}
@media screen and (max-width: 1024px) {
  .home-mv__image img {
    border-radius: 10px;
  }
}
.home-mv__copy {
  position: absolute;
  bottom: 105px;
  left: 100px;
  z-index: 9;
  color: white;
  font-family: "Albert Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: clamp(5.5rem,12.5vw,15rem);
  line-height: 0.86;
  letter-spacing: 0.1em;
  mix-blend-mode: overlay;
  opacity: 0.8;
}
@media screen and (max-width: 1024px) {
  .home-mv__copy {
    left: 20px;
    bottom: 208.5px;
  }
}
.home-mv__subcopy {
  position: absolute;
  bottom: 60px;
  left: 100px;
  z-index: 9;
  color: white;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
}
@media screen and (max-width: 1024px) {
  .home-mv__subcopy {
    left: 20px;
    bottom: 174px;
    font-size: 2rem;
  }
}
.home-mv__news {
  position: absolute;
  z-index: 10;
  right: 0;
  bottom: 0;
  width: 440px;
  height: 160px;
  padding: 24px;
  background: white;
  border-radius: 40px 0 0 0;
}
@media screen and (max-width: 1024px) {
  .home-mv__news {
    position: inherit;
    width: 100%;
    height: 145px;
    border-radius: 0;
    padding: 42px 20px 10px;
  }
}
.home-mv__news::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 100%;
  display: block;
  width: 40px;
  height: 40px;
  background: url("../img/base/radius_right-bottom.svg") no-repeat top left/contain;
}
@media screen and (max-width: 1024px) {
  .home-mv__news::before {
    display: none;
  }
}
.home-mv__news .news-slider__item {
  padding-left: 16px;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .home-mv__news .news-slider__item {
    padding-left: 0;
  }
}
.home-mv__news .news-slider__item .data-group {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 17px;
  font-size: 1.4rem;
}
@media screen and (max-width: 1024px) {
  .home-mv__news .news-slider__item .data-group {
    gap: 10px;
  }
}
.home-mv__news .news-slider__item .data-group .category {
  padding: 8px 11px;
  color: white;
  background-color: #73A524;
  border-radius: 5px;
}
@media screen and (max-width: 1024px) {
  .home-mv__news .news-slider__item .data-group .category {
    font-size: 1rem;
    position: inherit;
  }
}
.home-mv__news .news-slider__item .title {
  margin-top: 9px;
  height: calc(2em + 0.5em);
  position: relative;
  padding-right: 26px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.home-mv__news .news-slider__item .title::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  display: block;
  width: 9px;
  height: 17px;
  background: url("../img/base/icon_right-arrow.svg") no-repeat top left/contain;
}

.home-section1 {
  position: relative;
  padding-top: clamp(32px,21.1666666667vw,254px);
  padding-bottom: clamp(276px,34.9166666667vw,419px);
  text-align: center;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .home-section1 {
    padding-top: 32px;
  }
}
.home-section1 .title {
  font-family: "hiragino-mincho-pron", serif;
  font-weight: 300;
  font-style: normal;
  font-size: clamp(2.4rem,3.8333333333vw,4.6rem);
  line-height: 1.86;
}
.home-section1 .text {
  margin-top: 15px;
  font-family: "hiragino-mincho-pron", serif;
  font-weight: 300;
  font-style: normal;
  font-size: clamp(1.3rem,2vw,2.4rem);
  line-height: 2.75;
}
.home-section1 .entitle {
  margin-top: 91px;
  font-family: "Albert Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(3.5rem,6.6666666667vw,8rem);
  line-height: 1.125;
  color: rgba(0, 0, 0, 0.8);
  width: fit-content;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1024px) {
  .home-section1 .entitle {
    margin-top: 85px;
  }
}
.home-section1 .bg {
  display: block;
  position: absolute;
  left: -12.5%;
  bottom: 0;
  z-index: -1;
  width: 125%;
  height: clamp(515px,64.6666666667vw,776px);
  background: url("../img/top/section1_bg.jpg") no-repeat center center/cover;
  transform: translateX(0);
  transition: transform 0.1s linear;
}

.home-message {
  margin-top: -102px;
  padding: clamp(72px,11vw,132px) 0 0;
  background-color: white;
  border-radius: 80px 80px 0 0;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .home-message {
    margin-top: -114px;
    border-radius: 40px 40px 0 0;
  }
}
.home-message__inner {
  padding: 0 clamp(20px,8.3333333333vw,100px);
}
@media screen and (max-width: 767px) {
  .home-message__inner {
    padding: 0 20px;
  }
}
.home-message__title {
  margin-top: 40px;
  font-size: clamp(1.7rem,3.3333333333vw,4rem);
  line-height: 1.3;
  font-weight: 500;
}
.home-message__text {
  margin-top: 27px;
  font-size: clamp(1.2rem,1.5vw,1.8rem);
  line-height: 1.88;
}
.home-message__slider {
  margin-top: 84px;
  margin-right: calc(50% - 50vw);
}
@media screen and (max-width: 1024px) {
  .home-message__slider {
    margin-top: 103px;
  }
}
.home-message .message-slider {
  overflow: inherit;
}
.home-message .message-slider__nav {
  position: absolute;
  top: -108px;
  right: 100px;
  display: flex;
  justify-content: start;
  align-items: start;
  gap: 50px;
}
@media screen and (max-width: 1024px) {
  .home-message .message-slider__nav {
    top: -76px;
    right: auto;
    left: 0;
    gap: 25px;
  }
}
.home-message .message-slider__nav .swiper-button-prev, .home-message .message-slider__nav .swiper-button-next {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  cursor: pointer;
}
.home-message .message-slider__nav .swiper-button-prev::before, .home-message .message-slider__nav .swiper-button-next::before {
  content: "";
  position: absolute;
  z-index: 10;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 40px;
  height: 40px;
  background: url("../img/base/icon_right-arrow2.svg") no-repeat center center;
}
.home-message .message-slider__nav .swiper-button-prev::after, .home-message .message-slider__nav .swiper-button-next::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 40px;
  height: 40px;
  border-radius: 100%;
}
.home-message .message-slider__nav .swiper-button-prev::before, .home-message .message-slider__nav .swiper-button-next::before {
  filter: brightness(0) saturate(100%) invert(99%) sepia(83%) saturate(1277%) hue-rotate(30deg) brightness(83%) contrast(86%);
}
.home-message .message-slider__nav .swiper-button-prev::after, .home-message .message-slider__nav .swiper-button-next::after {
  background-color: #C7EE9F;
}
.home-message .message-slider__nav .swiper-button-prev {
  transform: rotate(180deg);
}
.home-message .message-slider .swiper-slide {
  width: 350px;
}
@media screen and (max-width: 1024px) {
  .home-message .message-slider .swiper-slide {
    width: 250px;
  }
}
.home-message .message-slider__item {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: column;
  line-height: 1.63;
}
.home-message .message-slider__item .image {
  border-radius: 20px;
}
@media screen and (max-width: 1024px) {
  .home-message .message-slider__item .image {
    border-radius: 10px;
  }
}
.home-message .message-slider__item .title {
  margin-top: 29px;
  font-size: clamp(1.7rem,1.8333333333vw,2.2rem);
}
@media screen and (max-width: 1024px) {
  .home-message .message-slider__item .title {
    margin-top: 18px;
  }
}
.home-message .message-slider__item .text {
  margin-top: 17px;
  font-size: clamp(1rem,1.1666666667vw,1.4rem);
}
@media screen and (max-width: 1024px) {
  .home-message .message-slider__item .text {
    margin-top: 15px;
  }
}
.home-message .message-slider__item .name {
  margin-top: 7px;
  font-size: clamp(1.5rem,1.6666666667vw,2rem);
}
@media screen and (max-width: 1024px) {
  .home-message .message-slider__item .name {
    margin-top: 6px;
  }
}
.home-message__button {
  margin-top: 77px;
}
@media screen and (max-width: 1024px) {
  .home-message__button {
    margin-top: 58px;
  }
}
.home-message__button > * {
  margin: 0 auto;
}

.home-overview {
  margin-top: clamp(130px,20.8333333333vw,250px);
  position: relative;
  padding: clamp(72px,11vw,132px) 0 196px;
  background-color: #F7FFEA;
  border-radius: 80px;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .home-overview {
    padding-bottom: 637px;
    border-radius: 40px;
  }
}
.home-overview__inner {
  padding: 0 clamp(20px,8.3333333333vw,100px);
}
@media screen and (max-width: 767px) {
  .home-overview__inner {
    padding: 0 20px;
  }
}
.home-overview__list {
  margin-top: 50px;
  position: relative;
  z-index: 10;
  width: max(400px, 25vw);
  font-size: 2rem;
}
@media screen and (max-width: 1024px) {
  .home-overview__list {
    margin-top: 40px;
    width: 100%;
    font-size: 1.8rem;
  }
}
.home-overview__list li {
  border-bottom: 1px solid #73A524;
  position: relative;
}
.home-overview__list li::before {
  content: "";
  position: absolute;
  z-index: 10;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: transparent;
  transition: background-color 0.1s ease, width 0.4s ease;
}
.home-overview__list li:hover::before {
  width: 100%;
  background-color: #2F7F44;
}
@media screen and (max-width: 1024px) {
  .home-overview__list li:hover::before {
    display: none;
  }
}
.home-overview__list a {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}
.home-overview__list a::before {
  content: "";
  position: absolute;
  z-index: 10;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 30px;
  height: 30px;
  background: url("../img/base/icon_right-arrow2.svg") no-repeat center center;
}
.home-overview__list a::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 30px;
  height: 30px;
  border-radius: 100%;
}
.home-overview__list a::before {
  filter: invert(100%) sepia(0%) saturate(7493%) hue-rotate(299deg) brightness(103%) contrast(102%);
}
.home-overview__list a::after {
  background-color: #73A524;
}
@media screen and (max-width: 1024px) {
  .home-overview__list a {
    font-weight: 500;
  }
}
.home-overview__button {
  margin-top: 60px;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 1024px) {
  .home-overview__button {
    margin-top: 70px;
  }
  .home-overview__button > * {
    margin: 0 auto;
  }
}
.home-overview__image1, .home-overview__image2, .home-overview__image3 {
  position: absolute;
  opacity: 0;
  /* 初期状態は非表示 */
  transition: opacity 1s ease, transform 1s ease;
  /* アニメーションを追加 */
}
.home-overview__image1 img, .home-overview__image2 img, .home-overview__image3 img {
  border-radius: 20px;
  object-fit: cover;
  max-width: none;
}
@media screen and (max-width: 1024px) {
  .home-overview__image1 img, .home-overview__image2 img, .home-overview__image3 img {
    border-radius: 10px;
  }
}
.home-overview__image1 {
  top: 103px;
  left: 52.5vw;
  transform: translateY(1.56vw) translateX(-1.56vw) scale(1);
  /* 左斜め下からスライドアップ */
}
@media screen and (max-width: 1024px) {
  .home-overview__image1 {
    top: auto;
    left: -10vw;
    bottom: 227px;
    right: 40vw;
    text-align: right;
  }
}
.home-overview__image2 {
  top: 336px;
  left: 79.3vw;
  transform: translateY(1.56vw) translateX(1.56vw) scale(1);
  /* 右斜め下からスライドアップ */
}
@media screen and (max-width: 1024px) {
  .home-overview__image2 {
    top: auto;
    left: 52vw;
    bottom: 247px;
    right: -4vw;
    text-align: left;
  }
}
.home-overview__image3 {
  top: 563px;
  left: 60vw;
  transform: translateY(1.56vw) scale(1);
  /* 真下からスライドアップ */
}
@media screen and (max-width: 1024px) {
  .home-overview__image3 {
    top: auto;
    left: 13vw;
    bottom: 70px;
    right: 17vw;
    text-align: center;
  }
}
.home-overview__bg {
  margin-top: -80px;
  position: relative;
  z-index: -1;
  width: 100%;
  height: 490px;
  border-radius: 0 0 80px 80px;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .home-overview__bg {
    margin-top: -40px;
    height: 250px;
    border-radius: 0 0 40px 40px;
  }
}
.home-overview__bg img {
  width: 100%;
  height: auto;
  position: absolute;
  left: 0;
  bottom: -25%;
  transition: bottom 0.1s linear;
  /* アニメーションを追加 */
}
.home-overview .action {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
  /* 最終位置（元に戻る） */
}

.home-news {
  padding: clamp(126px,17.3333333333vw,208px) 0 clamp(165px,27.3333333333vw,328px);
}
.home-news__inner {
  position: relative;
  width: calc(100% - 100px);
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1024px) {
  .home-news__inner {
    width: calc(100% - 44px);
  }
}
.home-news__list {
  margin-top: 33px;
}
@media screen and (max-width: 1024px) {
  .home-news__list {
    margin-top: 21px;
  }
}
.home-news__list li {
  position: relative;
}
.home-news__list li::before {
  content: "";
  position: absolute;
  z-index: 10;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: transparent;
  transition: background-color 0.1s ease, width 0.6s ease;
}
.home-news__list li:hover::before {
  width: 100%;
  background-color: #2F7F44;
}
@media screen and (max-width: 1024px) {
  .home-news__list li:hover::before {
    display: none;
  }
}
.home-news__list a {
  position: relative;
  display: block;
  padding: 35px 0;
  border-bottom: 1px solid #73A524;
}
.home-news__list a::before {
  content: "";
  position: absolute;
  z-index: 10;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 40px;
  height: 40px;
  background: url("../img/base/icon_right-arrow2.svg") no-repeat center center;
}
.home-news__list a::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 40px;
  height: 40px;
  border-radius: 100%;
}
.home-news__list a::before {
  filter: brightness(0) saturate(100%) invert(99%) sepia(83%) saturate(1277%) hue-rotate(30deg) brightness(83%) contrast(86%);
}
.home-news__list a::after {
  background-color: #C7EE9F;
}
.home-news__list a::before, .home-news__list a::after {
  transform: translateY(13px);
}
@media screen and (max-width: 1024px) {
  .home-news__list a::before, .home-news__list a::after {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .home-news__list a {
    padding: 22px 0;
  }
}
.home-news__item {
  font-weight: 500;
}
.home-news__item .data-group {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 15px;
}
@media screen and (max-width: 1024px) {
  .home-news__item .data-group {
    gap: 11px;
  }
}
.home-news__item .data-group .data {
  font-size: 1.4rem;
  color: #B5B5B5;
}
@media screen and (max-width: 1024px) {
  .home-news__item .data-group .data {
    font-size: 1.2rem;
  }
}
.home-news__item .data-group .category-group {
  display: flex;
  justify-content: start;
  align-items: start;
  gap: 10px;
}
@media screen and (max-width: 1024px) {
  .home-news__item .data-group .category-group {
    gap: 5px;
  }
}
.home-news__item .data-group .category {
  padding: 8px 11px;
  font-size: 1.2rem;
  color: white;
  background-color: #73A524;
  border-radius: 5px;
}
@media screen and (max-width: 1024px) {
  .home-news__item .data-group .category {
    font-size: 1rem;
    padding: 5px;
    border-radius: 2.5px;
  }
}
.home-news__item .title {
  margin-top: 18px;
  position: relative;
  padding-right: 50px;
  font-size: clamp(1.4rem,1.5vw,1.8rem);
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media screen and (max-width: 1024px) {
  .home-news__item .title {
    margin-top: 7px;
    padding-right: 0;
  }
}
.home-news__button {
  position: absolute;
  top: 36px;
  right: 0;
  width: 300px;
  z-index: 10;
}
@media screen and (max-width: 1024px) {
  .home-news__button {
    margin-top: 70px;
    position: static;
    width: auto;
  }
  .home-news__button > * {
    margin: 0 auto;
  }
}

.home-join {
  position: relative;
  padding: clamp(81px,9vw,108px) 0 clamp(68px,6.6666666667vw,80px);
  text-align: center;
  color: white;
  background: #74be5c;
  background: linear-gradient(105deg, #74be5c 0%, #96cc50 100%);
  border-radius: 40px 40px 0 0;
}
@media screen and (max-width: 1024px) {
  .home-join {
    border-radius: 20px 20px 0 0;
  }
}
.home-join__title {
  font-family: "Albert Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: italic;
  font-size: clamp(4.5rem,7.5vw,9rem);
}
@media screen and (max-width: 767px) {
  .home-join__title {
    padding: 0 20px;
  }
}
.home-join__text {
  margin-top: 28px;
  font-size: clamp(1.5rem,2.5vw,3rem);
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  .home-join__text {
    margin-top: 15px;
  }
}
.home-join__button {
  margin-top: 49px;
}
@media screen and (max-width: 767px) {
  .home-join__button {
    margin-top: 53px;
    padding: 0 20px;
  }
}
.home-join__button > * {
  margin: 0 auto;
}
.home-join__image {
  margin-top: 56px;
}
@media screen and (max-width: 1024px) {
  .home-join__image {
    margin-top: 65px;
  }
}
.home-join__image .join-slider .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  height: 500px;
}
@media screen and (max-width: 1024px) {
  .home-join__image .join-slider .swiper-slide {
    height: 375px;
  }
}
.home-join__image .join-slider .swiper-slide img {
  border-radius: 20px;
  height: auto;
}
@media screen and (max-width: 1024px) {
  .home-join__image .join-slider .swiper-slide img {
    border-radius: 10px;
  }
}
.home-join__image .join-slider .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
  -o-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
}

/*# sourceMappingURL=index.css.map */
