@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
@import url(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
============================================================================= */
/* CSS変数設定
============================================================================= */
:root {
  --spacing: 0.06em;
  --header-height: 80px;
  --section-padding-vertical: 80px;
  --section-padding-horizontal: 60px;
  --mq-mobile: 320;
  --mq-sp: 768;
  --mq-tab: 1024;
  --mq-header: 1300;
  --mq-pc: 1920;
}

@media screen and (max-width: 1024px) {
  :root {
    --section-padding-vertical: 60px;
    --section-padding-horizontal: 30px;
  }
}

@media screen and (max-width: 768px) {
  :root {
    --header-height: 56px;
    --section-padding-horizontal: 15px;
    --section-padding-vertical: 50px;
  }
}

/* Base設定
============================================================================= */
html, body {
  position: relative;
  background: #FFFFFF;
  color: #333333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: var(--header-height);
}

.test {
  font-size: clamp(28px, 13.33333px + 1.90972vw, 50px);
}

html {
  overflow: auto;
}

body {
  overflow: hidden;
}

* {
  letter-spacing: var(--spacing);
  box-sizing: border-box;
}

a {
  color: #333333;
  transition: opacity 0.3s ease, color 0.3s ease, border 0.3s ease, background-color 0.3s ease, -webkit-text-decoration-color 0.3s ease;
  transition: opacity 0.3s ease, color 0.3s ease, border 0.3s ease, background-color 0.3s ease, text-decoration-color 0.3s ease;
  transition: opacity 0.3s ease, color 0.3s ease, border 0.3s ease, background-color 0.3s ease, text-decoration-color 0.3s ease, -webkit-text-decoration-color 0.3s ease;
}

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

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

/* ==========================================================================
	共通レイアウト設定
============================================================================= */
.l-container {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  width: calc(100% - var(--section-padding-horizontal) * 2);
}

@media screen and (max-width: 768px) {
  .l-container {
    max-width: inherit !important;
  }
}

.l-container.size-xs {
  max-width: 700px;
}

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

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

.l-container.size-xl {
  max-width: 1920px;
}

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

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

/*
■　使い方

編集ツール：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_fill-primary {
  width: 100%;
  max-width: 380px;
  border-radius: 50vw;
  border-style: solid;
  border-width: 2px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  -moz-column-gap: 10px;
  column-gap: 10px;
  align-items: center;
  word-break: break-all;
  overflow: hidden;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  padding: 10px 15px;
  transition: opacity 0.3s ease, color 0.3s ease, border 0.3s ease, background-color 0.3s ease, -webkit-text-decoration-color 0.3s ease;
  transition: opacity 0.3s ease, color 0.3s ease, border 0.3s ease, background-color 0.3s ease, text-decoration-color 0.3s ease;
  transition: opacity 0.3s ease, color 0.3s ease, border 0.3s ease, background-color 0.3s ease, text-decoration-color 0.3s ease, -webkit-text-decoration-color 0.3s ease;
  color: #333333;
  border-color: #333333;
  background-color: #FFFFFF;
  color: #FFFFFF;
  border-color: #009463;
  background-color: #009463;
}

.btn_fill-primary::before {
  content: '';
  grid-row: 1;
  grid-column: 1 / 2;
  z-index: 1;
}

.btn_fill-primary::after {
  content: '';
  justify-self: end;
  grid-row: 1;
  grid-column: 3 / 4;
  z-index: 1;
}

.btn_fill-primary i {
  margin-right: 0.4em;
}

@media (hover: hover) and (pointer: fine) {
  .btn_fill-primary:hover {
    opacity: 1;
    color: #FFFFFF;
    background: #333333;
  }
}

@media (hover: hover) and (pointer: fine) {
  .btn_fill-primary:hover {
    opacity: 1;
    color: #009463;
    background: #FFFFFF;
  }
}

.btn_line-primary {
  width: 100%;
  max-width: 380px;
  border-radius: 50vw;
  border-style: solid;
  border-width: 2px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  -moz-column-gap: 10px;
  column-gap: 10px;
  align-items: center;
  word-break: break-all;
  overflow: hidden;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  padding: 10px 15px;
  transition: opacity 0.3s ease, color 0.3s ease, border 0.3s ease, background-color 0.3s ease, -webkit-text-decoration-color 0.3s ease;
  transition: opacity 0.3s ease, color 0.3s ease, border 0.3s ease, background-color 0.3s ease, text-decoration-color 0.3s ease;
  transition: opacity 0.3s ease, color 0.3s ease, border 0.3s ease, background-color 0.3s ease, text-decoration-color 0.3s ease, -webkit-text-decoration-color 0.3s ease;
  color: #333333;
  border-color: #333333;
  background-color: #FFFFFF;
  color: #009463;
  border-color: #009463;
  background-color: #FFFFFF;
}

.btn_line-primary::before {
  content: '';
  grid-row: 1;
  grid-column: 1 / 2;
  z-index: 1;
}

.btn_line-primary::after {
  content: '';
  justify-self: end;
  grid-row: 1;
  grid-column: 3 / 4;
  z-index: 1;
}

.btn_line-primary i {
  margin-right: 0.4em;
}

@media (hover: hover) and (pointer: fine) {
  .btn_line-primary:hover {
    opacity: 1;
    color: #FFFFFF;
    background: #333333;
  }
}

@media (hover: hover) and (pointer: fine) {
  .btn_line-primary:hover {
    opacity: 1;
    color: #FFFFFF;
    background: #009463;
  }
}

.btn_fill-secondary {
  width: 100%;
  max-width: 380px;
  border-radius: 50vw;
  border-style: solid;
  border-width: 2px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  -moz-column-gap: 10px;
  column-gap: 10px;
  align-items: center;
  word-break: break-all;
  overflow: hidden;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  padding: 10px 15px;
  transition: opacity 0.3s ease, color 0.3s ease, border 0.3s ease, background-color 0.3s ease, -webkit-text-decoration-color 0.3s ease;
  transition: opacity 0.3s ease, color 0.3s ease, border 0.3s ease, background-color 0.3s ease, text-decoration-color 0.3s ease;
  transition: opacity 0.3s ease, color 0.3s ease, border 0.3s ease, background-color 0.3s ease, text-decoration-color 0.3s ease, -webkit-text-decoration-color 0.3s ease;
  color: #333333;
  border-color: #333333;
  background-color: #FFFFFF;
  color: #FFFFFF;
  border-color: #3568d6;
  background-color: #3568d6;
}

.btn_fill-secondary::before {
  content: '';
  grid-row: 1;
  grid-column: 1 / 2;
  z-index: 1;
}

.btn_fill-secondary::after {
  content: '';
  justify-self: end;
  grid-row: 1;
  grid-column: 3 / 4;
  z-index: 1;
}

.btn_fill-secondary i {
  margin-right: 0.4em;
}

@media (hover: hover) and (pointer: fine) {
  .btn_fill-secondary:hover {
    opacity: 1;
    color: #FFFFFF;
    background: #333333;
  }
}

@media (hover: hover) and (pointer: fine) {
  .btn_fill-secondary:hover {
    opacity: 1;
    color: #3568d6;
    background: #FFFFFF;
  }
}

.btn_line-secondary {
  width: 100%;
  max-width: 380px;
  border-radius: 50vw;
  border-style: solid;
  border-width: 2px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  -moz-column-gap: 10px;
  column-gap: 10px;
  align-items: center;
  word-break: break-all;
  overflow: hidden;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  padding: 10px 15px;
  transition: opacity 0.3s ease, color 0.3s ease, border 0.3s ease, background-color 0.3s ease, -webkit-text-decoration-color 0.3s ease;
  transition: opacity 0.3s ease, color 0.3s ease, border 0.3s ease, background-color 0.3s ease, text-decoration-color 0.3s ease;
  transition: opacity 0.3s ease, color 0.3s ease, border 0.3s ease, background-color 0.3s ease, text-decoration-color 0.3s ease, -webkit-text-decoration-color 0.3s ease;
  color: #333333;
  border-color: #333333;
  background-color: #FFFFFF;
  color: #3568d6;
  border-color: #3568d6;
  background-color: #FFFFFF;
}

.btn_line-secondary::before {
  content: '';
  grid-row: 1;
  grid-column: 1 / 2;
  z-index: 1;
}

.btn_line-secondary::after {
  content: '';
  justify-self: end;
  grid-row: 1;
  grid-column: 3 / 4;
  z-index: 1;
}

.btn_line-secondary i {
  margin-right: 0.4em;
}

@media (hover: hover) and (pointer: fine) {
  .btn_line-secondary:hover {
    opacity: 1;
    color: #FFFFFF;
    background: #333333;
  }
}

@media (hover: hover) and (pointer: fine) {
  .btn_line-secondary:hover {
    opacity: 1;
    color: #FFFFFF;
    background: #3568d6;
  }
}

/* ==========================================================================
  メールフォームの共通モジュール
============================================================================= */
.form {
  /* エラー表示調整
	----------------------------------------------------------------- */
}

.form table {
  width: 100%;
}

.form .form__item {
  margin-bottom: 30px;
  display: flex;
  align-items: flex-start;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .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: 768px) {
  .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: #009463;
  color: #FFFFFF;
  font-size: 14px;
  text-align: center;
  display: inline-block;
  width: 45px;
  margin: 7px 10px;
  float: right;
  border-radius: 2px;
}

@media screen and (max-width: 768px) {
  .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: 768px) {
  .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", 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"]:-ms-input-placeholder, .form input[type="tel"]:-ms-input-placeholder, .form input[type="email"]:-ms-input-placeholder, .form input[type="number"]:-ms-input-placeholder, .form input[type="date"]:-ms-input-placeholder, .form select:-ms-input-placeholder, .form textarea:-ms-input-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: #009463;
  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 {
  margin: 0 auto;
  width: 100%;
  max-width: 380px;
  border-radius: 50vw;
  border-style: solid;
  border-width: 2px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  -moz-column-gap: 10px;
  column-gap: 10px;
  align-items: center;
  word-break: break-all;
  overflow: hidden;
}

.form .form__submit::before {
  content: '';
  grid-row: 1;
  grid-column: 1 / 2;
  z-index: 1;
}

.form .form__submit::after {
  content: '';
  justify-self: end;
  grid-row: 1;
  grid-column: 3 / 4;
  z-index: 1;
}

.form .form__submit input {
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  padding: 10px 15px;
  transition: opacity 0.3s ease, color 0.3s ease, border 0.3s ease, background-color 0.3s ease, -webkit-text-decoration-color 0.3s ease;
  transition: opacity 0.3s ease, color 0.3s ease, border 0.3s ease, background-color 0.3s ease, text-decoration-color 0.3s ease;
  transition: opacity 0.3s ease, color 0.3s ease, border 0.3s ease, background-color 0.3s ease, text-decoration-color 0.3s ease, -webkit-text-decoration-color 0.3s ease;
  color: #333333;
  border-color: #333333;
  background-color: #FFFFFF;
  background: none;
  border: none;
  cursor: pointer;
  line-height: inherit;
  grid-column: 1 / 4;
  grid-row: 1;
  word-break: break-all;
  white-space: normal;
}

.form .form__submit input i {
  margin-right: 0.4em;
}

@media (hover: hover) and (pointer: fine) {
  .form .form__submit input:hover {
    opacity: 1;
    color: #FFFFFF;
    background: #333333;
  }
}

.form .form__submit::before, .form .form__submit::after {
  content: none;
}

.form .form__submit.js-disabled {
  border-color: #CCCCCC !important;
}

.form .form__submit.js-disabled input {
  background: #CCCCCC !important;
  color: #777777 !important;
}

.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: #009463;
  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__Lv2 {
  font-size: 30px;
  text-align: center;
  margin-bottom: 1em;
  line-height: 1.3em;
}

/* 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: .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: #009463;
    color: #009463;
  }
}

.pagerArchive .wp-pagenavi span.current {
  background: #009463;
  color: #ffffff;
  border-color: #009463;
}

/* ==============================
// 記事詳細のページ送り
================================= */
.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: #009463;
}

