html {
  font-size: 16px;
}

body {
  background: #fff;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5625rem;
}

body::before {
  background: rgba(0, 0, 0, 0.5);
  content: "";
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  transition: opacity 0.24s ease;
  will-change: opacity;
  z-index: 10;
}

body.is-active {
  position: relative;
}

body.is-active::before {
  opacity: 1;
  pointer-events: auto;
}

body.noscroll {
  overflow: hidden;
}

a {
  display: block;
  transition: 0.2s;
}

a:hover {
  opacity: 0.7;
  transition: 0.2s;
}

dt {
  font-weight: normal;
}

img {
  display: block;
  max-width: 100%;
  width: 100%;
}

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

/* Remove default padding */

ul,
ol {
  padding: 0;
}

/* Remove default margin */

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */

/* Set core body defaults */

body {
  min-height: 100dvh;
  text-rendering: optimizeSpeed;
}

/* Remove list styles on ul, ol elements with a class attribute */

ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */

a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */

img {
  display: block;
  max-width: 100%;
  width: 100%;
}

/* Inherit fonts for inputs and buttons */

input,
button,
textarea,
select {
  font: inherit;
}

/* フォームリセット */

input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

/*
 * footer
 * -------------------------------------------------------------
 */

.footer {
  border-top: 0.1875rem solid #00A939;
  position: sticky;
  top: 100%;
}

.footer__inner {
  margin-inline: auto;
  max-width: 106.25rem;
  padding-inline: 2.5rem;
}

.footer__main {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
  padding-block: 3.75rem 5rem;
}

.footer__info {
  max-width: 40rem;
}

.footer__lead {
  color: #00A939;
  font-size: 1.5625rem;
  font-weight: 700;
  line-height: 1;
}

.footer__logo {
  margin-top: 1.25rem;
  max-width: 40rem;
}

.footer__address {
  font-size: max(14px, 1.125rem);
  font-weight: 400;
  line-height: 1.7777777778;
  margin-top: 1.625rem;
}

.footer__address span {
  display: inline-block;
}

.footer__sns {
  display: flex;
  gap: 0.9375rem;
  margin-top: 1.875rem;
}

.footer__snsLink {
  width: 2.375rem;
}

.footer__nav {
  display: flex;
  flex: 1;
  justify-content: flex-end;
  max-width: 35.625rem;
  min-width: 450px;
}

.footer__navList {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.footer__navList:nth-of-type(1) {
  margin-right: 5.5625rem;
}

.footer__navList:nth-of-type(2) {
  margin-right: 3.75rem;
}

.footer__navLink {
  align-items: center;
  display: flex;
  font-size: max(14px, 1.125rem);
  font-weight: 700;
  gap: 0.625rem;
  line-height: 1;
}

.footer__navLink::before {
  background: url(./../images/common/arrow.webp) no-repeat center/100%;
  content: "";
  display: block;
  height: 1.125rem;
  width: 1rem;
}

.footer__navSubList {
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
  margin-top: 1.75rem;
  padding-left: 1.25rem;
}

.footer__navSubLink {
  align-items: center;
  color: #9C9C9C;
  display: flex;
  font-size: max(12px, 1rem);
  font-weight: 400;
  gap: 0.1em;
  line-height: 1;
}

.footer__navSubLink::before {
  content: "−";
  display: inline-block;
}

.footer__bottom {
  align-items: center;
  background: #000;
  display: flex;
  height: 5rem;
  justify-content: space-between;
  position: relative;
}

.footer__bottom:before,
.footer__bottom:after {
  background: #000;
  bottom: 0;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  z-index: -1;
}

.footer__bottom:before {
  left: calc(50% - 50vw);
  right: 0;
}

.footer__bottom:after {
  left: 0;
  right: calc(50% - 50vw);
}

.footer__copyright {
  color: #FFFFFF;
  font-size: max(12px, 1rem);
  font-weight: 400;
}

.footer__links {
  display: flex;
  gap: 2.5rem;
}

.footer__link {
  color: #FFFFFF;
  font-size: max(14px, 1.125rem);
  font-weight: 400;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

/*
 * header
 * -------------------------------------------------------------
 */

.header {
  background: #fff;
  height: 6.875rem;
  inset: 0;
  position: fixed;
  width: 100%;
  z-index: 10;
}

.header__inner {
  align-items: center;
  display: flex;
  gap: 3.75rem;
  height: 100%;
  justify-content: space-between;
  padding-left: 1.875rem;
}

.header__logo {
  width: min(28rem, 23.33vw);
}

/*
 * l-inner
 * -------------------------------------------------------------
 */

.l-inner {
  margin-inline: auto;
  max-width: 99.0625rem;
  padding-inline: 2.5rem;
  width: 100%;
}

/*
 * l-main
 * -------------------------------------------------------------
 */

.l-main {
  overflow: hidden;
  padding-top: 5.0rem;
}

/*
 * l-page
 * -------------------------------------------------------------
 */

.l-page {
  padding-block: 6.25rem 11.25rem;
}

.l-page .l-img {
  aspect-ratio: 640/400;
  border-radius: 1.875rem;
  overflow: hidden;
}

.l-page__Ttl {
  font-size: 3.125rem;
  font-weight: 700;
  line-height: 1.36;
}

.l-page__Lead {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.55;
}

.l-page__text {
  font-size: 1.5625rem;
  line-height: 1.92;
}

.l-page dl {
  font-size: 90%;
  margin-top: 3rem;
  border-top: 1px solid #C3C6CD;
  line-height: 1.5;
}

.l-page dl dt {
  clear: left;
  float: left;
  font-weight: bold;
  padding: 1.5em 0 1.5em 1.0em;
}

.l-page dl dd {
  padding: 1.5em 1.0em 1.5em 7em;
  border-bottom: 1px solid #C3C6CD;
}

.l-page__Ttl_sty1 {
  border-left: 0.5rem solid #E6B11F;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  padding-block: 0.0625rem 0.25rem;
  padding-left: 1.25rem;
}

.l-page__Ttl_sty2 {
  background-color: #000;
  color: #fff;
  display: flex;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  padding: 1.2rem 1.5rem;
}

.l-page__Ttl_sty2::before {
  background: #E6B11F;
  content: "";
  display: inline-block;
  height: 2.8rem;
  margin-right: 1.5rem;
  width: 0.4rem;
}

.l-page__box {
  background: #fff;
  border: 0.1875rem solid #00A939;
  border-radius: 1.25rem;
  padding: 2.13rem 1.75rem 3.25rem;
}

/* lityポップアップ用：通常時は非表示 */
.lity-hide {
  display: none;
}

/* lity-content内では強制表示 */
.lity-content .lity-hide {
  display: block !important;
}

/* lityのコンテンツエリアをスクロール可能にする */
.lity-content {
    max-height: 90vh;
    overflow-y: auto;
}

.p-contact-popup {
    padding: 40px 70px;
    max-width: 820px;
    background-color: #fff;
}

.p-contact-popup__title {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 30px;
}

.p-contact-popup__table {
    width: 100%;
    border-collapse: collapse;
}

.p-contact-popup__table tr {
    border-top: 1px solid #ccc;
}

.p-contact-popup__table tr:last-child {
    border-bottom: 1px solid #ccc;
}

.p-contact-popup__table th {
    padding: 14px 10px;
    white-space: nowrap;
    font-weight: bold;
    vertical-align: top;
    text-align: left;
}

.p-contact-popup__table td {
    padding: 10px 10px 14px;
    vertical-align: top;
    line-height: 1.8;
}

.p-contact-popup__sub {
    display: inline-block;
    font-weight: bold;
    margin-right: 8px;
}

/* レスポンシブ */
@media (max-width: 767px) {
    .p-contact-popup__title {
      font-size: 1.2rem;
    }

    .p-contact-popup {
        padding: 30px 20px;
    }

    .p-contact-popup__table th,
    .p-contact-popup__table td {
        display: block;
        padding: 8px 10px;
    }

    .p-contact-popup__table th {
        padding-bottom: 0;
    }

    .p-contact-popup__table tr:last-child {
        border-bottom: none;
    }
}

/*
 * l-pageSectionWrap
 * -------------------------------------------------------------
 */

.l-pageSectionWrap {
  padding-block: 6.25rem 11.25rem;
}

/*
 * burger
 * -------------------------------------------------------------
 */

.burger {
  background: #00A939;
  display: none;
  height: 3.625rem;
  position: relative;
  width: 3.625rem;
}

.burger span {
  background: #fff;
  display: block;
  height: 2px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  transition: all 0.2s;
  width: 1.8125rem;
}

.burger span:nth-child(1) {
  top: 1.1875rem;
}

.burger span:nth-child(2) {
  top: 50%;
  transform: translate(-50%, -50%);
}

.burger span:nth-child(3) {
  bottom: 1.1875rem;
}

.burger span.is-active:nth-child(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-40deg);
}

.burger span.is-active:nth-child(2) {
  opacity: 0;
}

.burger span.is-active:nth-child(3) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(40deg);
}

