@charset "UTF-8";
/* color
-------------------------------------------- */
/* グラデーション mixin 最適化版 */
/* img path
-------------------------------------------- */
/* font size base
-------------------------------------------- */
/* break point
-------------------------------------------- */
/*
.button {
  font-size: 20px; // PCデフォルト（768px 以上）

  @include sp-layout() {
    font-size: 16px; // スマホ（768px 未満）
  }

  @include sm-layout() {
    font-size: 17px; // 小さめのタブレット（768px 〜 999px）
  }

  @include md-layout() {
    font-size: 18px; // 大きめのタブレット（1000px 〜 1199px）
  }

  @include lg-layout() {
    font-size: 24px; // ワイドスクリーン（1441px 以上）
  }
}
*/
/*
.container {
  width: 80%; // PCデフォルト

  @include sp-layout() {
    width: 100%; // スマホ時は幅いっぱい（768px 未満）
  }
}
*/
/* -------------------------------------- */
body {
  font-family: "Noto Sans JP", "Yu Gothic", "Meiryo", sans-serif;
  line-height: 1.6;
  color: #222222;
}

/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
html {
  font-family: sans-serif;
  text-size-adjust: 100%;
  tab-size: 4;
  font-feature-settings: normal;
}

body {
  margin: 0;
}

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

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden],
template {
  display: none;
}

a {
  background-color: transparent;
}

a:active,
a:hover {
  outline: 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: 700;
}

dfn {
  font-style: italic;
}

h1 {
  margin: 0.67em 0;
  font-size: 2em;
}

mark {
  color: #000;
  background: #ff0;
}

