@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;
}

/*--------------------------------------------------------------
messageのみ
--------------------------------------------------------------*/
.p-message-index {
  margin-top: clamp(100px,16.6666666667vw,200px);
}
.p-message-index__inner {
  width: calc(100% - 100px);
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1024px) {
  .p-message-index__inner {
    width: calc(100% - 44px);
  }
}
.p-message-index__list {
  display: flex;
  justify-content: start;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 83px 25px;
}
@media screen and (max-width: 1024px) {
  .p-message-index__list {
    gap: 50px 25px;
  }
}
.p-message-index__item {
  position: relative;
  width: calc((100% - 50px) / 3);
  line-height: 1.63;
}
@media screen and (max-width: 1024px) {
  .p-message-index__item {
    width: calc((100% - 25px) / 2);
  }
}
@media screen and (max-width: 567px) {
  .p-message-index__item {
    width: 100%;
  }
}
.p-message-index__item .image {
  border-radius: 10px;
  width: 100%;
}
.p-message-index__item .title {
  margin-top: 29px;
  font-size: clamp(1.7rem,1.8333333333vw,2.2rem);
}
@media screen and (max-width: 1024px) {
  .p-message-index__item .title {
    margin-top: 18px;
  }
}
.p-message-index__item .text {
  margin-top: 17px;
  font-size: clamp(1rem,1.1666666667vw,1.4rem);
}
@media screen and (max-width: 1024px) {
  .p-message-index__item .text {
    margin-top: 15px;
  }
}
.p-message-index__item .name {
  margin-top: 7px;
  font-size: clamp(1.5rem,1.6666666667vw,2rem);
}
@media screen and (max-width: 1024px) {
  .p-message-index__item .name {
    margin-top: 6px;
  }
}
.p-message-index__item .post {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: min(180px, 80%);
  height: 2.5em;
  color: white;
  background-color: #73A524;
  border-radius: 10px 0 10px 0;
}
@media screen and (max-width: 1024px) {
  .p-message-index__item .post {
    font-size: 1.2rem;
  }
}