/*
 * c-breadcrumb
 * -------------------------------------------------------------
 */

.c-breadcrumb {
  padding-block: 1.3125rem;
}

.c-breadcrumb__inner {
  max-width: 112.5rem;
}

.c-breadcrumb__list {
  display: flex;
  font-size: max(14px, 1.125rem);
  gap: 1.25rem;
}

.c-breadcrumb__item {
  align-items: center;
  display: flex;
  gap: 1.25rem;
}

.c-breadcrumb__item:not(:last-child)::after {
  background: url(./../images/common/breadcrumb_arrow.webp) no-repeat center/100%;
  content: "";
  display: inline-block;
  height: 0.9375rem;
  width: 0.75rem;
}

.c-breadcrumb__list a {
  color: #9C9C9C;
}

.c-breadcrumb__list span {
  color: #00A939;
}

/*
 * c-btn
 * -------------------------------------------------------------
 */

/* ---------------------------
	デフォルト　黒　350px
-----------------------------*/

.c-btn,
.c-btn_back {
  align-items: center;
  background: #000;
  border: 0.1875rem solid #000;
  border-radius: 3.125rem;
  color: #fff;
  display: flex;
  font-size: 1.875rem;
  font-weight: 700;
  gap: 1.875rem;
  height: 6.25rem;
  max-width: 21.875rem;
  padding: 1.25rem;
  position: relative;
  width: 100%;
}

.c-btn::before,
.c-btn_back::before {
  background: #fff;
  border-radius: 50%;
  content: "";
  display: block;
  height: 3.75rem;
  width: 3.75rem;
}

.c-btn::after {
  background: url(./../images/common/arrow_blk.webp) no-repeat center/100%;
  content: "";
  display: block;
  height: 1.25rem;
  left: 2.5rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1.25rem;
}

.c-btn_back::after {
  background: url(./../images/common/arrow_blk_back.webp) no-repeat center/100%;
  content: "";
  display: block;
  height: 1.25rem;
  left: 2.5rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1.25rem;
}

/* ---------------------------
	Large 450px
-----------------------------*/

.c-btn--lg {
  max-width: 28.825rem;
}

/* ---------------------------
	アイボリー
-----------------------------*/

.c-btn--ivy {
  background: #F5F2E9;
  color: #000;
  font-size: 1.375rem;
  gap: 1.25rem;
  height: 4.375rem;
  max-width: 15rem;
  padding: 0.9375rem 1rem;
}

.c-btn--ivy--lg {
  background: #F5F2E9;
  color: #000;
  font-size: 1.375rem;
  gap: 1.25rem;
  height: 4.375rem;
  max-width: 25rem;
  padding: 0.9375rem 1rem;
}

.c-btn--ivy::before,
.c-btn--ivy--lg::before {
  background: #000;
  height: 2.5rem;
  width: 2.5rem;
}

.c-btn--ivy::after,
.c-btn--ivy--lg::after {
  filter: brightness(0) invert(1);
  height: 0.9375rem;
  left: 1.8125rem;
  width: 0.9375rem;
}

/* ---------------------------
  グリーン
-----------------------------*/

.c-btn--grn {
  align-items: center;
  color: #000;
  display: flex;
  font-size: 1.875rem;
  font-weight: 700;
  gap: 1.2rem;
  height: 6.25rem;
  padding: 1.25rem;
  position: relative;
  width: 100%;
}

.c-btn--grn::before {
  background: #00A939;
  border-radius: 50%;
  content: "";
  display: block;
  height: 3.75rem;
  width: 3.75rem;
}

.c-btn--grn::after {
  background: url(./../images/common/arrow_blk.webp) no-repeat center/100%;
  content: "";
  filter: brightness(0) invert(1);
  display: block;
  height: 1.25rem;
  left: 2.5rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1.25rem;
}

/*
 * c-secTtl
 * -------------------------------------------------------------
 */

.c-secTtl {
  font-size: 3.125rem;
  font-weight: 700;
}

/*
 * nav
 * -------------------------------------------------------------
 */

.nav {
  align-items: center;
  display: flex;
  flex: 1;
  gap: 2.5rem;
  height: 100%;
  justify-content: flex-end;
  min-width: 846px;
}

.nav__list {
  align-items: center;
  display: flex;
  gap: 2.5rem;
}

.nav__link {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1;
  position: relative;
}

.nav__link::after {
  background: #e6b11f;
  bottom: -0.625rem;
  content: "";
  display: block;
  height: 0.1875rem;
  position: absolute;
  width: 100%;
}

.nav__sns {
  display: flex;
  gap: 0.75rem;
  margin-left: 0.625rem;
}

.nav__snsLink {
  width: 2.0625rem;
}

.nav__contact {
  align-items: center;
  background: #00A939;
  color: #fff;
  display: flex;
  font-size: 1.3rem;
  font-weight: 700;
  gap: 1.25rem;
  height: 100%;
  height: 100%;
  justify-content: center;
  max-width: 15rem;
  padding-inline: 1.625rem;
}

.nav__contact::before {
  background: url(./../images/common/icon_mail.webp) no-repeat center/100%;
  content: "";
  display: block;
  height: 1.625rem;
  width: 2.25rem;
}

.nav__snsLink img {
  -o-object-fit: cover;
  height: 100%;
  object-fit: cover;
}

/*-- Form ----------------------------------------*/
.form-group01,
.form-group02,
.form-group03,
.form-group06 {
    margin-bottom: 40px;
    display: flex;
    flex-wrap: wrap;
}

.contact__wrapper {
    padding: 80px 0 0;
}

.contact__wrapper label {
    width: 30%;
    font-weight: bold;
    font-size: 1.7rem;
}

.form-group01 div,
.form-group02 div {
    display: inline-flex;
    flex-direction: column;
    width: 34%;
    margin-right: 2%;
    line-height: 1.5;
    font-size: 1.3rem;
}

.form-group01 div:last-of-type,
.form-group02 div:last-of-type {
    margin-right: 0;
}

.form-group02 div,
.form-group03 .wpcf7-form-control-wrap {
    width: 70%;
}

.form-group03 input[type=radio] {
  display: block;
  width: 20px;
  height: 20px;
}

.form-group03 div {
  font-size: 1.3rem;
}

.form-group03 .wpcf7-list-item label {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 10px;
  font-weight: normal;
  line-height: 1.75;
}

.form-group03 .wpcf7-list-item {
  margin: 0;
}

