@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
@import "base/normalize.css";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

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

img {
  vertical-align: bottom;
}

button {
  border: none;
  background: none;
  outline: none;
  cursor: pointer;
}

/* ==========================================================================
	Base
============================================================================= */
html, body {
  position: relative;
  background: #fff;
  color: #111;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", Meiryo, メイリオ, Osaka, "MS PGothic", arial, helvetica, sans-serif;
  font-size: clamp(13px, 8.3333333333px + 0.6076388889vw, 20px);
  font-weight: 800;
  line-height: 2;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
}

html {
  overflow: auto;
}

body {
  overflow: hidden;
}

:root {
  --spacing:0.06em;
}

* {
  box-sizing: border-box;
}

a {
  color: #111;
  transition: 0.5s;
  text-decoration: none;
  cursor: pointer;
}

.is-pc a[href*="tel:"] {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  pointer-events: none;
}

.grecaptcha-badge {
  bottom: 120px !important;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .grecaptcha-badge {
    bottom: 90px !important;
  }
}

@font-face {
  font-family: "LINESeedJP";
  src: local("※"), url("../../assets/fonts/LINESeedJP_OTF_Eb.woff2") format("woff2"), url("../../assets/fonts/LINESeedJP_OTF_Eb.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}
/* ==========================================================================
   共通レイアウト設定
============================================================================= */
/* ==============================
// container
// コンテンツ幅
================================= */
.l-container {
  width: 85%;
  max-width: 1366px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .l-container {
    width: 88%;
  }
}

.l-container.w1110 {
  max-width: 1110px;
}

.l-container.w1000 {
  max-width: 1000px;
}

.l-container.w900 {
  max-width: 900px;
}

/* ==============================
// main
// ヘッダーナビより下の共通コンテンツラップ
// ヘッダーの高さ分コンテンツの位置を下げるためだけに使用
================================= */
.l-main {
  /* headerをfixedにするときは有効化
  padding-top:$header__heightPc; 
  @include mqMax(smallHeader){
  	padding-top:$header__heightSp;
  } */
}

/* ==============================
// anchor
// アンカーリンクのジャンプ先をヘッダーの高さ分下げるために使用
// ページ内遷移であればJSの処理で自動で移動距離を制御するため不要だが、
// 違うページのアンカーを指定している場合、垂直位置指定がレンダリングのスピードでずれるため使用する
================================= */
.l-anchor {
  margin-top: -100px;
  padding-top: 100px;
}
@media screen and (max-width: 1023px) {
  .l-anchor {
    margin-top: -80px;
    padding-top: 80px;
  }
}

/* ==============================
// section
// 下層ページの章ごとのスペース
// section.l-section のほか　div.l-sectionなど、見出しのないブロックにも使う
================================= */
.l-section {
  position: relative;
  padding-top: clamp(80px, 53.3333333333px + 3.4722222222vw, 120px);
  padding-bottom: clamp(80px, 53.3333333333px + 3.4722222222vw, 120px);
}

/* ==============================
// safeArea
// スマホでセーフエリアのある機種の場合の余白設定
================================= */
@media screen and (max-width: 767px) {
  .l-safeArea {
    padding-bottom: env(safe-area-inset-bottom);
  }
}

.l-txImg {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(40px, 16.6666666667px + 3.0381944444vw, 75px);
}
@media screen and (max-width: 767px) {
  .l-txImg {
    flex-direction: column-reverse;
  }
}

.l-txImg__text {
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .l-txImg__text {
    width: 100%;
  }
}

.l-txtArea {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 5.3333333333px + 1.3888888889vw, 32px);
}
.l-txtArea > * {
  width: 100%;
}

.l-txImg__photo {
  width: calc(50vw - clamp(40px, 16.6666666667px + 3.0381944444vw, 75px));
  margin-right: calc(50% - 50vw);
}
@media screen and (max-width: 767px) {
  .l-txImg__photo {
    margin-right: 0;
    width: 100%;
  }
}

/* =====左右カラム===== */
.l-column {
  position: relative;
  width: 100%;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  z-index: 3;
}
@media screen and (max-width: 1023px) {
  .l-column {
    display: block;
    padding-top: 0 !important;
  }
}

.pin-spacer {
  z-index: 1;
}

@media screen and (max-width: 1023px) {
  .l-column > .pin-spacer {
    height: auto !important;
    width: 100% !important;
    margin: 60px auto 60px !important;
    padding: 0 7.5% 60px !important;
    border-bottom: 1px solid #ddd;
  }
}

.l-column__side {
  flex-shrink: 0;
  width: clamp(200px, 166.6666666667px + 4.3402777778vw, 250px);
  left: clamp(40px, 33.3333333333px + 0.8680555556vw, 50px);
  z-index: 2;
}
.l-column__side::-webkit-scrollbar {
  height: 4px;
}
.l-column__side::-webkit-scrollbar-thumb {
  background: #ddd;
  border-radius: 10px;
}
.l-column__side::-webkit-scrollbar-track {
  background: #ddd;
  border-radius: 10px;
}
@media screen and (max-width: 1023px) {
  .l-column__side {
    padding-left: auto !important;
    width: 100% !important;
    position: relative !important;
    left: 0 !important;
    top: 0 !important;
    max-height: none !important;
    height: auto !important;
  }
}
@media screen and (max-width: 1023px) {
  .l-column__side #js-changeNavList {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 10px;
  }
}
.l-column__side li {
  margin-bottom: clamp(10px, 6.6666666667px + 0.4340277778vw, 15px);
}
@media screen and (max-width: 1023px) {
  .l-column__side li {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 0;
  }
}
.l-column__side li a {
  transition: 0.3s;
}
.l-column__side li a span {
  transition: 0.3s;
}
.l-column__side li a:hover span {
  color: #8FC320;
}
@media screen and (max-width: 1023px) {
  .l-column__side li a {
    width: 100%;
    display: flex;
    align-items: center;
  }
}
.l-column__side a {
  text-decoration: none;
  position: relative;
  transition: color 0.3s, padding-left 0.3s;
  white-space: nowrap;
  display: flex;
  align-items: baseline;
}
@media screen and (max-width: 1023px) {
  .l-column__side a {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}
@media screen and (max-width: 767px) {
  .l-column__side a {
    font-weight: 600;
  }
  .l-column__side a::before {
    left: 0 !important;
    opacity: 1 !important;
    background-color: #218636 !important;
  }
}
.l-column__side a.is-active {
  color: #8FC320;
}

.l-column__main {
  flex-grow: 1;
  width: calc(100% - 200px);
  z-index: 1;
}
@media screen and (max-width: 1023px) {
  .l-column__main {
    width: 100%;
  }
}

.l-columnLR__center {
  align-items: stretch;
}
.l-columnLR__center > div {
  height: auto;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.l-column__h2 {
  font-size: clamp(11px, 10.3333333333px + 0.0868055556vw, 12px);
  line-height: 1;
  padding-bottom: clamp(5px, 0.3333333333px + 0.6076388889vw, 12px);
  margin-bottom: clamp(20px, 16.6666666667px + 0.4340277778vw, 25px);
  position: relative;
}

.l-column__h2::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
}
@media screen and (max-width: 767px) {
  .l-column__h2::before {
    height: 1px;
  }
}

.nav__link-01 {
  display: flex;
  align-items: baseline;
  gap: clamp(5px, 1.6666666667px + 0.4340277778vw, 10px);
}

.nav__link-icon {
  font-size: clamp(12px, 10.6666666667px + 0.1736111111vw, 14px);
  color: #8FC320;
  font-weight: 600;
  width: clamp(28px, 26.6666666667px + 0.1736111111vw, 30px);
  text-align: left;
  line-height: 1.4;
  font-family: "LINESeedJP", "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", Meiryo, メイリオ, Osaka, "MS PGothic", arial, helvetica, sans-serif;
  letter-spacing: 0;
}

.nav__link-text {
  font-size: clamp(12px, 10.6666666667px + 0.1736111111vw, 14px);
  width: calc(100% - clamp(28px, 26.6666666667px + 0.1736111111vw, 30px));
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  line-height: 1.4;
}

.l-table * {
  border-collapse: collapse;
  width: 100%;
}

.l-table table {
  border-top: 1px solid #ddd;
}

.l-table tr {
  display: flex;
  align-items: stretch;
}
@media screen and (max-width: 767px) {
  .l-table tr {
    flex-direction: column;
  }
}

.l-table th,
.l-table td {
  padding: clamp(16px, 5.3333333333px + 1.3888888889vw, 32px) clamp(0px, -16px + 2.0833333333vw, 24px);
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 5.3333333333px + 1.3888888889vw, 32px);
  height: auto;
  text-align: left;
}
.l-table th > *,
.l-table td > * {
  width: 100%;
}

.l-table th {
  width: clamp(120px, 93.3333333333px + 3.4722222222vw, 160px);
  color: #8FC320;
  border-bottom: 1px solid #ddd;
}
@media screen and (max-width: 767px) {
  .l-table th {
    width: 100%;
    border-bottom: 0px solid #ddd;
    padding: clamp(16px, 5.3333333333px + 1.3888888889vw, 32px) clamp(0px, -16px + 2.0833333333vw, 24px) 0;
  }
}