.pagerSingle__item a::before,
.pagerSingle__item a::after {
  font-family: 'icomoon';
  position: static;
  display: inline-block;
  transition: .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;
  gap: 10px;
}

@media screen and (max-width: 768px) {
  .listSimpleCat__item {
    font-size: 12px;
  }
}

.listSimpleCat__item > * {
  background: #EEEEEE;
  color: #777777;
  display: block;
  font-size: 14px;
  padding: 0 1.5em;
  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;
}

/* ==========================================================================
	記事一覧表示モジュール
============================================================================= */
/* 	共通
============================================================================= */
.articleList__wrap {
  overflow: hidden;
}

/* 	サムネイルなし
============================================================================= */
.articleList__text-list {
  border-top: 1px solid #EFEFEF;
  display: grid;
  grid-template-columns: auto auto 1fr;
}

@media screen and (max-width: 768px) {
  .articleList__text-list {
    display: block;
  }
}

.articleList__text-listItem {
  padding: 1em 0;
  border-bottom: 1px solid #EFEFEF;
  display: grid;
  grid-column: span 3;
  grid-template-columns: subgrid;
}

@media screen and (max-width: 768px) {
  .articleList__text-listItem {
    display: block;
  }
}

.articleList__text-article {
  gap: 10px;
  display: grid;
  grid-column: span 3;
  grid-template-columns: subgrid;
}