.wpcf7-form-control {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.form-group01 input,
.form-group02 input,
.form-group02 textarea {
    border-radius: 7px;
    border: 1px solid #9C9C9C;
    background: #F5F5F5;
    padding: 13px;
    font-size: 1.6rem;
    width: 100%;
    box-sizing: border-box;
}

.submit {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
}

.submit div {
    position: relative;
    border-radius: 50px;
    margin-left: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, letter-spacing 0.3s ease;
}

.submit div span {
    position: absolute;
    height: 3.75rem;
    width: 3.75rem;
    top: 50%;
    left: 1.25rem;
    transform: translateY(-50%);
    pointer-events: none;
}

.submit input {
    min-width: 28rem;
    align-items: center;
    background: #000;
    border: 0.1875rem solid #000;
    border-radius: 3.125rem;
    color: #fff;
    display: flex;
    font-size: 1.875rem;
    font-weight: 700;
    gap: 1.875rem;
    height: 6.25rem;
    padding: 1.75rem 1.25rem 1.5rem 5rem;
    position: relative;
    width: 100%;
}

.submit input:hover {
  opacity: 0.7;
}

.submit.laststep input {
    min-width: 17rem;
}

.wpcf7-spinner {
    display: none !important;
}

.contact__wrapper.confirm .gray {
    color: #ccc;
}

.gray {
    color: #9C9C9C;
}

/*
 * spNav
 * -------------------------------------------------------------
 */

.spNav {
  -webkit-overflow-scrolling: touch;
  background: #00A939;
  bottom: 0;
  display: none;
  gap: 1.5625rem;
  height: -moz-fit-content;
  height: fit-content;
  justify-content: center;
  left: 0;
  min-width: auto;
  opacity: 0;
  overflow-y: auto;
  padding: 5.875rem 4.8125rem;
  position: fixed;
  right: 0;
  top: 6.875rem;
  transition: all 0.6s;
  visibility: hidden;
  width: 100%;
  z-index: 1000;
}

.spNav.is-active {
  opacity: 1;
  visibility: visible;
}

.spNav__list {
  display: flex;
  flex-direction: column;
  gap: 3.5625rem;
}

.spNav__link {
  align-items: center;
  color: #fff;
  display: flex;
  font-size: 1.875rem;
  font-weight: 700;
  gap: 2.625rem;
  line-height: 1;
  position: relative;
}

.spNav__link::before {
  background: url(./../images/common/arrow_yel.webp) no-repeat center/100%;
  content: "";
  display: block;
  height: 2.125rem;
  width: 1.8125rem;
}

.spNav__subList {
  display: flex;
  flex-direction: column;
  gap: 2.375rem;
  padding-left: 2.375rem;
}

.spNav__subLink {
  align-items: center;
  color: #fff;
  display: flex;
  font-size: 1.625rem;
  font-weight: 400;
  gap: 0.4375rem;
}

.spNav__subLink::before {
  content: "−";
  display: inline-block;
}

/*
 * fv
 * -------------------------------------------------------------
 */

.fv {
  height: 56.25rem;
  position: relative;
}

.fv__inner {
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 2;
}

.fv__ttl {
  color: #FFFFFF;
  font-size: 5rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-shadow: 5px 6px 10px rgba(0, 0, 0, 0.8);
}

.fv__swiperItem img {
  -o-object-fit: cover;
  height: 56.25rem;
  object-fit: cover;
}

/*
 * message
 * -------------------------------------------------------------
 */

.msg-img {
  aspect-ratio: 420/550;
  border-radius: 1.875rem;
  overflow: hidden;
}

/*
 * history
 * -------------------------------------------------------------
 */

.history__body {
  align-items: start;
  display: flex;
  gap: 3.4375rem;
  justify-content: space-between;
}

.history__timeline {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 2.25rem;
  min-width: 0;
}

.history__periodTtl {
  align-items: baseline;
  color: #E6B11F;
  display: flex;
  font-size: 5rem;
  font-weight: 700;
  gap: 0.625rem;
  line-height: 1;
}

.history__periodTtl small {
  display: inline-block;
  font-size: 2.5rem;
}

.history__periodTtl span {
  font-size: 2.5rem;
}

.history__list {
  margin-top: 1.875rem;
  overflow: hidden;
  padding-left: 1.25rem;
  position: relative;
}

.history__item {
  align-items: flex-start;
  display: flex;
  position: relative;
}

.history__item:not(:last-child) {
  padding-bottom: 1.25rem;
}

.history__item:not(:last-child)::before {
  background-color: #00A939;
  content: "";
  height: 100%;
  left: 0.5rem;
  position: absolute;
  top: 1.25rem;
  width: 0.25rem;
  z-index: -1;
}

.history__year {
  align-items: center;
  display: flex;
  font-size: max(14px, 1.25rem);
  font-weight: 700;
  gap: 0.625rem;
  line-height: 1.4;
  line-height: 1.4;
  width: 6.875rem;
}

.history__year::before {
  background-color: #fff;
  border: 0.1875rem solid #00A939;
  border-radius: 50%;
  content: "";
  height: 1.25rem;
  width: 1.25rem;
}

.history__desc {
  flex: 1;
  font-size: max(14px, 1.25rem);
  line-height: 1.4;
}

.history__gallery {
  display: flex;
  flex-direction: column;
  gap: 3.125rem;
  max-width: 33.75rem;
}

.history__figure {
  margin: 0;
}

.history__img {
  aspect-ratio: 540/360;
  border-radius: 1.875rem;
  overflow: hidden;
}

.history__img img {
  -o-object-fit: cover;
  height: 100%;
  object-fit: cover;
}

.history__caption {
  font-size: 1.5625rem;
  line-height: 1.4;
  margin-top: 0.625rem;
}

/*
 * newsList
 * -------------------------------------------------------------
 */

.newsList__item {
  border-top: 1px solid #C3C6CD;
}

.newsList__link {
  align-items: center;
  display: flex;
  gap: 1.875rem;
  padding: 1.25rem;
}

.newsList__item:last-child {
  border-bottom: 1px solid #C3C6CD;
}

.newsList__img {
  aspect-ratio: 200/140;
  border: 1px solid #C3C6CD;
  max-width: 12.5rem;
}

.newsList__img img {
  -o-object-fit: cover;
  height: 100%;
  object-fit: cover;
}

.newsList__meta {
  flex: 1;
}

.newsList__date {
  color: #00A939;
  font-size: 1.375rem;
  font-weight: 400;
  line-height: 1;
}

.newsList__ttl {
  font-size: 1.5625rem;
  font-weight: 700;
  line-height: 1.28;
  margin-top: 0.9375rem;
}

.newsList__btn {
  background: #00A939;
  border-radius: 50%;
  display: grid;
  height: 3.125rem;
  place-content: center;
  width: 3.125rem;
}

.newsList__btn::before {
  background: url(./../images/common/arrow.webp) no-repeat center/100%;
  content: "";
  display: block;
  filter: brightness(0) invert(1);
  height: 1.1875rem;
  width: 1.1875rem;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
    margin: 40px 0;
}
.nav-links .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #F5F2E9;
    color: #C2BBAD;
    border: 1px solid #DEDACF;
    text-decoration: none;
    font-size: 16px;
}
/* 現在のページ */
.nav-links .page-numbers.current {
    background-color: #00A939;
    border: 0;
    color: #fff;
}
/* 次へボタン */
.nav-links .next.page-numbers {
    font-size: 0;
}
.nav-links .next.page-numbers::after {
    content: '→';
    font-size: 16px;
}
/* 前へボタン */
.nav-links .prev.page-numbers {
    font-size: 0;
}
.nav-links .prev.page-numbers::after {
    content: '←';
    font-size: 16px;
}
/* ホバー */
.nav-links .page-numbers:not(.current):hover {
    opacity: 0.7;
}

/*
 * newsPage
 * -------------------------------------------------------------
 */

.newsPage__ttl {
  border-bottom: 0.1875rem solid #00A939;
  flex: 1;
  font-size: 3.125rem;
  font-weight: 700;
  line-height: 1.36;
  padding-bottom: 1.56rem;
}

.newsPage__date {
  color: #00A939;
  font-size: 90%;
  text-align: right;
  margin-top: 0.7rem;
}

.newsPage__cts {
  padding-block: 2rem 3rem;
}

.newsPage__cts h2 {
  border-left: 0.5rem solid #E6B11F;
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1.3;
  padding-block: 0.0625rem 0.55rem;
  padding-left: 1.5rem;
  margin: 5rem 0 2rem; 
}

.newsPage__cts h3 {
  color: #00A939;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 4rem 0 1.5rem;
}

.newsPage__cts p {
  font-size: 1.45rem;
  line-height: 1.7;
  margin-top: 1.5rem;
}

.newsPage__cts p a {
  color: #00A939;
  text-decoration: underline;
  display: inline;
}

.newsPage__cts img {
  margin: 2.5rem 0 1rem;
  width: auto;
}

.newsPage__cts ul,
.newsPage__cts ol {
  margin: 2.5rem 0 1rem;
  padding-left: 2.5rem;
  line-height: 1.5;
}

.newsPage__cts ul li,
.newsPage__cts ol li {
  margin-bottom: 1.25rem;
}

.newsPage__cts ul li {
  list-style-type: disc;
}

.newsPage__cts ol li {
  list-style-type: decimal;
}

.alignleft {
  float: none !important;
}

.alignright {
  float: none !important;
  margin: 2.5rem 0 1rem auto !important;
}

/*
 * pageTitle
 * -------------------------------------------------------------
 */

.pageTitle {
  background: #e3efe7;
  height: 15.625rem;
}

.pageTitle__inner {
  align-items: center;
  display: flex;
  height: 100%;
  max-width: 112.5rem;
}

.pageTitle__group {
  padding: 2.4375rem 6.625rem;
  position: relative;
  width: 100%;
}

.pageTitle__ja {
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1;
}

.pageTitle__eng {
  color: rgba(0, 169, 57, 0.1);
  font-size: 9.375rem;
  font-weight: 700;
  left: 0;
  line-height: 1;
  position: absolute;
  text-transform: capitalize;
  top: 50%;
  top: 50%;
  transform: translateY(-50%);
}

/*
 * sustain
 * -------------------------------------------------------------
 */

.sustain__head {
  padding-bottom: 9.375rem;
  text-align: center;
}

.sustain__headTtl {
  font-size: 3.125rem;
  font-weight: 700;
  line-height: 1.36;
  text-align: center;
}

.sustain__headLead {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4375;
  margin-top: 5rem;
}

.sustain__headText {
  font-size: 1.5625rem;
  line-height: 1.92;
  margin-top: 1.25rem;
}

.sustain__body {
  display: flex;
  flex-direction: column;
  gap: 6.25rem;
}

.sustain__itemHead {
  align-items: center;
  display: flex;
  gap: 3.4375rem;
  justify-content: space-between;
}

.sustain__itemTtl {
  border-bottom: 0.1875rem solid #00A939;
  flex: 1;
  font-size: 3.125rem;
  font-weight: 700;
  line-height: 1.36;
  padding-bottom: 1.5625rem;
}

.sustain__itemSdgs {
  display: flex;
  gap: 1.25rem;
  justify-content: flex-end;
}

.sustain__itemSdgs img {
  -o-object-fit: cover;
  aspect-ratio: 1/1;
  flex-shrink: 0;
  height: 100%;
  max-width: 7.5rem;
  object-fit: cover;
  width: auto;
}

.sustain__itemBody {
  align-items: flex-start;
  display: flex;
  gap: 4.1875rem;
  padding-top: 2.5rem;
}

