@charset "UTF-8";
/** サイトカラー **/
/*-- componentフォルダの中の_index.scss --*/
.c-txt {
  font-size: 18px;
  line-height: 2;
  font-weight: 500;
}
.c-txt.--narrow {
  line-height: 1.5;
}
.c-txt.--center {
  text-align: center;
}
.c-txt.--big {
  font-size: 24px;
}
.c-txt.--bold {
  font-weight: 700;
}

.c-txt-interview + .c-txt-interview {
  margin-top: 34px;
}
.c-txt-interview .--q {
  color: #3B8401;
  font-size: 18px;
  font-weight: 700;
  line-height: 36px;
  letter-spacing: 0.05em;
  position: relative;
  padding-left: 35px;
}
.c-txt-interview .--q::before {
  position: absolute;
  left: 0px;
  top: 43%;
  content: "";
  display: block;
  height: 2px;
  width: 28px;
  background-color: #8EC31F;
}
@media screen and (max-width: 767px) {
  .c-txt-interview .--q {
    font-size: 16px;
    line-height: 25px;
  }
}
@media screen and (max-width: 480px) {
  .c-txt-interview .--q {
    font-size: 15px;
  }
}
.c-txt-interview .--a {
  color: #233F26;
  font-size: 16px;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .c-txt-interview .--a {
    margin-top: 12px;
    font-size: 15px;
    line-height: 24px;
  }
}
@media screen and (max-width: 480px) {
  .c-txt-interview .--a {
    font-size: 14px;
  }
}

.c-alpha-list__item {
  font-size: 16px;
  line-height: 1.625;
  padding-left: 24px;
  position: relative;
  text-indent: 8px;
}
.c-alpha-list__item::before {
  content: "a.";
  position: absolute;
  top: 0px;
  left: -6px;
  font-weight: 700;
}
.c-alpha-list__item:nth-child(2)::before {
  content: "b.";
}
.c-alpha-list__item:nth-child(3)::before {
  content: "c.";
}
.c-alpha-list__item:nth-child(4)::before {
  content: "d.";
}
.c-alpha-list__item:nth-child(5)::before {
  content: "e.";
}
.c-alpha-list__item:nth-child(6)::before {
  content: "f.";
}
.c-alpha-list__item:nth-child(7)::before {
  content: "g.";
}
.c-alpha-list__item:nth-child(8)::before {
  content: "h.";
}
.c-alpha-list__item:nth-child(9)::before {
  content: "i.";
}
.c-alpha-list__item + .c-alpha-list__item {
  margin-top: 0.45em;
}

.c-width {
  max-width: 1600px;
  padding: 0 140px;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .c-width {
    padding: 0 22px;
  }
}
.c-width.--wide {
  padding: 0 50px;
}
@media only screen and (max-width: 767px) {
  .c-width.--wide {
    padding: 0 8px;
  }
}
.c-width.--narrow {
  max-width: 1120px;
}
@media only screen and (max-width: 1600px) {
  .c-width.--narrow {
    max-width: 940px;
  }
}
@media only screen and (max-width: 1023px) {
  .c-width.--narrow {
    padding: 0 50px;
  }
}
@media only screen and (max-width: 767px) {
  .c-width.--narrow {
    padding: 0 22px;
  }
}

.c-btn-wrap {
  text-align: center;
}

.c-btn,
.c-btn__white {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 18px 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 700;
  letter-spacing: 0.05em;
  height: 70px;
  border-radius: 35px;
  cursor: pointer;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  max-width: 100%;
}