.l-table td {
  width: calc(100% - clamp(120px, 93.3333333333px + 3.4722222222vw, 160px));
  color: #666;
  border-bottom: 1px solid #ddd;
}
@media screen and (max-width: 767px) {
  .l-table td {
    width: 100%;
    padding: clamp(8px, -8px + 2.0833333333vw, 32px) clamp(0px, -16px + 2.0833333333vw, 24px) clamp(16px, 5.3333333333px + 1.3888888889vw, 32px);
  }
}

/*
■　使い方

編集ツール：https://icomoon.io/app/#/select
１　icomoonにアクセスする
２　左上の「import icons」を押して assets>font>selection.json を選択
３　ここ（https://www.granfairs.com/blog/staff/howto-create-iconfont）の
　　STEP1. オリジナルアイコンを準備する　〜　STEP5. フォントファイルを生成　を参考に
　　アイコンフォントデータを編集・ダウンロード
４　ダウンロードしたファイルの「fonts」内のファイルと、selection.jsonを　assets>font　に全て入れる
５　<i class="icon-mail"></i>のような感じで使える

*/
@font-face {
  font-family: "icomoon";
  src: url("./../../assets/fonts/icomoon.eot");
  src: url("./../../assets/fonts/icomoon.eot") format("embedded-opentype"), url("./../../assets/fonts/icomoon.ttf") format("truetype"), url("./../../assets/fonts/icomoon.woff") format("woff"), url("./../../assets/fonts/icomoon.svg") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
[class^=icon-], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  /* speak: none; */
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-arr-thin-r:before {
  content: "\e900";
}

.icon-dl:before {
  content: "\e901";
}

.icon-arr-thin-t:before {
  content: "\e902";
}

.icon-popup:before {
  content: "\e903";
}

.icon-tel:before {
  content: "\e904";
}

.icon-arr-b:before {
  content: "\e905";
}

.icon-arr-l:before {
  content: "\e906";
}

.icon-arr-r:before {
  content: "\e907";
}

.icon-arr-t:before {
  content: "\e908";
}

.icon-arr-thin-b:before {
  content: "\e909";
}

.icon-arr-thin-l:before {
  content: "\e90a";
}

.icon-mail:before {
  content: "\e90b";
}

.icon-checked:before {
  content: "\e90c";
}

.icon-pamph:before {
  content: "\e90d";
}

.icon-freeDial:before {
  content: "\e90e";
}

.icon-mailThin:before {
  content: "\e90f";
}

.icon-line:before {
  content: "\e910";
}

.icon-facebook:before {
  content: "\ea90";
}

.icon-instagram:before {
  content: "\ea92";
}

.icon-twitter:before {
  content: "\ea96";
}

/* ==========================================================================
	ボタンのモジュール
============================================================================= */
.btn {
  width: 100%;
  max-width: 380px;
  height: 55px;
  border-radius: 27px;
  border: 2px solid #218636;
  padding: 6px 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 0.06em;
  color: #218636;
}
@media (hover: hover) and (pointer: fine) {
  .btn:hover {
    opacity: 1;
    background: #218636;
  }
}
@media (hover: hover) and (pointer: fine) {
  .btn:hover {
    color: #fff;
  }
}
.btn i {
  margin-right: 0.4em;
}

.btnArea {
  margin: clamp(48px, 37.3333333333px + 1.3888888889vw, 64px) auto 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(16px, 10.6666666667px + 0.6944444444vw, 24px);
}

.btnArea a:hover .btnArea__icon {
  margin-right: -3px;
}

.btnArea__blank .btnArea__icon {
  transform: rotate(-45deg);
}

.btnArea__blank:hover .btnArea__icon {
  transform: rotate(-45deg) translateY(0px) translateX(3px);
  margin-right: 0;
}

.btnArea__red {
  background: #E60012 !important;
}

.btnArea__not {
  background: #ddd !important;
  cursor: not-allowed;
}

.btnArea__left {
  margin: clamp(48px, 37.3333333333px + 1.3888888889vw, 64px) auto 0 0;
  align-items: flex-start;
}

.btnArea__link {
  min-width: clamp(256px, 160px + 12.5vw, 400px);
  min-height: clamp(64px, 53.3333333333px + 1.3888888889vw, 80px);
  border-radius: clamp(32px, 26.6666666667px + 0.6944444444vw, 40px);
  padding: clamp(8px, 2.6666666667px + 0.6944444444vw, 16px) clamp(24px, 18.6666666667px + 0.6944444444vw, 32px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  background: linear-gradient(to right, #1F8636, #8FC328);
}

.btnArea__text {
  font-size: clamp(16px, 14.6666666667px + 0.1736111111vw, 18px);
  color: #fff;
}

.btnArea__icon {
  display: block;
  height: auto;
  line-height: 1;
  transition: 0.5s;
}

.btnArea__icon svg {
  width: 100%;
}

/* ==========================================================================
  メールフォームの共通モジュール
============================================================================= */
.form {
  /* エラー表示調整
  ----------------------------------------------------------------- */
}
.form table {
  width: 100%;
}
.form .form__item {
  margin-bottom: 30px;
  display: flex;
  align-items: flex-start;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .form .form__item {
    display: block;
    margin-bottom: 20px;
  }
}
.form dt, .form th {
  width: 18em;
  margin-bottom: 5px;
  line-height: 44px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .form dt, .form th {
    width: 100%;
    max-width: 100%;
    line-height: inherit;
    margin-bottom: 10px;
  }
}
.form dt span, .form th span {
  line-height: 1em;
  padding: 0.4em 0 0.5em;
  background: #218636;
  color: #fff;
  font-size: 14px;
  text-align: center;
  display: inline-block;
  width: 45px;
  margin: 7px 10px;
  float: right;
  border-radius: 2px;
}
@media screen and (max-width: 767px) {
  .form dt span, .form th span {
    float: none;
    font-size: 10px;
    line-height: 1.5em;
    margin: 0 0 0 5px;
    vertical-align: text-top;
  }
}
.form .required dt span,
.form .required th span {
  background: red;
}
.form dd, .form td {
  flex-grow: 1;
  margin: 0 20px;
}
@media screen and (max-width: 767px) {
  .form dd, .form td {
    display: block;
    margin: 0;
  }
}
.form th, .form td {
  padding-bottom: 30px;
}
.form input, .form textarea, .form select {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", Meiryo, メイリオ, Osaka, "MS PGothic", arial, helvetica, sans-serif;
  outline: none;
}
.form input[type=text],
.form input[type=tel],
.form input[type=email],
.form input[type=number],
.form input[type=date],
.form select,
.form textarea {
  width: 100%;
  background: #eeeeee;
  border: 2px solid transparent;
  border-radius: 3px;
  height: 44px;
  line-height: 44px;
  padding: 0 1em;
  font-size: 16px;
  -webkit-appearance: none;
  cursor: pointer;
}
.form input[type=text]::-moz-placeholder, .form input[type=tel]::-moz-placeholder, .form input[type=email]::-moz-placeholder, .form input[type=number]::-moz-placeholder, .form input[type=date]::-moz-placeholder, .form select::-moz-placeholder, .form textarea::-moz-placeholder {
  color: #C1C1C1;
}
.form input[type=text]::placeholder,
.form input[type=tel]::placeholder,
.form input[type=email]::placeholder,
.form input[type=number]::placeholder,
.form input[type=date]::placeholder,
.form select::placeholder,
.form textarea::placeholder {
  color: #C1C1C1;
}
.form input[type=text]:focus,
.form input[type=tel]:focus,
.form input[type=email]:focus,
.form input[type=number]:focus,
.form input[type=date]:focus,
.form select:focus,
.form textarea:focus {
  border-color: #218636;
  background: #f8f8f8;
}
.form select::-ms-expand {
  display: none;
}
.form .selectWrap {
  position: relative;
}
.form .selectWrap::after {
  content: "▼";
  position: absolute;
  right: 1em;
  top: 0.6em;
  pointer-events: none;
}
.form input[type=date],
.form .selectWrap {
  max-width: 15em;
}
.form label {
  cursor: pointer;
}
.form textarea {
  display: block;
  padding: 17px 14px;
  height: 200px;
  line-height: 1.75;
  resize: vertical;
}
.form span.wpcf7-list-item {
  display: block;
  margin: 10px 0;
}
.form .form__zipCode {
  margin-bottom: 10px;
}
.form .form__zipCode input {
  display: inline-block;
  width: 10em;
  margin-left: 10px;
}
.form .form__submit {
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 380px;
  height: 55px;
  border-radius: 27px;
  border: 2px solid #218636;
  padding: 6px 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
}
@media (hover: hover) and (pointer: fine) {
  .form .form__submit:hover {
    opacity: 1;
    background: #218636;
  }
}
.form .form__submit.js-disabled {
  border-color: #ddd;
  background: #ddd;
}
@media (hover: hover) and (pointer: fine) {
  .form .form__submit.js-disabled:hover {
    color: #218636;
    border-color: #ddd;
    background: #ddd;
  }
  .form .form__submit.js-disabled:hover input {
    color: #218636;
  }
}
.form .form__submit input {
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 0.06em;
  color: #218636;
  background: none;
  border: none;
  cursor: pointer;
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
}
@media (hover: hover) and (pointer: fine) {
  .form .form__submit input:hover {
    color: #fff;
  }
}
.form .form__submit input i {
  margin-right: 0.4em;
}
.form .wpcf7-spinner {
  display: none;
}
.form .form__submit + p {
  margin: 30px 0 0;
}
.form .form__acceptance {
  text-align: center;
  margin: 20px 0 40px;
}
.form .wpcf7-not-valid-tip {
  background: #ffe6ea;
  width: 100%;
  margin-top: 10px;
  color: #218636;
  border-radius: 3px;
  display: block;
  font-size: 11px;
  padding: 4px 10px 4px 10px;
}
.form div.wpcf7-mail-sent-ok {
  display: none !important;
}
.form .ui-datepicker {
  z-index: 10 !important;
}

/* ==========================================================================
  見出しのモジュール
============================================================================= */
.heading__left {
  align-items: flex-start !important;
}
.heading__left > span {
  text-align: left !important;
}

.heading__white {
  color: #fff !important;
}
.heading__white > span {
  color: #fff !important;
}
.heading__white > span::before {
  background-color: #fff !important;
}

.heading__Lv2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: clamp(32px, 20px + 1.5625vw, 50px);
  position: relative;
}
.heading__Lv2 > span {
  text-align: center;
}

.heading__Lv2-bk {
  font-size: clamp(48px, 13.3333333333px + 4.5138888889vw, 100px);
  font-family: "LINESeedJP", "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", Meiryo, メイリオ, Osaka, "MS PGothic", arial, helvetica, sans-serif;
  color: #8FC320;
  line-height: 1;
  position: absolute;
  letter-spacing: 0;
  z-index: 0;
  opacity: 0.1;
  top: calc(-1 * clamp(16px, 5.3333333333px + 1.3888888889vw, 32px));
}

.heading__Lv2-en {
  font-size: clamp(12px, 8.3333333333px + 0.4774305556vw, 17.5px);
  font-family: "LINESeedJP", "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", Meiryo, メイリオ, Osaka, "MS PGothic", arial, helvetica, sans-serif;
  color: #8FC320;
  line-height: 1.4;
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 14px;
  letter-spacing: 0;
}

.heading__Lv2-en::before {
  content: "";
  position: absolute;
  left: 0;
  width: 8px;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 4px;
  background-color: #8FC320;
}

.heading__Lv2-jp {
  font-size: clamp(32px, 6.6666666667px + 3.2986111111vw, 70px);
  line-height: 1.4;
}

.heading__Lv4 {
  font-size: clamp(20px, 6.6666666667px + 1.7361111111vw, 40px);
  line-height: 1.4;
  border-left: clamp(3px, 0.8333333333px + 0.2821180556vw, 6.25px) solid #8FC320;
  padding-left: clamp(15px, 11.6666666667px + 0.4340277778vw, 20px);
}

/* table
----------------------------------------------------------------- */
.table {
  transform: translate3d(0, 0, 0);
  display: table;
  table-layout: fixed;
  width: 100%;
  border-top: 1px dotted #e3e3e3;
}
.table .table-td, .table .table-th {
  display: table-cell;
  text-align: left;
  font-weight: 400;
  border-bottom: 1px dotted #e3e3e3;
}
.table .table-th {
  width: 210px;
  background-color: #f8f8f8;
  padding: 14px 20px 14px 22px;
}
.table .table-td {
  background-color: #fff;
  padding: 14px 24px;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .table {
    font-size: 0.9em;
    /*End @media */
  }
  .table .table-th {
    width: 8em;
    padding: 14px 0;
    text-align: center;
  }
}

.table-primary .table-th {
  width: 9em;
  background-color: #ffffff;
}
@media screen and (max-width: 767px) {
  .table-primary {
    /*End @media */
  }
  .table-primary .table-th {
    width: 7em;
  }
}

/* ==========================================================================
  ページ送りのモジュール
============================================================================= */
/* ==============================
// アーカイブページのページ送り
================================= */
.pagerArchive {
  text-align: center;
  margin: 60px 0 0;
}
.pagerArchive .wp-pagenavi span, .pagerArchive .wp-pagenavi a {
  display: inline-block;
  line-height: 40px;
  text-align: center;
  padding: 0 14px;
}
@media (hover: hover) and (pointer: fine) {
  .pagerArchive .wp-pagenavi span:hover, .pagerArchive .wp-pagenavi a:hover {
    border-color: #218636;
    color: #218636;
  }
}
.pagerArchive .wp-pagenavi span.current {
  background: #218636;
  color: #ffffff;
  border-color: #218636;
}

/* ==============================
// 記事詳細のページ送り
================================= */
.pagerSingle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 -10px;
}

.pagerSingle__wrap {
  overflow: visible;
}

.pagerSingle__item {
  max-width: 10em;
  width: 100%;
  margin: 0 10px;
}

.pagerSingle__item a {
  text-decoration: none;
  display: inline-block;
  color: #218636;
}

.pagerSingle__item a::before,
.pagerSingle__item a::after {
  font-family: "icomoon";
  position: static;
  display: inline-block;
  transition: 0.2s;
}

.pagerSingle__prev {
  text-align: right;
}
.pagerSingle__prev a::after {
  margin-left: 10px;
  content: "\e907";
}
@media (hover: hover) and (pointer: fine) {
  .pagerSingle__prev a:hover::after {
    transform: translateX(0.5em);
  }
}

.pagerSingle__list {
  text-align: center;
}

.pagerSingle__next {
  text-align: left;
}
.pagerSingle__next a::before {
  margin-right: 10px;
  content: "\e906";
}
@media (hover: hover) and (pointer: fine) {
  .pagerSingle__next a:hover::before {
    transform: translateX(-0.5em);
  }
}

/* ==========================================================================
  汎用リスト用モジュール
============================================================================= */
.simpleList li::before {
  content: "・";
}

/* ==========================================================================
   シングルページなどに利用するシンプルなカテゴリリストのモジュール
============================================================================= */
.listSimpleCat__wrap {
  overflow: hidden;
}

.listSimpleCat__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: -5px;
}