small {
  font-size: 80%;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

hr {
  height: 0;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

pre {
  overflow: auto;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
  margin: 0;
  font: inherit;
  color: inherit;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0;
  border: 0;
}

input {
  line-height: normal;
}

input[type=checkbox],
input[type=radio] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

input[type=search] {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  -webkit-appearance: textfield;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  padding: 0.35em 0.625em 0.75em;
  margin: 0 2px;
  border: 1px solid silver;
}

legend {
  padding: 0;
  border: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: 700;
}

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

td,
th {
  padding: 0;
}

/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
@media print {
  *,
  :before,
  :after {
    color: #000 !important;
    text-shadow: none !important;
    background: transparent !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: "";
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  select {
    background: #fff !important;
  }
  .navbar {
    display: none;
  }
  .btn > .caret,
  .dropup > .btn > .caret {
    border-top-color: #000 !important;
  }
  .label {
    border: 1px solid #000;
  }
  .table {
    border-collapse: collapse !important;
  }
  .table td,
  .table th {
    background-color: #fff !important;
  }
  .table-bordered th,
  .table-bordered td {
    border: 1px solid #ddd !important;
  }
}
*,
:after,
:before,
input[type=checkbox],
input[type=radio] {
  box-sizing: border-box;
}

.p0 {
  padding: 0 !important;
}

.rounded-0 {
  border-radius: 0 !important;
}

a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

img {
  max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

.d-flex {
  display: flex;
}

.d-flex-pc {
  display: flex !important;
}

.align-items-start {
  align-items: flex-start;
}

.align-items-end {
  align-items: flex-end;
}

.align-items-center {
  align-items: center;
}

.justify-content-between {
  justify-content: space-between;
}

.justify-content-center {
  justify-content: center;
}

.d-block {
  display: block;
}

.d-inline-block {
  display: inline-block;
}

.preline {
  white-space: pre-line;
}

.position-relative {
  position: relative;
}

.fll {
  float: left;
}

.flr {
  float: right;
}

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

@media (max-width: 767px) {
  .text-center-sp {
    text-align: center;
  }
}

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

.text-white {
  color: #fff;
}

@media (max-width: 767px) {
  .text-white-sp {
    color: #fff;
  }
}

.text-nowrap {
  white-space: nowrap;
}

.h-10 {
  display: block;
  height: 0.6944444444vw;
}
@media (max-width: 767px) {
  .h-10 {
    height: 1.3020833333vw;
  }
}
@media (min-width: 1441px) {
  .h-10 {
    height: 10px;
  }
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.clearfix:before {
  content: "";
  display: block;
  clear: both;
}

.clearfix {
  display: block;
}

@media (min-width: 768px) {
  .show-sp {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .show-pc {
    display: none !important;
  }
}

.hidden {
  display: none !important;
}

.show {
  display: initial !important;
}

* {
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-size: 15px;
  color: #222222;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  body {
    font-size: 13px;
  }
}

html {
  letter-spacing: 0.02em;
  scroll-padding-top: 70px;
  overflow-wrap: anywhere;
}

ul li {
  list-style: none;
}

a,
a:visited {
  color: #222222;
}

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

/* リンクやボタンなどのフォーカスアウトラインを消す */
a,
button,
input,
textarea {
  outline: none;
}

/* Firefox の内側フォーカス用の余白を消す */
::-moz-focus-inner {
  border: 0;
}

img {
  width: 100%;
  height: auto;
}

em {
  font-style: normal;
}

.button_01 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  font-size: clamp(13.0434782609px, 1.0416666667vw, 15px);
  font-weight: 500;
  line-height: 1.5;
  padding: clamp(6.993006993px, 0.6944444444vw, 10px);
  min-width: 200px;
  color: #3A9943;
  background-color: #ffffff;
  border: 1px solid #3A9943;
  border-radius: 50px;
}
@media (max-width: 767px) {
  .button_01 {
    min-width: 160px;
  }
}
.button_01::after {
  display: inline-block;
  content: "›";
  position: absolute;
  right: 0.7em;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 400;
  font-size: 1.6em;
  height: 100%;
}
.button_01:hover {
  opacity: 1;
  color: #ffffff;
  background-color: #3A9943;
}
.button_01:hover:visited {
  color: #ffffff;
}
.button_01:visited {
  color: #3A9943;
}

.button_02 {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: clamp(13.0434782609px, 1.0416666667vw, 15px);
  font-weight: 500;
  line-height: 1.5;
  padding: clamp(6.993006993px, 0.6944444444vw, 10px);
  min-width: 200px;
  color: #ffffff;
  background-color: transparent;
  border: 1px solid #ffffff;
  border-radius: 50px;
}
@media (max-width: 767px) {
  .button_02 {
    min-width: 160px;
  }
}
.button_02::after {
  display: inline-block;
  content: "›";
  position: absolute;
  right: 0.7em;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 400;
  font-size: 1.6em;
  height: 100%;
}
.button_02:hover {
  opacity: 1;
  color: #3A9943;
  background-color: #ffffff;
}
.button_02:hover:visited {
  color: #3A9943;
}
.button_02:visited {
  color: #ffffff;
}

.section .inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: calc(950px + clamp(40px, 5.5555555556vw, 80px) * 2);
  padding: clamp(32px, 4.4444444444vw, 64px) clamp(40px, 5.5555555556vw, 80px);
  margin: 0 auto;
}
@media (max-width: 767px) {
  .section .inner {
    width: 100%;
    padding-inline: 24px;
  }
}
.section .inner.fullwidth {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}
.section .inner .container {
  width: 100%;
  margin-top: clamp(20px, 2.7777777778vw, 40px);
}
.section .inner .heading {
  color: #222222;
  width: 100%;
  text-align: center;
}
.section .inner .heading .title {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: clamp(24.2424242424px, 2.7777777778vw, 40px);
  line-height: 1.2;
  color: #3A9943;
}
.section .inner .heading .sub {
  font-weight: 400;
  font-size: clamp(15.2380952381px, 1.1111111111vw, 16px);
  color: #3A9943;
  margin-top: clamp(6.6666666667px, 0.5555555556vw, 8px);
}
.section .inner .heading .shoulder_copy {
  font-size: 16px;
}
.section .inner .heading .lead {
  font-family: "Noto Serif JP";
  font-size: clamp(15.037593985px, 1.3888888889vw, 20px);
  color: #222222;
  line-height: 2;
  margin-top: clamp(13.3333333333px, 1.1111111111vw, 16px);
}
@media (max-width: 767px) {
  .section .inner .heading .lead {
    text-align: justify; /*  均等割付 */
    text-align-last: center; /* 最終行を中央揃え */
    line-height: 1.8;
  }
}

.sub-fv {
  position: relative;
  z-index: 0;
}
.sub-fv::before {
  content: "";
  position: absolute;
  inset: 0; /* top, right, bottom, left: 0 と同じ */
  background-color: #c9caca;
  mix-blend-mode: multiply; /* ← ブレンドモードを乗算に */
  pointer-events: none; /* クリックなどに干渉させない */
  z-index: 1; /* 背景の上に乗せる */
}
.sub-fv .inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  height: clamp(209.7902097902px, 20.8333333333vw, 300px);
}
@media (max-width: 767px) {
  .sub-fv .inner {
    height: 180px;
  }
}
.sub-fv .inner .p-title {
  color: #ffffff;
  text-align: center;
  line-height: 1;
  margin-top: clamp(14.2857142857px, 1.3888888889vw, 20px);
}
.sub-fv .inner .p-title__main {
  font-weight: 500;
  font-size: clamp(20.8333333333px, 1.7361111111vw, 25px);
  letter-spacing: 0.14rem;
}
.sub-fv .inner .p-title__en {
  display: inline-block;
  font-family: "Noto Serif JP", serif !important;
  font-family: initial;
  font-size: clamp(13.9130434783px, 1.1111111111vw, 16px);
  margin-top: clamp(6.993006993px, 0.6944444444vw, 10px);
}

.section.bg_pattern {
  position: relative;
}
.section.bg_pattern::before, .section.bg_pattern::after {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: clamp(209.7902097902px, 20.8333333333vw, 300px);
}
.section.bg_pattern::before {
  z-index: -1;
  background-image: linear-gradient(rgba(255, 255, 255, 0), rgb(255, 255, 255));
}
.section.bg_pattern::after {
  z-index: -2;
  background-repeat: no-repeat;
  background-position: top left;
  background-size: cover;
  opacity: 0.3;
}

.opacity-75 {
  opacity: 0.75;
}
.opacity-50 {
  opacity: 0.5;
}
.opacity-25 {
  opacity: 0.25;
}

.js_object_fit img {
  height: 100%;
}
.js_object_fit.-contain img {
  object-fit: contain;
}
.js_object_fit.-cover img {
  object-fit: cover;
}

.keep_ratio {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.keep_ratio img {
  width: 100%;
  height: 100%;
}
.keep_ratio::before {
  content: "";
  display: block;
  /* 比率を指定 */
  padding-top: 56.25%; /* 16:9 */
}
.keep_ratio span {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.ellipsis__s {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.ellipsis__m {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  /*IE対策*/
  line-height: 1.6;
  height: 3.2em;
}
.ellipsis__m-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  /*IE対策*/
  line-height: 1.6;
  height: 4.8em;
}
.ellipsis__m-4 {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  /*IE対策*/
  line-height: 1.6;
  height: 6.4em;
}

.accordion {
  text-align: center;
}
.accordion .ac_title,
.accordion .ac_close {
  cursor: pointer;
}
.accordion .ac_inner {
  display: none;
}

.tab-menu .tab-buttons {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}
.tab-menu .tab-buttons .tab-button {
  cursor: pointer;
  transition: 0.1s ease;
}
.tab-menu .tab-buttons .tab-button.is-active {
  color: #ffffff !important;
  background-color: #3A9943 !important;
}
.tab-menu.is-inactive-init .tab-button.is-active {
  background-color: transparent !important;
  color: inherit !important;
  font-weight: normal !important;
}
.tab-menu.is-inactive-init .tab-button.is-active::after {
  display: none !important;
}
.tab-menu .tab-contents {
  position: relative;
  overflow: visible;
  transition: height 0.2s ease;
}
.tab-menu .tab-contents .tab-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 0;
}
.tab-menu .tab-contents .tab-content.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  z-index: 1;
}
.tab-menu .tab-contents .tab-content.is-fading-out {
  opacity: 0;
  transform: translateY(10px);
}
.tab-menu .tab-content-list__more {
  width: 100%;
  text-align: center;
  margin-top: clamp(27.972027972px, 2.7777777778vw, 40px);
  transition: opacity 0.4s ease;
}
.tab-menu .tab-content-list__more.is-hidden {
  opacity: 0;
  pointer-events: none;
}
.tab-menu.no-animation .tab-contents {
  transition: none;
}
.tab-menu.no-animation .tab-content {
  transition: none;
  transform: none;
}
.tab-menu.no-animation .tab-content.is-active {
  transform: none;
}
.tab-menu.no-animation .tab-content.is-fading-out {
  transition: none;
}

@media (max-width: 1199px) {
  html {
    scroll-padding-top: 120px;
  }
}
@media (max-width: 767px) {
  html {
    scroll-padding-top: 80px;
  }
}

header#main_header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 120px;
  transition: opacity 0.2s ease, height 0.2s ease !important;
}
@media (max-width: 767px) {
  header#main_header {
    height: 80px;
  }
}
header#main_header.is-small .inner .logo {
  width: 220px;
}
header#main_header .inner {
  position: relative;
  z-index: 99;
  display: flex;
  align-items: center;
  width: 100%;
  padding-top: clamp(10px, 0.8333333333vw, 12px);
  padding-inline: clamp(15px, 1.6666666667vw, 24px);
  margin: 0 auto;
  font-size: clamp(13.6363636364px, 1.0416666667vw, 15px);
  border-bottom: none;
  transition: 0.2s;
}
@media (max-width: 1199px) {
  header#main_header .inner {
    padding-top: 12px;
  }
}
header#main_header .inner .contents {
  text-align: left;
}
header#main_header .inner > .logo {
  flex-shrink: 0;
  display: block;
  transition: 0.2s;
  width: clamp(155.1724137931px, 18.75vw, 270px);
}
@media (max-width: 1199px) {
  header#main_header .inner > .logo {
    position: relative;
    z-index: 100;
    width: 164px;
  }
}
header#main_header .inner > .logo:hover {
  opacity: 1;
}
header#main_header .inner > .logo img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
header#main_header .inner .head_nav {
  margin-left: auto;
  padding-right: clamp(16px, 1.6666666667vw, 24px);
  /* 一時的にナビを完全に非表示にする */
}
@media (max-width: 1199px) {
  header#main_header .inner .head_nav {
    position: fixed;
    z-index: 99;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    padding-right: 0;
    background: #3A9943;
    visibility: hidden;
    opacity: 0;
    /*動き*/
    transition: 0.2s cubic-bezier(0.47, 0, 0.745, 0.715);
  }
}
@media (max-width: 767px) {
  header#main_header .inner .head_nav {
    padding-bottom: calc(env(safe-area-inset-bottom) + 40px);
  }
}
@media (max-width: 1199px) {
  header#main_header .inner .head_nav.panelactive {
    opacity: 1;
    visibility: visible;
  }
  body.resize-lock header#main_header .inner .head_nav {
    display: none !important;
  }
}
header#main_header .inner .head_nav__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-weight: 500;
  transition: 0.2s;
}
@media (max-width: 1199px) {
  header#main_header .inner .head_nav__inner {
    position: fixed;
    top: 56px;
    flex-direction: column;
    justify-content: flex-start;
    padding: 0 24px 24px;
    height: calc(100dvh - 56px);
    overflow: hidden;
    overflow-y: auto;
  }
}
header#main_header .inner .head_nav__inner a:hover {
  opacity: initial;
}
header#main_header .inner .head_nav__inner .sns {
  display: none;
  gap: clamp(27.972027972px, 2.7777777778vw, 40px);
  align-items: center;
}
@media (max-width: 1199px) {
  header#main_header .inner .head_nav__inner .sns {
    display: flex;
  }
}
header#main_header .inner .head_nav__inner .sns img {
  vertical-align: middle;
}
header#main_header .inner .head_nav__inner .sns .icon-x {
  width: 28px;
}
header#main_header .inner .head_nav__inner .sns .icon-youtube {
  width: 80px;
}
header#main_header .inner .head_nav__inner .btm_banner {
  display: none;
  margin-top: clamp(22.3776223776px, 2.2222222222vw, 32px);
}
@media (max-width: 1199px) {
  header#main_header .inner .head_nav__inner .btm_banner {
    display: block;
  }
}
header#main_header .inner .head_nav__main {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: clamp(19.3103448276px, 0.9722222222vw, 28px);
  padding: 0;
}
@media (max-width: 1199px) {
  header#main_header .inner .head_nav__main {
    flex-direction: column;
    width: 100%;
    gap: 0;
    margin-bottom: clamp(22.3776223776px, 2.2222222222vw, 32px);
  }
}
header#main_header .inner .head_nav__main > li {
  position: relative;
  display: flex;
  flex-direction: column;
  color: #3A9943;
  font-size: 14px;
}
@media (max-width: 1199px) {
  header#main_header .inner .head_nav__main > li {
    width: 100%;
  }
}
header#main_header .inner .head_nav__main > li a {
  position: relative;
  display: block;
}
@media (max-width: 1199px) {
  header#main_header .inner .head_nav__main > li a {
    width: 100%;
  }
}
header#main_header .inner .head_nav__main > li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background-color: #51be41;
  transform: scaleX(0);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: left;
}
@media (max-width: 1199px) {
  header#main_header .inner .head_nav__main > li a::after {
    content: none;
  }
}
header#main_header .inner .head_nav__main > li a.current::after, header#main_header .inner .head_nav__main > li a:hover::after {
  transform: scaleX(1);
  opacity: 1;
}
header#main_header .inner .head_nav__main > li a.nav_contact {
  display: flex;
  align-items: center;
}
header#main_header .inner .head_nav__main > li a.nav_contact i {
  display: inline-block;
  width: 22px;
  margin-left: 4px;
}
header#main_header .inner .head_nav__main > li a.nav_contact i img {
  vertical-align: middle;
}
@media (max-width: 1199px) {
  header#main_header .inner .head_nav__main > li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.31);
  }
}
header#main_header .inner .head_nav__main > li a {
  display: inline-block;
  width: 100%;
  padding: 0;
  color: #ffffff;
}
@media (max-width: 1199px) {
  header#main_header .inner .head_nav__main > li a {
    color: #ffffff;
    padding: 8px;
  }
}
header#main_header .inner .head_nav__main > li a.active {
  border-bottom: none;
}
header#main_header .inner .head_nav__main > li .menu-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header#main_header .inner .head_nav__main > li .menu-row a {
  flex: 1;
  text-decoration: none;
}
header#main_header .inner .head_nav__main > li .menu-row .submenu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: 1em;
  padding-inline: 0.5em;
  line-height: 1;
  appearance: none;
}
header#main_header .inner .head_nav__main > li .menu-row .submenu-toggle .icon-toggle {
  width: 18px;
  height: 18px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("../../assets/img/common/icon-plus.svg");
  mask-image: url("../../assets/img/common/icon-plus.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}
header#main_header .inner .head_nav__main > li.has-submenu.open .menu-row .submenu-toggle .icon-toggle {
  display: inline-block;
  background-color: #ffffff;
  -webkit-mask-image: url("../../assets/img/common/icon-minus.svg");
  mask-image: url("../../assets/img/common/icon-minus.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}
header#main_header .inner .head_nav__main > li.has-submenu.pc-submenu .submenu {
  position: absolute;
  top: calc(120px - (clamp(35.7142857143px, 3.4722222222vw, 50px) + 18px));
  display: flex;
  justify-content: center;
  max-height: initial;
  left: 50%;
  margin: auto;
  width: 200vw;
  transform: translateX(-50%);
  overflow: visible;
}
header#main_header .inner .head_nav__main > li.has-submenu.pc-submenu .submenu .submenu_list {
  display: flex;
  gap: clamp(28.5714285714px, 2.7777777778vw, 40px);
  align-items: center;
  justify-content: center;
  width: 100%;
  height: clamp(35.7142857143px, 3.4722222222vw, 50px);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
  animation-delay: 0.2s;
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1);
}
header#main_header .inner .head_nav__main > li.has-submenu.pc-submenu .submenu .submenu_list::before {
  content: "";
  position: absolute;
  bottom: 99%;
  left: 50%;
  transform: translateX(-50%);
  border-style: solid;
  border-width: 0 12px 22px 12px;
  border-color: transparent transparent rgba(255, 255, 255, 0.9) transparent;
}
header#main_header .inner .head_nav__main > li.has-submenu.pc-submenu .submenu .submenu_list li a {
  color: #222222;
  padding: 0;
}
header#main_header .inner .head_nav__main > li.has-submenu.pc-submenu .submenu .submenu_list li a::after {
  display: none;
}
header#main_header .inner .head_nav__main > li.has-submenu.pc-submenu .submenu .submenu_list li a:hover, header#main_header .inner .head_nav__main > li.has-submenu.pc-submenu .submenu .submenu_list li a.section-current {
  color: #3A9943;
}
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
header#main_header .inner .head_nav__main > li .submenu {
  display: none;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s cubic-bezier(0.39, 0.575, 0.565, 1);
}
header#main_header .inner .head_nav__main > li .submenu li a {
  padding: 0.5em calc(1em + 8px);
  display: block;
  text-decoration: none;
}
@media (max-width: 1199px) {
  header#main_header .inner .head_nav__main > li .submenu li:last-child {
    margin-bottom: 8px;
  }
}
header#main_header .inner .head_nav__main > li .submenu.open {
  max-height: 500px;
  transition-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
}
@media (max-width: 1199px) {
  header#main_header .inner .head_nav__main > li .menu-row .submenu-toggle {
    display: inline-block;
  }
  header#main_header .inner .head_nav__main > li .submenu {
    display: inline-block;
  }
}

