@charset "UTF-8";
/* ----------------------------------------
  初期設定
---------------------------------------- */
/* ---------------------------
  フォント
--------------------------- */
/* 日本語フォント */
/* 英字フォント */
.en {
  font-family: "Lora", serif;
}

/* ---------------------------
  カラー
--------------------------- */
/* ---------------------------
  ヘッダー高さ
--------------------------- */
/* ---------------------------
  レスポンシブ
--------------------------- */
/* ----------------------------------------
  共通設定
---------------------------------------- */
html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  background: #F6F4EC;
  color: #333333;
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.04em;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body.no-scroll {
  overflow-y: hidden;
}

h1,
h2,
h3,
h4,
h5,
p,
ul,
li,
ol,
th,
td {
  padding: 0;
  margin: 0;
  /* font-size: initial; */
}

a {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}

img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

section {
  padding: 8rem 0;
}

.inner {
  width: 100%;
  padding: 0 2rem;
  margin-left: auto;
  margin-right: auto;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.wrapper {
  max-width: 120rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 768px) {
  .wrapper {
    max-width: 100%;
  }
}

/* ----------------------------------------
  コンポーネント
---------------------------------------- */
/* ---------------------------------↓編集済み */
/* ---------------------------
  セクションタイトル
--------------------------- */
.ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}
.ttl__en {
  color: #5E7A00;
  font-family: "Lora", serif;
  font-weight: 400;
  letter-spacing: 0.08em;
  font-size: 2.4rem;
}
.ttl__ja {
  color: #333333;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 2.4rem;
  letter-spacing: 0;
  line-height: 2;
}
.ttl.center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.ttl.right {
  text-align: right;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (max-width: 768px) {
  .ttl.right {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.ttl.white .ttl__en,
.ttl.white .ttl__ja {
  color: #FFFFFF;
}

/* ---------------------------
  ボタン
--------------------------- */
.btn {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .btn {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.8rem 4rem;
  border: 1px solid #5E7A00;
  font-family: "Lora", serif;
  font-weight: 500;
  font-size: 1.6rem;
  color: #333333;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.btn a:hover {
  opacity: 1;
  background-color: #5E7A00;
  color: #FFFFFF;
}
.btn.center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.btn.right {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

/* ---------------------------
  下層ページMV
--------------------------- */
.page-mv {
  margin-top: 7.2rem;
  background: #F6F4EC;
  height: 20rem;
  width: 100%;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.page-mv__ttl {
  font-size: 4rem;
  font-family: "Lora", serif;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #5E7A00;
}

/* ---------------------------
  パンくずリスト
--------------------------- */
.breadcrumbs {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.breadcrumbs__inner {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0.8rem 2rem;
}
.breadcrumbs__inner > span:last-of-type {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.breadcrumbs span {
  font-weight: 500;
  line-height: 2;
  font-size: 1.2rem;
  padding-right: 1rem;
}
.breadcrumbs span:not(:first-child) {
  padding-left: 1rem;
}

/* ---------------------------
  ページ紹介文
--------------------------- */
.page-intro__text {
  color: #333333;
}

/* ---------------------------
  ページネーション
--------------------------- */
.pagination {
  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;
  gap: 4rem;
}
@media screen and (max-width: 768px) {
  .pagination {
    gap: 2rem;
  }
}

.page-numbers {
  width: 4rem;
  height: 4rem;
  border: 1px solid #5E7A00;
  color: #333333;
  font-family: "Lora", serif;
  font-weight: 500;
  font-size: 2rem;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.page-numbers.current {
  color: #333333;
  background-color: #FFFBEF;
}

/* ---------------------------
  お知らせ
--------------------------- */
.news__posts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  gap: 2rem;
}
.news__post {
  width: 100%;
  padding: 2rem 2rem 2rem 0;
  gap: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #D9D9D9;
  position: relative;
}
@media screen and (max-width: 768px) {
  .news__post {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.news__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 20.5rem;
  gap: 1.6rem;
}
.news__time {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 1.6rem;
  color: #333333;
}
.news__cat {
  font-size: 1.2rem;
  color: #5E7A00;
  background-color: #FFFFFF;
  border: 1px solid #5E7A00;
  padding: 0 1.6rem;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.news__ttl {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 1.6rem;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .news__ttl {
    font-size: 1.6rem;
    -webkit-line-clamp: 2;
  }
}
.news__arrow {
  width: 1.3rem;
  height: 1rem;
  display: block;
  aspect-ratio: 13/10;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .news__arrow {
    position: absolute;
    right: 0;
    bottom: 2rem;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
.news__post:hover .news__arrow {
  -webkit-transform: translateX(16px);
          transform: translateX(16px);
}
@media screen and (max-width: 768px) {
  .news .btn.sp-only {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}

/* ---------------------------
  ヘッダー
--------------------------- */
.top .header__ttl {
  color: #FFFFFF;
}
.top .header__nav-lists {
  color: #FFFFFF;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  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;
  width: 100%;
  background: transparent;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
.header.is-scrolled {
  background: rgba(255, 255, 255, 0.25);
  /* ← 濃さは調整 */
  backdrop-filter: blur(6px);
}
.header.is-scrolled .header__ttl {
  color: #5E7A00;
}
.header.is-scrolled .header__nav-lists {
  color: #333333;
}
.header__inner {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 0 0 2rem;
}
.header__ttl {
  color: #5E7A00;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 2.4rem;
}
.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 3.2rem;
}
@media screen and (max-width: 768px) {
  .header__nav {
    display: none;
  }
}
.header__nav-lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 3.2rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  color: #333333;
}
.header__btn {
  padding: 2rem;
  background-color: #5E7A00;
  color: #FFFFFF;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  display: block;
  background-color: #5E7A00;
  border: 1px solid #5E7A00;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header__btn:hover {
  background-color: #FFFFFF;
  color: #5E7A00;
  opacity: 1;
}

.toggle-wrapper {
  display: none;
}
@media screen and (max-width: 768px) {
  .toggle-wrapper {
    display: block;
  }
}

.toggle {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  padding: 0;
  margin: 0;
  background-color: #5E7A00;
  cursor: pointer;
  width: 6rem;
  height: 6rem;
  padding: 1.6rem;
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.toggle__line {
  display: block;
  -webkit-transition: translate 0.5s, rotate 0.5s;
  transition: translate 0.5s, rotate 0.5s;
  height: 0.2rem;
  width: 2.4rem;
  background: #FFFFFF;
}
.toggle__line:nth-of-type(1) {
  translate: 0 1rem;
}
.toggle__line:nth-of-type(3) {
  translate: 0 -1rem;
}

/* ---------------------------
  ドロワートグル
--------------------------- */
.toggle.is-active .toggle__line:nth-of-type(1) {
  translate: 0 0.1rem;
  rotate: -45deg;
}
.toggle.is-active .toggle__line:nth-of-type(2) {
  display: none;
}
.toggle.is-active .toggle__line:nth-of-type(3) {
  translate: 0 -0.1rem;
  rotate: 45deg;
}

/* ---------------------------
  ドロワー
--------------------------- */
:root:has(.drawer.js-open) {
  overflow: hidden;
}

.drawer {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  height: 100%;
  background: #FFFBEF;
  /*スクロールバーは非表示*/
  overflow-y: scroll;
  /*IE(Internet Explorer)・Microsoft Edgeへの対応*/
  -ms-overflow-style: none;
  /*Firefoxへの対応*/
  scrollbar-width: none;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 99;
}
.drawer.js-open {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.drawer__lists {
  padding: 12rem 1.6rem;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4rem;
}
.drawer__lists ul {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4rem;
}
.drawer__lists li {
  width: 100%;
  text-align: center;
}
.drawer__lists a {
  color: #333333;
  line-height: 1.6;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 2rem;
}
.drawer__btn a {
  padding: 1.6rem 4rem;
  background: #5E7A00;
  color: #FFFFFF;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
}

/* ---------------------------
  cta recruit
--------------------------- */
.cta-recruit {
  background: url(../img/common/recruit.jpg) no-repeat center center/cover;
}
.cta-recruit__wrapper {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (max-width: 768px) {
  .cta-recruit__wrapper {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.cta-recruit__heading {
  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: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 4.8rem;
}
.cta-recruit .btn a {
  border: 1px solid #FFFFFF;
  color: #FFFFFF;
}

/* ---------------------------
  cta
--------------------------- */
.cta {
  background-color: #5E7A00;
  padding: 10rem 0;
}
@media screen and (max-width: 768px) {
  .cta {
    padding: 6rem 0;
  }
}
.cta__wrapper {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .cta__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4rem;
  }
}
@media screen and (max-width: 768px) {
  .cta .ttl {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.cta__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 500px) {
  .cta__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.cta__item {
  width: 30rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4.8rem;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media screen and (max-width: 768px) {
  .cta__item {
    padding: 4rem 0;
  }
}
.cta__item:first-child {
  border-right: 1px solid #FFFFFF;
}
@media screen and (max-width: 768px) {
  .cta__item:first-child {
    border-right: none;
    border-bottom: 1px solid #FFFFFF;
  }
}
.cta__heading {
  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: 0.8rem;
}
.cta__icon {
  width: 3.2rem;
  height: 3.2rem;
}
.cta__ttl {
  color: #FFFFFF;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 1.6rem;
  letter-spacing: 0;
}
.cta__bottom {
  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: 0.4rem;
}
.cta__tel-number {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 2.4rem;
  color: #FFFFFF;
  letter-spacing: 0;
}
.cta__time {
  color: #FFFFFF;
}
.cta .btn a {
  color: #FFFFFF;
  border: 1px solid #FFFFFF;
}
.cta .btn a:hover {
  background-color: #FFFFFF;
  color: #5E7A00;
}

/* ---------------------------
  フッター
--------------------------- */
.footer {
  padding: 6rem 0 2.4rem;
  background-color: #F6F4EC;
}
.footer__wrapper {
  width: 100%;
  gap: 4.8rem;
  padding: 0 4rem;
}
.footer__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  .footer__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4rem;
  }
}
.footer__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  .footer__info {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
  }
}
.footer__ttl {
  font-weight: 500;
  font-size: 2rem;
}
.footer__menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.2rem 3rem;
}
@media screen and (max-width: 768px) {
  .footer__menu ul {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.footer__menu a {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 1.6rem;
  color: #333333;
}
.footer .copyright {
  font-family: "Lora", serif;
  font-weight: 400;
  font-size: 1.2rem;
  text-align: center;
}

/* ------------------------------------------------------------
  TOPページ
------------------------------------------------------------ */
#top {
  background: #F6F4EC;
}

#top section {
  padding: 10rem 0;
}
@media screen and (max-width: 768px) {
  #top section {
    padding: 8rem 0;
  }
}

/* ---------------------------
  メインビジュアル
--------------------------- */
/* スライダー */
.swiper {
  width: 100%;
}
.swiper-wrapper {
  width: 100%;
}
.swiper-slide {
  width: 100%;
  height: 100%;
}
.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.mv {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  height: 73.6rem;
}
.mv__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.mv__wrapper {
  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;
  width: 100%;
  position: relative;
  isolation: isolate;
}
.mv__swiper {
  height: 73.6rem;
  width: 100%;
}
.mv__ttl {
  position: absolute;
  content: "";
  bottom: 5.4347826087%;
  left: 2.7777777778%;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}
.mv__main-ttl {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  color: #333333;
  font-size: 3.2rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-shadow: 0px 0px 4px rgb(255, 255, 255);
}
@media screen and (max-width: 768px) {
  .mv__main-ttl {
    font-size: 2.8rem;
    color: #FFFFFF;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
  }
}
.mv__sub-ttl {
  font-size: 2rem;
  letter-spacing: 0.08em;
  text-shadow: 0px 0px 4px rgb(255, 255, 255);
  color: #333333;
}
@media screen and (max-width: 768px) {
  .mv__sub-ttl {
    font-size: 1.8rem;
    color: #FFFFFF;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
  }
}

/* ---------------------------
  about
--------------------------- */
#top .about__inner {
  padding: 0;
}
@media screen and (max-width: 768px) {
  #top .about__inner {
    padding: 0 2rem;
  }
}
#top .about__wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4rem;
  width: 100vw;
  max-width: 100%;
  padding: 4.8rem 0;
}
@media screen and (max-width: 768px) {
  #top .about__wrapper {
    padding: 0;
  }
}
#top .about__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  #top .about__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4rem;
  }
}
#top .about__text {
  text-align: center;
}
#top .about__img {
  width: 20.8333333333%;
  aspect-ratio: 3/4;
  min-width: 20rem;
  max-width: 30rem;
}
@media screen and (max-width: 768px) {
  #top .about__img {
    width: 100%;
  }
}

/* ---------------------------
  service
--------------------------- */
#top .service {
  overflow: hidden;
}
#top .service__wrapper {
  gap: 6rem;
}
#top .service__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}
@media screen and (max-width: 768px) {
  #top .service__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#top .service__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4rem;
  width: 50%;
}
@media screen and (max-width: 768px) {
  #top .service__item {
    width: 100%;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
#top .service__gallery {
  overflow: hidden;
  width: 100vw;
}
#top .service__gallery-wrapper {
  -webkit-transition-timing-function: linear !important;
          transition-timing-function: linear !important;
}
#top .service__gallery-slide {
  width: 66.7rem;
}

.movie {
  width: 100vw;
}

/* ---------------------------
  お知らせ
--------------------------- */
#top .news {
  background-color: #FFFBEF;
}
@media screen and (max-width: 768px) {
  #top .news .ttl {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
#top .news__wrapper {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 4rem;
  padding: 0 4rem;
}
@media screen and (max-width: 768px) {
  #top .news__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0;
  }
}
#top .news__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4.8rem;
  width: 37.037037037%;
}
@media screen and (max-width: 768px) {
  #top .news__heading {
    width: 100%;
    gap: 4rem;
  }
}
#top .news__ttl {
  width: 66.5127020785%;
}
@media screen and (max-width: 768px) {
  #top .news__ttl {
    width: 100%;
  }
}