.listSimpleCat__item {
  margin: 5px;
}
@media screen and (max-width: 767px) {
  .listSimpleCat__item {
    font-size: 12px;
  }
}
.listSimpleCat__item > * {
  background: #FAFAFA;
  color: #666;
  display: block;
  font-size: 14px;
  line-height: 1.5em;
  padding: 0 20px;
  text-decoration: none;
}

/* ==========================================================================
  大きなカテゴリ一覧のモジュール
　※アーカイブページなど、大きく使用する装飾されたカテゴリリスト
============================================================================= */
.listCategory__wrap {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}

.listCategory {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  margin: 0 -25px;
}
.listCategory .cat-item {
  padding: 10px;
  margin-left: 15px;
  margin-right: 15px;
}
.listCategory a {
  font-weight: 700;
  color: #999999;
}

/* ==========================================================================
  ブログ記事一覧のサムネイル表示用モジュール
============================================================================= */
.listBlog__listWrap {
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .listBlog__listWrap {
    overflow: hidden;
  }
}

@media screen and (min-width: 768px) {
  .listBlog__list {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    position: relative;
    margin: -20px;
  }
}

@media screen and (min-width: 768px) {
  .listBlog__item {
    width: 33.3333333333%;
    padding: 20px;
  }
}

.listBlog__cat {
  position: absolute;
  top: 0;
  right: 0;
  background: #ffffff;
  font-size: 12px;
  padding: 0 15px;
  line-height: 28px;
  z-index: 1;
}

.listBlog__link {
  display: block;
  position: relative;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.1em;
  border: 1px solid #eeeeee;
}
@media (hover: hover) and (pointer: fine) {
  .listBlog__link:hover .listBlog__thumb {
    transform: scale(1.1);
  }
}

.listBlog__thumbWrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 331/227;
}

.listBlog__thumb {
  transition: 0.4s;
}

.listBlog__txtWrap {
  padding: 15px;
}

.listBlog__date {
  color: #666666;
  font-size: 12px;
}

.listBlog__ttl {
  line-height: 1.7em;
  margin: 1px 0 10px;
}

.listBlog__txt {
  font-weight: normal;
  font-size: 0.9em;
}

.listBlog__btn {
  text-align: center;
  line-height: 48px;
  border-top: 1px solid #eeeeee;
  color: #218636;
  font-size: 14px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", Meiryo, メイリオ, Osaka, "MS PGothic", arial, helvetica, sans-serif;
  font-weight: 500;
  position: relative;
}

@media screen and (max-width: 767px) {
  .listBlog__item + .listBlog__item {
    margin-top: 25px;
  }
}

/* ==========================================================================
   ニュース一覧のモジュール
============================================================================= */
.listNews a {
  text-decoration: none;
}
.listNews .listSimpleCat__list {
  margin-bottom: 10px;
}

.listNews__inner {
  display: table;
  width: 100%;
  border-bottom: 1px solid #cccccc;
  padding: 20px 0;
}

.listNews__date {
  display: table-cell;
  vertical-align: top;
  width: 7em;
  font-size: 14px;
  color: #218636;
}
@media screen and (max-width: 767px) {
  .listNews__date {
    font-size: 10px;
    line-height: 26px;
  }
}

.listNews__info {
  display: table-cell;
  width: auto;
}

.listNews__title {
  line-height: 1.4em;
  display: block;
}

/* ==========================================================================
  ページ送りのモジュール
============================================================================= */
/* ==============================
// アーカイブページのページ送り
================================= */
.pagerArchive {
  text-align: center;
  margin: 60px 0 0;
}
.pagerArchive .wp-pagenavi span, .pagerArchive .wp-pagenavi a {
  display: inline-block;
  line-height: 40px;
  text-align: center;
  padding: 0 14px;
}
@media (hover: hover) and (pointer: fine) {
  .pagerArchive .wp-pagenavi span:hover, .pagerArchive .wp-pagenavi a:hover {
    border-color: #218636;
    color: #218636;
  }
}
.pagerArchive .wp-pagenavi span.current {
  background: #218636;
  color: #ffffff;
  border-color: #218636;
}