.bg_shadow {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  height: 80px;
  mix-blend-mode: multiply;
  opacity: 0;
  transform: translateY(-20px);
  animation: fadeDown 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
  animation-delay: 0.5s;
}
.bg_shadow::before {
  display: inline-block;
  content: "";
  background: rgba(0, 105, 53, 0.75) 15%;
  background: linear-gradient(to bottom, rgba(0, 105, 53, 0.75) 15%, rgba(0, 105, 53, 0) 100%);
  width: 100%;
  height: 100%;
}

@keyframes fadeDown {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.openbtn {
  display: none;
}
@media (max-width: 1199px) {
  .openbtn {
    display: inline-block;
    position: absolute;
    z-index: 100;
    top: 14px;
    bottom: 0;
    right: 24px;
    width: 22px;
    height: 16px;
    margin: auto;
    cursor: pointer;
    /*×に変化*/
  }
  .openbtn span {
    display: inline-block;
    transition: all 0.3s;
    position: absolute;
    left: 0;
    height: 2px;
    border-radius: 2px;
    background-color: #ffffff;
    width: 100%;
  }
  .openbtn span:nth-of-type(1) {
    top: 0;
  }
  .openbtn span:nth-of-type(2) {
    top: 7px;
  }
  .openbtn span:nth-of-type(3) {
    top: 14px;
  }
  .openbtn.active span:nth-of-type(1) {
    top: 0;
    left: 0;
    transform: translateY(8px) rotate(-45deg);
  }
  .openbtn.active span:nth-of-type(2) {
    opacity: 0;
  }
  .openbtn.active span:nth-of-type(3) {
    top: 16px;
    left: 0;
    transform: translateY(-8px) rotate(45deg);
  }
}

/*====================================================
    footer
======================================================*/
footer .contents__f-contact .inner .container {
  margin-top: 0;
}
footer .contents__f-contact .inner .container__box {
  display: flex;
  flex-direction: column;
  align-items: center;
}
footer .contents__f-contact .inner .container__box .title {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(13.986013986px, 1.3888888889vw, 20px);
  font-weight: 400;
  color: #3A9943;
  text-align: center;
}
footer .contents__f-contact .inner .container__box .contact_info {
  display: flex;
  align-items: center;
  gap: clamp(11.1888111888px, 1.1111111111vw, 16px);
  margin-top: clamp(14.5454545455px, 1.1111111111vw, 16px);
}
@media (max-width: 767px) {
  footer .contents__f-contact .inner .container__box .contact_info {
    flex-direction: column;
    margin-top: 20px;
  }
}
footer .contents__f-contact .inner .container__box .contact_info__icon {
  display: flex;
  gap: clamp(13.986013986px, 1.3888888889vw, 20px);
}
footer .contents__f-contact .inner .container__box .contact_info__icon img {
  width: clamp(72.7272727273px, 5.5555555556vw, 80px);
  vertical-align: bottom;
}
@media (max-width: 767px) {
  footer .contents__f-contact .inner .container__box .contact_info__phone {
    text-align: center;
  }
}
footer .contents__f-contact .inner .container__box .contact_info__phone .num {
  font-size: clamp(36.9230769231px, 3.3333333333vw, 48px);
  line-height: 1;
}
footer .contents__f-contact .inner .container__box .contact_info__phone .time {
  font-size: clamp(16.7832167832px, 1.6666666667vw, 24px);
}
@media (max-width: 767px) {
  footer .contents__f-contact .inner .container__box .contact_info__phone .time {
    margin-top: 4px;
  }
}
footer .contents__f-contact .inner .container__box .webpho_banner {
  width: 100%;
  margin-top: clamp(27.972027972px, 2.7777777778vw, 40px);
}
footer .contents__f-contact .inner .container__box .webpho_banner img {
  vertical-align: bottom;
}
footer .f-container {
  color: #ffffff;
  background-color: #3A9943;
}
footer .f-container .inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: calc(960px + clamp(21.8181818182px, 1.6666666667vw, 24px) * 2);
  margin: 0 auto;
  padding-block: clamp(35px, 3.8888888889vw, 56px) clamp(29.0909090909px, 2.2222222222vw, 32px);
  padding-inline: clamp(21.8181818182px, 1.6666666667vw, 24px);
}
footer .f-container .inner a {
  color: #ffffff;
}
footer .f-container .inner .footer_info {
  display: flex;
  gap: clamp(36.6666666667px, 6.1111111111vw, 88px);
}
@media (max-width: 767px) {
  footer .f-container .inner .footer_info {
    flex-direction: column;
  }
}
footer .f-container .inner .footer_info__profile {
  flex-shrink: 0;
}
footer .f-container .inner .footer_info__profile .logo {
  width: clamp(309.0909090909px, 23.6111111111vw, 340px);
}
footer .f-container .inner .footer_info__profile .add {
  font-size: clamp(13.6363636364px, 1.0416666667vw, 15px);
  margin-top: clamp(8.3916083916px, 0.8333333333vw, 12px);
}
footer .f-container .inner .footer_info__nav {
  margin-top: clamp(16.7832167832px, 1.6666666667vw, 24px);
}
@media (max-width: 767px) {
  footer .f-container .inner .footer_info__nav {
    margin-top: 0;
  }
}
footer .f-container .inner .footer_info__nav ul {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  align-items: center;
  gap: clamp(10px, 1.1111111111vw, 16px) clamp(17.1428571429px, 1.6666666667vw, 24px);
}
footer .f-container .inner .footer_info__nav ul li {
  font-size: clamp(14.2857142857px, 1.0416666667vw, 15px);
}
footer .f-container .inner .footer_info__nav ul li img {
  vertical-align: middle;
}
footer .f-container .inner .footer_info__nav ul li .nav_contact {
  display: flex;
}
footer .f-container .inner .footer_info__nav ul li .nav_contact i {
  display: inline-block;
  width: clamp(13.986013986px, 1.3888888889vw, 20px);
  margin-left: 4px;
}
footer .f-container .inner .footer_info__nav .sns {
  display: flex;
  gap: clamp(22.3776223776px, 2.2222222222vw, 32px);
  align-items: center;
  margin-top: clamp(16.7832167832px, 1.6666666667vw, 24px);
}
footer .f-container .inner .footer_info__nav .sns .icon-x {
  width: clamp(25px, 2.0833333333vw, 30px);
}
footer .f-container .inner .footer_info__nav .sns .icon-youtube {
  width: clamp(66.6666666667px, 5.5555555556vw, 80px);
}
footer .f-container .inner .footer_bottom {
  display: flex;
  justify-content: space-between;
  font-size: clamp(10.9090909091px, 0.8333333333vw, 12px);
  width: 100%;
  padding-top: 16px;
  margin-top: 16px;
  border-top: 1px solid #ffffff;
}
@media (max-width: 767px) {
  footer .f-container .inner .footer_bottom {
    flex-direction: column;
    padding-top: 24px;
    margin-top: 24px;
  }
  footer .f-container .inner .footer_bottom .copyright {
    order: 2;
    font-size: 9px;
  }
  footer .f-container .inner .footer_bottom .btm_menu {
    order: 1;
    margin-bottom: 14px;
  }
}
footer .f-container .inner .footer_bottom .btm_menu a:not(:first-child) {
  margin-left: 16px;
}
footer .f-container .inner .footer_menu {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1000px;
}
@media (max-width: 767px) {
  footer .f-container .inner .footer_menu {
    flex-direction: column;
  }
}
footer .f-container .inner .footer_menu .logo {
  width: clamp(111.8881118881px, 11.1111111111vw, 160px);
}
footer .f-container .inner .footer_menu .footer_menu_links {
  display: flex;
  align-items: center;
  font-size: clamp(10.8333333333px, 0.9027777778vw, 13px);
  margin-left: clamp(22.3776223776px, 2.2222222222vw, 32px);
}
@media (max-width: 767px) {
  footer .f-container .inner .footer_menu .footer_menu_links {
    margin-top: 16px;
    margin-left: 0;
  }
}
footer .f-container .inner .footer_menu .footer_menu_links ul {
  display: flex;
}
footer .f-container .inner .footer_menu .footer_menu_links ul li {
  font-weight: 500;
  line-height: 1.1;
}
@media (max-width: 767px) {
  footer .f-container .inner .footer_menu .footer_menu_links ul li {
    line-height: normal;
  }
}
footer .f-container .inner .footer_menu .footer_menu_links ul li:not(:first-child) {
  padding-left: 12px;
  margin-left: 12px;
  border-left: 1px solid #ffffff;
}