/* ------------------------------------------------------------
  お知らせページ一覧
------------------------------------------------------------ */
.category-lists {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 4rem;
  width: 100%;
}
@media screen and (max-width: 600px) {
  .category-lists {
    gap: 2rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.category-lists__btn {
  border: 1px solid #5E7A00;
  padding: 0 3.2rem;
  text-align: center;
  font-weight: 500;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  color: #333333;
  opacity: 1;
}
@media screen and (max-width: 600px) {
  .category-lists__btn {
    width: 100%;
  }
}
.category-lists__btn.is-active {
  background-color: #5E7A00;
  color: #FFFFFF;
}

.news__wrapper {
  max-width: 108rem;
  gap: 8rem;
}
.news__container {
  width: 100%;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8rem;
}
.news__post {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.news__ttl {
  width: 71.2962962963%;
}

/* ------------------------------------------------------------
  お知らせページ詳細
------------------------------------------------------------ */
.single__wrapper {
  max-width: 90rem;
  gap: 8rem;
}
.single__post {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  gap: 1.2rem;
}
.single__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.6rem;
}
.single__ttl {
  font-size: 3.2rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0;
  color: #333333;
  padding-bottom: 1.6rem;
}
.single__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.2rem;
  width: 100%;
}
.single__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  position: relative;
}
.single__btn-back {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 768px) {
  .single__btn-back {
    position: inherit;
    top: 0;
    left: 0;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
.single__btn-link {
  font-weight: 500;
  color: #333333;
  width: 4rem;
  height: 4rem;
  border: 1px solid #5E7A00;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.single__btn-back a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}
.single__btn-link--icon {
  width: 5px;
  height: 10px;
  display: block;
}

/* ------------------------------------------------------------
  About
------------------------------------------------------------ */
/* ---------------------------
  会社概要
--------------------------- */
.overview {
  padding-bottom: 16rem;
}
@media screen and (max-width: 768px) {
  .overview {
    padding-bottom: 8rem;
  }
}
.overview__wrapper {
  gap: 6rem;
}
@media screen and (max-width: 768px) {
  .overview__wrapper {
    gap: 3.2rem;
  }
}
.overview__img {
  width: 100%;
  max-width: 120rem;
  height: 40rem;
}
.overview__table {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  gap: 0.2rem;
}
.overview__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  gap: 0.2rem;
}
@media screen and (max-width: 768px) {
  .overview__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.overview__term {
  color: #FFFFFF;
  font-weight: 500;
  background-color: #5E7A00;
  width: 23.2rem;
  padding: 1.6rem;
}
@media screen and (max-width: 768px) {
  .overview__term {
    width: 100%;
  }
}
.overview__desc {
  padding: 1.6rem;
  background-color: #FFFFFF;
  width: 80.6666666667%;
}
@media screen and (max-width: 768px) {
  .overview__desc {
    width: 100%;
  }
}
.overview__link {
  font-weight: 500;
  text-decoration: underline;
  display: block;
}
.overview__attention {
  color: #FF0000;
  text-align: center;
}

.iframe-map {
  width: 100%;
  padding-top: 40%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .iframe-map {
    padding-top: 133.3333333333%;
  }
}
.iframe-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ------------------------------------------------------------
  サービス紹介
------------------------------------------------------------ */
#service .service__wrapper {
  gap: 6rem;
}
#service .service__ttl {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 2.4rem;
  color: #333333;
  letter-spacing: 0;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid #7FA700;
}
#service .service__sub-ttl {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #5E7A00;
}
#service .service__content {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}