/* ==============================
// 記事詳細のページ送り
================================= */
.pagerSingle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 -10px;
}

.pagerSingle__wrap {
  overflow: visible;
}

.pagerSingle__item {
  max-width: 10em;
  width: 100%;
  margin: 0 10px;
}

.pagerSingle__item a {
  text-decoration: none;
  display: inline-block;
  color: #218636;
}

.pagerSingle__item a::before,
.pagerSingle__item a::after {
  font-family: "icomoon";
  position: static;
  display: inline-block;
  transition: 0.2s;
}

.pagerSingle__prev {
  text-align: right;
}
.pagerSingle__prev a::after {
  margin-left: 10px;
  content: "\e907";
}
@media (hover: hover) and (pointer: fine) {
  .pagerSingle__prev a:hover::after {
    transform: translateX(0.5em);
  }
}

.pagerSingle__list {
  text-align: center;
}

.pagerSingle__next {
  text-align: left;
}
.pagerSingle__next a::before {
  margin-right: 10px;
  content: "\e906";
}
@media (hover: hover) and (pointer: fine) {
  .pagerSingle__next a:hover::before {
    transform: translateX(-0.5em);
  }
}

/* ==========================================================================
   サイト内の各所に使うちょっとした共通設定
============================================================================= */
.t-ofi {
  height: 100%;
}
.t-ofi img {
  max-width: 100%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

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

.t-tRight {
  text-align: right;
}

.t-tLeft {
  text-align: left;
}

.t-nowL, .t-nowR, .t-nowC {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

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

.t-nowR {
  justify-content: flex-end;
}

.t-now {
  white-space: nowrap;
}

.t-wbr {
  word-break: keep-all;
  overflow-wrap: break-word;
}

.t-pb0 {
  padding-bottom: 0 !important;
}

.t-pt0 {
  padding-top: 0 !important;
}

@media screen and (min-width: 768px) {
  .t-hidePC {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .t-hideSP {
    display: none;
  }
}

.t-hidden {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
}

.t-subBox {
  margin-top: clamp(0px, -10.6666666667px + 1.3888888889vw, 16px);
  padding-left: clamp(56px, -6.6666666667px + 8.1597222222vw, 150px);
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 13.3333333333px + 3.4722222222vw, 80px);
}
.t-subBox > * {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .t-subBox {
    margin-top: clamp(8px, 2.6666666667px + 0.6944444444vw, 16px);
    padding-left: 0;
  }
}
.t-subBox > .btnArea {
  width: auto;
  margin-top: 0 !important;
}

.t-subBox2 {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 13.3333333333px + 1.3888888889vw, 40px);
}
.t-subBox2 > * {
  width: 100%;
}

.t-subBox3 {
  margin-top: clamp(0px, -10.6666666667px + 1.3888888889vw, 16px);
  padding-left: calc(clamp(8px, 0px + 1.0416666667vw, 20px) + clamp(80px, 36px + 5.7291666667vw, 146px));
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 18.6666666667px + 0.6944444444vw, 32px);
}
.t-subBox3 > * {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .t-subBox3 {
    margin-top: 6px;
    padding-left: 0;
  }
}

.t-textArea {
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 2.6666666667px + 0.6944444444vw, 16px);
}
.t-textArea > * {
  width: 100%;
}

.t-text {
  color: #666;
  font-weight: 700;
  word-break: break-all;
}
.t-text a {
  color: #8FC320;
  text-decoration: underline;
}

.t-text__red {
  color: #E60012 !important;
}

.t-borderBox {
  border: 2px solid #8FC320;
  background-color: #FAFAFA;
  padding: clamp(24px, 13.3333333333px + 1.3888888889vw, 40px);
}

.t-borderBox__textArea {
  color: #E60012;
}

.t-bikkuri {
  display: flex;
  align-items: baseline;
  gap: clamp(10px, 6.6666666667px + 0.4340277778vw, 15px);
}

.t-bikkuri__icon {
  width: clamp(16px, 10px + 0.78125vw, 25px);
  height: clamp(16px, 10px + 0.78125vw, 25px);
  color: #fff;
  border-radius: clamp(8px, 1.6666666667px + 0.8246527778vw, 17.5px);
  background-color: #E60012;
  font-size: clamp(12px, 9.3333333333px + 0.3472222222vw, 16px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1;
  letter-spacing: 0;
}

.t-bikkuri__text {
  font-size: clamp(16px, 12px + 0.5208333333vw, 22px);
  width: calc(100% - clamp(10px, 6.6666666667px + 0.4340277778vw, 15px) - clamp(16px, 10px + 0.78125vw, 25px));
  line-height: 1.4;
}

.t-borderBox__textArea {
  margin-top: clamp(8px, 2.6666666667px + 0.6944444444vw, 16px);
  padding-left: calc(clamp(10px, 6.6666666667px + 0.4340277778vw, 15px) + clamp(16px, 10px + 0.78125vw, 25px));
}

/* ==========================================================================
   headerのモジュール
============================================================================= */
.is-spMenuActive .header {
  background-color: #111;
}
.is-spMenuActive .header02::after {
  background-color: #111;
}

.header {
  z-index: 1000;
  top: 0;
  left: 0;
  position: fixed;
  width: 100%;
  transition: 0.5s;
  height: 150px;
}
@media screen and (max-width: 1100px) {
  .header {
    height: 80px;
  }
}
.header .l-container {
  height: 100%;
  max-width: calc(100% - clamp(20px, 13.3333333333px + 0.8680555556vw, 30px) * 2);
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 3;
}

.header::before {
  content: "";
  position: absolute;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0));
  top: 0;
  left: 0;
  width: 100%;
  height: 150px;
  opacity: 1;
  transition: 0.5s;
  z-index: 1;
}
@media screen and (max-width: 1100px) {
  .header::before {
    height: 80px;
  }
}

.header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background-color: transparent;
  transition: 0.5s;
  z-index: 2;
}
@media screen and (max-width: 1100px) {
  .header::after {
    height: 80px;
  }
}

.header02 {
  height: 100px;
}
@media screen and (max-width: 1100px) {
  .header02 {
    height: 80px;
  }
}
.header02 .header__contact01 {
  opacity: 0;
}
.header02::after {
  background-color: #218636;
  height: 100px;
}
@media screen and (max-width: 1100px) {
  .header02::after {
    height: 80px;
  }
}
.header02::before {
  opacity: 0;
  height: 100px;
}
@media screen and (max-width: 1100px) {
  .header02::before {
    height: 80px;
  }
}
.header02 .header__navItem > a {
  height: 100px;
}
@media screen and (max-width: 1100px) {
  .header02 .header__navItem > a {
    height: 80px;
  }
}
.header02 .l-mega__area {
  top: 100px;
}
@media screen and (max-width: 1100px) {
  .header02 .l-mega__area {
    height: 80px;
  }
}
.header02 .l-mega:hover .l-mega__area {
  -webkit-backdrop-filter: blur(0);
          backdrop-filter: blur(0);
  background-color: #218636;
}
.header02 .l-mega:hover::before {
  height: 0;
  -webkit-backdrop-filter: blur(0px);
          backdrop-filter: blur(0px);
}

/* ==============================
// ロゴ
================================= */
.header__logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(6px, 3.3333333333px + 0.3472222222vw, 10px);
  color: #fff;
}

.header__logo01 {
  font-size: clamp(10px, 5px + 0.6510416667vw, 17.5px);
  line-height: 1;
}

.header__logo02 {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  gap: clamp(6px, 3.3333333333px + 0.3472222222vw, 10px);
  line-height: 1;
}

.header__logo02-01 {
  font-size: clamp(32px, 20px + 1.5625vw, 50px);
  font-weight: 900;
}

.header__logo02-02 {
  font-size: clamp(10px, 5px + 0.6510416667vw, 17.5px);
}

/* ==============================
// nav
================================= */
.header__nav {
  display: flex;
  gap: clamp(10px, 5px + 0.6510416667vw, 17.5px);
}
@media screen and (max-width: 1100px) {
  .header__nav {
    display: none;
  }
}

.header__navList {
  display: flex;
}

.header__navItem > a {
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  padding: 0 clamp(10px, 5px + 0.6510416667vw, 17.5px);
  height: 150px;
}
@media screen and (max-width: 1100px) {
  .header__navItem > a {
    height: 80px;
  }
}

.l-mega {
  position: relative;
}

.l-mega::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  -webkit-backdrop-filter: blur(0px);
          backdrop-filter: blur(0px);
  transition: 0.5s;
  z-index: -1;
}