#pagetop {
  display: none;
  position: fixed;
  bottom: 2.6041666667vw;
  right: 2.6041666667vw;
  border-radius: 50px;
  text-align: center;
  z-index: 99;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  background-color: #222222;
  bottom: 0.6944444444vw;
  right: 0.6944444444vw;
}
@media (min-width: 1441px) {
  #pagetop {
    bottom: 10px;
    right: 10px;
  }
}
#pagetop a {
  color: #ffffff;
  display: block;
  line-height: 2;
  font-size: clamp(24px / 1.1, 1.6666666667vw, 24px);
  width: clamp(50px / 1.1, 3.4722222222vw, 50px);
  height: clamp(50px / 1.1, 3.4722222222vw, 50px);
}

/*====================================================
    main
======================================================*/
/*====================================================
    ページネーション
======================================================*/
.navigation {
  text-align: center;
  margin-top: clamp(22.3776223776px, 2.2222222222vw, 32px);
}
.navigation .screen-reader-text {
  display: none;
}
.navigation .page-numbers {
  display: inline-block;
  padding: 3px 10px;
  font-size: clamp(11.1888111888px, 1.1111111111vw, 16px);
  font-weight: 500;
  margin-left: 10px;
  color: #222222;
  background-color: #ffffff;
  border-radius: 4px;
}
.navigation .page-numbers:not(.dots) {
  border: 1px solid rgba(199, 199, 199, 0.8);
}
.navigation .page-numbers:not(.current):not(.dots) {
  transition: all 0.2s ease;
}
.navigation .page-numbers:not(.current):not(.dots):hover {
  opacity: 1;
  color: #fff;
  background-color: #3A9943;
}
.navigation .current {
  color: #fff;
  background-color: #3A9943;
}