#service .service-1__content {
  width: 100%;
}
#service .service-1__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  gap: 6rem;
}
@media screen and (max-width: 1024px) {
  #service .service-1__cards {
    gap: 3.2rem;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 600px) {
  #service .service-1__cards {
    gap: 3.2rem 1rem;
    grid-template-columns: repeat(2, 1fr);
  }
}
#service .service-1__card {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}
#service .service-1__card-name {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 2rem;
}
#service .service-1__img {
  max-width: 25rem;
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
}

#service .service-2 {
  padding-top: 12rem;
}
@media screen and (max-width: 768px) {
  #service .service-2 {
    padding-top: 8rem;
  }
}
#service .service-2__items {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  gap: 10rem;
}
@media screen and (max-width: 768px) {
  #service .service-2__items {
    gap: 6rem;
  }
}
#service .service-2__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 6rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  #service .service-2__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
  }
}
#service .service-2__item:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  #service .service-2__item:nth-child(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#service .service-2__content {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 768px) {
  #service .service-2__content {
    width: 100%;
  }
}
#service .service-2__img {
  max-width: 52rem;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  #service .service-2__img {
    width: 100%;
  }
}
#service .service-2__list {
  margin-left: 2rem;
}
#service .service-2__list li {
  list-style: disc;
}