.l-mega:hover .l-mega__plus::before {
  transform: rotate(0deg);
}
.l-mega:hover::before {
  height: calc(150px + clamp(56px, 45.3333333333px + 1.3888888889vw, 72px) + clamp(32px, 10.6666666667px + 2.7777777778vw, 64px) + clamp(16px, 5.3333333333px + 1.3888888889vw, 32px));
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
}
.l-mega:hover .l-mega__area {
  opacity: 1;
  height: calc(clamp(56px, 45.3333333333px + 1.3888888889vw, 72px) + clamp(32px, 10.6666666667px + 2.7777777778vw, 64px) + clamp(16px, 5.3333333333px + 1.3888888889vw, 32px));
  padding: 0 clamp(20px, 13.3333333333px + 0.8680555556vw, 30px) 0;
}
.l-mega:hover .l-mega__link {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.l-mega__plus {
  position: relative;
  display: flex;
  align-items: center;
  padding-right: 15px;
}

.l-mega__plus::before,
.l-mega__plus::after {
  content: "";
  position: absolute;
  background-color: #fff;
  width: 10px;
  height: 2px;
  border-radius: 100vh;
  right: 0;
  transition: 0.5s;
}

.l-mega__plus::before {
  transform: rotate(90deg);
}

.l-mega__area {
  opacity: 0;
  height: 0;
  transition: 0.5s;
  position: fixed;
  z-index: -1;
  width: 100%;
  left: 0;
  background: transparent;
  overflow: hidden;
  padding: 0 clamp(20px, 13.3333333333px + 0.8680555556vw, 30px);
  top: 150px;
}
@media screen and (max-width: 1100px) {
  .l-mega__area {
    top: 80px;
  }
}

.l-mega__list {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: clamp(16px, 5.3333333333px + 1.3888888889vw, 32px);
}

.l-mega__item {
  background-color: #fff;
  width: calc(100% - clamp(16px, 5.3333333333px + 1.3888888889vw, 32px) * 2 / 3);
}

.l-mega__link {
  height: calc(clamp(56px, 45.3333333333px + 1.3888888889vw, 72px) + clamp(32px, 10.6666666667px + 2.7777777778vw, 64px));
  padding: clamp(16px, 5.3333333333px + 1.3888888889vw, 32px) clamp(16px, 5.3333333333px + 1.3888888889vw, 32px) clamp(16px, 5.3333333333px + 1.3888888889vw, 32px) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transition: 0.5s;
}

.l-mega__link:hover {
  color: #218636;
}

.l-mega__span {
  border-left: 3px solid #218636;
  padding-left: clamp(16px, 5.3333333333px + 1.3888888889vw, 32px);
  font-size: clamp(20px, 12px + 1.0416666667vw, 32px);
  line-height: 1;
}

.l-btn__icon {
  width: clamp(56px, 45.3333333333px + 1.3888888889vw, 72px);
  aspect-ratio: 1/1;
  height: auto;
  border-radius: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
}
.l-btn__icon line {
  transition: 0.5s;
}

.l-btn__icon-green {
  border: 1px solid #218636;
}

.l-btn__icon-green line {
  stroke: #218636;
}

.l-btn__icon-gray {
  border: 1px solid #999;
}

.l-btn__icon-gray line {
  stroke: #999;
}

.l-btn__icon-white {
  border: 1px solid #fff;
}

.l-btn__icon-white line {
  stroke: #fff;
}

a:hover .l-btn__icon-green {
  background-color: #218636;
}
a:hover .l-btn__icon-green line {
  stroke: #fff;
}
a:hover .l-btn__icon-gray {
  background-color: #999;
}
a:hover .l-btn__icon-gray line {
  stroke: #fff;
}
a:hover .l-btn__icon-white {
  background-color: #fff;
}
a:hover .l-btn__icon-white line {
  stroke: #218636;
}

/* ==============================
// その他のボタン
================================= */
.header__infoWrap {
  display: flex;
  align-items: center;
}

.header__contact {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header__contact img {
  width: clamp(132px, 110px + 2.8645833333vw, 165px);
}
@media screen and (max-width: 767px) {
  .header__contact img {
    width: clamp(124px, 118.6666666667px + 0.6944444444vw, 132px);
  }
}

.header__contact01 {
  position: absolute;
  opacity: 1;
  transition: 0.5s;
}

/* ==============================
// 上部固定メニュー
================================= */
.is-headerClone {
  position: fixed;
  z-index: 5000;
}

/* ==============================
// 管理バーの干渉を調整
================================= */
@media screen and (max-width: 600px) {
  #wpadminbar {
    position: fixed !important;
  }
}

/* ==========================================================================
  footerのモジュール
============================================================================= */
.footer {
  background: #111;
  color: #fff;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .footer {
    margin-bottom: 60px;
  }
}
.footer .l-container {
  display: flex;
  justify-content: space-between;
  padding: clamp(60px, 16.6666666667px + 5.6423611111vw, 125px) 0;
}
@media screen and (max-width: 767px) {
  .footer .l-container {
    flex-direction: column-reverse;
  }
}

.footer__top .l-container {
  display: flex;
  justify-content: space-between;
  padding: clamp(60px, 16.6666666667px + 5.6423611111vw, 125px) 0;
}
@media screen and (max-width: 767px) {
  .footer__top .l-container {
    flex-direction: column-reverse;
  }
}

/* ==============================
// 左側
================================= */
.footer__left {
  width: clamp(230px, 91.6666666667px + 18.0121527778vw, 437.5px);
}
@media screen and (max-width: 767px) {
  .footer__left {
    width: 100%;
  }
}

/* ==============================
// logo
================================= */
.footer__logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(6px, 3.3333333333px + 0.3472222222vw, 10px);
  color: #fff;
}

.footer__logo01 {
  font-size: clamp(10px, 5px + 0.6510416667vw, 17.5px);
  line-height: 1;
  color: #8FC320;
}

.footer__logo02 {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  gap: clamp(6px, 3.3333333333px + 0.3472222222vw, 10px);
  line-height: 1;
  flex-wrap: wrap;
}

.footer__logo02-01 {
  font-size: clamp(22px, 3.3333333333px + 2.4305555556vw, 50px);
  font-weight: 900;
}
@media screen and (max-width: 1023px) {
  .footer__logo02-01 {
    font-size: clamp(32px, 20px + 1.5625vw, 50px);
  }
}

.footer__logo02-02 {
  font-size: clamp(10px, 5px + 0.6510416667vw, 17.5px);
}

.footer__address {
  font-size: clamp(10px, 6.6666666667px + 0.4340277778vw, 15px);
  color: #999;
  margin-top: clamp(16px, 6.6666666667px + 1.2152777778vw, 30px);
}
@media screen and (max-width: 1023px) {
  .footer__address br {
    display: block;
  }
}

/* ==============================
// sns
================================= */
.footer__sns {
  margin-top: clamp(16px, 10.6666666667px + 0.6944444444vw, 24px);
}

.footer__sns-list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(8px, 5px + 0.390625vw, 12.5px);
}

.footer__sns-link {
  transition: 0.5s;
}
.footer__sns-link:hover {
  opacity: 0.6;
}

/* ==============================
// 右側
================================= */
.footer__right {
  width: calc(100% - clamp(230px, 91.6666666667px + 18.0121527778vw, 437.5px));
  display: flex;
  align-content: space-between;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .footer__right {
    width: 100%;
    margin-bottom: clamp(40px, -16.6666666667px + 7.3784722222vw, 125px);
    display: block;
  }
}

/* ==============================
// ナビゲーション
================================= */
.footer__nav {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: stretch;
  gap: clamp(20px, -20px + 5.2083333333vw, 80px);
}
@media screen and (max-width: 767px) {
  .footer__nav {
    flex-direction: column;
    justify-content: flex-start;
    border-top: 1px solid #666;
    gap: 0;
  }
}

.footer__navList {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 6.6666666667px + 1.7361111111vw, 40px);
}
@media screen and (max-width: 767px) {
  .footer__navList {
    gap: 0;
  }
}

.footer__navItem {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 10.6666666667px + 0.6944444444vw, 24px);
}
@media screen and (max-width: 767px) {
  .footer__navItem {
    border-bottom: 1px solid #666;
    gap: 0;
  }
}

.footer__navLink {
  display: flex;
  flex-direction: column;
  gap: clamp(4px, 3.3333333333px + 0.0868055556vw, 5px);
  transition: 0.5s;
  width: 100%;
}
.footer__navLink:hover .footer__navName-jp {
  color: #999;
}
@media screen and (max-width: 767px) {
  .footer__navLink {
    gap: 0;
    padding: clamp(16px, 10.6666666667px + 0.6944444444vw, 24px) 0;
  }
}

.footer__navName-en {
  font-family: "LINESeedJP", "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", Meiryo, メイリオ, Osaka, "MS PGothic", arial, helvetica, sans-serif;
  font-size: clamp(10px, 8.3333333333px + 0.2170138889vw, 12.5px);
  color: #8FC320;
  line-height: 1;
}

.footer__navName-jp {
  font-size: clamp(16px, 11.6666666667px + 0.5642361111vw, 22.5px);
  color: #fff;
  transition: 0.5s;
  line-height: 1.5;
}