.p-message-detail {
  padding: clamp(120px,28.5vw,342px) 0 0;
}
.p-message-detail__header {
  width: calc(100% - 100px);
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1024px) {
  .p-message-detail__header {
    width: calc(100% - 44px);
  }
}
.p-message-detail__header .title {
  font-size: clamp(2.2rem,4.6666666667vw,5.6rem);
  font-weight: 500;
  line-height: 1.714;
}
.p-message-detail__header .group {
  margin-top: 19px;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 14px;
}
.p-message-detail__header .group .post {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 2.166em;
  padding: 0 1.333em;
  font-size: 1.2rem;
  color: white;
  background-color: #73A524;
  border-radius: 10px;
  flex-shrink: 0;
}
.p-message-detail__header .group .text {
  line-height: 1.6;
  display: flex;
  justify-content: start;
  align-items: start;
  flex-wrap: wrap;
}
.p-message-detail__header .group .text span:first-of-type::after {
  content: "/";
  margin: 0 0.2em;
}
.p-message-detail__header .image {
  margin-top: clamp(70px,18.4166666667vw,221px);
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
  position: relative;
  text-align: center;
  padding: 0 22px;
}
.p-message-detail__header .image .flowing-text {
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  display: block;
  width: 100%;
  height: 144px;
  background: repeat-x url("../img/message/message_flowingtext.png") left center;
  background-size: auto 100%;
  animation: flowImages 24s linear infinite;
}
@keyframes flowImages {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -100% 0;
    /* コンテナの幅だけ左にスライド */
  }
}
.p-message-detail__inner {
  margin-top: clamp(70px,16.6666666667vw,200px);
  width: calc(100% - 100px);
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1024px) {
  .p-message-detail__inner {
    width: calc(100% - 44px);
  }
}
.p-message-detail__section {
  --sec-width: 900px;
  counter-increment: number 1;
  display: grid;
  width: var(--sec-width);
  margin-left: calc((100% - var(--sec-width)) * 0.3);
  margin-right: calc((100% - var(--sec-width)) * 0.7);
}
.p-message-detail__section:not(:first-of-type) {
  margin-top: clamp(50px,9.1666666667vw,110px);
}
@media screen and (max-width: 1024px) {
  .p-message-detail__section {
    width: 100%;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
.p-message-detail__section:nth-of-type(even) {
  margin-left: calc((100% - var(--sec-width)) * 0.7);
  margin-right: calc((100% - var(--sec-width)) * 0.3);
}
.p-message-detail__section.full-image {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}
.p-message-detail__section.full-image .text-content {
  width: var(--sec-width);
}
@media screen and (max-width: 1024px) {
  .p-message-detail__section.full-image .text-content {
    width: 100%;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
.p-message-detail__section:nth-of-type(odd).full-image .text-content {
  margin-left: calc((100% - var(--sec-width)) * 0.3);
  margin-right: calc((100% - var(--sec-width)) * 0.7);
}
.p-message-detail__section:nth-of-type(even).full-image .text-content {
  margin-left: calc((100% - var(--sec-width)) * 0.7);
  margin-right: calc((100% - var(--sec-width)) * 0.3);
}
.p-message-detail__section img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
@media screen and (max-width: 1024px) {
  .p-message-detail__section img {
    height: 300px;
  }
}
.p-message-detail__section img ~ .text-content {
  margin-top: 1.325em;
}
.p-message-detail__section .text-content {
  width: 100%;
  font-size: clamp(2rem,3.3333333333vw,4rem);
}
.p-message-detail__section h2 {
  position: relative;
  font-weight: 500;
  line-height: 1.6;
  padding-left: 30px;
}
@media screen and (max-width: 1024px) {
  .p-message-detail__section h2 {
    padding-left: 22px;
  }
}
.p-message-detail__section h2::before {
  content: counter(number, decimal-leading-zero);
  font-family: "Albert Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 1.2rem;
  line-height: 1;
  padding: 0 0.8em 0 0.5em;
  color: #73A524;
  background: white;
  transform: rotate(90deg);
  transform-origin: left bottom;
  position: absolute;
  left: -1px;
  top: 0;
  z-index: 10;
}
@media screen and (max-width: 1024px) {
  .p-message-detail__section h2::before {
    top: -10px;
    font-size: 1rem;
    padding: 0 0.5em;
  }
}
.p-message-detail__section h2::after {
  content: "";
  width: 1px;
  height: calc(100% - 0.7em);
  position: absolute;
  left: 0;
  bottom: 0.3em;
  background: #73A524;
}
.p-message-detail__section p {
  margin-top: 0.625em;
  font-size: clamp(1.4rem,2vw,2.4rem);
  line-height: 2.25;
  text-align: justify;
  padding-left: 30px;
}
@media screen and (max-width: 1024px) {
  .p-message-detail__section p {
    padding-left: 22px;
  }
}

.p-message-nav {
  margin-top: clamp(100px,13.0833333333vw,157px);
  width: calc(100% - 100px);
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1024px) {
  .p-message-nav {
    width: calc(100% - 44px);
  }
}
.p-message-nav__title {
  font-size: clamp(1.8rem,2.5vw,3rem);
  font-weight: 500;
}
.p-message-nav__slider {
  margin-top: 58px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .p-message-nav__slider {
    margin-top: 30px;
  }
}
.p-message-nav__slider::before, .p-message-nav__slider::after {
  content: "";
  position: absolute;
  top: 0;
  left: 9%;
  display: block;
  height: 100%;
  width: 1px;
  background: #C7EF9F;
}
@media screen and (max-width: 1024px) {
  .p-message-nav__slider::before, .p-message-nav__slider::after {
    display: none;
  }
}
.p-message-nav__slider::after {
  left: auto;
  right: 9%;
}
.p-message-nav__slider-nav {
  position: absolute;
  inset: 0;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .p-message-nav__slider-nav {
    gap: 20px;
    inset: inherit;
    right: 0;
    top: -60px;
  }
}
.p-message-nav__slider-nav .swiper-button-prev, .p-message-nav__slider-nav .swiper-button-next {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  cursor: pointer;
}
.p-message-nav__slider-nav .swiper-button-prev::before, .p-message-nav__slider-nav .swiper-button-next::before {
  content: "";
  position: absolute;
  z-index: 10;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 60px;
  height: 60px;
  background: url("../img/base/icon_right-arrow2.svg") no-repeat center center;
}
.p-message-nav__slider-nav .swiper-button-prev::after, .p-message-nav__slider-nav .swiper-button-next::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 60px;
  height: 60px;
  border-radius: 100%;
}
.p-message-nav__slider-nav .swiper-button-prev::before, .p-message-nav__slider-nav .swiper-button-next::before {
  filter: brightness(0) saturate(100%) invert(99%) sepia(83%) saturate(1277%) hue-rotate(30deg) brightness(83%) contrast(86%);
}
.p-message-nav__slider-nav .swiper-button-prev::after, .p-message-nav__slider-nav .swiper-button-next::after {
  background-color: #C7EE9F;
}
@media screen and (max-width: 1024px) {
  .p-message-nav__slider-nav .swiper-button-prev, .p-message-nav__slider-nav .swiper-button-next {
    width: 40px;
    height: 40px;
  }
  .p-message-nav__slider-nav .swiper-button-prev::before, .p-message-nav__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;
  }
  .p-message-nav__slider-nav .swiper-button-prev::after, .p-message-nav__slider-nav .swiper-button-next::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 40px;
    height: 40px;
    border-radius: 100%;
  }
  .p-message-nav__slider-nav .swiper-button-prev::before, .p-message-nav__slider-nav .swiper-button-next::before {
    filter: brightness(0) saturate(100%) invert(99%) sepia(83%) saturate(1277%) hue-rotate(30deg) brightness(83%) contrast(86%);
  }
  .p-message-nav__slider-nav .swiper-button-prev::after, .p-message-nav__slider-nav .swiper-button-next::after {
    background-color: #C7EE9F;
  }
}
.p-message-nav__slider-nav .swiper-button-prev {
  transform: rotate(180deg);
}

.message-slider {
  margin: 0 15.4% !important;
}
@media screen and (max-width: 1024px) {
  .message-slider {
    margin: 0 !important;
  }
}

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