/*====================================================
    Opening Animation
======================================================*/
/*====================================================
    Display Animation（オープニング削除済み）
======================================================*/
main,
footer {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s cubic-bezier(0.23, 1, 0.32, 1), transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}
body.loaded main,
body.loaded footer {
  opacity: 1;
  transform: translateY(0);
}
body.loaded-no-header-fade main,
body.loaded-no-header-fade footer {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.3s ease, transform 0.3s ease-out;
}
body.page-leave main,
body.page-leave footer {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.3s ease, transform 0.3s ease-out;
}

main.animating,
footer.animating {
  overflow: hidden;
}

.copy-line span {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%);
  animation: fadeInChar 0.6s ease forwards;
}

@keyframes fadeInChar {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-target {
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}
.fade-target.fade-out {
  opacity: 0 !important;
  pointer-events: none;
}

body.loaded .fade-target {
  opacity: 1;
  pointer-events: auto;
}

.no-scroll {
  overflow: hidden;
  touch-action: none;
}

.sm-list {
  overflow: hidden;
  transition: height 0.3s ease;
}

.sm-item {
  display: block;
}

.sm-btn {
  display: block;
  max-height: 5em;
  overflow: hidden;
  transition: opacity 0.1s ease, max-height 0.1s ease, margin 0.1s ease;
}

.is-hide {
  display: none !important;
}

.sub-fv {
  background: url("../../assets/img/company/fv-img.webp") no-repeat center;
  background-size: cover;
}

.contents__privacy .inner {
  padding-bottom: 0;
}
.contents__privacy .inner .heading .lead {
  font-size: clamp(15px, 1.25vw, 18px);
  text-align: justify;
}
.contents__privacy .inner .container {
  margin-top: 0;
  padding-bottom: clamp(45.7142857143px, 4.4444444444vw, 64px);
  border-bottom: 1px solid #e8e8e8;
}
.contents__privacy .inner .container__box {
  line-height: 1.8;
}
.contents__privacy .inner .container__box h2 {
  font-size: clamp(13.986013986px, 1.3888888889vw, 20px);
  margin-block: clamp(33.3333333333px, 2.7777777778vw, 40px) clamp(6.6666666667px, 0.5555555556vw, 8px);
  font-weight: bold;
}
.contents__privacy .inner .container__box p {
  margin-bottom: clamp(13.986013986px, 1.3888888889vw, 20px);
  line-height: 1.8;
}
.contents__privacy .inner .container__box ul {
  padding-left: clamp(12.5874125874px, 1.25vw, 18px);
  margin-bottom: clamp(13.986013986px, 1.3888888889vw, 20px);
}
.contents__privacy .inner .container__box ul li {
  list-style: disc;
  list-style-position: inside;
  line-height: 1.8;
  margin-bottom: 5px;
}
.contents__privacy .inner .container__box address {
  font-style: normal;
  background-color: #f0f0f0;
  padding: clamp(16.6666666667px, 1.3888888889vw, 20px) clamp(20px, 1.6666666667vw, 24px);
  border-radius: 4px;
}
.contents__privacy .inner .container__box address p {
  margin-bottom: 10px;
}
.contents__privacy .inner .container__box address p:last-of-type {
  margin-bottom: 0;
}
.contents__privacy .inner .container__box address a {
  color: #007acc;
  text-decoration: underline;
}
.contents__privacy .inner .container__box address a:hover {
  text-decoration: none;
}/*# sourceMappingURL=privacy.css.map */