.footer__subNavList {
  display: flex;
  flex-direction: column;
  gap: clamp(8px, -1.6666666667px + 1.2586805556vw, 22.5px);
}
@media screen and (max-width: 767px) {
  .footer__subNavList {
    gap: 0;
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .l-accordion .footer__navLink {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
  }
  .l-accordion .footer__navLink::before, .l-accordion .footer__navLink::after {
    content: "";
    position: absolute;
    right: clamp(8px, -2.6666666667px + 1.3888888889vw, 24px);
    width: 16px;
    height: 1px;
    background-color: #fff;
  }
  .l-accordion .footer__navLink::before {
    transform: rotate(90deg);
    transition: 0.5s;
  }
}

@media screen and (max-width: 767px) {
  .l-accordion.active .footer__navLink::before {
    transform: rotate(0deg);
  }
}

.footer__subNavItem-top {
  display: none;
}
@media screen and (max-width: 767px) {
  .footer__subNavItem-top {
    display: block;
  }
}

.footer__subNavList {
  width: 100%;
}

.footer__subNavLink {
  display: block;
  font-size: clamp(12px, 10px + 0.2604166667vw, 15px);
  color: #999;
  line-height: 1.4;
  transition: 0.5s;
  width: 100%;
}
.footer__subNavLink:hover {
  color: #666;
}
@media screen and (max-width: 767px) {
  .footer__subNavLink {
    background-color: #222;
    padding: clamp(16px, 10.6666666667px + 0.6944444444vw, 24px);
    border-top: 1px solid #666;
  }
}

.footer__contact02 {
  margin-top: calc(-1 * clamp(8px, 2.6666666667px + 0.6944444444vw, 16px));
  width: clamp(132px, 110px + 2.8645833333vw, 165px);
}
@media screen and (max-width: 767px) {
  .footer__contact02 {
    width: clamp(124px, 118.6666666667px + 0.6944444444vw, 132px);
  }
}

/* ==============================
// footer__bottom
================================= */
.footer__bottom .l-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #666;
  padding: clamp(32px, 20px + 1.5625vw, 50px) 0;
}
@media screen and (max-width: 767px) {
  .footer__bottom .l-container {
    flex-direction: column;
  }
}

.footer__bottom-link {
  color: #999;
  font-size: clamp(10px, 6.6666666667px + 0.4340277778vw, 15px);
  transition: 0.5s;
}
.footer__bottom-link:hover {
  color: #666;
}

/* ==============================
// コピーライト
================================= */
.footer__copy {
  color: #999;
  font-size: clamp(8px, 3.3333333333px + 0.6076388889vw, 15px);
}