@media screen and (max-width: 768px) {
  .articleList__text-article {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
  }
}

.articleList__text-date {
  order: 1;
  font-size: 14px;
}

@media screen and (max-width: 768px) {
  .articleList__text-date {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
  }
}

.articleList__text-link {
  order: 3;
  flex-grow: 1;
}

@media screen and (max-width: 768px) {
  .articleList__text-link {
    grid-column: 1 / 3;
    grid-row: 2 / 3;
  }
}

.articleList__text-taxonomy {
  order: 2;
}

@media screen and (max-width: 768px) {
  .articleList__text-taxonomy {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
  }
}

/* 	サムネイルつき
	subgridを使ったリンクカードの参考：https://codepen.io/ixkaito/pen/WNWERJg
============================================================================= */
.articleList__thumbnail-list {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
}

.articleList__thumbnail-list a {
  -webkit-text-decoration-color: transparent;
  text-decoration-color: transparent;
}

.articleList__thumbnail-listItem {
  width: calc((100% - 40px * 2) / 3);
}

@media screen and (max-width: 768px) {
  .articleList__thumbnail-listItem {
    width: 100%;
  }
}

.articleList__thumbnail-card {
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  height: 100%;
}

.articleList__thumbnail-link {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: 1 / 5;
  grid-column: 1;
  padding: 20px;
  border: 1px solid #EFEFEF;
}