.c-btn {
  color: #233F26;
  position: relative;
}
.c-btn::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  background: linear-gradient(257deg, #FFE109 0%, #8EC31F 100%);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  width: 100%;
  height: 100%;
  border-radius: 9999px;
}
.c-btn::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  background-color: #8EC31F;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  width: 100%;
  height: 100%;
  border-radius: 9999px;
  opacity: 0;
}
@media only screen and (min-width: 1024px) {
  .c-btn:hover span {
    color: #fff;
  }
  .c-btn:hover::before {
    opacity: 0;
  }
  .c-btn:hover::after {
    opacity: 1;
  }
}
.c-btn span {
  z-index: 1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.c-btn.--return {
  background: #D9E2DC;
}
@media only screen and (min-width: 1024px) {
  .c-btn.--return:hover {
    background: #8EC31F;
  }
  .c-btn.--return:hover input {
    color: #fff;
  }
  .c-btn.--return input {
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
}
.c-btn__white {
  z-index: 10;
}
.c-btn__white::before, .c-btn__white::after {
  position: absolute;
  content: "";
  border-radius: 35px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.c-btn__white::before {
  background: linear-gradient(257deg, #FFE109 0%, #8EC31F 100%);
  z-index: -2;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.c-btn__white::after {
  z-index: -1;
  background-color: #fff;
  top: 2px;
  left: 2px;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
}
@media screen and (min-width: 1024px) {
  .c-btn__white:hover {
    color: #fff;
    background: #8EC31F;
  }
  .c-btn__white:hover::before, .c-btn__white:hover::after {
    opacity: 0;
  }
}

h1.c-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  gap: 0;
}
@media screen and (max-width: 480px) {
  h1.c-ttl {
    gap: 3px;
  }
}
h1.c-ttl .c-ttl__txt {
  color: #233F26;
  font-size: 50px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 60px;
}
@media only screen and (max-width: 1023px) {
  h1.c-ttl .c-ttl__txt {
    font-size: 40px;
  }
}
@media screen and (max-width: 480px) {
  h1.c-ttl .c-ttl__txt {
    font-size: 30px;
    line-height: 40px;
  }
}
h1.c-ttl .c-ttl__txt__sub {
  color: #3B8401;
  font-size: 24px;
  font-family: "Prompt", sans-serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 34px;
}
@media screen and (max-width: 480px) {
  h1.c-ttl .c-ttl__txt__sub {
    font-size: 18px;
    line-height: 20px;
  }
}
h1.c-ttl .--vertical {
  position: absolute;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  top: 0;
  right: 0;
  font-size: 50px;
  font-family: "Prompt", sans-serif;
  font-weight: 400;
  line-height: 34px;
  letter-spacing: 0.05em;
  color: #8EC31F;
}

h2.c-ttl {
  color: #233F26;
  font-size: 40px;
  font-family: "Prompt", sans-serif;
  font-weight: 400;
  line-height: 50px;
  letter-spacing: 0.05em;
  position: relative;
}
h2.c-ttl::before {
  position: absolute;
  top: 50%;
  left: -3020px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  display: block;
  width: 3000px;
  height: 1px;
  background-color: #8EC31F;
}
@media screen and (max-width: 767px) {
  h2.c-ttl::before {
    left: -24px;
    width: 14px;
  }
}
@media screen and (max-width: 767px) {
  h2.c-ttl {
    font-size: 30px;
    line-height: 36px;
  }
}
@media screen and (max-width: 480px) {
  h2.c-ttl {
    font-size: 26px;
  }
}

.c-img {
  display: block;
  text-align: center;
  border-radius: 20px;
}
@media screen and (max-width: 480px) {
  .c-img {
    border-radius: 12px;
  }
}

.c-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
}
.c-list .--ttl {
  color: #222923;
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  letter-spacing: 0.05em;
  background-color: #F8F8F8;
  border-radius: 8px;
  padding: 17px 20px 15px;
}
@media screen and (max-width: 767px) {
  .c-list .--ttl {
    font-size: 20px;
    line-height: 22px;
    border-radius: 5px;
    padding: 13px 12px 11px;
  }
}
@media screen and (max-width: 480px) {
  .c-list .--ttl {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .c-list .--txt {
    font-size: 15px;
  }
}
.c-list .c-num-list {
  margin: 0;
}

.c-list-index {
  padding: 30px;
  border-radius: 8px;
  border: 1px solid #8EC31F;
  background-color: #F8F8F8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
.c-list-index__ttl {
  color: #3B8401;
  font-size: 24px;
  font-family: "Prompt", sans-serif;
  font-weight: 500;
  line-height: 34px;
  letter-spacing: 0.05em;
  padding-bottom: 12px;
  border-bottom: 1px solid #D9E2DC;
}
@media screen and (max-width: 480px) {
  .c-list-index__ttl {
    font-size: 18px;
    line-height: 28px;
  }
}
.c-list-index__list {
  padding-left: 17px;
}
.c-list-index__list ::before {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background-color: #8EC31F;
  top: 1px;
  left: 1px;
}
.c-list-index__list .--link {
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 1024px) {
  .c-list-index__list .--link:hover {
    color: #8EC31F;
  }
}
@media screen and (max-width: 480px) {
  .c-list-index__list .--link {
    color: #333;
    font-size: 14px;
    line-height: 22px;
  }
}

.c-line {
  width: 100%;
  height: 1px;
  background-color: #D9E2DC;
}
.c-line.--bold {
  height: 3px;
}

.c-ttl-parts {
  margin-top: 20px;
  text-align: center;
  letter-spacing: 0.01em;
}
.c-ttl-parts__word {
  font-size: 34px;
  font-weight: 600;
  position: relative;
  display: inline-block;
}
@media only screen and (max-width: 767px) {
  .c-ttl-parts__word {
    font-size: 26px;
    line-height: 1.38;
  }
}
.c-ttl-parts__word.--parts-narrow::before {
  margin-right: 0.4em;
}
.c-ttl-parts__word.--parts-narrow::after {
  margin-left: 0.4em;
}
.c-ttl-parts__word::before {
  position: absolute;
  top: calc(50% + 10px);
  left: -1em;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  content: url(/media/images/common/ttl-parts.svg);
  vertical-align: -25%;
}
.c-ttl-parts__word::after {
  position: absolute;
  top: calc(50% + 10px);
  right: -1em;
  content: url(/media/images/common/ttl-parts.svg);
  vertical-align: -25%;
  -webkit-transform: scaleX(-1) translate(-50%, -50%);
          transform: scaleX(-1) translate(-50%, -50%);
  display: inline-block;
}
@media only screen and (max-width: 767px) {
  .c-ttl-parts__word.--sp-two-lines {
    font-size: 26px;
    position: relative;
    line-height: 1.5;
    display: inline-block;
  }
}
@media only screen and (max-width: 767px) {
  .c-ttl-parts__word.--sp-two-lines::before {
    margin-right: 0;
    position: absolute;
    top: 37px;
    left: -59px;
    display: inline-block;
  }
}
@media only screen and (max-width: 767px) {
  .c-ttl-parts__word.--sp-two-lines::after {
    margin-left: 0;
    position: absolute;
    bottom: -9px;
    right: -59px;
    display: inline-block;
  }
}

.c-kome-list__item {
  display: block;
  padding-left: 1.25em;
  position: relative;
  font-size: 18px;
  line-height: 1.6;
}
.c-kome-list__item:before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 12px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  margin-top: 50px;
}
@media only screen and (max-width: 767px) {
  .pagination {
    margin-top: 40px;
  }
}
.pagination .page {
  border: 1px solid #D9E2DC;
  background-color: #F8F8F8;
  width: 48px;
  height: 44px;
  border-radius: 5px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (min-width: 1024px) {
  .pagination .page:hover {
    border: 1px solid #8EC31F;
    background-color: #8EC31F;
  }
}
.pagination .page.active {
  border: 1px solid #8EC31F;
  background-color: #8EC31F;
  pointer-events: none;
}
.pagination .page.first, .pagination .page.last {
  display: none;
}
.pagination .page a, .pagination .page.active span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.pagination li:not([class]) {
  display: none;
}
.pagination .prev:not(.disabled),
.pagination .next:not(.disabled) {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  padding: 0 12px;
}
@media only screen and (min-width: 1024px) {
  .pagination .prev:not(.disabled):hover,
  .pagination .next:not(.disabled):hover {
    color: #8EC31F;
  }
}

.prev.disabled,
.next.disabled {
  opacity: 0;
  visibility: hidden;
}

.c-num-list {
  margin-top: 14px;
  counter-reset: my-counter;
  list-style-type: none;
  padding-left: 0;
}
@media screen and (max-width: 767px) {
  .c-num-list {
    margin-top: 12px;
  }
}
.c-num-list__item {
  line-height: 32px;
  letter-spacing: 0.05em;
  counter-increment: my-counter;
  padding-left: 18px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-num-list__item {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0.08em;
  }
}
@media screen and (max-width: 480px) {
  .c-num-list__item {
    font-size: 14px;
  }
}
.c-num-list__item:not(:first-child) {
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .c-num-list__item:not(:first-child) {
    margin-top: 8px;
  }
}
.c-num-list__item::before {
  content: counter(my-counter) ". ";
  position: absolute;
  left: 0;
}

.c-roman-num-list {
  margin-top: 12px;
  list-style-type: none;
  padding-left: 0;
}
.c-roman-num-list__item {
  line-height: 32px;
  letter-spacing: 0.05em;
  padding-left: 1.5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-roman-num-list__item {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0.08em;
  }
}
@media screen and (max-width: 480px) {
  .c-roman-num-list__item {
    font-size: 14px;
  }
}
.c-roman-num-list__item:not(:first-child) {
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .c-roman-num-list__item:not(:first-child) {
    margin-top: 8px;
  }
}
.c-roman-num-list__item::before {
  content: "ⅰ.";
  position: absolute;
  left: 0;
}
.c-roman-num-list__item:nth-child(2)::before {
  content: "ⅱ.";
}
.c-roman-num-list__item:nth-child(3)::before {
  content: "ⅲ.";
}
.c-roman-num-list__item:nth-child(4)::before {
  content: "ⅳ.";
}
.c-roman-num-list__item:nth-child(5)::before {
  content: "ⅴ.";
}

.c-check {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 10px;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-check__box {
  cursor: pointer;
  border: 1px solid #D9E2DC;
  border-radius: 5px;
  width: 30px;
  height: 30px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
}
@media screen and (max-width: 480px) {
  .c-check__box {
    width: 24px;
    height: 24px;
  }
}
.c-check__box:disabled {
  background: #D9E2DC;
  cursor: unset;
}
.c-check__box:checked {
  background-color: #8EC31F;
  border: 1px solid #8EC31F;
}
.c-check__box:checked::after {
  position: absolute;
  content: "";
  -webkit-mask: url(/media/images/document/icon_check.svg) no-repeat center/contain;
          mask: url(/media/images/document/icon_check.svg) no-repeat center/contain;
  background-color: #fff;
  width: 24px;
  height: 24px;
  top: calc((100% - 24px) / 2);
  left: calc((100% - 24px) / 2);
}
@media screen and (max-width: 480px) {
  .c-check__box:checked::after {
    width: 19px;
    height: 19px;
    top: calc((100% - 19px) / 2);
    left: calc((100% - 19px) / 2);
  }
}
.c-check__txt {
  cursor: pointer;
  line-height: 20px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 480px) {
  .c-check__txt {
    font-size: 14px;
    line-height: 18px;
  }
}
.c-check__txt.--disabled {
  cursor: unset;
}

.c-textbox,
.input-form .type1,
.type2,
.input-form .type6 {
  padding: 17px 18px;
  height: 100%;
}

.c-textarea {
  padding: 20px 20px 32px 20px;
  overflow-y: scroll;
}

.c-textbox,
.c-textarea,
.type2,
.input-form .type1,
.input-form .type6 {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.05em;
  border: 1px solid #D9E2DC;
  border-radius: 5px;
  width: 100%;
}
@media screen and (max-width: 480px) {
  .c-textbox,
  .c-textarea,
  .type2,
  .input-form .type1,
  .input-form .type6 {
    font-size: 14px;
    line-height: 20px;
  }
}
.c-textbox::-webkit-input-placeholder, .c-textarea::-webkit-input-placeholder, .type2::-webkit-input-placeholder, .input-form .type1::-webkit-input-placeholder, .input-form .type6::-webkit-input-placeholder {
  color: #B4D1BE;
}
.c-textbox::-moz-placeholder, .c-textarea::-moz-placeholder, .type2::-moz-placeholder, .input-form .type1::-moz-placeholder, .input-form .type6::-moz-placeholder {
  color: #B4D1BE;
}
.c-textbox:-ms-input-placeholder, .c-textarea:-ms-input-placeholder, .type2:-ms-input-placeholder, .input-form .type1:-ms-input-placeholder, .input-form .type6:-ms-input-placeholder {
  color: #B4D1BE;
}
.c-textbox::-ms-input-placeholder, .c-textarea::-ms-input-placeholder, .type2::-ms-input-placeholder, .input-form .type1::-ms-input-placeholder, .input-form .type6::-ms-input-placeholder {
  color: #B4D1BE;
}
.c-textbox::placeholder,
.c-textarea::placeholder,
.type2::placeholder,
.input-form .type1::placeholder,
.input-form .type6::placeholder {
  color: #B4D1BE;
}
.c-textbox.--red,
.c-textarea.--red,
.type2.--red,
.input-form .type1.--red,
.input-form .type6.--red {
  border-color: #D14000;
}
.c-textbox:-moz-read-only, .c-textarea:-moz-read-only, .type2:-moz-read-only, .input-form .type1:-moz-read-only, .input-form .type6:-moz-read-only {
  border-color: #3B8401;
}
.c-textbox:read-only,
.c-textarea:read-only,
.type2:read-only,
.input-form .type1:read-only,
.input-form .type6:read-only {
  border-color: #3B8401;
}

.alert.entry, .alert.confirm {
  display: none;
}

.mailform {
  width: 100%;
}
.mailform.confirm .p-doc-back__icon::after {
  background: url(/media/images/document/iconB_confirm.svg) no-repeat center/contain;
}
@media screen and (max-width: 480px) {
  .mailform.confirm .p-doc-back__icon::after {
    background: url(/media/images/document/iconB_confirm_sp.svg) no-repeat center/contain;
  }
}

.label-danger {
  background: #D14000;
  border-radius: 20px;
  color: #F8F8F8;
  font-size: 12px;
  line-height: 14px;
  letter-spacing: 0.05em;
  right: -40px;
  margin-top: -2px;
  padding: 2px 4px;
  position: relative;
  display: inline-block;
  top: -2px;
  left: 0;
}

.input-form {
  padding-top: 10px;
}

.form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
  padding-top: 20px;
}
.form-group .control-label {
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 480px) {
  .form-group .control-label {
    font-size: 14px;
    line-height: 20px;
  }
}
.form-group .control-label .icon {
  padding-bottom: 2px;
}

fieldset {
  border: none;
  padding: 0;
  margin: 0;
}

.dl_type .controls,
.dl_privacy .controls,
.mail_privacy .controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 18px;
  width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .dl_type .controls,
  .dl_privacy .controls,
  .mail_privacy .controls {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media screen and (max-width: 480px) {
  .dl_type .controls,
  .dl_privacy .controls,
  .mail_privacy .controls {
    gap: 12px 20px;
  }
}
.dl_type label.checkbox,
.dl_privacy label.checkbox,
.mail_privacy label.checkbox {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 10px;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  line-height: 20px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 480px) {
  .dl_type label.checkbox,
  .dl_privacy label.checkbox,
  .mail_privacy label.checkbox {
    font-size: 14px;
    line-height: 18px;
  }
}
.dl_type .type5,
.dl_privacy .type5,
.mail_privacy .type5 {
  cursor: pointer;
  border: 1px solid #D9E2DC;
  border-radius: 5px;
  width: 30px;
  height: 30px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
}
@media screen and (max-width: 480px) {
  .dl_type .type5,
  .dl_privacy .type5,
  .mail_privacy .type5 {
    width: 24px;
    height: 24px;
  }
}
.dl_type .type5:checked,
.dl_privacy .type5:checked,
.mail_privacy .type5:checked {
  background-color: #8EC31F;
  border: 1px solid #8EC31F;
}
.dl_type .type5:checked::after,
.dl_privacy .type5:checked::after,
.mail_privacy .type5:checked::after {
  position: absolute;
  content: "";
  -webkit-mask: url(/media/images/document/icon_check.svg) no-repeat center/contain;
          mask: url(/media/images/document/icon_check.svg) no-repeat center/contain;
  background-color: #fff;
  width: 24px;
  height: 24px;
  top: calc((100% - 24px) / 2);
  left: calc((100% - 24px) / 2);
}
@media screen and (max-width: 480px) {
  .dl_type .type5:checked::after,
  .dl_privacy .type5:checked::after,
  .mail_privacy .type5:checked::after {
    width: 19px;
    height: 19px;
    top: calc((100% - 19px) / 2);
    left: calc((100% - 19px) / 2);
  }
}

.dl_privacy .controls,
.mail_privacy .controls {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.c-btn__white {
  width: 240px;
  height: 70px;
}

.mailform.confirm .input-form .type5 {
  background: #D9E2DC;
  cursor: unset;
}
.mailform.confirm .input-form label.checkbox {
  cursor: unset;
}
.mailform.confirm .c-btn,
.mailform.confirm .c-btn__white {
  width: 217px;
  height: 70px;
  padding: 0;
}
@media only screen and (max-width: 767px) {
  .mailform.confirm .c-btn,
  .mailform.confirm .c-btn__white {
    width: calc(50% - 5px);
    max-width: 217px;
  }
}

.submit.form-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
}
.submit.form-actions .c-btn__white {
  padding: 0;
}
@media only screen and (min-width: 1024px) {
  .submit.form-actions .c-btn__white:hover .confirm.btn.btn-primary,
  .submit.form-actions .c-btn__white:hover input {
    color: #fff;
  }
}
.submit.form-actions .confirm.btn.btn-primary {
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.05em;
  color: #233F26;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 35px;
  cursor: pointer;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.submit.form-actions input {
  font-size: 16px;
  color: #233F26;
  line-height: 20px;
  font-weight: 700;
  letter-spacing: 0.05em;
  width: 100%;
  height: 100%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  cursor: pointer;
  z-index: 2;
}

.dl_privacy .control-label,
.mail_privacy .control-label {
  display: none;
}

.input-form.confirm .controls:has(span:not(.p-doc-back__privacy__txt)) {
  border: 1px solid #3B8401;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.05em;
  border-radius: 5px;
  width: 100%;
  padding: 17px 18px;
  height: 100%;
}

.c-btn.--return::before, .c-btn.--return::after {
  opacity: 0;
}

#doc input.error-tooltip,
#contact input.error-tooltip {
  border-color: #D14000;
}
#doc label.error-tooltip,
#doc .error,
#contact label.error-tooltip,
#contact .error {
  color: #D14000;
}

.c-lower-kv {
  padding-top: 50px;
  border-radius: 30px;
}
@media only screen and (max-width: 1023px) {
  .c-lower-kv {
    padding-top: 40px;
  }
}
@media screen and (max-width: 480px) {
  .c-lower-kv {
    padding-top: 32px;
  }
}
.c-lower-kv img {
  display: block;
  width: 100%;
}

/*-- layoutフォルダの中の_index.scss --*/
html {
  position: relative;
}
html.is-spmenu-opened {
  overflow: hidden;
}

.l-wrap {
  overflow: hidden;
}

.l-main {
  padding-top: 130px;
  padding-bottom: 120px;
}
@media screen and (max-width: 480px) {
  .l-main {
    padding-top: 106px;
  }
}
@media only screen and (max-width: 1023px) {
  .l-main {
    padding-bottom: 100px;
  }
}
@media only screen and (max-width: 767px) {
  .l-main {
    padding-bottom: 80px;
  }
}

.l-scrollTop {
  width: 50px;
  height: 50px;
  position: fixed;
  display: none;
  bottom: 20px;
  right: 30px;
  z-index: 1000;
}
@media screen and (max-width: 480px) {
  .l-scrollTop {
    width: 40px;
    height: 40px;
    right: 20px;
  }
}

.l-scrollTop__btn {
  width: 100%;
  height: 100%;
  background: linear-gradient(92deg, #8EC31F 0.05%, #FFE109 100.21%);
  position: relative;
  display: block;
  border-radius: 50%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.l-scrollTop__btn::after {
  content: "";
  display: block;
  background-color: #fff;
  -webkit-mask: url(/media/images/scroll_top_arrow.svg) no-repeat center/contain;
          mask: url(/media/images/scroll_top_arrow.svg) no-repeat center/contain;
  position: absolute;
  width: 15px;
  height: 15px;
  top: calc((100% - 15px) / 2);
  left: calc((100% - 15px) / 2);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media screen and (min-width: 1024px) {
  .l-scrollTop__btn:hover {
    opacity: 0.6;
  }
}

.l-ft {
  background-color: #F8F8F8;
}

.l-ft__inr {
  display: grid;
  grid-template-columns: 200px 440px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 56px 0 80px 0;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1271px) {
  .l-ft__inr {
    grid-template-columns: auto 360px;
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .l-ft__inr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (max-width: 480px) {
  .l-ft__inr {
    margin-top: 44px;
    padding: 0 16px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
}

.l-ft__top__inr {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}
@media screen and (max-width: 1271px) {
  .l-ft__top__inr {
    -webkit-column-gap: 12px;
       -moz-column-gap: 12px;
            column-gap: 12px;
  }
}
@media screen and (max-width: 767px) {
  .l-ft__top__inr {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.l-ft__top {
  background: -webkit-gradient(linear, left top, right top, color-stop(0.2%, #8EC31F), color-stop(99.8%, #FFE109));
  background: linear-gradient(90deg, #8EC31F 0.2%, #FFE109 99.8%);
  padding: 40px 0;
}
@media screen and (max-width: 480px) {
  .l-ft__top {
    padding: 22px 0;
  }
}

.l-ft__top__btn {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 30px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  border-radius: 10px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media only screen and (min-width: 1024px) {
  .l-ft__top__btn:hover {
    opacity: 0.6;
  }
}
@media screen and (max-width: 1271px) {
  .l-ft__top__btn {
    grid-template-rows: 19px auto;
  }
}
@media screen and (max-width: 767px) {
  .l-ft__top__btn {
    padding: 25px;
  }
}
@media screen and (max-width: 480px) {
  .l-ft__top__btn {
    padding: 20px;
  }
}
.l-ft__top__btn .l-ft__btn__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: calc(100% - 50px - 20px);
  position: relative;
}
@media screen and (max-width: 1271px) {
  .l-ft__top__btn .l-ft__btn__wrap {
    padding-right: 45px;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .l-ft__top__btn .l-ft__btn__wrap {
    width: calc(100% - 50px);
  }
}
.l-ft__top__btn .l-ft__btn__wrap::after {
  position: absolute;
  content: "";
  background: url(/media/images/btn_circle_arrow_right_fill.svg) no-repeat center/contain;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  right: -60px;
}
@media screen and (max-width: 1271px) {
  .l-ft__top__btn .l-ft__btn__wrap::after {
    right: -10px;
  }
}
@media screen and (max-width: 767px) {
  .l-ft__top__btn .l-ft__btn__wrap::after {
    right: -50px;
  }
}
@media screen and (max-width: 480px) {
  .l-ft__top__btn .l-ft__btn__wrap::after {
    width: 32px;
    height: 32px;
  }
}
@media screen and (max-width: 480px) {
  .l-ft__top__btn .l-ft__btn__wrap {
    width: calc(100% - 44px);
    padding-right: 0;
    gap: 4px;
  }
  .l-ft__top__btn .l-ft__btn__wrap::after {
    width: 32px;
    height: 32px;
    right: -44px;
    top: calc(100% - 50px);
  }
}

.l_ft__top__ttl {
  padding-left: 38px;
  font-size: 24px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0.05em;
  color: #3b8401;
  position: relative;
}
@media only screen and (max-width: 1023px) {
  .l_ft__top__ttl {
    font-size: 22px;
  }
}
@media screen and (max-width: 1271px) {
  .l_ft__top__ttl {
    line-height: 1.41;
  }
}
.l_ft__top__ttl::before {
  position: absolute;
  top: -5px;
  left: 0;
  content: "";
  background-color: #3B8401;
  width: 30px;
  height: 30px;
}
@media screen and (max-width: 1271px) {
  .l_ft__top__ttl::before {
    top: -1px;
  }
}
.l_ft__top__ttl.--document::before {
  -webkit-mask: url(/media/images/icon_document.svg) no-repeat center/contain;
          mask: url(/media/images/icon_document.svg) no-repeat center/contain;
}
.l_ft__top__ttl.--contact::before {
  -webkit-mask: url(/media/images/icon_contact.svg) no-repeat center/contain;
          mask: url(/media/images/icon_contact.svg) no-repeat center/contain;
}
@media screen and (max-width: 480px) {
  .l_ft__top__ttl {
    padding-left: 28px;
    font-size: 18px;
    line-height: 28px;
  }
  .l_ft__top__ttl::before {
    width: 20px;
    height: 20px;
    top: 3px;
  }
}
.l_ft__top__ttl .u-ib {
  display: inline-block;
}

.l_ft__top__txt {
  font-size: 14px;
  font-weight: 700;
  color: #233F26;
  letter-spacing: 0.05em;
  margin-top: 10px;
  line-height: 1.6;
}
@media screen and (max-width: 480px) {
  .l_ft__top__txt {
    font-size: 13px;
    line-height: 18px;
  }
}

.l-ft__left {
  display: grid;
}
@media screen and (max-width: 480px) {
  .l-ft__left {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

@media screen and (max-width: 480px) {
  .lt-ft__logo__img {
    width: 140px;
    height: 39px;
  }
}

.l-ft__company {
  margin-top: 30px;
}
.l-ft__company__txt {
  font-size: 16px;
  font-weight: 700;
}
@media screen and (max-width: 480px) {
  .l-ft__company__txt {
    font-size: 14px;
  }
}

.l-ft__address {
  margin-top: 4px;
}
.l-ft__address__txt {
  font-size: 13px;
}
@media screen and (max-width: 480px) {
  .l-ft__address__txt {
    margin-top: 8px;
    font-size: 12px;
    letter-spacing: 0;
    line-height: 18px;
  }
}

.l-ft__privacy {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  margin-top: 30px;
  font-size: 13px;
}
@media screen and (min-width: 1024px) {
  .l-ft__privacy:hover {
    color: #8EC31F;
  }
}
@media screen and (max-width: 480px) {
  .l-ft__privacy {
    font-size: 12px;
    letter-spacing: 0;
  }
}

.l-ft-nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 440px;
  gap: 18%;
}
@media screen and (max-width: 1271px) {
  .l-ft-nav {
    gap: 10%;
  }
}
@media screen and (max-width: 767px) {
  .l-ft-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 100%;
    gap: 32px;
  }
}
.l-ft-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .l-ft-nav__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 20px;
  }
}
.l-ft-nav__list__biz {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}
@media screen and (max-width: 480px) {
  .l-ft-nav__list__biz {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.l-ft-nav__list__biz .l-ft-nav__li {
  width: 100%;
  pointer-events: none;
}
@media screen and (max-width: 480px) {
  .l-ft-nav__list, .l-ft-nav__list__biz {
    grid-template-columns: repeat(2, 1fr);
  }
}
.l-ft-nav__li {
  font-size: 16px;
  font-weight: 700;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media screen and (max-width: 767px) {
  .l-ft-nav__li {
    width: calc((100% - 20px) / 2);
  }
}
@media screen and (min-width: 1024px) {
  .l-ft-nav__li:hover {
    color: #8EC31F;
  }
}
.l-ft-nav__li__biz {
  position: relative;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media screen and (max-width: 767px) {
  .l-ft-nav__li__biz {
    max-width: 200px;
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .l-ft-nav__li__biz {
    max-width: 100%;
    width: calc((100% - 15px) / 2);
  }
}
@media screen and (min-width: 1024px) {
  .l-ft-nav__li__biz:hover {
    color: #8EC31F;
  }
}
@media screen and (max-width: 480px) {
  .l-ft-nav__li__biz {
    line-height: 1.3;
  }
}
.l-ft-nav__link {
  width: 100%;
  font-size: 16px;
  font-weight: 700;
  position: relative;
  display: inline-block;
}
.l-ft-nav__link__biz {
  display: grid;
  grid-template-columns: 1fr 14px;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  color: #62655E;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media only screen and (min-width: 1024px) {
  .l-ft-nav__link__biz:hover {
    color: #8EC31F;
  }
}
@media screen and (max-width: 480px) {
  .l-ft-nav__link__biz {
    font-size: 14px;
  }
}
.l-ft-nav__txt {
  font-size: 16px;
  font-weight: 700;
}

.--none {
  display: none;
}

.is-spmenu-open body {
  overflow: hidden;
}
.is-spmenu-open .l-sp-menu {
  opacity: 1;
  pointer-events: auto;
  overflow-y: scroll;
  overflow-x: hidden;
  height: 685px;
}
@media only screen and (max-width: 1023px) {
  .is-spmenu-open .l-sp-menu {
    width: 100%;
    height: 100%;
  }
}

.l-sp-menu {
  padding: 40px 22px;
  background: #F8F8F8;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  opacity: 0;
  pointer-events: none;
  position: fixed;
  width: 375px;
  max-width: 100%;
  top: 170px;
  z-index: 99999;
  background-color: #fff;
  -webkit-transition: 0.2s opacity;
  transition: 0.2s opacity;
  overflow-x: scroll;
}
@media only screen and (max-width: 1023px) {
  .l-sp-menu {
    top: 70px;
  }
}
.l-sp-menu__list {
  padding-left: 17px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 34px;
}
.l-sp-menu__item {
  padding-right: 16px;
  cursor: pointer;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  position: relative;
}
.l-sp-menu__item::before {
  position: absolute;
  content: "";
  -webkit-mask: url(/media/images/icon_circle.svg) no-repeat center/contain;
          mask: url(/media/images/icon_circle.svg) no-repeat center/contain;
  background-color: #FFE109;
  width: 6px;
  height: 6px;
  top: 6px;
}
.l-sp-menu__item.--has-child .l-sp-menu__link {
  position: relative;
}
.l-sp-menu__item.--has-child .l-sp-menu__link::before, .l-sp-menu__item.--has-child .l-sp-menu__link::after {
  width: 17px;
  height: 3px;
  background-color: #8EC31F;
  top: 50%;
  right: 0;
  position: absolute;
  content: "";
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 9999px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.l-sp-menu__item.--has-child .l-sp-menu__link::after {
  -webkit-transform: translateY(-50%) rotate(-90deg);
          transform: translateY(-50%) rotate(-90deg);
}
.l-sp-menu__item.--has-child.is-spmenu-child-open .l-sp-menu__link::after {
  -webkit-transform: translateY(-50%) rotate(0deg);
          transform: translateY(-50%) rotate(0deg);
}
.l-sp-menu__link {
  font-weight: 700;
  padding-left: 14PX;
  letter-spacing: 0.05em;
}
.l-sp-menu__child {
  display: none;
  border: 1px solid #D9E2DC;
  border-radius: 10px;
  padding: 10px 30px;
  margin-top: 20px;
}
.l-sp-menu__child__item {
  padding: 19px 0;
  border-top: solid 1px #D9E2DC;
  position: relative;
}
.l-sp-menu__child__item:first-child {
  border: none;
}
.l-sp-menu__child__item::before {
  position: absolute;
  content: "";
  -webkit-mask: url("/media/images/icon_arrow_right.svg") no-repeat center/contain;
          mask: url("/media/images/icon_arrow_right.svg") no-repeat center/contain;
  background-color: #233F26;
  width: 7px;
  height: 12px;
  top: calc((100% - 14px) / 2);
  right: 0;
}
@media screen and (min-width: 1024px) {
  .l-sp-menu__child__item::before:hover {
    background-color: #8EC31F;
  }
}
.l-sp-menu__child__link {
  position: relative;
  padding-right: 14px;
  letter-spacing: 0.05em;
  line-height: 20px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media screen and (min-width: 1024px) {
  .l-sp-menu__child__link:hover {
    color: #8EC31F;
  }
}

.l-sp-btn {
  padding-top: 34px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media screen and (min-width: 1024px) {
  .l-sp-btn:hover {
    opacity: 0.6;
  }
}
.l-sp-btn__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 24px 64px 21px 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
  border-radius: 10px;
  background: linear-gradient(257deg, #FFE109 0%, #8EC31F 100%);
  position: relative;
}
.l-sp-btn__item::before {
  position: absolute;
  content: "";
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  border-radius: 8px;
  background-color: #fff;
  top: 2px;
  left: 2px;
}
.l-sp-btn__item::after {
  position: absolute;
  content: "";
  background: url("/media/images/btn_circle_arrow_right_fill.svg") no-repeat center/contain;
  width: 32px;
  height: 32px;
  top: calc((100% - 32px) / 2);
  right: 22px;
}
.l-sp-btn .--ttl {
  padding-left: 28px;
  position: relative;
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
  letter-spacing: 0.05em;
}
.l-sp-btn .--ttl::after {
  position: absolute;
  content: "";
  background-color: #3B8401;
  width: 20px;
  height: 20px;
  top: calc((100% - 20px) / 2);
  left: 0;
}
.l-sp-btn .--txt {
  font-size: 13px;
  font-weight: 700;
  line-height: 18px;
  position: relative;
  letter-spacing: 0.05em;
}

.--document .--ttl::after {
  -webkit-mask: url(/media/images/icon_document.svg) no-repeat center/contain;
          mask: url(/media/images/icon_document.svg) no-repeat center/contain;
}

.--contact .--ttl::after {
  -webkit-mask: url(/media/images/icon_contact.svg) no-repeat center/contain;
          mask: url(/media/images/icon_contact.svg) no-repeat center/contain;
}

.l-hd {
  position: fixed;
  width: 100%;
  background-color: #fff;
  z-index: 1000;
}

.l-hd-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 84px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.l-hd__inr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 50px;
  height: 80px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 1023px) {
  .l-hd__inr {
    padding: 0 30px;
  }
}
@media screen and (max-width: 767px) {
  .l-hd__inr {
    padding: 0 0 0 30px;
  }
}
@media screen and (max-width: 480px) {
  .l-hd__inr {
    height: 70px;
  }
}

.l-hd-logo {
  margin: 0 20px;
}
@media screen and (max-width: 767px) {
  .l-hd-logo {
    margin: 0;
  }
}
@media screen and (max-width: 480px) {
  .l-hd-logo__img {
    width: 120px;
    height: 34px;
  }
}

.l-hd-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 34px;
     -moz-column-gap: 34px;
          column-gap: 34px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
@media screen and (max-width: 1271px) {
  .l-hd-nav__list {
    -webkit-column-gap: 25px;
       -moz-column-gap: 25px;
            column-gap: 25px;
  }
}
@media screen and (max-width: 1023px) {
  .l-hd-nav__list {
    display: none;
  }
}
@media screen and (max-width: 1023px) {
  .l-hd-nav__list {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }
}

.l-hd-nav__item {
  height: 100%;
  font-weight: 700;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.l-hd-nav__item.--has-mega-menu {
  position: relative;
}
@media screen and (min-width: 1024px) {
  .l-hd-nav__item:hover {
    color: #8EC31F;
  }
  .l-hd-nav__item:hover .l-hd-nav__txt::before,
  .l-hd-nav__item:hover .l-hd-nav__link::before {
    opacity: 1;
  }
  .l-hd-nav__item:hover .l-hd-nav__txt::after {
    background-color: #8EC31F;
  }
  .l-hd-nav__item:hover .l-hd-mega {
    opacity: 1;
    visibility: visible;
    height: auto;
  }
}
.l-hd-nav__item .l-hd-nav__txt {
  padding-right: 16px;
  position: relative;
}
.l-hd-nav__item .l-hd-nav__txt::after {
  position: absolute;
  content: "";
  -webkit-mask: url(/media/images/icon_arrow_down.svg) no-repeat center/contain;
          mask: url(/media/images/icon_arrow_down.svg) no-repeat center/contain;
  background-color: #3B8401;
  width: 12px;
  height: 12px;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.l-hd-nav__link,
.l-hd-nav__txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  position: relative;
}
@media screen and (max-width: 1271px) {
  .l-hd-nav__link,
  .l-hd-nav__txt {
    font-size: 15px;
  }
}
.l-hd-nav__link::before,
.l-hd-nav__txt::before {
  position: absolute;
  content: "";
  -webkit-mask: url(/media/images/icon_circle.svg) no-repeat center/contain;
          mask: url(/media/images/icon_circle.svg) no-repeat center/contain;
  background-color: #FFE109;
  width: 6px;
  height: 6px;
  bottom: 14px;
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.l-hd-nav__link .c-btn {
  height: 50px;
}

.l-hd-nav__txt {
  cursor: pointer;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.l-hd-mega {
  width: 300px;
  padding: 30px;
  position: absolute;
  content: "";
  height: 0;
  visibility: hidden;
  opacity: 0;
  border-radius: 10px;
  background-color: #fff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border: 1px solid #D9E2DC;
  position: absolute;
  bottom: -20px;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  left: -45px;
}
.l-hd-mega__ul {
  display: grid;
  row-gap: 40px;
}
.l-hd-mega__li {
  width: 240px;
  color: #233F26;
  position: relative;
}
.l-hd-mega__li::after {
  position: absolute;
  content: "";
  -webkit-mask: url(/media/images/icon_arrow_right.svg) no-repeat center/contain;
          mask: url(/media/images/icon_arrow_right.svg) no-repeat center/contain;
  background-color: #8EC31F;
  width: 14px;
  height: 14px;
  top: calc(50% + 1px);
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.l-hd-mega__li::before {
  content: "";
  width: 100%;
  height: 1px;
  display: inline-block;
  background-color: #D9E2DC;
  position: absolute;
  bottom: -20px;
}
.l-hd-mega__li:last-child::before {
  content: none;
}
@media screen and (min-width: 1024px) {
  .l-hd-mega__li:hover .l-hd-mega__link {
    color: #8EC31F;
  }
}
.l-hd-mega__link {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

@media screen and (min-width: 1024px) {
  .c-btn:hover .l-hd-nav__link {
    color: #fff;
  }
}
.l-hd-nav__btn {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 70px;
  height: 70px;
  cursor: pointer;
  position: relative;
  padding-top: 11px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media screen and (max-width: 1023px) {
  .l-hd-nav__btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 8px;
  }
}
.l-hd-nav__btn .--txt {
  font-size: 12px;
  line-height: 12px;
  font-family: "NotoSansCJKJP", sans-serif;
  letter-spacing: 0.05em;
  padding-top: 6px;
  color: #3B8401;
  font-weight: 500;
}

.l-hd-sp-menu-btn {
  position: relative;
  display: block;
  width: 26px;
  height: 1px;
  background-color: #3B8401;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.l-hd-sp-menu-btn::before, .l-hd-sp-menu-btn::after {
  position: absolute;
  content: "";
  display: block;
  width: 26px;
  height: 1px;
  background-color: #3B8401;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.l-hd-sp-menu-btn::before {
  top: -7px;
  left: 3px;
}
.l-hd-sp-menu-btn::after {
  top: 7px;
  left: -3px;
}
.l-hd-sp-menu-btn.is-active {
  background-color: #fff;
}
.l-hd-sp-menu-btn.is-active::before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 0;
  left: 0;
}
.l-hd-sp-menu-btn.is-active::after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 0;
  left: 0;
}

.l-bread {
  padding: 14px 0 12px 0;
}
@media screen and (max-width: 480px) {
  .l-bread {
    padding: 10px 0;
  }
  .l-bread .c-width {
    padding-left: 20px;
  }
}

.l-bread-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .l-bread-list {
    overflow-x: scroll;
    word-break: keep-all;
    white-space: nowrap;
  }
}

.l-bread__home {
  padding-left: 16px;
  position: relative;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  cursor: pointer;
}
.l-bread__home::before {
  position: absolute;
  content: "";
  -webkit-mask: url("/media/images/bread_icon_home.svg") no-repeat center/contain;
          mask: url("/media/images/bread_icon_home.svg") no-repeat center/contain;
  width: 16px;
  height: 16px;
  top: calc(50% - 8px);
  left: 0;
  background-color: #8EC31F;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media screen and (min-width: 1024px) {
  .l-bread__home:hover::before {
    opacity: 0.7;
  }
}
@media screen and (max-width: 480px) {
  .l-bread__home {
    padding-left: 15px;
  }
}

.l-bread__item {
  color: #62655E;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media screen and (min-width: 1024px) {
  .l-bread__item:hover {
    color: #8EC31F;
  }
}

.l-bread__txt {
  padding-left: 22px;
  font-size: 12px;
  position: relative;
  letter-spacing: 0.01em;
}
.l-bread__txt::before {
  position: absolute;
  content: "";
  -webkit-mask: url("/media/images/bread_icon.svg") no-repeat center/contain;
          mask: url("/media/images/bread_icon.svg") no-repeat center/contain;
  width: 6px;
  height: 10px;
  top: calc(50% - 6px);
  left: 4px;
  background-color: #8EC31F;
}
@media screen and (max-width: 480px) {
  .l-bread__txt {
    padding-left: 18px;
    letter-spacing: 0.05em;
  }
}

.l-bread__item:last-child {
  cursor: default;
  pointer-events: none;
  color: #233F26;
}
.l-bread__item:last-child .l-bread__txt {
  font-weight: 700;
}
@media screen and (min-width: 1024px) {
  .l-bread__item:last-child:hover {
    color: #233F26;
  }
}

/*-- utilityフォルダの中の_index.scss --*/
@media only screen and (min-width: 1272px) {
  .u-pc-hide {
    display: none;
  }
}

@media only screen and (min-width: 768px) {
  .u-tb-hide {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .u-sp-hide {
    display: none;
  }
}

.u-sp-space {
  display: none;
}
@media only screen and (max-width: 767px) {
  .u-sp-space {
    display: inline;
  }
}

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

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

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

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

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

.u-ib {
  display: inline-block;
}

.u-mt0 {
  margin-top: 0px;
}

.u-mt8 {
  margin-top: 8px;
}

.u-mt16 {
  margin-top: 16px;
}

.u-mt24 {
  margin-top: 24px;
}

.u-mt32 {
  margin-top: 32px;
}

.u-mt40 {
  margin-top: 40px;
}

.u-mt48 {
  margin-top: 48px;
}
@media only screen and (max-width: 767px) {
  .u-mt48 {
    margin-top: 24px;
  }
}

.u-mt56 {
  margin-top: 56px;
}

.u-mt64 {
  margin-top: 64px;
}

.u-mt72 {
  margin-top: 72px;
}

.u-mt80 {
  margin-top: 80px;
}

.u-mt88 {
  margin-top: 88px;
}

.u-mt96 {
  margin-top: 96px;
}

.u-mt104 {
  margin-top: 104px;
}

.u-mt112 {
  margin-top: 112px;
}

.u-mt120 {
  margin-top: 120px;
}

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

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

/*-- foundationフォルダの中の_index.scss --*/
body {
  color: #233F26;
  background: #fff;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  -webkit-text-size-adjust: none;
  font-weight: 500;
}

body,
h1,
h2,
h3,
h4,
h5,
table,
th,
td,
ul,
li,
ol,
dl,
dt,
dd,
form,
p {
  margin: 0px;
  padding: 0px;
  font-weight: 500;
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
  list-style-type: none;
  font-size: 16px;
  line-height: 1.3;
  text-underline-offset: 3px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
}

a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-touch-callout: none;
}
a img {
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
}

img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

input,
textArea,
select,
button {
  background: none;
  margin: 0px;
  outline: none;
  padding: 0px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-weight: 500;
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
  list-style-type: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

select {
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
}

button {
  cursor: pointer;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/*                link
======================================================= */
a {
  color: inherit;
  text-decoration: none;
}

.p-recruit {
  margin: 70px 240px 0 240px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
@media screen and (max-width: 1271px) {
  .p-recruit {
    margin: 35px auto 0;
  }
}
@media screen and (max-width: 480px) {
  .p-recruit {
    margin: 30px 0 0 0;
    gap: 35px;
  }
}
.p-recruit__img {
  margin-top: 52px;
}
@media screen and (max-width: 767px) {
  .p-recruit__img {
    margin-top: 30px;
  }
}
@media screen and (max-width: 480px) {
  .p-recruit__img {
    margin-top: 30px;
    width: 330px;
    height: 180px;
  }
}
.p-recruit__txt {
  font-size: 16px;
  line-height: 32px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 480px) {
  .p-recruit__txt {
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0.06em;
  }
}