/* ==========================================================================
	パン屑のモジュール
============================================================================= */
.breadcrumbs {
  font-size: 13px;
  position: absolute;
  bottom: 0;
  left: 0;
  padding-top: clamp(16px, 6.6666666667px + 1.2152777778vw, 30px);
  padding-bottom: clamp(16px, 6.6666666667px + 1.2152777778vw, 30px);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.breadcrumbs .l-container {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}
.breadcrumbs span,
.breadcrumbs a {
  font-size: clamp(10px, 6.6666666667px + 0.4340277778vw, 15px);
  color: #fff;
}
.breadcrumbs a {
  text-decoration: underline;
  position: relative;
  margin-right: 30px;
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  .breadcrumbs a:hover {
    text-decoration: underline;
  }
}
.breadcrumbs a::after {
  position: absolute;
  top: 50%;
  right: -16px;
  display: block;
  content: "";
  width: clamp(6px, 4.3333333333px + 0.2170138889vw, 8.5px);
  height: clamp(6px, 4.3333333333px + 0.2170138889vw, 8.5px);
  margin-top: calc(-1 * clamp(2.5px, 0.1666666667px + 0.3038194444vw, 6px));
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
}
@media screen and (max-width: 767px) {
  .breadcrumbs {
    padding: 5px 0;
    font-size: 10px;
  }
  .breadcrumbs span {
    line-height: 1.7em;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .breadcrumbs {
    padding: 5px 0;
  }
}

.breadcrumbs a {
  text-decoration: underline;
}
.breadcrumbs span,
.breadcrumbs a {
  font-size: clamp(10px, 6.6666666667px + 0.4340277778vw, 15px);
  color: #fff;
}

/* ==========================================================================
   hamburgerのモジュール
============================================================================= */
.hamburger {
  display: none;
  position: relative;
  width: 32px;
  height: 24px;
}
@media screen and (max-width: 1100px) {
  .hamburger {
    display: block;
  }
}
.hamburger span {
  position: absolute;
  transition: all 0.4s;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
  border-radius: 4px;
}
.hamburger span:nth-of-type(1) {
  top: 0;
}
.hamburger span:nth-of-type(2) {
  top: 50%;
  margin-top: -1px;
}
.hamburger span:nth-of-type(3) {
  bottom: 0;
}
.is-spMenuActive .hamburger span:nth-of-type(1) {
  transform: translateY(11px) rotate(-45deg);
}
.is-spMenuActive .hamburger span:nth-of-type(2) {
  opacity: 0;
}
.is-spMenuActive .hamburger span:nth-of-type(3) {
  transform: translateY(-11px) rotate(45deg);
}

/* ==========================================================================
   gototopのモジュール
============================================================================= */
.gototop {
  position: fixed;
  z-index: 1000;
  right: 40px;
  bottom: 40px;
  background: #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  font-size: 0.8em;
  display: none;
}

/* ==========================================================================
   下層ページのHeroモジュール
============================================================================= */
.pageHero {
  background: linear-gradient(to bottom, #1F8636, #8FC328);
  padding: clamp(54px, 36.6666666667px + 2.2569444444vw, 80px) 0;
  height: clamp(300px, 83.3333333333px + 28.2118055556vw, 625px);
  width: 100%;
  text-align: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pageHero::before {
  content: "";
  position: absolute;
  background-image: url(../../assets/images/cmn/l-mv2__bk-img@2x.webp);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  left: 0;
  top: 0;
  height: clamp(300px, 83.3333333333px + 28.2118055556vw, 625px);
  width: 100%;
  z-index: 1;
}

.pageHero > .l-container {
  position: relative;
  height: clamp(300px, 83.3333333333px + 28.2118055556vw, 625px);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.pageHero__ttl {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  position: relative;
  margin-bottom: calc(-1 * clamp(40px, 40px + 0vw, 40px));
  width: 100%;
}
.pageHero__ttl > span {
  width: 100%;
  text-align: left;
}

.pageHero__ttl-en {
  color: transparent;
  stroke: 1px #fff;
  -webkit-text-stroke: 1px #fff;
  opacity: 0.6;
  font-size: clamp(56px, 10px + 5.9895833333vw, 125px);
  margin-bottom: calc(-1 * clamp(24px, 2.6666666667px + 2.7777777778vw, 56px));
  margin-left: calc(-1 * clamp(24px, 13.3333333333px + 1.3888888889vw, 40px));
  font-weight: 900;
  font-family: "LINESeedJP", "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", Meiryo, メイリオ, Osaka, "MS PGothic", arial, helvetica, sans-serif;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .pageHero__ttl-en {
    margin-left: calc(-1 * clamp(8px, -13.3333333333px + 2.7777777778vw, 40px));
  }
}

.pageHero__ttl-jp {
  color: #fff;
  font-size: clamp(40px, 16.6666666667px + 3.0381944444vw, 75px);
  line-height: 1.1;
}

/* ==========================================================================
   CTAのモジュール
============================================================================= */
.cta {
  background: #e9e9e9;
  text-align: center;
  font-size: 30px;
  padding: 40px;
}

/* ==========================================================================
   スマホのフッタ固定メニューのモジュール
============================================================================= */
.spHomeBar {
  display: none;
  position: fixed;
  width: 100%;
  bottom: 0;
  left: 0;
  z-index: 1000;
}
@media screen and (min-width: 768px) {
  .spHomeBar {
    display: none !important;
  }
}

.spHomeBar__navList {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  height: 60px;
}

.spHomeBar__navItem {
  width: 50%;
  text-align: center;
}

.spHomeBar__navItem:nth-child(1) .spHomeBar__navLink {
  background-color: #218636;
}

.spHomeBar__navItem:nth-child(2) .spHomeBar__navLink {
  background-color: #8FC320;
}

.spHomeBar__navLink {
  text-decoration: none;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.spHomeBar__navLink p {
  font-size: clamp(14px, 12.6666666667px + 0.1736111111vw, 16px);
  line-height: 1em;
  font-feature-settings: "palt";
  color: #fff;
}
@media (hover: hover) and (pointer: fine) {
  .spHomeBar__navLink:hover {
    text-decoration: none;
  }
}

/* ==========================================================================
   スマホのハンバーガーボタン押下メニューのモジュール
============================================================================= */
.spMenu {
  position: fixed;
  z-index: 3000;
  top: 0;
  left: 0;
  width: 100%;
  background: #111;
  display: none;
  height: calc(100% - 80px);
  margin-top: 80px;
  overflow-y: auto;
}
@media screen and (min-width: 1101px) {
  .spMenu {
    display: none !important;
  }
}
.spMenu a {
  text-decoration: none;
}
.spMenu .l-container {
  padding-top: 35px;
  padding-bottom: 8vh;
}

.spMenu__bottom {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;
  text-align: center;
}

.is-spMenuActive {
  overflow: hidden;
}

/* ==========================================================================
   editorのモジュール
   投稿表示系でthe_content()を.editorのクラスで囲っている箇所と
   投稿の編集画面で適用される
============================================================================= */
.editor * {
  color: #111;
}
.editor p {
  margin-bottom: 1.8em;
  line-height: 1.8em;
  word-break: break-all;
}
.editor img {
  max-width: 100%;
}
.editor a:not([class]) {
  color: #218636;
  text-decoration: underline;
}
@media (hover: hover) and (pointer: fine) {
  .editor a:hover {
    text-decoration: none;
  }
}
.editor strong {
  font-weight: bold;
}
.editor em {
  font-style: italic;
}
.editor h2, .editor h3, .editor h4, .editor h5 {
  /* 目次プラグインを使う際、アンカーリンク用のspanが挿入されてスタイルが消えてしまうときがある
  　　見出しに自動挿入されたspanで親のスタイルを全て引き継ぐよう修正 */
}
.editor h2 span, .editor h3 span, .editor h4 span, .editor h5 span {
  font-weight: inherit;
  color: inherit;
  line-height: inherit;
  margin-bottom: inherit;
}
.editor h2 {
  font-size: 1.3em;
  line-height: 1.6em;
  font-weight: normal;
  margin: 2em 0 14px;
  border-bottom: 1px dashed #000;
}
.editor h3 {
  font-size: 1.1em;
  line-height: 1.6em;
  margin: 2em 0 14px;
  border-bottom: 1px dashed #999;
}
.editor h4 {
  font-size: 1.1em;
  font-weight: bold;
}
.editor ul {
  margin: 20px;
}
.editor ul li {
  list-style: disc;
  margin-bottom: 5px;
  line-height: 1.5em;
}
.editor ol {
  margin: 20px;
}
.editor ol li {
  list-style-type: decimal;
  margin-bottom: 1em;
  line-height: 1.5em;
}
.editor blockquote {
  background: #f8f8f8;
  padding: 1em 1.5em;
  margin: 2em 0;
  font-size: 0.9em;
  color: #333333;
}
.editor blockquote p:last-child {
  margin-bottom: 0;
}
.editor iframe {
  max-width: 100%;
}
.editor .wp-caption {
  max-width: 100% !important;
  margin: 0 auto 20px;
}
.editor .wp-caption p {
  word-wrap: break-word;
}
.editor .aligncenter {
  display: block;
  margin: 0 auto;
}
.editor .alignright {
  float: right;
  margin: 20px;
}
.editor .alignright {
  float: right;
  margin: 20px;
}
.editor .alignleft {
  float: left;
  margin: 20px;
}
.editor :first-child {
  margin-top: 0;
}
.editor :last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .editor h2 {
    font-size: 120%;
  }
  .editor h3 {
    font-size: 110%;
  }
  .editor .alignright {
    float: none;
    margin: 0;
  }
  .editor .alignleft {
    float: none;
    margin: 0;
  }
}
.editor table {
  border: 1px solid #ddd;
  border-left: none;
  border-bottom: none;
}
.editor td, .editor th {
  border-bottom: 1px solid #ddd;
  border-left: 1px solid #ddd;
  padding: 0.2em 0.8em;
}
.editor th {
  background: #218636;
  text-align: left;
  border: none;
  color: #fff;
}
.editor th:nth-of-type(odd) {
  background: #8FC320;
}
.editor tr:nth-of-type(even) {
  background: #FAFAFA;
}
.editor tr:nth-of-type(even) th {
  background: #218636;
}
.editor tr:nth-of-type(even) th:nth-of-type(even) {
  background: #8FC320;
}
.editor::after {
  content: "";
  display: block;
  clear: both;
}

/* ==========================================================================
   TOPページのレイアウト
============================================================================= */
body.home {
  /* ==============================
  	// アイキャッチ
  ================================= */
}
body.home .home__mv {
  display: flex;
  justify-content: center;
  align-items: center;
  height: calc(100vh - 50px);
  min-height: 500px;
  position: relative;
}
@media screen and (max-width: 1023px) {
  body.home .home__mv {
    height: 500px;
  }
}
@media screen and (max-width: 767px) {
  body.home .home__mv {
    height: 450px;
  }
}
body.home .home__mv-imgArea {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
body.home .home__mv .l-container {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
body.home .home__mvH1 {
  position: absolute;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(16px, -20px + 4.6875vw, 70px);
}
@media screen and (max-width: 767px) {
  body.home .home__mvH1 {
    left: -7.5vw;
  }
}
body.home .home__mvH1-span {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(8px, -2.6666666667px + 1.3888888889vw, 24px);
}
body.home .home__mvH1-span01 {
  font-size: clamp(32px, 0px + 4.1666666667vw, 80px);
  line-height: 1;
  padding: clamp(8px, 2.6666666667px + 0.6944444444vw, 16px) clamp(12px, -1.3333333333px + 1.7361111111vw, 32px) clamp(12px, 4px + 1.0416666667vw, 24px);
  background-color: #fff;
  color: #111;
}
body.home .home__mvLogo {
  width: clamp(180px, -9.3333333333px + 24.6527777778vw, 464px);
}
@media screen and (max-width: 767px) {
  body.home .home__mvLogo {
    padding-left: clamp(12px, -1.3333333333px + 1.7361111111vw, 32px);
  }
}
body.home .home__mvText {
  position: absolute;
  right: 0;
  bottom: calc(-1 * clamp(0px, -33.3333333333px + 4.3402777778vw, 50px));
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(8px, -2.6666666667px + 1.3888888889vw, 24px);
}
body.home .home__mvText-span01 {
  font-size: clamp(14px, 3.3333333333px + 1.3888888889vw, 30px);
  line-height: 1;
  padding: clamp(8px, 2.6666666667px + 0.6944444444vw, 16px) clamp(6px, 4.6666666667px + 0.1736111111vw, 8px);
  background-color: #fff;
  color: #111;
  margin-top: calc(-1 * clamp(24px, -13.3333333333px + 4.8611111111vw, 80px));
}
body.home .home__mvText-span02 {
  font-size: clamp(24px, -18.3333333333px + 5.5121527778vw, 87.5px);
  line-height: 1;
  padding: clamp(12px, 4px + 1.0416666667vw, 24px) clamp(8px, 2.6666666667px + 0.6944444444vw, 16px);
  background-color: #fff;
  color: #111;
}
body.home .sectionMessage__loop {
  display: flex;
  width: 100vw;
  z-index: 0;
  margin: clamp(0px, -46.6666666667px + 6.0763888889vw, 70px) 0 clamp(60px, 33.3333333333px + 3.4722222222vw, 100px);
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  body.home .sectionMessage__loop {
    margin: clamp(0px, -46.6666666667px + 6.0763888889vw, 70px) 0 -16px;
  }
}
body.home .sectionMessage__loop-img {
  min-width: 220vw;
}
@media screen and (max-width: 1023px) {
  body.home .sectionMessage__loop-img {
    min-width: 260vw;
  }
}
@media screen and (max-width: 767px) {
  body.home .sectionMessage__loop-img {
    min-width: 420vw;
  }
}
body.home .sectionMessage__loop-img:first-child {
  animation: loop 100s -50s linear infinite;
}
body.home .sectionMessage__loop-img:last-child {
  animation: loop2 100s linear infinite;
}
@keyframes loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
body.home .sectionSupport {
  background: linear-gradient(to right, #1F8636, #8FC328);
}
body.home .sectionSupport__list {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: clamp(24px, 2.6666666667px + 2.7777777778vw, 56px);
}
@media screen and (max-width: 767px) {
  body.home .sectionSupport__list {
    flex-direction: column;
  }
}
body.home .sectionSupport__item {
  width: calc((100% - clamp(34px, 19.3333333333px + 1.9097222222vw, 56px)) / 2);
  height: auto;
}
@media screen and (max-width: 767px) {
  body.home .sectionSupport__item {
    width: 100%;
  }
}
body.home .sectionSupport__link {
  background-color: #fff;
  position: relative;
  padding: clamp(24px, 18.6666666667px + 0.6944444444vw, 32px) clamp(24px, 13.3333333333px + 1.3888888889vw, 40px) clamp(32px, 16px + 2.0833333333vw, 56px);
  display: block;
  height: 100%;
}
body.home .sectionSupport__link:hover {
  box-shadow: clamp(8px, 2.6666666667px + 0.6944444444vw, 16px) clamp(8px, 2.6666666667px + 0.6944444444vw, 16px) clamp(8px, 2.6666666667px + 0.6944444444vw, 16px) rgba(0, 0, 0, 0.08);
}
body.home .sectionSupport__link:hover .sectionSupport__h3 {
  color: #218636;
}
body.home .sectionSupport__link:hover .sectionSupport__icon svg {
  margin-left: 10px;
}
body.home .sectionSupport__link::before {
  content: "";
  position: absolute;
  width: 3px;
  height: clamp(32px, 21.3333333333px + 1.3888888889vw, 48px);
  top: clamp(32px, 16px + 2.0833333333vw, 56px);
  left: 0;
  background-color: #218636;
  transition: 0.5s;
}
body.home .sectionSupport__h3 {
  font-size: clamp(24px, 13.3333333333px + 1.3888888889vw, 40px);
  margin-bottom: clamp(8px, 2.6666666667px + 0.6944444444vw, 16px);
  transition: 0.5s;
}
body.home .sectionSupport__text {
  width: calc(100% - clamp(56px, 45.3333333333px + 1.3888888889vw, 72px) - 16px);
}
body.home .sectionSupport__icon {
  width: clamp(56px, 45.3333333333px + 1.3888888889vw, 72px);
  height: auto;
  border-radius: clamp(28px, 22.6666666667px + 0.6944444444vw, 36px);
  aspect-ratio: 1/1;
  border: 1px solid #218636;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: clamp(16px, 5.3333333333px + 1.3888888889vw, 32px);
  bottom: clamp(16px, 5.3333333333px + 1.3888888889vw, 32px);
  transition: 0.5s;
}
body.home .sectionSupport__icon svg {
  position: absolute;
  transition: 0.5s;
}
body.home .sectionSupport__icon svg line {
  stroke: #218636;
  transition: 0.5s;
}
body.home .sectionProfile {
  background-color: #FAFAFA;
  position: relative;
}
body.home .sectionProfile__loop {
  display: flex;
  width: 100vw;
  z-index: 0;
  position: absolute;
  top: clamp(56px, 40px + 2.0833333333vw, 80px);
}
body.home .sectionProfile__loop-img {
  min-width: 240vw;
}
@media screen and (max-width: 1023px) {
  body.home .sectionProfile__loop-img {
    min-width: 260vw;
  }
}
@media screen and (max-width: 767px) {
  body.home .sectionProfile__loop-img {
    min-width: 420vw;
  }
}
body.home .sectionProfile__loop-img:first-child {
  animation: loop 100s -50s linear infinite;
}
body.home .sectionProfile__loop-img:last-child {
  animation: loop2 100s linear infinite;
}
body.home .sectionMessage .l-container {
  position: relative;
  z-index: 1;
}
body.home .sectionProfile__area {
  padding: clamp(32px, 0px + 4.1666666667vw, 80px) clamp(24px, 2.6666666667px + 2.7777777778vw, 56px);
  background-color: #fff;
}

/* ==========================================================================
   固定ページで共通のレイアウト
============================================================================= */
/* ==========================================================================
   政策ページで共通のレイアウト
============================================================================= */
body.policy .sectionPolicy {
  border-bottom: 1px solid #ddd;
}
body.policy .sectionPolicy__message {
  font-size: clamp(22px, 3.3333333333px + 2.4305555556vw, 50px);
  line-height: 1.6;
}
body.policy .l-column__side-link:first-child {
  margin-top: calc(-1 * clamp(40px, -13.3333333333px + 6.9444444444vw, 120px));
}
body.policy .l-column__side-link .l-section {
  padding-top: clamp(40px, -13.3333333333px + 6.9444444444vw, 120px);
  padding-bottom: clamp(40px, -13.3333333333px + 6.9444444444vw, 120px);
}
body.policy .l-column__side-link .l-container {
  border-bottom: 1px solid #ddd;
}
body.policy .l-column__side-link .sectionAbout__h3Area {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}
body.policy .l-column__side-link .sectionAbout__h3Area .heading__Lv3-number {
  font-size: clamp(32px, 0px + 4.1666666667vw, 80px);
  line-height: 1.4;
  font-weight: 900;
  color: #8FC320;
  letter-spacing: 0;
  font-family: "LINESeedJP", "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", Meiryo, メイリオ, Osaka, "MS PGothic", arial, helvetica, sans-serif;
  width: clamp(56px, -6.6666666667px + 8.1597222222vw, 150px);
}
@media screen and (max-width: 767px) {
  body.policy .l-column__side-link .sectionAbout__h3Area .heading__Lv3-number {
    line-height: 1;
  }
}
body.policy .l-column__side-link .sectionAbout__h3Area .heading__Lv3-title {
  font-size: clamp(20px, 0px + 2.6041666667vw, 50px);
  line-height: 1.4;
}

/* ==========================================================================
   応援するページで共通のレイアウト
============================================================================= */
body.support .l-column__side-link:nth-child(2) {
  margin-top: calc(-1 * clamp(40px, -13.3333333333px + 6.9444444444vw, 120px));
}
body.support .l-column__side-link:nth-child(2) .l-container {
  border-bottom: 1px solid #ddd;
}
body.support .l-column__side-link .l-section {
  padding-top: clamp(40px, -13.3333333333px + 6.9444444444vw, 120px);
  padding-bottom: clamp(40px, -13.3333333333px + 6.9444444444vw, 120px);
}
body.support .l-column__side-link .sectionSupport__h3Area {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}
body.support .l-column__side-link .sectionSupport__h3Area .heading__Lv3-number {
  font-size: clamp(32px, 0px + 4.1666666667vw, 80px);
  line-height: 1.6;
  font-weight: 900;
  color: #8FC320;
  letter-spacing: 0;
  font-family: "LINESeedJP", "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", Meiryo, メイリオ, Osaka, "MS PGothic", arial, helvetica, sans-serif;
  width: clamp(56px, -6.6666666667px + 8.1597222222vw, 150px);
}
@media screen and (max-width: 767px) {
  body.support .l-column__side-link .sectionSupport__h3Area .heading__Lv3-number {
    line-height: 1;
  }
}
body.support .l-column__side-link .sectionSupport__h3Area .heading__Lv3-title {
  font-size: clamp(20px, 0px + 2.6041666667vw, 50px);
  line-height: 1.6;
}
body.support .sectionSupport__stepArea {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 5.3333333333px + 1.3888888889vw, 32px);
}
body.support .sectionSupport__step {
  width: 100%;
}
body.support .sectionSupport__step-p {
  width: 100%;
  display: flex;
  align-items: baseline;
  gap: clamp(8px, 0px + 1.0416666667vw, 20px);
}
@media screen and (max-width: 767px) {
  body.support .sectionSupport__step-p {
    flex-direction: column;
    align-items: flex-start;
  }
}
body.support .sectionSupport__step-icon {
  font-size: clamp(12px, 8.3333333333px + 0.4774305556vw, 17.5px);
  width: clamp(80px, 36px + 5.7291666667vw, 146px);
  height: clamp(24px, 6.6666666667px + 2.2569444444vw, 50px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #8FC320;
  color: #fff;
  font-family: "LINESeedJP", "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", Meiryo, メイリオ, Osaka, "MS PGothic", arial, helvetica, sans-serif;
}
body.support .sectionSupport__step-text {
  font-size: clamp(16px, 12px + 0.5208333333vw, 22px);
  width: calc(100% - clamp(8px, 0px + 1.0416666667vw, 20px) - clamp(80px, 36px + 5.7291666667vw, 146px));
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  body.support .sectionSupport__step-text {
    width: 100%;
  }
}
body.support .sectionSupport__textList {
  display: flex;
  flex-direction: column;
  align-items: baseline;
  gap: clamp(14px, 12.6666666667px + 0.1736111111vw, 16px);
}
body.support .sectionSupport__textList li {
  width: 100%;
  position: relative;
  padding-left: clamp(16px, 12px + 0.5208333333vw, 22px);
  font-size: clamp(16px, 13.3333333333px + 0.3472222222vw, 20px);
  line-height: 1.6;
}
body.support .sectionSupport__textList li::before {
  content: "";
  position: absolute;
  left: 0;
  top: clamp(9px, 7px + 0.2604166667vw, 12px);
  width: clamp(8px, 6.6666666667px + 0.1736111111vw, 10px);
  height: clamp(8px, 6.6666666667px + 0.1736111111vw, 10px);
  border-radius: clamp(4px, 3.3333333333px + 0.0868055556vw, 5px);
  background-color: #8FC320;
}
body.support .sectionSupport__img {
  max-width: 650px;
  border: 2px solid #ddd;
}
body.support #link-04 {
  position: relative;
}
body.support #link-04::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 100vw;
  background-color: #FAFAFA;
}
body.support #link-04 > .l-section {
  position: relative;
  z-index: 1;
}
body.support #link-04 * {
  color: #666;
}
body.support #link-04 .heading__Lv4 {
  border-left: clamp(3px, 0.8333333333px + 0.2821180556vw, 6.25px) solid #666;
}
body.support #link-04 .t-text {
  color: #999;
}
body.support #link-04 .sectionSupport__step-icon {
  background-color: #666;
  color: #fff;
}
body.support #link-04 .btnArea__link {
  background: #666;
}
body.support #link-04 .btnArea__text {
  color: #fff;
}