@media (hover: hover) and (pointer: fine) {
  .articleList__thumbnail-link:hover .articleList__thumbnail-image img {
    scale: 1.1;
  }
}

.articleList__thumbnail-title {
  grid-row: 3 / 4;
  grid-column: 1;
  line-height: 1.7em;
  margin: 1px 0 10px;
}

.articleList__thumbnail-date {
  grid-row: 2 / 3;
  grid-column: 1;
  color: #666666;
  font-size: 12px;
}

.articleList__thumbnail-image {
  grid-row: 1 / 2;
  grid-column: 1;
  overflow: hidden;
  aspect-ratio: 331 / 227;
  background: #FFFFFF;
  margin: -21px -21px 20px;
}

.articleList__thumbnail-image img {
  transition: scale .3s ease;
}

.articleList__thumbnail-text {
  grid-row: 4 / 5;
  grid-column: 1;
  font-weight: normal;
  font-size: 0.9em;
}

.articleList__thumbnail-taxonomy {
  grid-row: 1 / 1;
  grid-column: 1;
  pointer-events: none;
  z-index: 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

.articleList__thumbnail-taxonomy a {
  pointer-events: auto;
}

.articleList__thumbnail-term {
  background: #FFFFFF;
  font-size: 12px;
  padding: 0.25em 1em;
}

/* ==========================================================================
   ニュース一覧のモジュール
============================================================================= */
.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: #009463;
}

@media screen and (max-width: 768px) {
  .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: #009463;
    color: #009463;
  }
}

.pagerArchive .wp-pagenavi span.current {
  background: #009463;
  color: #ffffff;
  border-color: #009463;
}

/* ==============================
// 記事詳細のページ送り
================================= */
.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: #009463;
}