.sustain__itemBody--col {
  flex-direction: column;
  gap: 2.5rem;
}

.sustain__figure {
  max-width: 41.875rem;
}

.sustain__img {
  aspect-ratio: 640/420;
  border-radius: 1.875rem;
  overflow: hidden;
}

.sustain__img--sm {
  aspect-ratio: 480/315;
  border-radius: 1.25rem;
}

.sustain__caption {
  color: #9C9C9C;
  font-size: 1.125rem;
  line-height: 1.56;
  margin-top: 0.625rem;
}

.sustain__desc {
  flex: 1;
}

.sustain__gallery {
  grid-gap: 1.875rem;
  display: grid;
  gap: 1.875rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sustain__text {
  font-size: 1.5625rem;
  line-height: 1.92;
}

.sustain__sdgs {
  background: #fff;
  border: 0.1875rem solid #00A939;
  border-radius: 1.25rem;
  margin-top: 9.375rem;
  padding: 5.125rem 3.75rem 6.25rem;
}

.sustain__sdgsTtl {
  font-size: 2.8125rem;
  font-weight: 700;
  line-height: 1.51;
  text-align: center;
}

.sustain__sdgsText {
  font-size: 1.5625rem;
  line-height: 1.92;
  margin-top: 2.5rem;
}

.sustain__sdgsImg {
  margin: 5rem auto 0;
  max-width: 71.25rem;
}

/*
 * topAbout
 * -------------------------------------------------------------
 */

.topAbout {
  padding-block: 6.25rem 7.5rem;
}

.topAbout__head {
  text-align: center;
}

.topAbout__text {
  font-size: 1.5625rem;
  font-weight: 700;
  line-height: 1.84;
  margin-top: 3.125rem;
}

.topAbout__cards {
  grid-gap: 1.5625rem;
  display: grid;
  gap: 1.5625rem;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 3.75rem;
}

.topAbout__card {
  align-items: center;
  background: #E3EFE7;
  border-radius: 1.875rem;
  display: flex;
  flex-direction: column;
  padding: 1.875rem 1.25rem 2.8125rem;
}

.topAbout__cardImg {
  max-width: 11.25rem;
}

.topAbout__cardTtl {
  background: #fffae3;
  border-radius: 1.25rem;
  font-size: 1.3125rem;
  font-size: clamp(12px, 1.2vw, 1.3125rem);
  margin-top: 1.25rem;
  padding: 1.125rem 0;
  text-align: center;
  width: 100%;
}

.topAbout__cardData {
  align-items: baseline;
  color: #00A939;
  display: flex;
  font-size: 3.125rem;
  gap: 0.375rem;
  justify-content: center;
  line-height: 1.2;
  margin-top: 1.5625rem;
}

.topAbout__cardData span {
  color: #000;
  font-size: 1.5625rem;
}

/*
 * topBody
 * -------------------------------------------------------------
 */

.topBody {
  font-weight: 700;
}

/*
 * topNews
 * -------------------------------------------------------------
 */

.topNews {
  padding-block: 5rem 7.5rem;
}

.topNews__head {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.topNews__list {
  margin-top: 2.5rem;
}

.topNews__btn {
  flex: 1;
  max-width: 15rem;
}

/*
 * topPromise
 * -------------------------------------------------------------
 */

.topPromise {
  background: url(./../images/top/promise_bg.webp) no-repeat center/cover;
  padding-block: 5.625rem 8.125rem;
}

.topPromise__secTtl {
  text-align: center;
}

.topPromise__secTtl .smTtl {
  display: block;
  font-size: 2.8125rem;
  line-height: 1.51;
}

.topPromise__secTtl .lgTtl {
  display: block;
  font-size: 4.375rem;
  letter-spacing: 0.05em;
  line-height: 1;
  position: relative;
  top: -0.625rem;
}

.topPromise__secTtl .lgTtl strong {
  color: #E6B11F;
  display: inline-block;
  font-size: 6.875rem;
  letter-spacing: -0.05em;
  line-height: 1;
  margin-right: 0.625rem;
  position: relative;
  top: 0.625rem;
}

.topPromise__list {
  display: flex;
  gap: 3.125rem;
  margin-top: 3.125rem;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.topPromise__list::before {
  background: #00A939;
  content: "";
  display: block;
  height: 0.375rem;
  position: absolute;
  top: 2.5rem;
  width: 100%;
}

.topPromise__loopTrack {
  animation: loop 50s linear infinite;
  display: flex;
  flex: 0 0 auto;
  gap: 3.125rem;
  white-space: nowrap;
  width: -moz-max-content;
  width: max-content;
  will-change: transform;
}

.topPromise__item {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 1.25rem;
  padding-bottom: 0.625rem;
}

.topPromise__itemNum {
  background: #00A939;
  border-radius: 50%;
  color: #FFFFFF;
  display: grid;
  font-size: 2.25rem;
  height: 5rem;
  line-height: 1;
  place-content: center;
  width: 5rem;
}

.topPromise__itemCard {
  background: #f5f2e9;
  border: 0.1875rem solid #000;
  border-radius: 2.5rem;
  display: flex;
  flex-direction: column;
  max-width: 25rem;
  padding: 2.5rem 2.5rem 2.1875rem;
  width: 25rem;
}

.topPromise__itemImg {
  aspect-ratio: 320/200;
  border-radius: 1.25rem;
  overflow: hidden;
}

.topPromise__itemImg img {
  -o-object-fit: cover;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.topPromise__itemTtl {
  align-items: center;
  display: flex;
  font-size: 1.5625rem;
  justify-content: center;
  line-height: 1.4;
  margin-top: 1.25rem;
  min-height: 4.2em;
  text-align: center;
}

.topPromise__btn {
  display: flex;
  justify-content: center;
  margin: 4.375rem auto 0;
}

/*
 * topRecruit
 * -------------------------------------------------------------
 */

.topRecruit {
  background: url(./../images/top/recruit_obj_top.webp) no-repeat top/100% 0.625rem, url(./../images/top/recruit_obj_bottom.webp) no-repeat bottom/100% 0.625rem #F5F2E9;
  padding-block: 5rem;
}

.topRecruit__inner {
  align-items: center;
  display: flex;
  max-width: 102.875rem;
}

.topRecruit__desc {
  flex: 1;
}

.topRecruit__secTtl {
  color: #E6B11F;
  font-size: 2.8125rem;
  line-height: 1.51;
  text-transform: capitalize;
}

.topRecruit__lead {
  font-size: 4.5rem;
  font-size: clamp(2.5rem, 4.3vw, 4.5rem);
  line-height: 1;
  margin-right: calc(50% - 50vw);
  margin-top: 1.25rem;
}

.topRecruit__lead .color-pk {
  color: #DB6B8E;
}

.topRecruit__lead .color-purp {
  color: #7283BF;
}

.topRecruit__text {
  font-size: 2rem;
  line-height: 1.75;
  margin-top: 3.125rem;
}

.topRecruit__btn {
  margin-top: 3.375rem;
}

.topRecruit__imgs {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  max-width: 39.375rem;
}

.topRecruit__img {
  aspect-ratio: 480/300;
  border-radius: 1.25rem;
  max-width: 30rem;
  overflow: hidden;
}

.topRecruit__img img {
  -o-object-fit: cover;
  height: 100%;
  object-fit: cover;
}

.topRecruit__img.--img1 {
  margin-left: 9.375rem;
}

/*
 * topSns
 * -------------------------------------------------------------
 */

.topSns {
  display: flex;
  flex-direction: column;
  gap: 7.5rem;
  padding-block: 6.25rem 9.375rem;
}

.topSns__head {
  text-align: center;
}

.topSns__secTtl {
  color: #00A939;
  font-size: 2.8125rem;
  line-height: 1.51;
  text-transform: capitalize;
}

.topSns__lead {
  font-size: 2rem;
  line-height: 1.75;
  margin-top: 0.625rem;
}

.topSns__yt {
  overflow: hidden;
}

.topSns__btn {
  align-items: center;
  background: #F5F2E9;
  border: 0.1875rem solid #000;
  border-radius: 2.1875rem;
  display: flex;
  font-size: 1.375rem;
  gap: 0.9375rem;
  height: 4.375rem;
  line-height: 1;
  margin: 2.5rem auto 0;
  max-width: 18.75rem;
  padding: 0.9375rem 1.75rem;
}

.topSns__btn::before {
  content: "";
  display: block;
  height: 2.4375rem;
  margin-top: 0.125rem;
  width: 2.375rem;
}

.topSns__btn.--yt {
  margin-top: 0;
}

.topSns__btn.--yt::before {
  background: url(./../images/common/icon_sns_yt.webp) no-repeat center/100%;
}

.topSns__btn.--ig::before {
  background: url(./../images/common/icon_sns_ig.webp) no-repeat center/100%;
}

.topSns__igList {
  margin: 2.5rem auto 0;
  max-width: 78.75rem;
}

.topSns__igLink {
  aspect-ratio: 1/1;
}

.topSns__igLink img {
  -o-object-fit: cover;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

/*
 * workFlow
 * -------------------------------------------------------------
 */

.workFlow__head {
  text-align: center;
}

.workFlow__headTtl {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.7;
}

.workFlow__body {
  margin-top: 9.375rem;
}

.workFlow__flow {
  display: flex;
  flex-direction: column;
  gap: 3.75rem;
  position: relative;
}

.workFlow__flow::before {
  background-color: #d9a20a;
  bottom: 23.5rem;
  content: "";
  left: 14.0625rem;
  position: absolute;
  top: 2.5rem;
  width: 0.3125rem;
}

.workFlow__step {
  align-items: start;
  display: grid;
  grid-template-columns: 10rem 8.4375rem minmax(0, 1fr) 22.5rem;
  position: relative;
}

.workFlow__thumb {
  grid-column: 1;
  margin-top: 0.75rem;
  position: relative;
  width: 10rem;
}

.workFlow__thumb::after {
  background-color: #E6B11F;
  content: "";
  height: 2px;
  position: absolute;
  right: -4.0625rem;
  top: 7.5625rem;
  width: 4.0625rem;
}

.workFlow__thumb--right {
  margin-left: 4.125rem;
}

.workFlow__thumb--right::after {
  left: -3.8125rem;
  right: auto;
}

.workFlow__thumb--empty::after {
  display: none;
}

.workFlow__thumbLabel {
  background: #E3EFE7;
  border-radius: 62.4375rem;
  display: grid;
  font-size: 1.25rem;
  height: 2.5rem;
  margin-inline: auto;
  min-width: 6.25rem;
  place-content: center;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
}

.workFlow__thumbImage {
  border-radius: 50%;
  height: 10rem;
  margin-top: 0.5rem;
  overflow: hidden;
  position: relative;
  width: 10rem;
  z-index: 1;
}

.workFlow__thumbImage img {
  -o-object-fit: cover;
  height: 100%;
  object-fit: cover;
}

.workFlow__node {
  background: #fff;
  border: 0.3125rem solid #E6B11F;
  border-radius: 50%;
  grid-column: 2;
  height: 2.5rem;
  justify-self: center;
  margin-top: 0.75rem;
  width: 2.5rem;
  z-index: 1;
}

.workFlow__node--branch {
  transform: translateX(4.5625rem);
}

.workFlow__content {
  grid-column: 3;
  margin-right: 1.875rem;
}

.workFlow__content--branch {
  padding-left: 4.3125rem;
}

.workFlow__stepTtl {
  font-size: 3.125rem;
  font-weight: 700;
  line-height: 1.36;
}

.workFlow__stepText {
  font-size: 1.5625rem;
  line-height: 1.92;
  margin-top: 1.25rem;
}

.workFlow__photo {
  grid-column: 4;
  margin: 0;
}

.workFlow__photoImage {
  aspect-ratio: 360/240;
  border-radius: 1.25rem;
  overflow: hidden;
}

.workFlow__photoImage img {
  -o-object-fit: cover;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.workFlow__branch {
  position: relative;
}

.workFlow__branch::before {
  border-bottom: 0.1875rem solid #d9a20a;
  border-right: 0.1875rem solid #d9a20a;
  content: "";
  height: 8.625rem;
  left: 9.8125rem;
  position: absolute;
  top: -1.875rem;
  width: 2.375rem;
}

.workFlow__branchItems {
  align-items: flex-start;
  display: flex;
  gap: 3.375rem;
}

.workFlow__branchItem {
  width: 6.75rem;
}

.workFlow__step--biomass {
  position: relative;
}

.workFlow__step--biomass::before {
  border-right: 0.3125rem solid #E6B11F;
  border-top: 0.3125rem solid #E6B11F;
  content: "";
  height: 16.875rem;
  left: 14.625rem;
  position: absolute;
  top: -15.75rem;
  width: 4.3125rem;
}

.workFlow__card {
  grid-gap: 3.75rem;
  background: #F5F2E9;
  border: 1px solid #DEDACF;
  display: grid;
  gap: 3.75rem;
  grid-column: 3/5;
  grid-template-columns: minmax(0, 1fr) 16.875rem;
  margin-top: 2.5rem;
  padding: 3.375rem 3.125rem 3.125rem;
}

.workFlow__cardTtl {
  border-left: 0.5rem solid #E6B11F;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  padding-block: 0.0625rem 0.25rem;
  padding-left: 1.25rem;
}

.workFlow__cardText {
  font-size: 1.5625rem;
  line-height: 1.92;
  margin-top: 1.875rem;
}

.workFlow__cardImages {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.workFlow__cardImage {
  aspect-ratio: 270/180;
  border-radius: 1.25rem;
  overflow: hidden;
}

.workFlow__cardImage img {
  -o-object-fit: cover;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.workFlow__cardLists {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
  margin-top: 3.5625rem;
}

.workFlow__cardListTtl {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
}

.workFlow__cardListText {
  font-size: 1.25rem;
  line-height: 1.4;
  margin-top: 0.9375rem;
}

.workFlow__step--end {
  grid-template-columns: 10rem 8.4375rem minmax(0, 1fr) 32.5rem;
  margin-top: 1.125rem;
  position: relative;
}

.workFlow__thumb--end {
  position: relative;
  top: -8.625rem;
}

.workFlow__node--end {
  margin-top: 5.375rem;
}

.workFlow__content--end {
  margin-right: 5.625rem;
  padding-top: 4.5rem;
}

.workFlow__shipment {
  background: #E6B11F;
  border-radius: 1.25rem;
  grid-column: 4;
  padding: 2.5rem 3.125rem 2.875rem;
  position: relative;
}

.workFlow__shipment::before {
  background-color: #E6B11F;
  bottom: 100%;
  content: "";
  height: 4.875rem;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 0.3125rem;
}

.workFlow__shipmentTtl {
  color: #FFFFFF;
  font-size: 3.125rem;
  font-weight: 700;
  line-height: 1.36;
  text-align: center;
}

.workFlow__shipmentImage {
  aspect-ratio: 420/300;
  border-radius: 1.25rem;
  margin-top: 1.25rem;
  overflow: hidden;
}

.workFlow__shipmentImage img {
  -o-object-fit: cover;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.workFlow__Ttl {
  display: flex;
  font-weight: bold;
}

.workFlow__pmTtl {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.5;
  padding: 0.2em 0 0 0.6em;
}

.workFlow__pmcard {
  grid-template-columns: minmax(0, 1fr) 22rem;
}

/*
 * brand
 * -------------------------------------------------------------
 */

.brand__Ttl {
  display: flex;
}

.brand__Ttl .kana {
  margin: 3.2rem 2rem;
}

/*
 * youtubeSwiper
 * -------------------------------------------------------------
 */

.youtube {
  position: relative;
}

.youtubeSwiper {
  overflow: visible !important;
  padding-block: 3.75rem 4.375rem !important;
  position: relative;
}

.youtubeSwiper .swiper-wrapper {
  align-items: center;
}

.youtube__item {
  margin: 0 !important;
  transform: scale(0.75) !important;
  transition: transform 0.35s ease;
  z-index: 1;
}

.youtube__card {
  background: #00A939;
  border-radius: 2.5rem;
  padding: 3.4375rem 3.125rem 3rem;
}

.youtube__thumb {
  aspect-ratio: 480/270;
  background: #ccc;
  overflow: hidden;
}

.youtube__thumb iframe {
  display: block;
  height: 100%;
  width: 100%;
}

.youtube__ttl {
  color: #FFFFFF;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4444444444;
  margin-top: 1.25rem;
}

.youtubeSwiper .swiper-slide-prev {
  transform: scale(0.75) translateX(-5rem) !important;
}

.youtubeSwiper .swiper-slide-next {
  transform: scale(0.75) translateX(5rem) !important;
}

.youtubeSwiper .swiper-slide-prev,
.youtubeSwiper .swiper-slide-next {
  z-index: 2;
}

.youtubeSwiper .swiper-slide-active {
  transform: scale(1.12) !important;
}

.youtubeSwiper__button {
  background: transparent;
  border: none;
  border-radius: 0;
  cursor: pointer;
  height: 5.3125rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1.875rem;
  z-index: 3;
}

.youtubeSwiper__button::before {
  content: "";
  height: 5.3125rem;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 1.875rem;
}

.youtubeSwiper__button--prev {
  left: 31.3vw;
}

.youtubeSwiper__button--prev::before {
  background: url(./../images/top/prev.webp) no-repeat center/100%;
}

.youtubeSwiper__button--next {
  right: 31.3vw;
}

.youtubeSwiper__button--next::before {
  background: url(./../images/top/next.webp) no-repeat center/100%;
}

/*
 * u-marker
 * -------------------------------------------------------------
 */

.u-marker {
  -webkit-box-decoration-break: clone;
  background: linear-gradient(transparent 65%, #E3EFE7 0%);
  box-decoration-break: clone;
  display: inline-block;
  padding-bottom: 0.1em;
  padding-inline: 0.3125rem;
}

/*
 * u-pc
 * -------------------------------------------------------------
 */

.u-pc {
  display: block;
}

/*
 * u-sp
 * -------------------------------------------------------------
 */

.u-sp {
  display: none;
}

@media (width >=1025px) {

  a[href^="tel:"] {
    pointer-events: none;
  }

}

@media (max-width: 1920px) {

  html {
    font-size: 0.833vw;
  }

}

@media (max-width: 1440px) {

  html {
    font-size: 11px;
  }

}

@media (max-width: 1150px) {

  .header__inner {
    padding-inline: 1.875rem;
  }

  .header__logo {
    min-width: 28rem;
  }

  .burger {
    display: flex;
  }

  .nav {
    display: none;
  }

  .nav__list {
    flex-direction: column;
    gap: 2.75rem;
  }

  .nav__link {
    color: #fff;
    font-size: 1.4375rem;
  }

  .spNav {
    display: flex;
  }

}

@media (max-width: 1024px) {

  html {
    font-size: 1.074vw;
  }

  .topAbout__cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .topAbout__card {
    max-width: 21.25rem;
    width: 31%;
  }

}

@media (max-width: 767px) {

  html {
    font-size: 16px;
  }

  body {
    font-size: 0.75rem;
  }

  .footer {
    border-width: 2px;
  }

  .footer__inner {
    padding-inline: 1.6875rem;
  }

  .footer__main {
    justify-content: center;
    padding-block: 2.1875rem 1.875rem;
    text-align: center;
  }

  .footer__info {
    max-width: 100%;
  }

  .footer__lead {
    font-size: 0.9375rem;
  }

  .footer__logo {
    margin-top: 0.6875rem;
    max-width: 21rem;
  }

  .footer__address {
    font-size: 0.75rem;
    line-height: 1.6666666667;
    margin-top: 1.3125rem;
  }

  .footer__sns {
    gap: 1.8125rem;
    justify-content: center;
    margin-top: 1.25rem;
  }

  .footer__snsLink {
    width: 1.5rem;
  }

  .footer__nav {
    display: none;
  }

  .footer__bottom {
    height: 3.125rem;
    justify-content: center;
  }

  .footer__copyright {
    font-size: 0.625rem;
    line-height: 1.3;
  }

  .footer__copyright span {
    display: block;
    text-align: center;
  }

  .footer__links {
    display: none;
  }

  .header {
    height: 15.4vw;
  }

  .header__inner {
    padding-inline: 2.6vw;
  }

  .header__logo {
    min-width: auto;
    width: 61.534vw;
  }

  .l-inner {
    max-width: 34.375rem;
    padding-inline: 1.5625rem;
  }

  .l-main {
    padding-top: 15.4vw;
  }

  .l-page {
    padding-block: 1.875rem 3.125rem;
  }

  .l-page .l-img {
    border-radius: 1.08rem;
  }

  .l-page__Ttl {
    font-size: 1.25rem;
  }

  .l-page__Lead {
    font-size: 1.1rem;
  }

  .l-page__text {
    font-size: 0.85rem;
    line-height: 1.6666666667;
  }

  .l-page dl {
    font-size: 95%;
    margin-top: 1rem;
  }

  .l-page .spbdno {
    margin-top: 0;
  }

  .l-page .spbdno dl {
    margin-top: 0;
    border-top: none;
  }

  .l-page dl dt {
    padding: 1.25em 0 1.25em 0.5em;
  }

  .l-page dl dd {
    padding: 1.25em 1.0em 1.25em 6.5em;
  }

  .l-page__Ttl_sty1 {
    border-left: 0.25rem solid #E6B11F;
    font-size: 1.1rem;
    line-height: 1.4666666667;
    padding-block: 0;
    padding-left: 0.6875rem;
  }

  .l-page__Ttl_sty2 {
    font-size: 1.1rem;
    line-height: 1.4666666667;
    padding: 0.7rem 0.8rem;
  }

  .l-page__Ttl_sty2::before {
    height: 1.7rem;
    margin-right: 0.65rem;
    width: 0.2rem;
  }

  .l-page__box {
    border: 0.16rem solid #00A939;
    border-radius: 1rem;
    padding: 1rem 0.25rem 1.5rem;
  }

  .l-pageSectionWrap {
    padding-block: 1.875rem 3.125rem;
  }

  .burger {
    height: 10.26vw;
    width: 10.26vw;
  }

  .burger span {
    width: 5.13vw;
  }

  .burger span:nth-child(1) {
    top: 3.1vw;
  }

  .burger span:nth-child(3) {
    bottom: 3.1vw;
  }

  .c-breadcrumb {
    padding-block: 0.625rem;
  }

  .c-breadcrumb__inner {
    max-width: 100%;
    padding-inline: 4.36vw;
  }

  .c-breadcrumb__list {
    font-size: clamp(0.625rem, 2vw, 0.875rem);
    gap: 0.4375rem;
  }

  .c-breadcrumb__item {
    gap: 0.4375rem;
  }

  .c-breadcrumb__item:not(:last-child)::after {
    height: 0.5rem;
    width: 0.375rem;
  }

  .c-btn {
    border: 0.15rem solid #000;
    font-size: 1rem;
    gap: 0.625rem;
    height: 3.125rem;
    max-width: 16.625rem;
    padding: 0.625rem;
  }

  .c-btn::before {
    height: 1.875rem;
    width: 1.875rem;
  }

  .c-btn::after {
    height: 0.625rem;
    left: 1.25rem;
    width: 0.625rem;
  }

  .c-btn--lg {
    max-width: 14.75rem;
    font-size: 1rem;
    height: 3.125rem;
  }

  .c-btn_back::before {
    height: 1.875rem;
    width: 1.875rem;
  }

  .c-btn_back::after {
    height: 0.625rem;
    left: 1.25rem;
    width: 0.625rem;
  }

  .c-btn--ivy {
    border-width: 0.125rem;
    font-size: 0.8125rem;
    gap: 0.375rem;
    height: 2.25rem;
    padding: 0.5rem 0.625rem;
  }

  .c-btn--ivy::before {
    height: 1.25rem;
    width: 1.25rem;
  }

  .c-btn--ivy::after {
    height: 0.5rem;
    left: 1rem;
    width: 0.5rem;
  }

  .c-btn--grn {
    font-size: 1.28rem;
    gap: 0.6rem;
    height: 3.6rem;
    padding: 0.8rem 0.25rem;
  }

  .c-btn--grn::before {
    height: 2.15rem;
    width: 2.15rem;
    margin-top: 0.2rem;
  }

.c-btn--grn::after {
  height: 0.75rem;
  left: 1.0rem;
  width: 0.8rem;
  margin-top: 0.1rem;
}

  .c-secTtl {
    font-size: 1.5rem;
  }

  .spNav {
    aspect-ratio: 390/490;
    gap: 3.33vw;
    height: auto;
    padding: 12.8vw 2.25rem;
    top: 15.4vw;
  }

  .spNav__list {
    gap: 1.875rem;
  }

  .spNav__link {
    font-size: 4.1vw;
    gap: 2.56vw;
  }

  .spNav__link::before {
    height: 4.62vw;
    width: 3.85vw;
  }

  .spNav__subList {
    gap: 5.13vw;
    padding-left: 5.13vw;
  }

  .spNav__subLink {
    font-size: 3.6vw;
    gap: 1.3vw;
  }

  .fv {
    aspect-ratio: 390/450;
    height: auto;
  }

  .fv__ttl {
    font-size: 9.231vw;
    line-height: 1.4444444444;
  }

  .fv__ttl span {
    display: block;
  }

  .fv__swiperItem img {
    aspect-ratio: 390/450;
    height: 100%;
  }

  .msg-img {
    aspect-ratio: 420/550;
    border-radius: 1.35rem;
    overflow: hidden;
    width: 70%;
    margin: 0 auto;
  }

  .msg .fwb {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
  }

  .history__body {
    flex-direction: column;
    gap: 3.125rem;
  }

  .history__timeline {
    gap: 1.875rem;
    width: 100%;
  }

  .history__periodTtl {
    font-size: 2.8125rem;
    gap: 0.3125rem;
  }

  .history__periodTtl small {
    font-size: 1.375rem;
  }

  .history__periodTtl span {
    font-size: 1.375rem;
  }

  .history__list {
    margin-top: 1.125rem;
    padding-left: 0.5rem;
  }

  .history__item:not(:last-child) {
    padding-bottom: 0.9375rem;
  }

  .history__item:not(:last-child)::before {
    left: 0.28125rem;
    top: 0.625rem;
    width: 0.1875rem;
  }

  .history__year {
    font-size: 0.75rem;
    gap: 0.3125rem;
    line-height: 1.3333333333;
    width: 4.1875rem;
  }

  .history__year::before {
    border-width: 0.125rem;
    height: 0.78125rem;
    width: 0.78125rem;
  }

  .history__desc {
    font-size: 0.75rem;
    line-height: 1.3333333333;
  }

  .history__gallery {
    gap: 1.875rem;
    max-width: 100%;
  }

  .history__img {
    aspect-ratio: 340/220;
    border-radius: 0.9375rem;
  }

  .history__caption {
    font-size: 0.875rem;
    line-height: 1.2857142857;
    margin-top: 0.625rem;
  }

  .newsList__link {
    gap: 0;
    padding: 0.75rem 0.3125rem;
  }

  .newsList__img {
    margin-right: 0.75rem;
    max-width: 6.25rem;
  }

  .newsList__meta {
    margin-right: 0.4375rem;
  }

  .newsList__date {
    font-size: 0.625rem;
  }

  .newsList__ttl {
    font-size: 0.75rem;
    line-height: 1.5;
    margin-top: 0.3125rem;
  }

  .newsList__btn {
    height: 1.625rem;
    width: 1.625rem;
  }

  .newsList__btn::before {
    height: 0.625rem;
    width: 0.625rem;
  }

  .pageTitle {
    height: 6.25rem;
    height: 25.64vw;
  }

  .pageTitle__inner {
    max-width: 100%;
    padding-inline: 2.6vw;
  }

  .pageTitle__group {
    padding: 0.75rem 1.25rem;
  }

  .pageTitle__ja {
    font-size: 7.2vw;
  }

  .pageTitle__eng {
    font-size: 13.33vw;
  }

  .sustain__head {
    padding-bottom: 3.75rem;
  }

  .sustain__headTtl {
    font-size: 1.5rem;
    line-height: 1.5;
  }

  .sustain__headLead {
    font-size: 1rem;
    line-height: 1.56;
    margin-top: 1.875rem;
  }

  .sustain__headText {
    font-size: 0.75rem;
    line-height: 2;
    text-align: left;
  }

  .sustain__body {
    gap: 2.5rem;
  }

  .sustain__itemHead {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.25rem;
    justify-content: flex-start;
  }

  .sustain__itemTtl {
    border-width: 0.125rem;
    font-size: 1.5rem;
    line-height: 1.5;
    padding-bottom: 0.625rem;
    width: 100%;
  }

  .sustain__itemSdgs {
    gap: 0.625rem;
    justify-content: center;
    width: 100%;
  }

  .sustain__itemSdgs img {
    max-width: 3.75rem;
    width: auto;
  }

  .sustain__itemBody {
    flex-direction: column-reverse;
    gap: 1.25rem;
    padding-top: 1.25rem;
  }

  .sustain__itemBody--col {
    flex-direction: column;
    gap: 1.25rem;
  }

  .sustain__figure {
    max-width: 100%;
  }

  .sustain__img {
    aspect-ratio: 340/220;
    border-radius: 0.9375rem;
  }

  .sustain__img--sm {
    aspect-ratio: 340/220;
    border-radius: 0.9375rem;
  }

  .sustain__caption {
    font-size: 0.6875rem;
    line-height: 1.2727272727;
  }

  .sustain__gallery {
    gap: 1.25rem;
    grid-template-columns: repeat(1, 1fr);
  }

  .sustain__text {
    font-size: 0.75rem;
    line-height: 2;
  }

  .sustain__sdgs {
    border-radius: 1.25rem;
    border-width: 0.125rem;
    margin-top: 3.125rem;
    padding: 1.875rem 1.25rem;
  }

  .sustain__sdgsTtl {
    font-size: 1.0625rem;
    text-align: center;
  }

  .sustain__sdgsText {
    font-size: 0.75rem;
    line-height: 2;
    margin-top: 1.25rem;
  }

  .sustain__sdgsImg {
    margin-top: 1.875rem;
    max-width: 100%;
  }

  .topAbout {
    padding-block: 2.5rem;
  }

  .topAbout__inner {
    padding-inline: 0.9375rem;
  }

  .topAbout__secTtl {
    font-size: 1.375rem;
    line-height: 1.5;
  }

  .topAbout__text {
    font-size: 0.8125rem;
    line-height: 1.8461538462;
    margin-top: 1.5625rem;
  }

  .topAbout__cards {
    gap: 0.75rem 0.5625rem;
    margin-top: 1.875rem;
  }

  .topAbout__card {
    border-radius: 0.625rem;
    min-width: 6.8rem;
    padding: 0.8125rem 0.4375rem 0.9375rem;
  }

  .topAbout__cardImg {
    max-width: 4.375rem;
  }

  .topAbout__cardTtl {
    border-radius: 0.3125rem;
    font-size: 0.5425rem;
    margin-top: 0.4375rem;
    padding: 0.375rem 0.3125rem;
    width: 100%;
  }

  .topAbout__cardData {
    font-size: 1.375rem;
    gap: 0.1875rem;
    margin-top: 0.5625rem;
  }

  .topAbout__cardData span {
    font-size: 0.6875rem;
  }

  .topNews {
    padding-block: 2.5rem;
  }

  .topNews__list {
    margin-top: 1.375rem;
  }

  .topNews__btn {
    max-width: 7.5rem;
  }

  .topPromise {
    background: url(./../images/top/sp/promise_bg.webp) no-repeat center/cover;
    padding-block: 2.5rem 3.125rem;
  }

  .topPromise__secTtl .smTtl {
    font-size: 1.375rem;
    line-height: 1;
  }

  .topPromise__secTtl .lgTtl {
    font-size: 1.875rem;
  }

  .topPromise__secTtl .lgTtl strong {
    font-size: 3.75rem;
    margin-left: 0.25rem;
    margin-top: 0.1875rem;
  }

  .topPromise__list {
    gap: 0.9375rem;
    margin-top: 1.25rem;
  }

  .topPromise__list::before {
    height: 0.1875rem;
    top: 1.25rem;
  }

  .topPromise__loopTrack {
    gap: 0.9375rem;
  }

  .topPromise__item {
    gap: 0.9375rem;
  }

  .topPromise__itemNum {
    font-size: 1.375rem;
    height: 2.5rem;
    width: 2.5rem;
  }

  .topPromise__itemCard {
    border-radius: 1.25rem;
    border-width: 0.125rem;
    max-width: 11.25rem;
    padding: 1.125rem;
  }

  .topPromise__itemImg {
    aspect-ratio: 144/91;
    border-radius: 0.625rem;
  }

  .topPromise__itemTtl {
    font-size: 0.8125rem;
    line-height: 1.3846153846;
    margin-top: 0.625rem;
  }

  .topPromise__btn {
    margin-top: 1.875rem;
    max-width: 10.75rem;
  }

  .topRecruit {
    background: url(./../images/top/sp/recruit_obj_top.webp) no-repeat top/100% 0.375rem, url(./../images/top/sp/recruit_obj_bottom.webp) no-repeat bottom/100% 0.375rem #F5F2E9;
    padding-block: 2.1875rem;
  }

  .topRecruit__inner {
    flex-direction: column;
    gap: 0;
    padding-inline: 1.25rem;
    text-align: center;
  }

  .topRecruit__desc {
    display: contents;
  }

  .topRecruit__secTtl {
    font-size: 1.25rem;
    line-height: 1;
    order: 1;
  }

  .topRecruit__lead {
    font-size: 1.625rem;
    line-height: 1.5384615385;
    margin: 0.5rem calc(50% - 50vw) 0;
    order: 2;
  }

  .topRecruit__text {
    font-size: 1rem;
    line-height: 1.5625;
    margin-top: 0.9375rem;
    order: 3;
  }

  .topRecruit__btn {
    margin-top: 1.875rem;
    order: 5;
  }

  .topRecruit__imgs {
    flex-direction: row;
    gap: 0.75rem;
    margin-top: 1.875rem;
    order: 4;
  }

  .topRecruit__img {
    aspect-ratio: 170/110;
    border-radius: 0.625rem;
    max-width: 10.625rem;
  }

  .topRecruit__img.--img1 {
    margin-left: 0;
  }

  .topSns {
    gap: 3.125rem;
    padding-block: 2.5rem 3.125rem;
  }

  .topSns__secTtl {
    font-size: 1.25rem;
  }

  .topSns__lead {
    font-size: 1rem;
    line-height: 1.5625;
  }

  .topSns__btn {
    border-width: 0.125rem;
    font-size: 0.8125rem;
    gap: 0.625rem;
    height: 2.25rem;
    max-width: 10.9rem;
    padding: 0.5rem 0.9375rem;
  }

  .topSns__btn::before {
    height: 1.25rem;
    margin-top: 0.0625rem;
    width: 1.1875rem;
  }

  .topSns__inner {
    padding-inline: 1.25rem;
  }

  .topSns__igList {
    gap: 0.4375rem;
    margin-top: 1.25rem;
  }

  .workFlow__headTtl {
    font-size: 1.125rem;
    line-height: 1.83;
  }

  .workFlow__body {
    margin-top: 3.125rem;
  }

  .workFlow__flow {
    gap: 2.5rem;
  }

  .workFlow__flow::before {
    bottom: 0;
    left: 5.375rem;
    top: 1.125rem;
    width: 0.1875rem;
  }

  .workFlow__step {
    grid-template-columns: 4.375rem 2.1875rem minmax(0, 1fr);
    row-gap: 0.9375rem;
  }

  .workFlow__thumb {
    margin-top: 0.375rem;
    width: 4.375rem;
  }

  .workFlow__thumb::after {
    display: block;
    right: -1.125rem;
    top: 3.75rem;
    width: 1.25rem;
  }

  .workFlow__thumb--right {
    margin-left: 1.875rem;
  }

  .workFlow__thumb--right::after {
    left: -1rem;
    width: 1.5rem;
  }

  .workFlow__thumb--empty::after {
    display: none;
  }

  .workFlow__thumbLabel {
    font-size: 0.6875rem;
    height: 1.25rem;
    min-width: 3.125rem;
    padding-inline: 0.375rem;
  }

  .workFlow__thumbImage {
    height: 4.375rem;
    margin-top: 0.375rem;
    width: 4.375rem;
  }

  .workFlow__node {
    border-width: 0.1875rem;
    height: 1.25rem;
    margin-top: 0.5rem;
    width: 1.25rem;
  }

  .workFlow__node--branch {
    transform: translateX(1.9375rem);
  }

  .workFlow__content {
    margin-right: 0;
  }

  .workFlow__content--branch {
    padding-left: 1.875rem;
  }

  .workFlow__stepTtl {
    font-size: 1.5rem;
    line-height: 1.5;
  }

  .workFlow__stepText {
    font-size: 0.75rem;
    line-height: 2;
    margin-top: 0.3125rem;
  }

  .workFlow__photo {
    grid-column: 3;
  }

  .workFlow__photoImage {
    aspect-ratio: 235/150;
    border-radius: 0.9375rem;
  }

  .workFlow__step--biomass::before {
    border-width: 0.1875rem;
    height: 8.4375rem;
    left: 6rem;
    top: -7.875rem;
    width: 1.5625rem;
  }

  .workFlow__photoImage--biomass {
    aspect-ratio: 210/137;
    margin-left: 1.875rem;
  }

  .workFlow__card {
    gap: 0.9375rem;
    grid-column: 3;
    grid-template-columns: 1fr;
    margin-top: 0.9375rem;
    padding: 1.25rem;
  }

  .workFlow__cardTtl {
    border-left: 0.25rem solid #E6B11F;
    font-size: 0.9375rem;
    line-height: 1.4666666667;
    padding-block: 0;
    padding-left: 0.6875rem;
  }

  .workFlow__cardText {
    font-size: 0.75rem;
    line-height: 1.6666666667;
    margin-top: 0.5625rem;
  }

  .workFlow__cardImages {
    gap: 0.625rem;
  }

  .workFlow__cardImage {
    aspect-ratio: 200/120;
    border-radius: 0.625rem;
  }

  .workFlow__cardLists {
    gap: 0.625rem;
    margin-top: 1.0625rem;
  }

  .workFlow__cardListTtl {
    font-size: 0.875rem;
  }

  .workFlow__cardListText {
    font-size: 0.8rem;
    line-height: 1.6666666667;
    margin-top: 0.3125rem;
  }

  .workFlow__step--end {
    grid-template-columns: 4.375rem 2.1875rem minmax(0, 1fr);
    margin-top: 1.25rem;
    row-gap: 0.875rem;
  }

  .workFlow__thumb--end {
    top: -5.9375rem;
  }

  .workFlow__node--end {
    margin-top: 0.5625rem;
  }

  .workFlow__content--end {
    margin-right: 0;
    padding-right: 2.1875rem;
    padding-top: 0;
  }

  .workFlow__shipment {
    border-radius: 0.9375rem;
    grid-column: 1/-1;
    padding: 0.9375rem 1.25rem 1.25rem;
  }

  .workFlow__shipment::before {
    height: 18.125rem;
    left: auto;
    right: 0.9375rem;
    transform: none;
    width: 0.1875rem;
    z-index: -1;
  }

  .workFlow__shipmentTtl {
    font-size: 1.5rem;
    line-height: 1.5;
  }

  .workFlow__shipmentImage {
    aspect-ratio: 300/215;
    border-radius: 0.9375rem;
    margin-top: 0.9375rem;
  }

  .workFlow__pmTtl {
    font-size: 1.125rem;
    line-height: 1.45;
  }

  .workFlow__Ttl .topPromise__itemNum {
    width: 3.0rem;
    height: 3.0rem;
    margin-top: 0.35rem;
  }

  .brand__Ttl {
    display: unset;
    text-align: center;
  }

  .brand__Ttl .l-page__Ttl {
    font-size: 2.3rem;
    margin-top: 1.5rem;
  }

  .brand__Ttl .kana {
    margin: 0.5rem 0 1.5rem;
  }

  .brd .l-page__Lead {
    text-align: center;
    font-size: 1.2rem;
  }

  .youtubeSwiper {
    padding-block: 1.25rem 1.5625rem !important;
  }

  .youtube__card {
    border-radius: 1.25rem;
    padding: 1.25rem 1.25rem 1.0625rem;
  }

  .youtube__thumb {
    aspect-ratio: 200/110;
  }

  .youtube__ttl {
    font-size: 0.75rem;
    line-height: 1.3333333333;
    margin-top: 0.625rem;
  }

  .youtubeSwiper .swiper-slide-prev {
    transform: scale(0.75) translateX(-0.3125rem) !important;
  }

  .youtubeSwiper .swiper-slide-next {
    transform: scale(0.75) translateX(0.3125rem) !important;
  }

  .youtubeSwiper .swiper-slide-active {
    transform: scale(1) !important;
  }

  .youtubeSwiper__button {
    height: 1.875rem;
    width: 0.625rem;
  }

  .youtubeSwiper__button::before {
    height: 1.875rem;
    width: 0.625rem;
  }

  .youtubeSwiper__button--prev {
    left: calc(50% - 33.1vw);
  }

  .youtubeSwiper__button--next {
    right: calc(50% - 32.5vw);
  }

  .newsPage__ttl ,.newsPage__cts h2 {
    font-size: 1.3rem;
  }

  .newsPage__ttl {
    border-bottom: 0.13rem solid #00A939;
    padding-bottom: 0.8rem;
  }

  .newsPage__date {
    font-size: 100%;
  }

  .newsPage__cts {
    padding-block: 1rem 2rem;
  }

  .newsPage__cts h2, .newsPage__cts h3 {
    margin: 2rem 0 1rem;
  }

  .newsPage__cts h3 {
    font-size: 1.2rem;
  }

  .newsPage__cts p {
    font-size: 0.85rem;
    margin-top: 1.25rem;
  }

  .newsPage__cts img {
    margin: 1.5rem 0 0.5rem;
  }

  .newsPage__cts ul,
  .newsPage__cts ol {
    font-size: 0.85rem;
    margin: 1.25rem 0 1.5rem;
    padding-left: 1.45rem;
  }

  .newsPage__cts ul li,
  .newsPage__cts ol li {
    margin-bottom: 0.7rem;
  }

  .p-contact-popup__title {
    font-size: 1.2rem;
  }

  /*-- ポップアップ ----------------------------------------*/
  .p-contact-popup {
      padding: 30px 20px;
  }

  .p-contact-popup__table th,
  .p-contact-popup__table td {
      display: block;
      padding: 5px 10px 8px;
  }

  .p-contact-popup__table th {
      padding-bottom: 0;
      padding-top: 10px; 
  }

  .p-contact-popup__table tr:last-child {
      border-bottom: none;
  }

  /*-- Form ----------------------------------------*/
  .contact__wrapper {
      padding: 40px 0 0;
  }

  .contact__wrapper label {
      width: 100%;
      margin: 0 0 10px;
      line-height: 1.4;
      font-size: 1rem;
  }

  .form-group01 div {
      width: 49%;
      font-size: 0.85rem;
  }

  .form-group02 div,
  .form-group03 div {
      width: 100%;
      font-size: 0.85rem;
  }

  .form-group01 input,
  .form-group02 input,
  .form-group02 textarea {
      font-size: 0.85rem;
      padding: 8px;
  }

  .wpcf7-form-control {
    gap: 0;
  }

  .submit input {
    font-size: 1rem;
    min-width: 14.5rem;
    padding: 0.95rem 1.0rem 0.95rem 3.2rem;
    height: 3.5rem;
  }

  .submit.laststep input {
    min-width: 14rem;
    height: 4.25rem;
    padding: 0.625rem 1.25rem 0.625rem 6rem;
  }

  .submit div span {
    height: 2.075rem;
    width: 2.075rem;
    left: 0.85rem
  }

  .u-marker {
    display: inline;
  }

  .u-pc {
    display: none;
  }

  .u-sp {
    display: block;
  }

}

@media (max-width: 390px) {

  html {
    font-size: 4.1025641026vw;
  }

}

@keyframes loop {

  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-100% - 3.125rem));
  }

}


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