/* ==========================================================================
   プライバシーページで共通のレイアウト
============================================================================= */
body.privacy .privacyContainer {
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 13.3333333333px + 3.4722222222vw, 80px);
}
body.privacy .privacyContainer > * {
  width: 100%;
}
body.privacy .t-subBox2 h2 {
  font-size: clamp(28px, 13.3333333333px + 1.9097222222vw, 50px);
  line-height: 1.4;
}

/* ==========================================================================
	シングルページで共通のレイアウト
============================================================================= */
body.single .secPager {
  padding-top: 40px;
}
@media screen and (max-width: 767px) {
  body.single .secPager {
    padding-top: 25px;
  }
}

/* ==========================================================================
   アーカイブページ共通のレイアウト
============================================================================= */
/* ==========================================================================
   お知らせ一覧のレイアウト
============================================================================= */
/* ==========================================================================
   お知らせ詳細
============================================================================= */
/* ==========================================================================
   BLOG一覧のレイアウト
============================================================================= */
/* ==========================================================================
   blog 詳細
============================================================================= */
/* ==========================================================================
	サンクスページのレイアウト
============================================================================= */
body[class*=thanks] main .l-section {
  text-align: center;
  line-height: 4em;
}
body[class*=thanks] main .l-section .l-container {
  max-width: 800px;
}
body[class*=thanks] main .btn {
  margin: 4em auto;
}
body[class*=thanks] main .thanksMessage {
  text-align: center;
}
body[class*=thanks] main .attention {
  margin-top: 40px;
  padding: 1.6em 2.2em;
  background-color: #FAFAFA;
  color: #747474;
  font-size: 0.9rem;
  line-height: 1.6em;
}
@media screen and (max-width: 767px) {
  body[class*=thanks] main .attention {
    font-size: 0.8rem;
  }
}
body[class*=thanks] main .attention a {
  color: #747474;
  text-decoration: underline;
}
@media (hover: hover) and (pointer: fine) {
  body[class*=thanks] main .attention a:hover {
    color: #218636;
  }
}/*# sourceMappingURL=style.css.map */