.pagerSingle__item a::before,
.pagerSingle__item a::after {
  font-family: 'icomoon';
  position: static;
  display: inline-block;
  transition: .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-nowC, .t-nowR {
  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: 769px) {
  .t-hidePC {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .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);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
}

/* ==========================================================================
   headerのモジュール
============================================================================= */
.header {
  z-index: 1000;
  top: 0;
  left: 0;
  background: #fff;
  box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 80px;
}

@media screen and (max-width: 1300px) {
  .header {
    height: 56px;
  }
}

.header .l-container {
  height: 100%;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
}

/* ==============================
// ロゴ
================================= */
.header__logo a {
  display: block;
}

.header__logo img {
  display: block;
  width: 100%;
  max-width: 320px;
}

@media screen and (max-width: 1300px) {
  .header__logo img {
    max-width: 230px;
  }
}

/* ==============================
// nav
================================= */
.header__nav {
  display: flex;
}

@media screen and (max-width: 1300px) {
  .header__nav {
    display: none;
  }
}

.header__navList {
  display: flex;
}

.header__navItem {
  margin: 0 5px;
}

.header__navItem a {
  text-decoration: none;
  display: block;
  padding: 0.5em;
}

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

.header__infoItem {
  margin: 0 10px;
}

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

/* ==========================================================================
  footerのモジュール
============================================================================= */
.footer {
  background: #d6d6d6;
}

@media screen and (max-width: 768px) {
  .footer {
    margin-bottom: 66px;
  }
}

.footer .l-container {
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 1024px) {
  .footer .l-container {
    display: block;
  }
}

/* ==============================
// 左側
================================= */
.footer__left {
  width: 250px;
}

@media screen and (max-width: 1024px) {
  .footer__left {
    width: 100%;
  }
}

/* ==============================
// logo
================================= */
.footer__logoWrap {
  display: block;
  width: 250px;
  margin-bottom: 20px;
}

.footer__tel::before {
  font-family: 'icomoon';
  content: "\e904";
  margin-right: 0.3em;
}

@media screen and (max-width: 1024px) {
  .footer__address br {
    display: block;
  }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
  .footer__logo {
    margin: 0 auto 20px;
    width: 150px;
  }
}

/* ==============================
// 右側
================================= */
.footer__right {
  width: calc( 100% - 350px);
  padding-left: 100px;
  display: flex;
  align-content: space-between;
  flex-direction: column;
}

@media screen and (max-width: 1024px) {
  .footer__right {
    width: 100%;
    margin-top: 40px;
    padding-left: 0;
    display: block;
  }
}

/* ==============================
// ナビゲーション
================================= */
.footer__nav {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;
}

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

.footer__nav a {
  text-decoration: none;
  margin-bottom: 10px;
}

.footer__subNavList {
  margin-left: 10px;
}

/* ==============================
// sns
================================= */
.footer__snsItem {
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}

.footer__snsItem a {
  display: block;
}

.footer__snsItem img {
  width: auto;
  height: 25px;
}

/* ==============================
// コピーライト
================================= */
/* ==========================================================================
	パン屑のモジュール
============================================================================= */
.breadcrumbs {
  font-size: clamp(10px, 8px + 0.26042vw, 13px);
  padding-top: 5px;
  padding-bottom: 5px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.breadcrumbs .l-container {
  overflow: hidden;
  text-overflow: ellipsis;
}

.breadcrumbs a {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  margin-right: 0.5em;
  position: relative;
  -webkit-text-decoration-color: currentColor;
  text-decoration-color: currentColor;
  transition: -webkit-text-decoration-color .3s;
  transition: text-decoration-color .3s;
  transition: text-decoration-color .3s, -webkit-text-decoration-color .3s;
}

@media (hover: hover) and (pointer: fine) {
  .breadcrumbs a:hover {
    -webkit-text-decoration-color: transparent;
    text-decoration-color: transparent;
  }
}

.breadcrumbs a::after {
  content: '';
  display: inline-block;
  width: 0.5em;
  aspect-ratio: 2 / 3;
  background: #333333;
  -webkit-clip-path: polygon(2px 0%, 100% 50%, 2px 100%, 0% 100%, calc(100% - 2px) 50%, 0% 0%);
  clip-path: polygon(2px 0%, 100% 50%, 2px 100%, 0% 100%, calc(100% - 2px) 50%, 0% 0%);
}

@media screen and (max-width: 768px) {
  .breadcrumbs {
    padding: 5px 0;
  }
}

/* ==========================================================================
   hamburgerのモジュール
============================================================================= */
.hamburger {
  display: none;
  position: relative;
  width: 24px;
  height: 20px;
}

@media screen and (max-width: 1300px) {
  .hamburger {
    display: block;
  }
}

.hamburger span {
  position: absolute;
  transition: all .4s;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #333333;
  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(9px) rotate(-45deg);
}

.is-spMenuActive .hamburger span:nth-of-type(2) {
  opacity: 0;
}

.is-spMenuActive .hamburger span:nth-of-type(3) {
  transform: translateY(-9px) 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;
  transition: opacity .3s, pointer-events .3s;
  opacity: 0;
  pointer-events: none;
}

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

/* ==========================================================================
   下層ページのHeroモジュール
============================================================================= */
.pageHero {
  background: #e9e9e9;
  padding: 80px;
  text-align: center;
}

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

/* ==========================================================================
   スマホのフッタ固定メニューのモジュール
============================================================================= */
.spHomeBar {
  display: none;
  border-top: 1px solid #CCCCCC;
  position: fixed;
  width: 100%;
  bottom: 0;
  left: 0;
  z-index: 1000;
  background: #fff;
}

@media screen and (min-width: 769px) {
  .spHomeBar {
    display: none !important;
  }
}

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

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

.spHomeBar__navLink {
  text-decoration: none;
  background: #ccc;
  padding: 5px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (hover: hover) and (pointer: fine) {
  .spHomeBar__navLink:hover {
    text-decoration: none;
  }
}

.spHomeBar__navLink p {
  font-size: 0.8em;
  line-height: 1em;
  font-feature-settings: "palt";
}

.spHomeBar__navLink img {
  height: 20px;
  width: auto;
  margin-right: .5em;
}

/* ==========================================================================
   スマホのハンバーガーボタン押下メニューのモジュール
============================================================================= */
.is-spMenuActive {
  overflow: hidden;
}

/* ==========================================================================
   editorのモジュール
   投稿表示系でthe_content()を.editorのクラスで囲っている箇所と
   投稿の編集画面で適用される
============================================================================= */
.editor * {
  color: #333333;
}

.editor p {
  margin-bottom: 1.8em;
  line-height: 1.8em;
  word-break: break-all;
}

.editor img {
  max-width: 100%;
}

.editor a:not([class]) {
  color: #009463;
  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: .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 #EFEFEF;
  border-left: none;
  border-bottom: none;
}

.editor td, .editor th {
  border-bottom: 1px solid #EFEFEF;
  border-left: 1px solid #EFEFEF;
  padding: 0.2em 0.8em;
}

.editor th {
  background: #009463;
  text-align: left;
  border: none;
  color: #fff;
}

.editor th:nth-of-type(odd) {
  background: #3568d6;
}

.editor tr:nth-of-type(even) {
  background: #EEEEEE;
}

.editor tr:nth-of-type(even) th {
  background: #009463;
}

.editor tr:nth-of-type(even) th:nth-of-type(even) {
  background: #3568d6;
}

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

/* ==========================================================================
	TOPページのレイアウト
============================================================================= */
body.home {
  /* ==============================
		// アイキャッチ
	================================= */
}

body.home .home__mv {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50vh;
  min-height: 300px;
  background: #ccc;
}

/* ==========================================================================
   固定ページで共通のレイアウト
============================================================================= */
/* ==========================================================================
	シングルページで共通のレイアウト
============================================================================= */
body.single .secPager {
  padding-top: 30px;
}

@media screen and (max-width: 768px) {
  body.single .secPager {
    padding-top: 7.5px;
  }
}

/* ==========================================================================
   アーカイブページ共通のレイアウト
============================================================================= */
/* ==========================================================================
   お知らせ一覧のレイアウト
============================================================================= */
/* ==========================================================================
   お知らせ詳細
============================================================================= */
/* ==========================================================================
   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: #EEEEEE;
  color: #747474;
  font-size: .9rem;
  line-height: 1.6em;
}

@media screen and (max-width: 768px) {
  body[class*="thanks"] main .attention {
    font-size: .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: #009463;
  }
}