#service .service-3 {
  padding-bottom: 16rem;
}
#service .service-3__container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
  gap: 6rem;
}
@media screen and (max-width: 768px) {
  #service .service-3__container {
    gap: 2rem;
  }
}
@media screen and (max-width: 600px) {
  #service .service-3__container {
    grid-template-columns: repeat(1, 1fr);
  }
}
#service .service-3__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.4rem;
  width: 100%;
}
#service .service-3__card-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.6rem;
}
#service .service-3__card-ttl .no {
  font-family: "Lora", serif;
  font-weight: 400;
  color: #5E7A00;
  font-size: 2.4rem;
}
@media screen and (max-width: 768px) {
  #service .service-3__card-ttl .no {
    font-size: 2rem;
  }
}
#service .service-3__card-ttl .text {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 2.4rem;
  color: #333333;
}
@media screen and (max-width: 768px) {
  #service .service-3__card-ttl .text {
    font-size: 2rem;
  }
}

/* ------------------------------------------------------------
  お問い合わせ
------------------------------------------------------------ */
input,
textarea,
select {
  width: 100%;
  border-radius: 0;
  outline: none;
  border: none;
  padding: 1.2rem 2rem;
  background-color: #FFFBEF;
  font-size: 1.6rem;
  color: #333333;
  font-weight: 400;
  border: 1px solid #666666;
}
@media screen and (max-width: 768px) {
  input,
  textarea,
  select {
    padding: 2rem;
  }
}
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder, select::-webkit-input-placeholder {
  font-size: 1.6rem;
  line-height: 2;
  color: #7A7A7A;
  font-weight: 400;
}
input::-moz-placeholder, textarea::-moz-placeholder, select::-moz-placeholder {
  font-size: 1.6rem;
  line-height: 2;
  color: #7A7A7A;
  font-weight: 400;
}
input:-ms-input-placeholder, textarea:-ms-input-placeholder, select:-ms-input-placeholder {
  font-size: 1.6rem;
  line-height: 2;
  color: #7A7A7A;
  font-weight: 400;
}
input::-ms-input-placeholder, textarea::-ms-input-placeholder, select::-ms-input-placeholder {
  font-size: 1.6rem;
  line-height: 2;
  color: #7A7A7A;
  font-weight: 400;
}
input::placeholder,
textarea::placeholder,
select::placeholder {
  font-size: 1.6rem;
  line-height: 2;
  color: #7A7A7A;
  font-weight: 400;
}

textarea {
  height: 30rem;
}

.contact__wrapper {
  max-width: 73.6rem;
  gap: 4.8rem;
}
.contact__ttl {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 2rem;
  letter-spacing: 0;
}
.contact__heading {
  margin: 4rem 0;
  background-color: #5E7A00;
  color: #FFFFFF;
  padding: 4rem 0;
  width: 100%;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  .contact__heading {
    padding: 4rem 1.6rem;
    gap: 1rem;
  }
}
.contact__heading .contact__ttl {
  color: #FFFFFF;
}
.contact__tel {
  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;
  gap: 1.6rem;
  font-size: 3.2rem;
  font-family: "Lora", serif;
  font-weight: 500;
  padding: 0 6rem 0 4rem;
}
@media screen and (max-width: 768px) {
  .contact__tel {
    padding: 0;
    gap: 1rem;
  }
}
.contact__heading-text {
  font-size: 1.2rem;
}
.contact__icon {
  font-family: "Lora", serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 2;
}
.contact__container {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  gap: 4.8rem;
  padding-top: 8rem;
}
@media screen and (max-width: 768px) {
  .contact__container {
    padding-top: 4rem;
  }
}

.contact-form__items {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  gap: 4rem;
}
.contact-form__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.8rem;
  width: 100%;
}
.contact-form__label-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.6rem;
  width: 100%;
}
.contact-form__label, .contact-form__fieldset {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.8rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.contact-form__label-text {
  font-weight: 500;
  color: #333333;
}
.contact-form__radios-wrapper .wpcf7-radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.2rem 3.2rem;
}
.contact-form__radios-wrapper .wpcf7-list-item label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.2rem;
  font-weight: 500;
}
.contact-form__radios-wrapper input {
  width: 2rem;
  height: 2rem;
}
.contact-form .wpcf7-list-item {
  margin: 0 !important;
}
@media screen and (max-width: 768px) {
  .contact-form__acceptance {
    text-align: center;
  }
}
.contact-form__acceptance label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
  margin-top: 1.2rem;
}
.contact-form__acceptance label input[name=your-acceptance] {
  width: 2rem;
  height: 2rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border: 1px solid #333333;
}
.contact-form input[name=file] {
  background: none;
  padding: 0;
  border-radius: 0;
  border: none;
}
.contact-form__accept {
  text-align: center;
  font-size: 1.2rem;
  color: #FF0000;
  line-height: 2;
  letter-spacing: 0.02em;
  font-weight: 400;
  padding: 0 1.2rem;
  border: 1px solid #FF0000;
}
.contact-form__check {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 1.2rem;
}
.contact-form__check label {
  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;
  gap: 2rem;
}
.contact-form__check .checkbox-cl01 input {
  display: none;
}
.contact-form span.wpcf7-spinner {
  display: none;
}
.contact-form input[type=submit] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
  cursor: pointer;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2;
  color: #FFFFFF;
  background-color: #5E7A00;
  padding: 0.8rem 4rem;
}
.contact-form input[type=submit]:disabled {
  opacity: 0.4;
}

.policy {
  padding: 1.6rem 2rem;
  background-color: #FFFBEF;
  font-size: 1.6rem;
  border: 1px solid #666666;
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 30rem;
  color: #333333;
}
@media screen and (max-width: 768px) {
  .policy {
    padding: 2rem;
    height: 40rem;
  }
}
.policy__container {
  overflow-y: scroll;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.4rem;
}

@media screen and (max-width: 768px) {
  .pc-only {
    display: none;
  }
}

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

.sp-only {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp-only {
    display: block;
  }
}

.center {
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.bold {
  font-weight: 700;
}