@charset "UTF-8";
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:where([hidden]:not([hidden=until-found])) {
  display: none !important;
}

:where(html) {
  -webkit-text-size-adjust: none;
  color-scheme: dark light;
  -moz-tab-size: 2;
    -o-tab-size: 2;
       tab-size: 2;
  scrollbar-gutter: stable;
}

:where(html:has(dialog:modal[open])) {
  overflow: clip;
}

@media (prefers-reduced-motion: no-preference) {
  :where(html:focus-within) {
    scroll-behavior: smooth;
  }
}
:where(body) {
  line-height: 1.5;
  font-family: system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

:where(button) {
  all: unset;
}

:where(input, button, textarea, select) {
  font: inherit;
  color: inherit;
}

:where(textarea) {
  resize: vertical;
  resize: block;
}

:where(button, label, select, summary, [role=button], [role=option]) {
  cursor: pointer;
}

:where(:disabled) {
  cursor: not-allowed;
}

:where(label:has(> input:disabled), label:has(+ input:disabled)) {
  cursor: not-allowed;
}

:where(a) {
  color: inherit;
  text-underline-offset: 0.2ex;
}

:where(ul, ol) {
  list-style: none;
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, picture, svg, video) {
  max-inline-size: 100%;
  block-size: auto;
}

:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

:where(h1, h2, h3) {
  line-height: calc(1em + 0.5rem);
  /* text-wrap: balance; */
}

:where(hr) {
  border: none;
  border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}

:where(dialog) {
  border: none;
  background: none;
  inset: unset;
  max-width: unset;
  max-height: unset;
}

:where(dialog:not([open], [popover])) {
  display: none !important;
}

:where([popover]) {
  border: none;
  background: none;
  inset: unset;
  color: inherit;
}

:where([popover]:not(:popover-open)) {
  display: none !important;
}

:where(:focus-visible) {
  outline: 3px solid CanvasText;
  box-shadow: 0 0 0 5px Canvas;
  outline-offset: 1px;
}

:where(:focus-visible, :target) {
  scroll-margin-block: 8vh;
}

:where(.visually-hidden:not(:focus-within, :active)) {
  clip-path: inset(50%) !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden !important;
  position: absolute !important;
  white-space: nowrap !important;
  border: 0 !important;
  -webkit-user-select: none !important;
     -moz-user-select: none !important;
          user-select: none !important;
}

/* width: m.flexWidth(30px, 4); flexカラム幅指定 */
/* SP以外のTELリンク無効*/
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
/*　全体のベース、レイアウト */
* {
  min-height: 0vw;
}

:root {
  color-scheme: light !important;
}

img {
  height: auto;
}

body,
button,
input,
select,
optgroup,
textarea {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", Meiryo, メイリオ, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "Yu Gothic", YuGothic, "MS PGothic", Osaka, arial, sans-serif;
  color: #333333;
  font-size: 16px;
  line-height: 1.8;
  font-feature-settings: "palt";
}

body {
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: clamp(32px, 24.941px + 1.471vw, 40px);
  line-height: 1.5;
  letter-spacing: 1px;
  word-break: break-all;
}

pre {
  white-space: pre-line;
}

/*　アニメーション */
.effect-anime.effect-scroll {
  opacity: 1;
  transform: translate(0, 0);
}

.effect-anime {
  opacity: 0;
  transform: translate(0, 45px);
  transition: all 1s;
}
.effect-anime.nofade {
  opacity: 1;
  transform: translate(0, 0);
}

.fade {
  transform: translate(0, 0);
}

.fade-t {
  transform: translate(0, -45px);
}

.fade-r {
  transform: translate(45px, 0);
}

.fade-l {
  transform: translate(-45px, 0);
}

.appear {
  animation: show 1s both;
}

.dh {
  animation-delay: 1s;
}

.d1h {
  animation-delay: 2.5s;
}

.d2h {
  animation-delay: 3s;
}

@keyframes show {
  0% {
    transform: translate(0, 0px);
    transition: all 1s;
    opacity: 0.01;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}
.list-anime > li {
  opacity: 0;
  transform: translate(0, 45px);
  transition: all 1s;
}

.list-anime > li.effect-scroll {
  opacity: 1;
  transform: translate(0, 0);
}

.list-anime a > li {
  opacity: 0;
  transform: translate(0, 45px);
  transition: all 1s;
}

.list-anime a > li.effect-scroll {
  opacity: 1;
  transform: translate(0, 0);
}

.fadeinBig img {
  opacity: 0;
  transform: scale(1.2);
  transition: 0.5s;
}

.effect-anime.effect-scroll .fadeinBig img {
  opacity: 1;
  transform: scale(1);
}

.slideBand {
  position: relative;
}
.slideBand:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: #fff;
  z-index: 2;
  transition: 2s;
}
.slideBand img {
  margin-bottom: 0 !important;
}

.effect-anime.effect-scroll .slideBand:before {
  transform: translateX(100%);
  transform-origin: 100% 0;
  transition: all 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition-delay: 0.75s;
}

.slideBand-r {
  position: relative;
}
.slideBand-r:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: #fff;
  z-index: 2;
  transition: 2s;
}
.slideBand-r img {
  margin-bottom: 0 !important;
}

.effect-anime.effect-scroll .slideBand-r:before {
  transform: translateX(-100%);
  transform-origin: 100% 0;
  transition: all 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition-delay: 0.75s;
}

.slideBand-b {
  position: relative;
}
.slideBand-b:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: #fff;
  z-index: 2;
  transition: 2s;
}
.slideBand-b img {
  margin-bottom: 0 !important;
}

.effect-anime.effect-scroll .slideBand-b:before {
  transform: translateY(-100%);
  transform-origin: 100% 0;
  transition: all 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition-delay: 0.75s;
}

.slideBand-t {
  position: relative;
}
.slideBand-t:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: #fff;
  z-index: 2;
  transition: 2s;
}
.slideBand-t img {
  margin-bottom: 0 !important;
}

.effect-anime.effect-scroll .slideBand-t:before {
  transform: translateY(100%);
  transform-origin: 100% 0;
  transition: all 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition-delay: 0.75s;
}

/* blockquote */
blockquote {
  position: relative;
  padding: 20px 40px;
  background: #f5f5f5;
  margin: 0 0 20px;
  border-left: 0 solid #A3B57D;
  color: #333333;
}

blockquote:before {
  content: "“";
  left: 10px;
  position: absolute;
  top: 22px;
  font-size: 50px;
  color: #ccc;
  line-height: 1rem;
}

blockquote cite {
  font-style: italic;
  display: block;
  font-size: 0.8rem;
  text-align: right;
}

/* table */
table {
  margin: 2rem auto;
  border: 1px solid #d1cccc;
  border-collapse: collapse;
}

table tbody,
table tfoot,
table thead {
  border: 0px solid #d1cccc;
  background-color: #fff;
}

table tr {
  border: solid 1px #d1cccc;
}

table th {
  padding: 0.5em 1em;
  background-color: #F4F1EA;
  border-right: 1px solid #d1cccc;
  color: #333;
  vertical-align: middle;
  min-width: 100px;
  font-weight: 600;
}

table:not(.Opening-hours) td {
  padding: 0.5em 1em !important;
}

table td {
  text-align: left;
  background-color: #fff;
  border-right: 1px solid #d1cccc;
}

.wp-block-table thead {
  border-bottom: 3px solid #d1cccc;
}

.wp-block-table td, .wp-block-table th {
  border: 1px solid #d1cccc;
}

/* 定義リスト */
dl {
  display: flex;
}
@media screen and (max-width: 767px) {
  dl {
    flex-direction: column;
  }
}
@media screen and (min-width: 768px) {
  dl {
    flex-wrap: wrap;
  }
}

@media screen and (min-width: 768px) {
  dt {
    width: 30%;
  }
}

dd {
  margin-left: 0px;
}
@media screen and (min-width: 768px) {
  dd {
    width: 70%;
  }
}

dt, dd {
  padding: 0.5em 1em;
}

/* リスト */
ol,
ul {
  box-sizing: border-box;
  list-style-type: revert;
  padding-left: 2rem;
  margin: 2rem 0;
}

ol ol,
ul ul {
  margin: 0.2rem;
}

/* other */
strong {
  font-weight: bold;
}

address {
  display: block;
  font-style: italic;
}

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

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

cite {
  font-style: italic;
}

em {
  font-style: italic;
}

ins {
  text-decoration: underline;
}

pre,
textarea {
  overflow: auto;
}

pre {
  display: block;
  font-family: monospace;
  white-space: pre-line;
  margin: 1em 0px;
}

q {
  display: inline;
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

tt {
  font-family: monospace;
}

var {
  font-style: italic;
}

/*画像配置*/
.aligncenter {
  display: block;
  margin-right: auto;
  margin-left: auto;
}

.alignright {
  float: right;
  margin-bottom: 20px;
  margin-left: 20px;
}

.alignleft {
  float: left;
  margin-right: 20px;
  margin-bottom: 20px;
}

.wp-block-image .aligncenter {
  margin-inline: auto;
}
.wp-block-image .aligncenter img {
  margin-inline: auto;
}

.wp-block-image .aligncenter > figcaption {
  text-align: center;
}

.wp-block-image .alignright {
  float: right;
  margin-bottom: 40px;
  margin-left: 60px;
}
@media screen and (max-width: 1023px) {
  .wp-block-image .alignright {
    margin-left: 40px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .wp-block-image .alignright {
    float: none;
    margin: 0 auto 20px auto;
    margin-bottom: 20px;
  }
}

.wp-block-image .alignleft {
  float: left;
  margin-right: 60px;
  margin-bottom: 40px;
}
@media screen and (max-width: 1023px) {
  .wp-block-image .alignleft {
    margin-right: 40px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .wp-block-image .alignleft {
    float: none;
    margin: 0 auto 20px auto;
    margin-bottom: 20px;
  }
}

.wp-caption-text {
  margin-top: 0;
}

.alignnone {
  max-width: 100%;
}

main#content::after {
  content: "";
  display: block;
  clear: both;
}

ul:not(article ul) {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.entry-links:not(.single .entry-links):not(.page .entry-links) {
  display: none;
}

/* form */
input,
textarea,
select {
  transition: 0.3s;
}

input:focus,
textarea:focus,
select:focus {
  border: 1px solid rgb(235.3076923077, 254.6923076923, 195.3076923077);
  outline: none;
  box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.1);
}

textarea[rows] {
  height: auto;
}

::-moz-placeholder {
  color: #ccc;
}

::placeholder {
  color: #ccc;
}

input[type=submit] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
}

.wpcf7 input[type=submit] {
  font-size: 100%;
  background: #83C201;
  color: #fff;
  border-radius: 4px;
  letter-spacing: 2px;
  cursor: pointer;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.2);
  border: 1px solid #83C201;
  padding: 0.8em 2em;
}
.wpcf7 input[type=submit]:hover {
  border: 1px solid #998441;
}

.wpcf7c-btn-back {
  margin-right: 1em;
  font-size: 100%;
  background: #666;
  color: #fff;
  border-radius: 4px;
  letter-spacing: 2px;
  cursor: pointer;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.2);
  border: 1px solid #666;
  padding: 0.8em 2em;
}

.wpcf7 label {
  line-height: 1.4em;
  font-size: 1rem;
  font-weight: 500;
  cursor: default;
  display: block;
  width: 200px;
}

.wpcf7-mail-sent-ok {
  border: 2px solid #485769;
}

@media only screen and (max-width: 767px) {
  .wpcf7 label {
    padding: 0;
  }
  .wpcf7 label.middle {
    margin: 0 0 0.5em 0;
  }
}
textarea[rows] {
  height: auto;
}

::-moz-placeholder {
  color: #ccc;
}

::placeholder {
  color: #ccc;
}

/* 旧Edge対応 */
::-ms-input-placeholder {
  color: #ccc;
}

/* IE対応 */
:-ms-input-placeholder {
  color: #ccc;
}

/*横スクロールヒント*/
@keyframes scroll-hint-appear {
  0% {
    transform: translateX(40px);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50%, 100% {
    transform: translateX(-40px);
    opacity: 0;
  }
}
.scroll-hint.is-right-scrollable {
  background: linear-gradient(270deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
}

.scroll-hint.is-right-scrollable.is-left-scrollable {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0)), linear-gradient(270deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
}

.scroll-hint.is-left-scrollable {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
}

.scroll-hint-icon {
  position: absolute;
  top: calc(50% - 25px);
  left: calc(50% - 60px);
  box-sizing: border-box;
  width: 120px;
  height: 80px;
  border-radius: 5px;
  transition: opacity 0.3s;
  opacity: 0;
  background: rgba(0, 0, 0, 0.7);
  text-align: center;
  padding: 20px 10px 10px 10px;
}

.scroll-hint-icon-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 100%;
  pointer-events: none;
}

.scroll-hint-text {
  font-size: 10px;
  color: #FFF;
  margin-top: 5px;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon {
  opacity: 0.8;
}

.scroll-hint-icon:before {
  display: inline-block;
  width: 40px;
  height: 40px;
  color: #FFF;
  vertical-align: middle;
  text-align: center;
  content: "";
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNS43NyIgaGVpZ2h0PSIzMC41MiIgdmlld0JveD0iMCAwIDI1Ljc3IDMwLjUyIj48dGl0bGU+44Ki44K744OD44OIIDM8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxwYXRoIGQ9Ik0yMS4zMywzMC41Mkg3Ljg1QTEuNTUsMS41NSwwLDAsMSw2LjMsMjlhMTIuNDYsMTIuNDYsMCwwLDAtLjYzLTQuNDIsMjUuMTYsMjUuMTYsMCwwLDAtNC4yNS01bC0uMDYtLjA2QTUsNSwwLDAsMSwwLDE1Ljg2YTMuNjQsMy42NCwwLDAsMSwxLjE3LTIuNjIsMy42MywzLjYzLDAsMCwxLDUuMTQuMDdWMy43N2EzLjc3LDMuNzcsMCwxLDEsNy41NCwwVjguMzNhMy4zNSwzLjM1LDAsMCwxLDEuMjYsMCwzLDMsMCwwLDEsMiwxLjIyLDMuNSwzLjUsMCwwLDEsMi0uMDYsMy4yMSwzLjIxLDAsMCwxLDIsMS41NCwzLjc0LDMuNzQsMCwwLDEsMywuNDdBNC4yMSw0LjIxLDAsMCwxLDI1Ljc0LDE1YzAsLjExLDAsLjI3LDAsLjQ2YTE5LjI2LDE5LjI2LDAsMCwxLS44NCw3Yy0uMTQuMzgtLjM2LjgxLS41NiwxLjIybC0uMTEuMjJjMCwuMDctLjA5LjE0LS4xNC4yMWE3LjEzLDcuMTMsMCwwLDAtMS4xNywyLjE3Yy0uMDYuNTYtLjA2LDIuMTUtLjA1LDIuNzFBMS41NSwxLjU1LDAsMCwxLDIxLjMzLDMwLjUyWk04LjYxLDI4LjIxaDEyYzAtLjcxLDAtMS43MS4wNy0yLjIzYTguNzQsOC43NCwwLDAsMSwxLjU5LTMuMjVsLjA2LS4xMmExMCwxMCwwLDAsMCwuNDYtMSwxNi44LDE2LjgsMCwwLDAsLjctNi4xMmMwLS4yMywwLS40MSwwLS41NGgwYTIsMiwwLDAsMC0uNjQtMS41MiwxLjMzLDEuMzMsMCwwLDAtMS41NS4wOCwxLjEzLDEuMTMsMCwwLDEtMS4xOC4yOCwxLjE1LDEuMTUsMCwwLDEtLjc4LS45NCwxLjI2LDEuMjYsMCwwLDAtLjc1LTEuMTEsMSwxLDAsMCwwLTEuMTEuMjhsLS4xLjFhMS4xNSwxLjE1LDAsMCwxLTEuMTkuMjksMS4xNiwxLjE2LDAsMCwxLS43OC0uOTVjLS4wOS0uNjgtLjIxLS43Ny0uNy0uODdhLjgyLjgyLDAsMCwwLTEsLjQ4LDEuMTYsMS4xNiwwLDAsMS0yLjE2LS41OFYzLjc3YTEuNDYsMS40NiwwLDEsMC0yLjkyLDB2Ny44NWwwLDQuMzNhMS4xNywxLjE3LDAsMCwxLS44MywxLjExLDEuMTUsMS4xNSwwLDAsMS0xLjItLjM1bC0xLS45MWMtLjQ3LS40Mi0uNzMtLjY2LS44NC0uNzdhMS4zNSwxLjM1LDAsMCwwLTItLjEyTDIuNywxNWExLjMyLDEuMzIsMCwwLDAtLjM5LDFBMi41NywyLjU3LDAsMCwwLDMsMTcuODVsMCwwYTI3LjI0LDI3LjI0LDAsMCwxLDQuNyw1LjYyQTEyLjYzLDEyLjYzLDAsMCwxLDguNjEsMjguMjFaTTIzLjIsMjMuMzVaTTYuNTEsMTYuNTlaIiBmaWxsPSIjZmZmIi8+PC9nPjwvZz48L3N2Zz4=);
}

.scroll-hint-icon:after {
  content: "";
  width: 34px;
  height: 14px;
  display: block;
  position: absolute;
  top: 10px;
  left: 50%;
  margin-left: -20px;
  background-repeat: no-repeat;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMy4yOSIgaGVpZ2h0PSIxMi4wMiIgdmlld0JveD0iMCAwIDMzLjI5IDEyLjAyIj48dGl0bGU+44Ki44K744OD44OIIDE8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxsaW5lIHgxPSIxLjg1IiB5MT0iNi4wMSIgeDI9IjEwLjQiIHkyPSI2LjAxIiBmaWxsPSIjZmZmIi8+PHBhdGggZD0iTTEwLjQsNy4xN0gxLjg1YTEuMTYsMS4xNiwwLDEsMSwwLTIuMzFIMTAuNGExLjE2LDEuMTYsMCwxLDEsMCwyLjMxWiIgZmlsbD0iI2ZmZiIvPjxwYXRoIGQ9Ik03LjQsMTJhMS4xNSwxLjE1LDAsMCwxLS43Mi0uMjVsLTYuMjUtNUExLjIsMS4yLDAsMCwxLDAsNS44NywxLjE0LDEuMTQsMCwwLDEsLjQ2LDVMNi43LjIzQTEuMTYsMS4xNiwwLDAsMSw4LjEsMi4wOEwzLDUuOTEsOC4xMiwxMEExLjE2LDEuMTYsMCwwLDEsNy40LDEyWiIgZmlsbD0iI2ZmZiIvPjxsaW5lIHgxPSIzMS40NSIgeTE9IjYuMDEiIHgyPSIyMi44OSIgeTI9IjYuMDEiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMzEuNDUsNy4xN0gyMi44OWExLjE2LDEuMTYsMCwxLDEsMC0yLjMxaDguNTZhMS4xNiwxLjE2LDAsMCwxLDAsMi4zMVoiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMjUuOSwxMmExLjE4LDEuMTgsMCwwLDEtLjkxLS40M0ExLjE3LDEuMTcsMCwwLDEsMjUuMTcsMTBsNS4wOS00LjA1TDI1LjIsMi4wOEExLjE2LDEuMTYsMCwwLDEsMjYuNTkuMjNMMzIuODQsNWExLjE2LDEuMTYsMCwwLDEsLjQ1LjkxLDEuMTQsMS4xNCwwLDAsMS0uNDMuOTJsLTYuMjQsNUExLjE3LDEuMTcsMCwwLDEsMjUuOSwxMloiIGZpbGw9IiNmZmYiLz48L2c+PC9nPjwvc3ZnPg==);
  opacity: 0;
  transition-delay: 2.4s;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon:after {
  opacity: 1;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon:before {
  animation: scroll-hint-appear 1.2s linear;
  animation-iteration-count: 2;
}

.scroll-hint-icon-white {
  background-color: #FFF;
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.4);
}

.scroll-hint-icon-white:before {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNS43NyIgaGVpZ2h0PSIzMC41MiIgdmlld0JveD0iMCAwIDI1Ljc3IDMwLjUyIj48dGl0bGU+44Ki44K744OD44OIIDQ8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxwYXRoIGQ9Ik0yMS4zMywzMC41Mkg3Ljg1QTEuNTUsMS41NSwwLDAsMSw2LjMsMjlhMTIuNDYsMTIuNDYsMCwwLDAtLjYzLTQuNDIsMjUuMTYsMjUuMTYsMCwwLDAtNC4yNS01bC0uMDYtLjA2QTUsNSwwLDAsMSwwLDE1Ljg2YTMuNjQsMy42NCwwLDAsMSwxLjE3LTIuNjIsMy42MywzLjYzLDAsMCwxLDUuMTQuMDdWMy43N2EzLjc3LDMuNzcsMCwxLDEsNy41NCwwVjguMzNhMy4zNSwzLjM1LDAsMCwxLDEuMjYsMCwzLDMsMCwwLDEsMiwxLjIyLDMuNSwzLjUsMCwwLDEsMi0uMDYsMy4yMSwzLjIxLDAsMCwxLDIsMS41NCwzLjc0LDMuNzQsMCwwLDEsMywuNDdBNC4yMSw0LjIxLDAsMCwxLDI1Ljc0LDE1YzAsLjExLDAsLjI3LDAsLjQ2YTE5LjI2LDE5LjI2LDAsMCwxLS44NCw3Yy0uMTQuMzgtLjM2LjgxLS41NiwxLjIybC0uMTEuMjJjMCwuMDctLjA5LjE0LS4xNC4yMWE3LjEzLDcuMTMsMCwwLDAtMS4xNywyLjE3Yy0uMDYuNTYtLjA2LDIuMTUtLjA1LDIuNzFBMS41NSwxLjU1LDAsMCwxLDIxLjMzLDMwLjUyWk04LjYxLDI4LjIxaDEyYzAtLjcxLDAtMS43MS4wNy0yLjIzYTguNzQsOC43NCwwLDAsMSwxLjU5LTMuMjVsLjA2LS4xMmExMCwxMCwwLDAsMCwuNDYtMSwxNi44LDE2LjgsMCwwLDAsLjctNi4xMmMwLS4yMywwLS40MSwwLS41NGgwYTIsMiwwLDAsMC0uNjQtMS41MiwxLjMzLDEuMzMsMCwwLDAtMS41NS4wOCwxLjEzLDEuMTMsMCwwLDEtMS4xOC4yOCwxLjE1LDEuMTUsMCwwLDEtLjc4LS45NCwxLjI2LDEuMjYsMCwwLDAtLjc1LTEuMTEsMSwxLDAsMCwwLTEuMTEuMjhsLS4xLjFhMS4xNSwxLjE1LDAsMCwxLTEuMTkuMjksMS4xNiwxLjE2LDAsMCwxLS43OC0uOTVjLS4wOS0uNjgtLjIxLS43Ny0uNy0uODdhLjgyLjgyLDAsMCwwLTEsLjQ4LDEuMTYsMS4xNiwwLDAsMS0yLjE2LS41OFYzLjc3YTEuNDYsMS40NiwwLDEsMC0yLjkyLDB2Ny44NWwwLDQuMzNhMS4xNywxLjE3LDAsMCwxLS44MywxLjExLDEuMTUsMS4xNSwwLDAsMS0xLjItLjM1bC0xLS45MWMtLjQ3LS40Mi0uNzMtLjY2LS44NC0uNzdhMS4zNSwxLjM1LDAsMCwwLTItLjEyTDIuNywxNWExLjMyLDEuMzIsMCwwLDAtLjM5LDFBMi41NywyLjU3LDAsMCwwLDMsMTcuODVsMCwwYTI3LjI0LDI3LjI0LDAsMCwxLDQuNyw1LjYyQTEyLjYzLDEyLjYzLDAsMCwxLDguNjEsMjguMjFaTTIzLjIsMjMuMzVaTTYuNTEsMTYuNTlaIi8+PC9nPjwvZz48L3N2Zz4=);
}

.scroll-hint-icon-white:after {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMy4yOSIgaGVpZ2h0PSIxMi4wMiIgdmlld0JveD0iMCAwIDMzLjI5IDEyLjAyIj48dGl0bGU+44Ki44K744OD44OIIDI8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxsaW5lIHgxPSIxLjg1IiB5MT0iNi4wMSIgeDI9IjEwLjQiIHkyPSI2LjAxIi8+PHBhdGggZD0iTTEwLjQsNy4xN0gxLjg1YTEuMTYsMS4xNiwwLDEsMSwwLTIuMzFIMTAuNGExLjE2LDEuMTYsMCwxLDEsMCwyLjMxWiIvPjxwYXRoIGQ9Ik03LjQsMTJhMS4xNSwxLjE1LDAsMCwxLS43Mi0uMjVsLTYuMjUtNUExLjIsMS4yLDAsMCwxLDAsNS44NywxLjE0LDEuMTQsMCwwLDEsLjQ2LDVMNi43LjIzQTEuMTYsMS4xNiwwLDAsMSw4LjEsMi4wOEwzLDUuOTEsOC4xMiwxMEExLjE2LDEuMTYsMCwwLDEsNy40LDEyWiIvPjxsaW5lIHgxPSIzMS40NSIgeTE9IjYuMDEiIHgyPSIyMi44OSIgeTI9IjYuMDEiLz48cGF0aCBkPSJNMzEuNDUsNy4xN0gyMi44OWExLjE2LDEuMTYsMCwxLDEsMC0yLjMxaDguNTZhMS4xNiwxLjE2LDAsMCwxLDAsMi4zMVoiLz48cGF0aCBkPSJNMjUuOSwxMmExLjE4LDEuMTgsMCwwLDEtLjkxLS40M0ExLjE3LDEuMTcsMCwwLDEsMjUuMTcsMTBsNS4wOS00LjA1TDI1LjIsMi4wOEExLjE2LDEuMTYsMCwwLDEsMjYuNTkuMjNMMzIuODQsNWExLjE2LDEuMTYsMCwwLDEsLjQ1LjkxLDEuMTQsMS4xNCwwLDAsMS0uNDMuOTJsLTYuMjQsNUExLjE3LDEuMTcsMCwwLDEsMjUuOSwxMloiLz48L2c+PC9nPjwvc3ZnPg==);
}

.scroll-hint-icon-white .scroll-hint-text {
  color: #000;
}

/* sticky */
._sticky_a { /*列*/
  position: sticky;
  top: 0;
  left: 0px;
  background: none;
  border-left: none;
  border-right: none;
}

._sticky_a:before {
  content: "";
  position: absolute;
  top: 0;
  left: -1px;
  width: 100%;
  height: 100%;
  min-width: 100px;
  border-left: 1px solid #d1cccc;
  border-right: 1px solid #d1cccc;
  background: #F4F1EA;
  z-index: -1;
  box-sizing: content-box;
}

._sticky_b { /*行*/
  position: sticky;
  top: 0;
  left: 0;
  background: none;
  border-top: none;
  border-bottom: none;
}

._sticky_b:before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 100%;
  border-top: 1px solid #d1cccc;
  border-bottom: 1px solid #d1cccc;
  background: #F4F1EA;
  z-index: -1;
  box-sizing: content-box;
}

._sticky_ab {
  position: sticky;
  top: 0;
  left: 0;
  background: none;
  border-top: none;
  border-bottom: none;
  border-left: none;
  border-right: none;
  z-index: 1;
}

._sticky_ab:before {
  content: "";
  position: absolute;
  min-width: 100px;
  top: -1px;
  left: -1px;
  width: 100%;
  height: 100%;
  border-top: 1px solid #d1cccc;
  border-bottom: 1px solid #d1cccc;
  border-left: 1px solid #d1cccc;
  border-right: 1px solid #d1cccc;
  background: #F4F1EA;
  z-index: -1;
  box-sizing: content-box;
}

/* page-top */
div#page-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 2;
  background-color: #998441;
  width: 56px;
  height: 56px;
  border-radius: 50%;
}
div#page-top:before {
  content: "";
  background-image: url(../images/icon/up-arrow.svg);
  width: 22px;
  height: 11px;
  background-size: cover;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
div#page-top:hover {
  cursor: pointer;
}

/* flexible-table */
.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr th, .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr td {
  border-color: #d1cccc;
}

/* olstyle */
.page ol:not(.nostyle) {
  counter-reset: number; /*数字をリセット*/
  list-style-type: none !important; /*数字を一旦消す*/
  padding: 0em;
}
.page ol:not(.nostyle) li {
  position: relative;
  line-height: 1.8;
  padding: 0;
  /*    display: flex;
      gap: 15px; */
}
.page ol:not(.nostyle) li:not(:last-child) {
  margin-bottom: 1rem;
}
.page ol:not(.nostyle) li:before {
  counter-increment: number;
  content: counter(number);
  display: inline-block;
  background: #998441;
  color: #fff;
  font-size: 18px;
  position: relative;
  top: 4px;
  width: 25px;
  height: 25px;
  line-height: 1.6rem;
  text-align: center;
  flex-shrink: 0;
  margin-right: 16px;
}

.h1-hidden {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

.page-template-page_fullwidth .content.sidebarLayout {
  max-width: 100%;
  padding: 0;
}

/* font */
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/sans/noto-sans-400.woff2") format("woff2"), url("../fonts/sans/noto-sans-400.woff") format("woff");
}
@font-face {
  font-family: "Noto Serif JP";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/serif/noto-serif-400.woff2") format("woff2"), url("../fonts/serif/noto-serif-400.woff") format("woff");
}
.serif {
  font-family: "Noto Serif JP";
  font-style: normal;
  font-weight: 400;
}

.en {
  font-family: "Sorts Mill Goudy", serif;
  font-weight: 400;
  font-style: normal;
}

/* layout */
@media screen and (min-width: 1024px) {
  .archive:not(.post-type-archive-helpful) .sidebarLayout,
  .single .sidebarLayout {
    display: flex;
    flex-direction: row-reverse;
    gap: 80px;
  }
  .archive:not(.post-type-archive-helpful) .sidebarLayout main#content,
  .single .sidebarLayout main#content {
    flex-grow: 1;
    max-width: 885px;
  }
}
/* header */
#branding #site-title h1 {
  margin-bottom: 0;
  display: inline-block;
}
#branding .logo {
  background-image: url(../images/logo.svg);
  width: 313px;
  height: 54px;
  background-size: contain;
  display: block;
  background-repeat: no-repeat;
  transition: 0.5s;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1023px) {
  #branding .logo {
    width: 224px;
    height: 56px;
  }
}
@media screen and (max-width: 1023px) {
  #branding .site-logo {
    margin: 10px 0 0 10px;
    position: relative;
    z-index: 1;
  }
}
@media screen and (min-width: 1024px) {
  #branding {
    margin-right: auto;
  }
}

#menu-headnav li a:hover {
  cursor: pointer;
}

@media screen and (max-width: 1023px) {
  .sp-logo {
    background-image: url(../images/logo.svg);
    width: 243px;
    height: 43px;
    display: block;
    background-size: contain;
    background-repeat: no-repeat;
    transition: 0.5s;
    position: absolute;
    z-index: 1;
    top: 12px;
    left: 15px;
  }
}

/*page-header*/
.page-header {
  margin-bottom: 2rem;
  margin-top: 66px;
}
@media screen and (min-width: 1024px) {
  .page-header {
    margin-bottom: 3rem;
    margin-top: 94px;
  }
}
.page-header.type3 {
  display: grid;
  align-items: center;
  justify-content: center;
  height: 200px;
  background: url(../images/head-img.jpg);
  background-size: cover;
  position: relative;
  background-position: center;
}
.page-header.type3 .page-header-inner {
  max-width: 1200px;
  margin-inline: auto;
  padding: 0 15px;
}
@media screen and (max-width: 1023px) {
  .page-header.type3 .page-header-inner {
    padding: 0 24px;
  }
}
.page-header.type3::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.45);
}
@media screen and (min-width: 1024px) {
  .page-header.type3 {
    height: 300px;
  }
}
.page-header.type3 .page-header-title {
  font-size: clamp(22px, 11.412px + 2.206vw, 34px);
  text-align: center;
  letter-spacing: 5px;
  margin: 0 0 0 0;
  position: relative;
  color: #fff;
  position: relative;
  z-index: 2;
  font-weight: 400;
  font-family: "Noto Serif JP";
}
@media screen and (min-width: 768px) {
  .page-header.type3 .page-header-title {
    margin: 0 0 0 0;
  }
}

@keyframes fadeInAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* footer */
#footer {
  background: #F1F5E9;
}
@media screen and (max-width: 1023px) {
  #footer {
    padding-bottom: 150px;
    margin-top: 50px;
  }
}
@media screen and (min-width: 1024px) {
  #footer {
    margin-top: 90px;
    padding-bottom: 145px;
  }
}
#footer a {
  text-decoration: none;
  color: #333333;
}
#footer .footer-contents-wrap {
  display: flex;
  padding-top: clamp(40px, 32.941px + 1.471vw, 48px);
  gap: 30px;
}
@media screen and (max-width: 767px) {
  #footer .footer-contents-wrap {
    flex-wrap: wrap;
    /* flex-direction: column-reverse; */
    gap: 30px;
  }
}
@media screen and (min-width: 1024px) {
  #footer .footer-contents-wrap {
    gap: 52px;
  }
}
#footer .footer-contents {
  flex-grow: 1;
}
#footer .footer-contents .footer-contents-txt {
  margin-top: 1em;
}
#footer .footer-contents p {
  font-size: clamp(12px, 12px + 0vw, 12px);
}
#footer .footer-menu {
  /* width: 30%;*/
}
@media screen and (max-width: 767px) {
  #footer .footer-menu {
    width: 100%;
  }
}
#footer .footer-menu > li:not(:last-child) {
  margin-bottom: 1.5em;
}
#footer .footer-menu h2, #footer .footer-menu .widgettitle {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 0.5em;
  padding: 0;
}
#footer .footer-menu .menu-item {
  position: relative;
  padding-left: 15px;
  line-height: 1.5;
  font-size: 14px;
}
#footer .footer-menu .menu-item:not(:last-child) {
  margin-bottom: 0.4rem;
}
#footer .footer-menu .menu-item:before {
  content: "";
  position: absolute;
  top: 0.3em;
  left: 0;
  transform: rotate(45deg);
  width: 5px;
  height: 5px;
  border-top: 1px solid #998441;
  border-right: 1px solid #998441;
}

@media screen and (max-width: 1023px) {
  .page #footer {
    margin-top: 0px;
  }
}
@media screen and (min-width: 1024px) {
  .page #footer {
    margin-top: 0px;
  }
}

@media screen and (max-width: 1023px) {
  .foot-margin {
    margin-bottom: 50px;
  }
}
@media screen and (min-width: 1024px) {
  .foot-margin {
    margin-bottom: 90px;
  }
}

#copyright {
  padding: 1em 0;
  text-align: center;
  font-size: 14px;
  color: #9E9E9E;
}

#nav_menu-2 .sub-menu {
  display: none;
}

#footer ul.sub-menu {
  display: block;
  margin: 8px 0;
}

footer table.Opening-hours.oh-3,
.c-info-content table.Opening-hours.oh-3 {
  margin: 40px 0 16px 0;
}
footer table.Opening-hours.oh-3 th,
.c-info-content table.Opening-hours.oh-3 th {
  font-family: "Noto Serif JP";
  font-style: normal;
  font-weight: 400;
  background-color: #F4F1EA;
}
footer table.Opening-hours.oh-3 td span,
.c-info-content table.Opening-hours.oh-3 td span {
  color: #83C201;
}

/* main */
.search .header {
  background-color: rgba(131, 194, 1, 0.1);
  border-radius: 5px;
  padding: 0.5em 1em;
  margin-bottom: 1.5em;
}
.search .header p {
  margin-bottom: 0;
}

/* 記事リスト共通-サムネ無し記事 */
.search article:not(:last-of-type), .archive:not(.post-type-archive-helpful) article:not(:last-of-type), .blog article:not(:last-of-type) {
  border-bottom: 1px dotted #d1cccc;
  margin-bottom: 1em;
  padding-bottom: 1em;
}
.search .attachment-thumbnail, .search .noimg, .archive:not(.post-type-archive-helpful) .attachment-thumbnail, .archive:not(.post-type-archive-helpful) .noimg, .blog .attachment-thumbnail, .blog .noimg {
  aspect-ratio: 3/2;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.search h2, .archive:not(.post-type-archive-helpful) h2, .blog h2 {
  font-size: clamp(16px, 8.941px + 1.471vw, 24px);
  padding: 0;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 1023px) {
  .search h2, .archive:not(.post-type-archive-helpful) h2, .blog h2 {
    margin-bottom: 0.3em;
    line-height: 1.4;
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
}
.search .entry-summary, .archive:not(.post-type-archive-helpful) .entry-summary, .blog .entry-summary {
  color: #666;
  display: flex;
  gap: 30px;
  margin-top: 1em;
}
.search .entry-summary > a, .archive:not(.post-type-archive-helpful) .entry-summary > a, .blog .entry-summary > a {
  display: none;
  width: 200px;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .search .entry-summary > a, .archive:not(.post-type-archive-helpful) .entry-summary > a, .blog .entry-summary > a {
    width: 100%;
  }
}
.search .entry-summary > a img, .archive:not(.post-type-archive-helpful) .entry-summary > a img, .blog .entry-summary > a img {
  transition: 0.5s;
}
.search .entry-summary > a:hover img, .archive:not(.post-type-archive-helpful) .entry-summary > a:hover img, .blog .entry-summary > a:hover img {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  .search .entry-summary, .archive:not(.post-type-archive-helpful) .entry-summary, .blog .entry-summary {
    flex-direction: column;
    gap: 15px;
  }
}
.search .entry-meta, .search .entry-meta a, .archive:not(.post-type-archive-helpful) .entry-meta, .archive:not(.post-type-archive-helpful) .entry-meta a, .blog .entry-meta, .blog .entry-meta a {
  text-align: right;
  font-size: 14px;
}
.search header, .archive:not(.post-type-archive-helpful) header, .blog header {
  width: 100%;
}
.search .summary-list time, .archive:not(.post-type-archive-helpful) .summary-list time, .blog .summary-list time {
  font-size: 14px;
  display: block;
}
@media screen and (min-width: 1024px) {
  .search .summary-list time, .archive:not(.post-type-archive-helpful) .summary-list time, .blog .summary-list time { /*
  display: none;
*/ }
}

@media screen and (max-width: 1023px) {
  .archive .entry-meta {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  .archive .entry-meta header .entry-date {
    display: none;
  }
}

.jump_point {
  padding-top: 100px;
  margin-top: -100px;
}

@media screen and (max-width: 1023px) {
  .post-type-archive .eyecatch {
    display: none;
  }
}

.search-results .summary-list {
  display: block;
}

.post-type-archive-news .eyecatch,
.search-results .eyecatch,
.search-results .entry-date {
  display: none !important;
}

.contents1-item {
  display: grid;
  gap: 30px 15px;
}
.contents1-item.bgcolor li {
  padding: 1em;
  background: #fff;
}
.contents1-item.bgcolor li h3, .contents1-item.bgcolor li h4 {
  color: #998441;
}
.contents1-item h3, .contents1-item h4 {
  font-size: 21px;
  text-align: center;
  margin-bottom: 16px;
}
.contents1-item p:last-child {
  margin-bottom: 0;
}
.contents1-item img {
  margin: 0 auto 1em auto;
}
@media screen and (min-width: 768px) {
  .contents1-item.col2 {
    grid-template-columns: 1fr 1fr;
    gap: 30px 30px;
  }
}
@media screen and (min-width: 768px) {
  .contents1-item.col3 {
    grid-template-columns: 1fr 1fr;
    gap: 30px 30px;
  }
}
@media screen and (min-width: 1024px) {
  .contents1-item.col3 {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px 30px;
  }
}
@media screen and (min-width: 768px) {
  .contents1-item.col4 {
    grid-template-columns: 1fr 1fr;
    gap: 30px 30px;
  }
}
@media screen and (min-width: 1024px) {
  .contents1-item.col4 {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 30px 30px;
  }
}

.c-linklist {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px 0;
}
.c-linklist li {
  padding: 0 1em;
  border-right: 1px dashed #d1cccc;
}
.c-linklist li:first-child {
  border-left: 1px dashed #d1cccc;
}
.c-linklist a {
  color: #333333;
  text-decoration: none;
  position: relative;
  display: inline-block;
  padding-right: 25px;
  transition: 0.5s;
}
.c-linklist a:hover:before {
  opacity: 0.6;
}
.c-linklist a:before {
  content: "";
  position: absolute;
  margin: auto;
  top: 0px;
  bottom: 0;
  right: 3px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #83C201;
  transition: 0.5s;
}
.c-linklist a:hover:after {
  opacity: 0.6;
}
.c-linklist a:after {
  content: "";
  position: absolute;
  margin: auto;
  top: 0px;
  bottom: 0;
  right: 9px;
  width: 5px;
  height: 5px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
  transition: 0.5s;
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.schedule-table th, .schedule-table td {
  vertical-align: top;
  font-family: "Noto Serif JP";
  font-style: normal;
  font-weight: 400 !important;
}

.schedule-table th.slot-head {
  vertical-align: middle;
}

.schedule-summary {
  margin-bottom: clamp(60px, 42.353px + 3.676vw, 80px);
}
.schedule-summary table {
  width: 100%;
}
.schedule-summary th {
  font-family: "Noto Serif JP";
  font-style: normal;
  font-weight: 400 !important;
  text-align: left;
  width: 30%;
}
@media screen and (max-width: 1023px) {
  .schedule-summary th {
    width: 50%;
  }
}

.schedule-table thead th {
  background: #f7f5f1;
  padding: 0.5rem;
}

.schedule-table td {
  height: 140px;
  padding: 0.4rem;
}

.day-head {
  display: flex;
  justify-content: flex-end;
}

.day-num {
  font-weight: 700;
}

.slot {
  margin-top: 0.25rem;
  padding-top: 0.25rem;
  border-top: 1px dashed #eee;
}

.slot-label {
  font-size: 0.8rem;
  opacity: 0.7;
  margin-bottom: 0.15rem;
}

.svc-badge {
  display: inline-block;
  font-size: 0.8rem;
  line-height: 1;
  margin: 0 0.25rem 0.25rem 0;
}

.svc-badge.is-text {
  color: var(--svc-color, #333);
  background: transparent;
}

.docs, .note {
  font-size: 0.85rem;
  margin-top: 0.15rem;
}

.is-out {
  background: #fbfbfb;
  color: #bbb;
}

.closed, .is-closed {
  color: #999;
}

/* 分割レイアウト用の追加 */
.schedule-table--split {
  table-layout: fixed;
  width: 100%;
  border-collapse: collapse;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .schedule-table--split {
    width: 850px;
  }
}

.schedule-table--split th, .schedule-table--split td {
  border-right: 1px solid #d1cccc;
  vertical-align: top;
}

.schedule-table--split thead th {
  background: #f7f5f1;
  padding: 0.5rem;
}

/* 左端：午前/午後のラベル列 */
.schedule-table--split .slot-corner {
  width: 90px;
}

.schedule-table--split .slot-head {
  width: 90px;
  text-align: center;
  font-weight: 700;
}

.schedule-table--split td {
  height: 100px;
  padding: 0.4rem;
}

.schedule-table--split .day-head {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 0.2rem;
}

.schedule-table--split .day-num {
  font-weight: 700;
  opacity: 0.7;
  font-size: 0.85rem;
}

/* 週の切れ目を強める（任意） */
.schedule-table--split .week-row.am td,
.schedule-table--split .week-row.am th.slot-head {
  border-top-width: 2px;
}

/* 既存の見た目を流用 */
.svc-badge {
  display: inline-block;
  font-size: 15px;
  line-height: 1;
  margin: 0 0.25rem 0.25rem 0;
}

.svc-badge.is-text {
  color: var(--svc-color, #333);
  background: transparent;
}

.docs, .note {
  font-size: 0.85rem;
  margin-top: 0.15rem;
}

.is-out {
  background: #fbfbfb;
  color: #bbb;
}

.closed {
  color: #925050;
}

/* 見出し（日）を消す */
.schedule-table--split thead th:nth-child(8) {
  display: none;
}

/* AM/PM 行の（日）を消す（thが1列あるので8番目が日曜） */
.schedule-table--split tbody td:nth-child(8) {
  display: none;
}

.cell-pm:has(.closed),
.cell-am:has(.closed) {
  background-color: #f3f3f3;
}

.hierarchical-nav ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(auto-fit, minmax(222px, 1fr));
}
.hierarchical-nav ul li a {
  display: grid;
  border-left: 6px solid #2C8A3D;
  border-right: 1px solid #2C8A3D;
  border-top: 1px solid #2C8A3D;
  border-bottom: 1px solid #2C8A3D;
  position: relative;
  align-items: center;
  justify-content: center;
  font-family: "Noto Serif JP";
  font-style: normal;
  font-weight: 400;
  height: 96px;
  padding: 0 16px;
  text-align: center;
  font-size: clamp(14px, 10.471px + 0.735vw, 18px);
  line-height: 1.5;
}
.hierarchical-nav ul li a:after {
  content: "";
  position: absolute;
  display: block;
  right: 24px;
  bottom: 16px;
  background-image: url(../images/icon/right-arrow.svg);
  width: 16px;
  height: 10px;
  background-size: contain;
  background-repeat: no-repeat;
  transition: 0.5s;
}
.hierarchical-nav ul li a:hover {
  background-color: rgb(239.0641509434, 248.5018867925, 228.6981132075);
  border-left: 6px solid #6DAA2A;
  border-right: 1px solid #6DAA2A;
  border-top: 1px solid #6DAA2A;
  border-bottom: 1px solid #6DAA2A;
}
.hierarchical-nav ul li a:hover:after {
  right: 16px;
}
@media screen and (max-width: 767px) {
  .hierarchical-nav ul li a {
    height: 90px;
  }
}

.helpful-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 16px;
}
@media screen and (min-width: 768px) {
  .helpful-list {
    grid-gap: 48px 32px;
  }
}
.helpful-list .helpful-card {
  border: 1px solid #A3B57D;
  box-shadow: 0 0 8px 2px rgba(0, 0, 0, 0.1);
  opacity: 1;
  transition: 0.3s ease;
  position: relative;
  width: 100%;
}
.helpful-list .helpful-card:hover {
  opacity: 0.7;
}
.helpful-list .helpful-card .helpful-btn {
  font-size: 14px;
  text-align: center;
  border-top: 1px solid #d1cccc;
  padding: 8px 0;
}
.helpful-list .helpful-card .helpful-card__thumb img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .helpful-list .helpful-card .helpful-card__inner {
    display: flex;
  }
  .helpful-list .helpful-card .helpful-card__inner .helpful-card__thumb {
    width: 135px;
    flex-shrink: 0;
  }
}
.helpful-list h2, .helpful-list h3 {
  font-size: clamp(14px, 12.235px + 0.368vw, 16px);
  word-break: break-all;
  color: #333333;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 12px 0;
}
@media screen and (max-width: 767px) {
  .helpful-list h2, .helpful-list h3 {
    -webkit-line-clamp: 3;
  }
}
.helpful-list h2, .helpful-list h3 {
  padding: 0 16px;
}
@media screen and (min-width: 768px) {
  .helpful-list h2, .helpful-list h3 {
    height: 3rem;
  }
}
.helpful-list .wp-post-image {
  margin-bottom: 0 !important;
}

.helpful-related__title {
  margin-top: clamp(40px, 18.824px + 4.412vw, 64px);
  font-size: clamp(18px, 12.706px + 1.103vw, 24px);
  color: #83C201;
  border-left: 8px solid #83C201;
  padding-left: 16px;
}

.schedule-anchor-links {
  margin-bottom: 32px;
  margin-bottom: 32px;
  display: flex;
  gap: 16px;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .schedule-anchor-links {
    flex-direction: column;
  }
}
.schedule-anchor-links .schedule-link-btn {
  border-radius: 5px;
  background-color: #998441;
  font-family: "Noto Serif JP";
  color: #fff;
  text-align: center;
  padding: 14px 32px;
  display: block;
  max-width: 300px;
}
@media screen and (max-width: 767px) {
  .schedule-anchor-links .schedule-link-btn {
    margin-inline: auto;
  }
}
.schedule-anchor-links .schedule-link-btn:hover {
  background-color: rgb(117.2064220183, 101.119266055, 49.7935779817);
}

/* sidebar */
#sidebar {
  background-color: #fff;
  width: 220px;
  flex-shrink: 0;
}
@media screen and (max-width: 1023px) {
  #sidebar {
    display: none;
  }
}
#sidebar .widget-area {
  width: 100%;
}
#sidebar .widget-area a:not(.btn) {
  color: #333333;
}
#sidebar .widget-area a:not(.btn):hover {
  color: #333333;
  opacity: 0.5;
}
#sidebar .widget-area > ul > li h3 {
  padding: 0;
  font-size: clamp(18px, 16.235px + 0.368vw, 20px);
  text-align: center;
  margin-bottom: -1em;
  border-bottom: 1px solid #333333;
  padding-bottom: 0.5em;
}
#sidebar .widget-area > ul > li .widget-title {
  padding: 0;
  font-size: clamp(18px, 16.235px + 0.368vw, 20px);
  text-align: center;
  margin-bottom: 0.5em;
  border-bottom: 1px solid #333333;
  padding-bottom: 0.5em;
}
#sidebar .widget-area > ul > li.widget-container:not(:last-child) {
  margin-bottom: 2em;
}
#sidebar .widget-area > ul > li.widget-container .menu > li, #sidebar .widget-area > ul > li.widget-container ul > li, #sidebar .widget-area > ul > li .widget_categories .menu > li, #sidebar .widget-area > ul > li .widget_categories ul > li {
  padding-left: 1.5em;
  position: relative;
}
#sidebar .widget-area > ul > li.widget-container .menu > li:before, #sidebar .widget-area > ul > li.widget-container ul > li:before, #sidebar .widget-area > ul > li .widget_categories .menu > li:before, #sidebar .widget-area > ul > li .widget_categories ul > li:before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0px;
  width: 15px;
  height: 16px;
  border-radius: 100%;
  background-color: #998441;
}
#sidebar .widget-area > ul > li.widget-container .menu > li:after, #sidebar .widget-area > ul > li.widget-container ul > li:after, #sidebar .widget-area > ul > li .widget_categories .menu > li:after, #sidebar .widget-area > ul > li .widget_categories ul > li:after {
  content: "";
  position: absolute;
  top: 13px;
  left: 5px;
  transform: rotate(45deg);
  width: 4px;
  height: 4px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}
#sidebar .widget-area > ul > li.widget-container .menu > li .sub-menu, #sidebar .widget-area > ul > li.widget-container ul > li .sub-menu, #sidebar .widget-area > ul > li .widget_categories .menu > li .sub-menu, #sidebar .widget-area > ul > li .widget_categories ul > li .sub-menu {
  position: relative;
}
#sidebar .widget-area > ul > li.widget-container .menu > li .sub-menu li:before, #sidebar .widget-area > ul > li.widget-container ul > li .sub-menu li:before, #sidebar .widget-area > ul > li .widget_categories .menu > li .sub-menu li:before, #sidebar .widget-area > ul > li .widget_categories ul > li .sub-menu li:before {
  content: none;
}
#sidebar .widget-area > ul > li.widget-container .menu > li .sub-menu li:after, #sidebar .widget-area > ul > li.widget-container ul > li .sub-menu li:after, #sidebar .widget-area > ul > li .widget_categories .menu > li .sub-menu li:after, #sidebar .widget-area > ul > li .widget_categories ul > li .sub-menu li:after {
  content: "";
  position: absolute;
  top: 12px;
  left: 2px;
  transform: rotate(45deg);
  width: 4px;
  height: 4px;
  border-top: 1px solid #998441;
  border-right: 1px solid #998441;
}
#sidebar .wp-block-heading {
  padding: 0;
  font-size: 20px;
  text-align: center;
  color: #333333;
  border-bottom: 1px solid #d1cccc;
  padding-bottom: 0.5em;
  margin-bottom: 1em;
}

button.wp-block-search__button.wp-element-button {
  min-width: 60px;
}

#sidebar .widget-title {
  padding: 0;
  font-size: 20px;
  text-align: center;
  color: #333333;
  border-bottom: 1px solid #d1cccc !important;
  padding-bottom: 0.5em;
  margin-bottom: 1em;
  line-height: 1.5;
  letter-spacing: 1px;
  word-break: break-all;
  text-align: left !important;
}

ul#npcatch li {
  padding-left: 0em !important;
}
ul#npcatch li:before {
  display: none;
}
ul#npcatch li a {
  gap: 10px;
}
ul#npcatch li .detail {
  font-size: 14px;
  line-height: 1.6;
}

#npcatch figure {
  flex-shrink: 0;
}

/*　最近の記事　*/
.rpwwt-widget nav ul li {
  padding-left: 0 !important;
  margin: 0 0 0.5rem 0;
  line-height: 1.3;
}
.rpwwt-widget nav ul li img {
  margin: 0em 0.75em 0.75em 0;
}
.rpwwt-widget nav ul li:before, .rpwwt-widget nav ul li:after {
  display: none;
}

span.rpwwt-post-title {
  font-size: 14px;
}

.rpwwt-widget ul li img {
  width: 80px;
  height: 80px;
}

/* postlist */
.side-post {
  margin-top: 40px;
}
.side-post .content_thumb {
  flex-shrink: 0;
}
.side-post .content_thumb img {
  width: 80px;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
}
.side-post .content_title {
  font-size: 14px;
  line-height: 1.5;
}
.side-post .postlists_item a {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  color: #333333;
  opacity: 1;
}
.side-post .postlists_item a:hover {
  opacity: 0.5;
}
.side-post .side-postlists {
  margin-top: 28px;
}

p {
  font-size: 16px;
  /*  @include m.sp-max{
      font-size: 17px;
  line-height: 1.8;
    } */
  margin-bottom: 1.2rem;
  line-height: 1.8;
}

h1 {
  font-size: clamp(23.61px, 15.819px + 1.623vw, 32.44px);
  font-weight: 400;
  font-family: "Noto Serif JP";
}

h2 {
  font-size: clamp(22.13px, 16.218px + 1.232vw, 28.83px);
  font-weight: 400;
  font-family: "Noto Serif JP";
  word-break: auto-phrase;
}

h3 {
  font-size: clamp(19.74px, 15.425px + 0.899vw, 24.63px);
  font-weight: 400;
  font-family: "Noto Serif JP";
}

h4 {
  font-size: clamp(19.44px, 16.493px + 0.614vw, 22.78px);
  font-weight: 400;
  font-family: "Noto Serif JP";
}

h5 {
  font-size: clamp(18.22px, 16.429px + 0.373vw, 20.25px);
  font-weight: 400;
  font-family: "Noto Serif JP";
}

h6 {
  font-size: clamp(17.07px, 16.249px + 0.171vw, 18px);
  font-weight: 400;
  font-family: "Noto Serif JP";
}

/*　見出し　*/
.h2--center {
  margin-bottom: clamp(40px, 22.353px + 3.676vw, 60px);
  position: relative;
  font-size: 18px;
  color: #A3B57D;
  line-height: 1.3;
}
.h2--center:before {
  content: attr(data-sub);
  font-size: clamp(40px, 28.529px + 2.39vw, 53px);
  color: #83C201;
  display: block;
  font-family: "Sorts Mill Goudy", serif;
  font-weight: 400;
  font-style: normal;
}

.bg-color {
  background-color: #a3b57d;
  padding: 40px 0;
}
@media screen and (min-width: 1024px) {
  .bg-color {
    padding: 100px 0;
  }
}

.item-bg-color {
  background-color: #fff;
  padding: 2em;
}

/* 回り込み解除 */
.clear {
  clear: both;
}

/*　営業　*/
table.Opening-hours {
  width: 100%;
  /* max-width: 500px; */
  margin: 0;
  border: 0px solid #ccc;
}
table.Opening-hours th {
  font-weight: 500;
  min-width: 1em;
  padding: 0;
  color: #333333;
  background-color: #A3B57D;
}
table.Opening-hours td {
  padding: 0;
  color: #333333;
  text-align: center;
  font-size: 12px;
}
table.Opening-hours td.time {
  font-size: 14px;
}
table.Opening-hours.oh-1 tbody {
  background-color: transparent;
}
table.Opening-hours.oh-1 tr {
  border-top: solid 0px transparent;
  border-left: solid 0px transparent;
  border-bottom: solid 0px transparent;
  border-right: solid 0px transparent;
}
table.Opening-hours.oh-1 tr:not(:last-child) {
  border-bottom: solid 1px #fff;
}
table.Opening-hours.oh-1 th {
  line-height: 1;
  padding: 15px 5px;
  color: #fff;
  background-color: transparent;
  border-right: 0px solid #fff;
}
table.Opening-hours.oh-1 th:last-child {
  border-right: 0px solid transparent;
}
table.Opening-hours.oh-1 td {
  line-height: 1;
  padding: 15px 5px;
  background-color: transparent;
  color: #fff;
  border-right: 0px solid #fff;
}
table.Opening-hours.oh-1 td:last-child {
  border-right: 0px solid transparent;
}
table.Opening-hours.oh-2 tr {
  border: solid 1px #83C201;
}
table.Opening-hours.oh-2 th {
  line-height: 1;
  padding: 15px 5px;
  border-right: 1px solid #83C201;
}
table.Opening-hours.oh-2 td {
  line-height: 1;
  padding: 15px 5px;
  background-color: transparent;
  border-right: 1px solid #83C201;
}
table.Opening-hours.oh-3 tr {
  border: solid 1px #d1cccc;
}
table.Opening-hours.oh-3 th {
  text-align: center;
  line-height: 1;
  padding: 15px 5px;
  border-right: 1px solid #d1cccc;
  background-color: rgb(252.0461538462, 254.9538461538, 246.0461538462);
}
table.Opening-hours.oh-3 td {
  line-height: 1;
  padding: 15px 5px;
  background-color: transparent;
  border-right: 1px solid #d1cccc;
}
table.Opening-hours.oh-4 tbody {
  background-color: transparent;
}
table.Opening-hours.oh-4 tr {
  border-top: solid 0px transparent;
  border-left: solid 0px transparent;
  border-bottom: solid 0px transparent;
  border-right: solid 0px transparent;
}
table.Opening-hours.oh-4 tr:not(:last-child) {
  border-bottom: solid 1px #d1cccc;
}
table.Opening-hours.oh-4 th {
  line-height: 1;
  padding: 15px 5px;
  background-color: transparent;
  border-right: 0px solid #d1cccc;
}
table.Opening-hours.oh-4 th:last-child {
  border-right: 0px solid transparent;
}
table.Opening-hours.oh-4 td {
  line-height: 1;
  padding: 15px 5px;
  background-color: transparent;
  border-right: 0px solid #d1cccc;
}
table.Opening-hours.oh-4 td:last-child {
  border-right: 0px solid transparent;
}

/* movie */
.movie_iframe {
  position: relative;
  width: 100%;
  max-width: 700px;
  margin-inline: auto;
  aspect-ratio: 16/9;
}
.movie_iframe iframe {
  width: 100%;
  height: 100%;
}

.is-provider-youtube {
  max-width: 700px;
  margin-inline: auto;
}

/* bread */
#breadcrumb ul {
  max-width: 1200px;
  margin-inline: auto;
  padding: 0 15px;
  display: flex;
  margin-top: 0px;
  margin-bottom: 30px;
  flex-wrap: nowrap;
  white-space: nowrap;
  overflow-x: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
@media screen and (max-width: 1023px) {
  #breadcrumb ul {
    padding: 0 24px;
  }
}
#breadcrumb ul::-webkit-scrollbar {
  display: none;
}
#breadcrumb ul li {
  font-size: clamp(12px, 12px + 0vw, 12px);
}
#breadcrumb ul li a {
  color: #333333;
}
#breadcrumb ul li a:hover {
  color: #6DAA2A;
}
#breadcrumb ul > * + *::before {
  content: "/";
  margin-left: 0.75em;
  margin-right: 0.75em;
}

/* form */
textarea,
input[type=tel],
input[type=email],
input[type=text],
input[type=button],
input[type=reset],
input[type=search],
input[type=password] {
  border: 1px solid #666;
  padding: 5px 10px;
  border-radius: 5px;
}

input[type=submit] {
  border: 1px solid #998441;
  padding: 5px 15px;
  background-color: #998441;
  border-radius: 5px;
  transition: 0.5s;
  color: #fff;
}
input[type=submit]:hover {
  cursor: pointer;
  background-color: rgb(117.2064220183, 101.119266055, 49.7935779817);
}

select {
  border: 1px solid #666;
  padding: 5px 10px;
  border-radius: 5px;
}

/* page nav */
.nav-links {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 3em;
}
.nav-links .page-numbers:not(.dots) {
  color: #333333;
  padding: 0 0.5em;
  border: 1px solid #CECECE;
  transition: 0.5s;
}
.nav-links .page-numbers:not(.dots).current {
  background-color: #998441;
  font-weight: bold;
  border: 1px solid #998441;
  color: #fff;
}
.nav-links .page-numbers:not(.dots):not(span):hover {
  background-color: #998441;
  border: 1px solid #998441;
  color: #fff;
}

.page-sec-bg {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  background: #faf8f3;
  padding: 40px 0;
}
@media screen and (min-width: 1024px) {
  .page-sec-bg {
    padding: 80px 0px;
  }
}

/* flexible-table */
.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr th {
  background-color: #F4F1EA;
  color: #685822;
  font-family: "Noto Serif JP";
  font-weight: 400;
}

.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr th, .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr td {
  padding: clamp(8px, 8px + 0vw, 8px) !important;
}
@media screen and (min-width: 768px) {
  .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr th, .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr td {
    padding: clamp(16px, 16px + 0vw, 16px) !important;
  }
}

/*定義リスト*/
dl.dl01 {
  display: flex;
  flex-flow: row wrap;
  width: 100%;
  margin-top: 0;
}
dl.dl01 dt {
  font-weight: 400;
  font-family: "Noto Serif JP";
  flex-basis: 20%;
  padding: 10px 20px;
  border-bottom: 1px solid #A3B57D;
  display: flex;
  align-items: center;
  font-size: clamp(16px, 16px + 0vw, 16px);
}
@media screen and (max-width: 767px) {
  dl.dl01 dt {
    flex-basis: 30%;
    padding: 10px 10px;
    text-align: center;
  }
}
dl.dl01 dd {
  flex-basis: 80%;
  padding: 10px 20px;
  border-bottom: 1px solid #d1cccc;
  margin-left: 0px;
}
@media screen and (max-width: 767px) {
  dl.dl01 dd {
    flex-basis: 70%;
  }
}
@media screen and (max-width: 767px) {
  dl.dl01 .dl01 dl {
    flex-flow: column;
  }
}
@media screen and (max-width: 767px) {
  dl.dl01.spfull dt, dl.dl01.spfull dd {
    flex-basis: 100%;
  }
}
@media screen and (max-width: 767px) {
  dl.dl01.spfull dd {
    border-bottom: 0px;
    padding-left: 10px;
  }
}

.tablenomg table {
  margin-top: 0;
}

.stepbar4 h3.title, .stepbar4 h5.title, .stepbar4 h4.title {
  color: #6fa107;
  margin-top: 0px !important;
  background-color: transparent !important;
  padding: 0 !important;
  border-left: 0px solid #fff !important;
  font-size: clamp(18.74px, 15.308px + 0.715vw, 22.63px) !important;
}
.stepbar4 .steptxtimg {
  display: flex;
  flex-direction: column;
  padding-bottom: 40px;
}
.stepbar4 .steptxtimg p:last-of-type {
  margin-bottom: 0;
}
.stepbar4 .steptxtimg p:last-of-type picture {
  flex-shrink: 0;
}
.stepbar4 .steptxtimg ul {
  margin: 0;
}
@media screen and (max-width: 767px) {
  .stepbar4 .steptxtimg img {
    margin-top: 16px;
  }
}
@media screen and (min-width: 768px) {
  .stepbar4 .steptxtimg {
    flex-direction: row;
    gap: 40px;
    justify-content: space-between;
  }
}
.stepbar4 .stepbarwrap {
  display: flex;
  width: 100%;
  gap: 30px;
}
.stepbar4 .stepbarwrap:last-child .stepcircle:before {
  content: none;
}
.stepbar4 .stepinner {
  flex-grow: 1;
}
.stepbar4 .stepcircle {
  position: relative;
}
.stepbar4 .stepcircle:before {
  content: "";
  border-right: #83C201 dotted 4px;
  display: block;
  height: calc(100% - 25px);
  position: absolute;
  bottom: 0;
  z-index: -1;
  left: clamp(22px, 25.765px + -0.368vw, 24px);
}
.stepbar4 .stepcircle span {
  font-weight: 400;
  font-family: "Noto Serif JP";
  background: #83C201;
  display: block;
  text-align: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #fff;
  display: grid;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  line-height: 0;
}

.toggle_title {
  margin: 0;
  padding: 1em 50px 1em 1em;
  position: relative;
  cursor: pointer;
  transition: 0.3s;
  line-height: 1.6;
  color: inherit !important;
  font-size: clamp(16px, 16px + (100vw - 480px) * 0.0027777778, 18px) !important;
  border-bottom: 1px solid #d1cccc;
}
.toggle_title.toggle-q {
  padding: 1em 50px 1em 50px !important;
  font-size: clamp(17px, 16.118px + 0.184vw, 18px);
  position: relative;
}
.toggle_title.toggle-q:before {
  content: "Q";
  font-size: clamp(25px, 20.588px + 0.919vw, 30px);
  position: absolute;
  line-height: 1;
  color: #83C201;
  left: 0px;
}
@media screen and (min-width: 1024px) {
  .toggle_title.toggle-q {
    padding: 1em 50px 1em 56px !important;
  }
}

h3.toggle_title {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.toggle_title:hover {
  color: #83C201;
}

.toggle_title:after {
  content: "";
  display: inline-block;
  width: 26px;
  height: 14px;
  background: url(../images/icon/arrow-down.svg) no-repeat right top;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  transition: 0.2s;
}

.toggle_title.selected:after {
  transform: translateY(-50%) rotate(180deg);
  transition: 0.2s;
}

.toggle_txt {
  display: none;
  padding: 1em;
  margin: 1em 0;
}
.toggle_txt p:last-child {
  margin-bottom: 0;
}
.toggle_txt.toggle-a {
  position: relative;
  padding: 1em 1em 1em 2.5em;
}
.toggle_txt.toggle-a:before {
  content: "A";
  font-size: clamp(25px, 20.588px + 0.919vw, 30px);
  font-family: "Noto Serif JP";
  font-style: normal;
  position: absolute;
  line-height: 1;
  left: 3px;
  color: #998441;
}

.toggle_contents.toggle_color {
  margin-bottom: 16px;
}
.toggle_contents.toggle_color .toggle_title {
  border-bottom: 0px;
  background-color: #fff !important;
  border: 1px solid #A3B57D !important;
}
.toggle_contents.toggle_color .toggle_title:after {
  background: url(../images/icon/arrowqa.svg) no-repeat;
  background-size: cover;
}
.toggle_contents.toggle_color .toggle_title.toggle-q {
  padding: 1em 50px 1em 50px;
}
.toggle_contents.toggle_color .toggle_title.toggle-q:before {
  color: #A3B57D;
  left: 15px;
  top: 40%;
  transform: translateY(-40%);
}
.toggle_contents.toggle_color .toggle_txt {
  background-color: #fff;
  color: #333333;
  margin: 0;
}
.toggle_contents.toggle_color .toggle_txt.toggle-a {
  padding: 1em 50px 1em 50px;
}
.toggle_contents.toggle_color .toggle_txt.toggle-a:before {
  left: 16px;
}

.contents7 {
  /*  overflow: hidden; */
}

.contents7-inner {
  display: flex;
  flex-direction: column;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .contents7-inner {
    justify-content: space-between;
  }
}
@media screen and (min-width: 1024px) {
  .contents7-inner {
    max-width: 1200px;
    flex-direction: row;
  }
}
.contents7-inner img {
  max-height: 500px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.contents7-col {
  width: 100%;
  margin-top: clamp(0px, 60.235px + -5.882vw, 32px);
}
@media screen and (min-width: 1024px) {
  .contents7-col {
    width: 48%;
  }
}

@media screen and (max-width: 1023px) {
  .contents7-inner .contents7-col:first-of-type {
    margin-top: 0;
  }
}

/*右側へ要素を広げる（2カラム）*/
.contents7-outside-right {
  flex: 1;
  margin-right: calc(50% - 50vw);
  margin-left: 0;
  max-height: 500px;
}
@media screen and (max-width: 1023px) {
  .contents7-outside-right {
    margin-left: 0;
  }
}
@media screen and (min-width: 1024px) {
  .contents7-outside-right {
    margin-left: 4%;
  }
}

/*左側へ要素を広げる（2カラム）*/
.contents7-outside-left {
  flex: 1;
  margin-left: calc(50% - 50vw);
  margin-right: 0;
}
@media screen and (min-width: 768px) {
  .contents7-outside-left {
    margin-right: 4%;
  }
}

@media screen and (min-width: 1024px) {
  .reverse {
    flex-direction: row-reverse;
  }
}

.btn {
  display: block;
  text-decoration: none;
  border-radius: 5px;
  padding: 14px 10px;
  text-align: center;
  line-height: 1.5;
  color: #333333;
  font-family: "Noto Serif JP";
}
.btn.btn1st {
  background-color: #998441;
  color: #fff;
}
.btn.btn1st:hover {
  background-color: rgb(117.2064220183, 101.119266055, 49.7935779817);
  color: #fff;
}
.btn.btn2nd {
  background-color: #83C201;
  color: #fff;
}
.btn.btn2nd:hover {
  background-color: rgb(96.7384615385, 143.2615384615, 0.7384615385);
  color: #fff;
}
.btn.btn3rd {
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
}
.btn.btn3rd:hover {
  background-color: rgb(117.2064220183, 101.119266055, 49.7935779817);
  color: #fff;
}
.btn.btnM {
  width: 200px;
}

.btnL {
  color: #333333;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 300px;
  text-decoration: none;
  transition: 0.3s;
}

/*矢印付きリンク2*/
.lb08 {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #333333;
}
.lb08 .arrow-icon {
  width: 32px;
  height: 32px;
  padding: 5px; /* アイコンに余白 */
  border-radius: 50%; /* 円背景にする */
  transition: background 0.3s ease, transform 0.3s ease;
}
.lb08 .arrow-icon--arrow {
  transition: stroke 0.3s ease;
}
.lb08:hover .arrow-icon {
  background: #998441;
  transform: translateX(5px);
}
.lb08:hover .arrow-icon--arrow {
  stroke: #fff;
}

/* link */
a {
  color: #2C8A3D;
  transition: 0.5s;
  text-decoration: none;
}

a:hover {
  color: #6DAA2A;
}

.link-arrow {
  color: #333333;
  display: inline-block;
  text-decoration: none;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  text-decoration: none;
  padding-right: 25px;
  transition: 0.5s;
  margin-right: 15px;
}
.link-arrow:hover {
  color: #2C8A3D;
}
.link-arrow:before, .link-arrow:after {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
}
.link-arrow:before {
  right: 5px;
  width: 5px;
  height: 5px;
  border-top: 1px solid #2C8A3D;
  border-right: 1px solid #2C8A3D;
  transform: rotate(45deg);
  transition: 0.5s;
}
.link-arrow:hover::before {
  right: -5px;
}

.link-box-right {
  text-align: right;
  display: flex;
  justify-content: flex-end;
  margin: 1rem 0;
}

.link-box-center {
  text-align: center;
  display: flex;
  justify-content: center;
  margin: 1rem 0;
}

/* article */
.page:not(.page-template-page_lp) article .wp-block-image, .single article .wp-block-image {
  margin-bottom: 1.5em;
}
.page:not(.page-template-page_lp) article h2, .single article h2 {
  padding: 0;
}
.page:not(.page-template-page_lp) article .eyecatch, .single article .eyecatch {
  margin-bottom: 2em;
  /*
  aspect-ratio: 3/2;
    object-fit: cover;
    */
}
.page:not(.page-template-page_lp) article h2:not(.h2--center):not(.h2--leftline):not(.h2--slash):not(.nodesign):not(.leadh2), .single article h2:not(.h2--center):not(.h2--leftline):not(.h2--slash):not(.nodesign):not(.leadh2) {
  position: relative;
  border-top: 1px solid #83C201;
  padding: 14px 0 14px 16px;
  background: #F6F6F6;
}
.page:not(.page-template-page_lp) article h2:not(:first-child), .single article h2:not(:first-child) {
  margin-top: clamp(36px, 21.882px + 2.941vw, 52px);
}
.page:not(.page-template-page_lp) article h3:not(.nodesign):not(.helpful-card__title), .single article h3:not(.nodesign):not(.helpful-card__title) {
  background: rgba(131, 194, 1, 0.1);
  color: #6fa107;
  padding: 0.5em;
  margin-top: clamp(36px, 21.882px + 2.941vw, 52px);
  margin-bottom: clamp(24px, 16.941px + 1.471vw, 32px);
}
.page:not(.page-template-page_lp) article h3:not(.nodesign):not(.helpful-card__title):has(.feature), .single article h3:not(.nodesign):not(.helpful-card__title):has(.feature) {
  line-height: 1.8;
}
.page:not(.page-template-page_lp) article h4:not(.title), .single article h4:not(.title) {
  color: #998441;
  border-bottom: 1px solid #998441;
  padding-bottom: 0.5em;
  margin-bottom: clamp(24px, 16.941px + 1.471vw, 32px);
  margin-top: 32px;
}
.page:not(.page-template-page_lp) article h4:not(.title):has(.feature), .single article h4:not(.title):has(.feature) {
  line-height: 1.8;
}
.page:not(.page-template-page_lp) article h5, .single article h5 {
  border-left: 10px solid #83C201;
  margin-bottom: clamp(24px, 16.941px + 1.471vw, 32px);
  padding-left: 0.5em;
}
.page:not(.page-template-page_lp) article h6, .single article h6 {
  margin-bottom: clamp(10px, 1.176px + 1.838vw, 20px);
  color: #998441;
}
.page:not(.page-template-page_lp) article blockquote p:last-of-type, .single article blockquote p:last-of-type {
  margin-bottom: 0;
}
.page:not(.page-template-page_lp) article .contents2-item, .page:not(.page-template-page_lp) article .contents1-item, .page:not(.page-template-page_lp) article .contents3-item,
.page:not(.page-template-page_lp) article .contents4-item, .page:not(.page-template-page_lp) article .contents6-item, .page:not(.page-template-page_lp) article .stepbar1, .page:not(.page-template-page_lp) article .stepbar2, .page:not(.page-template-page_lp) article .stepbar3, .page:not(.page-template-page_lp) article .menu-list-item,
.page:not(.page-template-page_lp) article .t-contact, .single article .contents2-item, .single article .contents1-item, .single article .contents3-item,
.single article .contents4-item, .single article .contents6-item, .single article .stepbar1, .single article .stepbar2, .single article .stepbar3, .single article .menu-list-item,
.single article .t-contact {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.page:not(.page-template-page_lp) article .contents2-item br, .page:not(.page-template-page_lp) article .contents1-item br, .page:not(.page-template-page_lp) article .contents3-item br,
.page:not(.page-template-page_lp) article .contents4-item br, .page:not(.page-template-page_lp) article .contents6-item br, .page:not(.page-template-page_lp) article .stepbar1 br, .page:not(.page-template-page_lp) article .stepbar2 br, .page:not(.page-template-page_lp) article .stepbar3 br, .page:not(.page-template-page_lp) article .menu-list-item br,
.page:not(.page-template-page_lp) article .t-contact br, .single article .contents2-item br, .single article .contents1-item br, .single article .contents3-item br,
.single article .contents4-item br, .single article .contents6-item br, .single article .stepbar1 br, .single article .stepbar2 br, .single article .stepbar3 br, .single article .menu-list-item br,
.single article .t-contact br {
  display: none;
}
.page:not(.page-template-page_lp) article .contents2-item p br, .page:not(.page-template-page_lp) article .contents1-item p br, .page:not(.page-template-page_lp) article .contents3-item p br,
.page:not(.page-template-page_lp) article .contents4-item p br, .page:not(.page-template-page_lp) article .contents6-item p br, .page:not(.page-template-page_lp) article .stepbar1 p br, .page:not(.page-template-page_lp) article .stepbar2 p br, .page:not(.page-template-page_lp) article .stepbar3 p br, .page:not(.page-template-page_lp) article .menu-list-item p br,
.page:not(.page-template-page_lp) article .t-contact p br, .single article .contents2-item p br, .single article .contents1-item p br, .single article .contents3-item p br,
.single article .contents4-item p br, .single article .contents6-item p br, .single article .stepbar1 p br, .single article .stepbar2 p br, .single article .stepbar3 p br, .single article .menu-list-item p br,
.single article .t-contact p br {
  display: block;
}
.page:not(.page-template-page_lp) article .contents2-item h3, .page:not(.page-template-page_lp) article .contents1-item h3, .page:not(.page-template-page_lp) article .contents3-item h3,
.page:not(.page-template-page_lp) article .contents4-item h3, .page:not(.page-template-page_lp) article .contents6-item h3, .page:not(.page-template-page_lp) article .stepbar1 h3, .page:not(.page-template-page_lp) article .stepbar2 h3, .page:not(.page-template-page_lp) article .stepbar3 h3, .page:not(.page-template-page_lp) article .menu-list-item h3,
.page:not(.page-template-page_lp) article .t-contact h3, .single article .contents2-item h3, .single article .contents1-item h3, .single article .contents3-item h3,
.single article .contents4-item h3, .single article .contents6-item h3, .single article .stepbar1 h3, .single article .stepbar2 h3, .single article .stepbar3 h3, .single article .menu-list-item h3,
.single article .t-contact h3 {
  margin-bottom: 0.5em;
  background: inherit;
  color: inherit;
  padding: initial;
}
.page:not(.page-template-page_lp) article .contents3-item.img-left-list li .contents3-item-r, .single article .contents3-item.img-left-list li .contents3-item-r {
  padding: 0 0 0 2em;
  width: 100%;
  justify-content: space-between;
}
.page:not(.page-template-page_lp) article .contents3-item.img-right-list li .contents3-item-r, .single article .contents3-item.img-right-list li .contents3-item-r {
  padding: 0 2em 0 0;
  width: 100%;
  justify-content: space-between;
}
.page:not(.page-template-page_lp) article .contents4-item-bottomList, .single article .contents4-item-bottomList {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.page:not(.page-template-page_lp) article .contents5 .content, .single article .contents5 .content {
  width: 100%;
  padding: 0 30px;
}
.page:not(.page-template-page_lp) article .contents5 .content .contents5-num, .single article .contents5 .content .contents5-num {
  left: 30px;
}
.page:not(.page-template-page_lp) article .contents5-3 > p, .page:not(.page-template-page_lp) article .contents5 > p, .page:not(.page-template-page_lp) article .contents5-2 > p, .page:not(.page-template-page_lp) article .t-contact > p, .single article .contents5-3 > p, .single article .contents5 > p, .single article .contents5-2 > p, .single article .t-contact > p {
  display: none;
}
.page:not(.page-template-page_lp) article .contents5-3 h2, .page:not(.page-template-page_lp) article .contents5 h2, .page:not(.page-template-page_lp) article .contents5-2 h2, .page:not(.page-template-page_lp) article .t-contact h2, .single article .contents5-3 h2, .single article .contents5 h2, .single article .contents5-2 h2, .single article .t-contact h2 {
  background-color: initial;
  padding: 0;
  border: 0px;
}
.page:not(.page-template-page_lp) article .contents5-3 h2::before, .page:not(.page-template-page_lp) article .contents5 h2::before, .page:not(.page-template-page_lp) article .contents5-2 h2::before, .page:not(.page-template-page_lp) article .t-contact h2::before, .single article .contents5-3 h2::before, .single article .contents5 h2::before, .single article .contents5-2 h2::before, .single article .t-contact h2::before {
  content: none;
}
.page:not(.page-template-page_lp) article .contents5-3 h2::after, .page:not(.page-template-page_lp) article .contents5 h2::after, .page:not(.page-template-page_lp) article .contents5-2 h2::after, .page:not(.page-template-page_lp) article .t-contact h2::after, .single article .contents5-3 h2::after, .single article .contents5 h2::after, .single article .contents5-2 h2::after, .single article .t-contact h2::after {
  content: none;
}
.page:not(.page-template-page_lp) article .contents5-2.right .contents5-2-txtbox, .page:not(.page-template-page_lp) article .contents5-2.left .contents5-2-txtbox, .single article .contents5-2.right .contents5-2-txtbox, .single article .contents5-2.left .contents5-2-txtbox {
  padding-left: 15px;
  padding-right: 15px;
}
@media screen and (min-width: 768px) {
  .page:not(.page-template-page_lp) article .contents5-2.right .contents5-2-txtbox, .page:not(.page-template-page_lp) article .contents5-2.left .contents5-2-txtbox, .single article .contents5-2.right .contents5-2-txtbox, .single article .contents5-2.left .contents5-2-txtbox {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.page:not(.page-template-page_lp) article .stepbar3 .stepbarwrap .steptitle .stepcircle span, .single article .stepbar3 .stepbarwrap .steptitle .stepcircle span {
  top: 0.7em;
}
.page:not(.page-template-page_lp) article .c-linklist, .single article .c-linklist {
  margin: 0;
  padding: 0;
  list-style-type: none;
  margin-bottom: 3em;
}
.page:not(.page-template-page_lp) article .toggle_contents.toggle_color .toggle_title, .single article .toggle_contents.toggle_color .toggle_title {
  color: #fff;
}
.page:not(.page-template-page_lp) article .toggle_contents h3, .single article .toggle_contents h3 {
  background-color: inherit;
  border-left: 0px;
}
.page:not(.page-template-page_lp) article .pageItem.list, .single article .pageItem.list {
  line-height: 1.8;
  margin: 0;
  padding: 0;
  list-style-type: none;
  position: relative;
  padding: 1em 2em;
  background: #FEFCF5;
  border-radius: 10px;
  margin: 1.5em 0;
}
.page:not(.page-template-page_lp) article .pageItem.list li ul, .single article .pageItem.list li ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  margin: 1em 0;
}
.page:not(.page-template-page_lp) article .pageItem.list.nobg, .single article .pageItem.list.nobg {
  background: transparent;
  padding: 0;
}
.page:not(.page-template-page_lp) article .pageItem.list li + li, .single article .pageItem.list li + li {
  margin-top: 10px;
}
.page:not(.page-template-page_lp) article .pageItem.list.mark li, .single article .pageItem.list.mark li {
  position: relative;
  padding-left: 15px;
}
.page:not(.page-template-page_lp) article .pageItem.list.mark li:before, .single article .pageItem.list.mark li:before {
  content: "";
  position: absolute;
  top: 0.75em;
  left: 0;
  width: 0;
  height: 0;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent transparent #998441;
}
.page:not(.page-template-page_lp) article .pageItem.list.check li, .single article .pageItem.list.check li {
  position: relative;
  padding-left: 25px;
}
.page:not(.page-template-page_lp) article .pageItem.list.check li:before, .single article .pageItem.list.check li:before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 5px;
  transform: rotate(50deg);
  width: 5px;
  height: 9px;
  border-right: 2px solid #998441;
  border-bottom: 2px solid #998441;
}
.page:not(.page-template-page_lp) article .pageItem.list.check li:after, .single article .pageItem.list.check li:after {
  content: "";
  position: absolute;
  top: 0.6em;
  left: 0;
  width: 15px;
  height: 15px;
  border: 1px solid #998441;
  border-radius: 2px;
}
.page:not(.page-template-page_lp) article .pageItem.list.flex, .single article .pageItem.list.flex {
  display: flex;
  gap: 0.5em 2em;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  align-items: flex-start;
}
.page:not(.page-template-page_lp) article .pageItem.list.flex li + li, .single article .pageItem.list.flex li + li {
  margin-top: 0px;
}
.page:not(.page-template-page_lp) article .pageItem.list.flex.col2 li, .single article .pageItem.list.flex.col2 li {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .page:not(.page-template-page_lp) article .pageItem.list.flex.col2 li, .single article .pageItem.list.flex.col2 li {
    width: calc(50% - 1em);
  }
}
.page:not(.page-template-page_lp) article .pageItem.list.flex.col3 li, .single article .pageItem.list.flex.col3 li {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .page:not(.page-template-page_lp) article .pageItem.list.flex.col3 li, .single article .pageItem.list.flex.col3 li {
    width: calc(32.6% - 1em);
  }
}

/* コンテントボックス */
.page-Boxcontent {
  background-color: rgba(163, 181, 125, 0.5);
  border-radius: 5px;
  padding: 1.5rem;
}
.page-Boxcontent .Boxcontent-inner .imgtxt-txt-mida {
  color: #83C201;
  display: inline-block;
  background: transparent;
  font-size: clamp(17px, 16.118px + 0.184vw, 18px);
  padding: 0;
  border-bottom: 0;
  border-left: 0;
}
.page-Boxcontent .Boxcontent-inner:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}
@media screen and (max-width: 1023px) {
  .page-Boxcontent .Boxcontent-inner img {
    float: none;
    margin-inline: auto;
  }
}
@media screen and (min-width: 1024px) {
  .page-Boxcontent .Boxcontent-inner img {
    margin-bottom: 0;
  }
}
.page-Boxcontent h4, .page-Boxcontent h3 {
  margin-top: 0 !important;
}

/*feature*/
.feature {
  margin-right: 1rem;
  background-color: #83C201;
  color: #fff;
  padding: 0.2em 0.5em;
  border-radius: 5px;
  font-size: 85%;
}

h3:has(.feature) {
  line-height: 1.8;
}

/* ボーダー */
.y_line {
  text-decoration: underline;
  text-decoration-thickness: 0.4em;
  text-decoration-color: #f4f27a;
  text-underline-offset: -0.05em;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  font-weight: 700;
}

.r_line {
  text-decoration: underline;
  text-decoration-thickness: 0.4em;
  text-decoration-color: #ffbebe;
  text-underline-offset: -0.05em;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  font-weight: 700;
}

.b_line {
  text-decoration: underline;
  text-decoration-thickness: 0.4em;
  text-decoration-color: #c5defc;
  text-underline-offset: -0.05em;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  font-weight: 700;
}

.single .entry-title {
  margin: 0em 0 1rem 0;
  position: relative;
}
.single .entry-title.Bborder {
  color: #83C201;
  border-bottom: 1px solid #83C201;
  padding-bottom: 0.5em;
}
.single .entry-title.border {
  text-align: center;
}
.single .entry-title.border:after {
  content: "";
  display: block;
  width: 80px;
  height: 5px;
  background-color: #83C201;
  margin: 1em auto auto auto;
}
.single .entry-title.bgcolor {
  text-align: left;
  padding: 0.5em 1em;
  background-color: #A3B57D;
  margin: 0em 0 2em 0;
}
.single .entry-title.bgcolor:after {
  content: none;
}
.single .eyecatch {
  margin: auto auto 2em auto;
}
.single.single-news .eyecatch, .single.single-helpful .eyecatch {
  display: none;
  margin: 0 auto;
}
.single .entry-meta {
  border-top: 1px dotted #d1cccc;
  border-bottom: 1px dotted #d1cccc;
  padding: 0.5em 0;
  display: flex;
  color: #666;
  font-size: 14px;
  justify-content: flex-end;
  gap: 15px;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .single .entry-meta {
    gap: 5px;
    flex-wrap: wrap;
  }
}
.single .entry-meta a {
  color: #666;
}
.single .entry-meta p {
  font-size: 14px;
  margin: 0;
}
.single .entry-footer {
  font-size: 14px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  padding: 0.5em 0;
  justify-content: flex-end;
  color: #666;
}
.single .entry-footer a {
  font-size: 14px;
  color: #666;
}
@media screen and (max-width: 767px) {
  .single .entry-footer {
    gap: 5px;
  }
}

.single .nav-links {
  display: none;
}
@media screen and (min-width: 1024px) {
  .single .nav-links {
    display: flex;
    justify-content: space-between;
  }
}
.single .nav-links .nav-previous, .single .nav-links .nav-next {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .single .nav-links .nav-previous, .single .nav-links .nav-next {
    width: 40%;
  }
}
.single .nav-links .nav-previous a, .single .nav-links .nav-next a {
  flex-grow: 1;
}
.single .nav-links .nav-previous img, .single .nav-links .nav-next img {
  display: none;
  aspect-ratio: 3/2;
  width: 150px;
  -o-object-fit: cover;
     object-fit: cover;
  flex-shrink: 0;
}
.single .nav-links .nav-previous {
  flex-direction: row-reverse;
}
.single .nav-links .nav-next a {
  text-align: right;
}
.single .wp-post-image {
  margin-bottom: 1.5em;
}

.page-template-page_lp ul {
  list-style-type: none;
  padding: 0;
}

@media screen and (max-width: 1023px) {
  .t-scroll {
    overflow-x: auto;
  }
  .t-scroll table {
    min-width: 600px;
    /*white-space: nowrap; */
  }
}

.y-scroll {
  margin: 2rem auto;
  overflow: auto;
}
.y-scroll table {
  margin: 0rem auto;
  min-width: 800px;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .y-scroll {
    max-height: 500px;
  }
}

.r-tb {
  width: 100%;
}
.r-tb th {
  width: 30%;
}
@media screen and (max-width: 767px) {
  .r-tb {
    width: 100%;
  }
  .r-tb th, .r-tb td {
    border-right: 0px solid;
    display: block;
    width: 100%;
    border-bottom: solid 1px #d1cccc;
  }
  .r-tb td:last-child {
    border-bottom: solid 0px #d1cccc;
  }
}

.eyecatch-container img {
  margin: auto;
}

.wp-caption {
  width: 100% !important;
}

/*関連リンク*/
.single article .page-linkBox {
  border: 1px solid #83C201;
  margin: 4em 0;
  position: relative;
}
.single article .page-linkBox h4 {
  background: #83C201;
  font-size: 16px;
  color: #fff;
  position: absolute;
  top: -30px;
  line-height: 1;
  margin: 0;
  padding: 6px 20px;
  border-bottom: 0px;
  left: -1px;
}
.single article .page-linkBox ul.pageItem.list.mark {
  margin: 0;
  padding: 1em;
  border-radius: 0px;
}

/* TOC */
#toc_container {
  margin: 20px auto 30px;
  background-color: rgba(163, 181, 125, 0.04);
  border: 3px solid rgba(163, 181, 125, 0.2);
  border-radius: 3px;
  box-sizing: border-box;
  padding: 38px 52px;
  display: table;
  min-width: 68%;
}

#toc_container ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

#toc_container ul.toc_list li::before {
  content: none;
  padding: 0;
  margin: 0;
  width: 0;
  height: 0;
  background: none;
  box-shadow: none;
}

/* 目次の見出しタイトル */
#toc_container .toc_title {
  text-align: center;
  font-weight: bold;
  font-size: 118%;
  padding: 0;
  margin: 0;
}

/* 見出しタイトル左のアイコン */
#toc_container .toc_title::before {
  position: relative;
  font-size: 28px;
  content: "≔";
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 34px;
  margin-right: 8px;
  border-radius: 50%;
  vertical-align: baseline;
  speak: none;
  -webkit-font-smoothing: antialiased;
  color: #fff;
  background-color: #A3B57D;
}

/* 表示／非表示トグル */
#toc_container .toc_toggle a {
  font-size: 13px;
  font-weight: normal;
  padding: 2px 4px;
}

/* 目次エリア */
#toc_container p.toc_title + ul.toc_list {
  padding: 20px 0 0;
  margin: 20px 0 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* 目次のリストの共通スタイル */
#toc_container ul.toc_list li {
  padding: 0;
  margin: 0;
}

/* 目次のリンク */
#toc_container ul.toc_list li a {
  position: relative;
  font-size: 94%;
  font-weight: normal;
  text-decoration: none;
  display: inline-block;
  padding: 3px 0;
  margin: 7px 0;
  line-height: 1.6;
  transition: all 0.3s ease;
}

/* 目次のリンクカラー */
#toc_container ul.toc_list a,
#toc_container ul.toc_list a:visited {
  color: #333333;
}

/* マウスオーバー時 */
#toc_container ul.toc_list a:hover {
  opacity: 0.88;
  text-decoration: none;
}

/* 親の目次 */
#toc_container ul.toc_list > li > a {
  font-size: 104%;
  font-weight: bold;
  margin-left: 40px;
}

/* 番号振り用のスタイル */
#toc_container .toc_number {
  display: inline-block;
  text-align: center;
  margin-right: 5px;
  font-family: "Avenir Next", "Helvetica Neue", Arial, "Meiryo", "Yu Gothic", san-serif;
  font-weight: 400;
  color: #fff;
  background-color: rgba(163, 181, 125, 0.52);
}

/* 親の目次の番号 */
#toc_container .toc_number.toc_depth_1 {
  position: absolute;
  top: 0;
  left: -40px;
  width: 32px;
  height: 32px;
  line-height: 32px;
  border-radius: 16px;
}

/* 子の目次の番号 */
#toc_container .toc_number:not(.toc_depth_1) {
  border-radius: 15px;
  line-height: 30px;
  padding: 0 5.43px;
}

/* 子の目次 */
#toc_container ul.toc_list > li > ul {
  margin-left: 40px;
}

/* レスポンシブ設定(667px幅以下) */
@media only screen and (max-width: 667px) {
  #toc_container {
    padding: 20px 3vw;
    min-width: auto;
    width: 100% !important;
  }
  #toc_container p.toc_title + ul.toc_list {
    padding: 20px 0 0;
  }
  #toc_container ul.toc_list > li > ul {
    margin-left: 30px;
  }
}
/*目次*/
.toc-wrap {
  display: none;
}

@media screen and (min-width: 1024px) {
  .toc-wrap {
    display: block;
    width: 250px;
    flex-shrink: 0;
  }
  #table-of-contents.sticky {
    position: sticky;
    top: 60px;
  }
  #table-of-contents ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
  }
  #table-of-contents ul li {
    margin-bottom: 15px;
  }
  #table-of-contents a {
    color: #666;
    position: relative;
    padding-left: 30px;
    display: flex;
    align-items: center;
    height: 50px;
  }
  #table-of-contents a:before {
    position: absolute;
    left: 0px;
    content: "";
    display: block;
    width: 2px;
    height: 16px;
    background-color: #666;
    transition: all 0.5s;
    height: 50px;
  }
  #table-of-contents a.active, #table-of-contents a:hover {
    color: #83C201;
    font-weight: 600;
    font-size: 120%;
  }
  #table-of-contents a.active:before, #table-of-contents a:hover:before {
    background-color: #83C201;
  }
  .pagepost-wrap {
    display: flex;
    flex-direction: row-reverse;
    gap: 60px;
  }
  .post-wrap {
    flex-grow: 1;
  }
}
.summary-list {
  display: flex;
  gap: 24px;
}
.summary-list > a {
  flex-shrink: 0;
}
.summary-list header a {
  color: #83C201;
}
.summary-list .eyecatch {
  width: 120px;
}
@media screen and (min-width: 1024px) {
  .summary-list .eyecatch {
    width: 250px;
  }
}
@media screen and (max-width: 1023px) {
  .summary-list .entry-summary {
    display: none;
  }
  .summary-list .entry-summary p {
    display: none;
  }
}

@media screen and (max-width: 1023px) {
  article .wp-block-column figure.wp-block-image,
  article .wp-block-column .wp-block-image {
    margin-bottom: 0 !important;
  }
}

.type-news .summary-list {
  gap: 0;
}

/* post-nav */
.post-nav {
  display: flex;
  margin-top: 2em;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .post-nav {
    gap: 0px;
    flex-wrap: nowrap;
  }
}

a.nav-prev-link {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  flex-basis: 100%;
  opacity: 1;
  transition: 0.5s;
  color: #2C8A3D;
}
a.nav-prev-link picture, a.nav-prev-link img {
  flex-shrink: 0;
  border-radius: 15px;
}
@media screen and (min-width: 768px) {
  a.nav-prev-link {
    flex-basis: 50%;
  }
}

a.nav-next-link {
  display: flex;
  justify-content: flex-end;
  flex-basis: 100%;
  opacity: 1;
  transition: 0.5s;
  color: #2C8A3D;
}
a.nav-next-link picture, a.nav-next-link img {
  flex-shrink: 0;
  border-radius: 15px;
}
@media screen and (min-width: 768px) {
  a.nav-next-link {
    flex-basis: 50%;
  }
}

a.nav-prev-link:hover, a.nav-next-link:hover {
  opacity: 0.7;
}

.nav-prev-image, .nav-next-image {
  width: 90px;
  height: 90px;
  -o-object-fit: cover;
     object-fit: cover;
}

.nav-prev-title, .nav-next-title {
  line-height: 1.6;
  padding: 0 1rem;
  font-size: 14px;
}

.nav-prev-title:before {
  content: "< 前の記事";
  display: block;
  font-size: 12px;
  color: #2C8A3D;
  background-color: #fff;
  border: 1px solid #2C8A3D;
  border-radius: 50px;
  text-align: center;
  padding: 6px 6px;
  margin-bottom: 14px;
  width: 80px;
  line-height: 1;
}

.nav-next-title:before {
  content: "次の記事 >";
  display: block;
  font-size: 12px;
  color: #2C8A3D;
  background-color: #fff;
  border: 1px solid #2C8A3D;
  border-radius: 50px;
  text-align: center;
  padding: 6px 6px;
  margin-bottom: 14px;
  width: 80px;
  line-height: 1;
  margin-left: auto;
}

.single-news .post-nav picture {
  display: none;
}
.single-news .post-nav .nav-prev-title {
  padding: 0 2rem 0 0;
}
.single-news .post-nav .nav-next-title {
  padding: 0 0 0 2rem;
}

.entry-summary p {
  font-size: 14px;
  margin-bottom: 0;
}

.news-template-default .post-nav img {
  display: none;
}

/* sitemap */
@media screen and (min-width: 1024px) {
  .sitemap-wrap {
    display: flex;
    gap: 60px;
  }
}
.sitemap-wrap .wp-block-group ul {
  line-height: 1.8;
  margin: 0;
  padding: 0;
  list-style-type: none;
  position: relative;
  margin: 1.5em 0;
}
.sitemap-wrap .wp-block-group ul li {
  position: relative;
  padding-left: 15px;
}
.sitemap-wrap .wp-block-group ul li:before {
  content: "";
  position: absolute;
  top: 0.45em;
  left: 0;
  width: 0;
  height: 0;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent transparent #83C201;
}
.sitemap-wrap .wp-block-group ul li ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  margin: 1em 0;
}
.sitemap-wrap .wp-block-group ul li + li {
  margin-top: 10px;
}

.simple-ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.simple-ul li {
  border-bottom: 1px dotted #d1cccc;
  padding: 0.5rem 0;
}
.simple-ul li .kei {
  margin-right: clamp(20px, 11.176px + 1.838vw, 30px);
}

ol.wp-block-list li, ul.wp-block-list li {
  line-height: 2;
  /*  margin-bottom: 16px; */
}

/*記事部分マックス幅調整*/
.single article {
  max-width: 960px;
  margin-inline: auto;
}

figure.wp-block-embed.is-type-video {
  max-width: 700px;
  margin-inline: auto;
}

.post-cat-wrap {
  margin-bottom: 16px;
}

.post-cat {
  background-color: #998441;
  color: #fff;
  line-height: 1;
  padding: 4px 16px;
  font-size: 14px;
  margin-right: 8px;
}

.entry-content {
  margin-top: 40px;
}

.leadh2 {
  text-align: center;
  color: #6fa107;
  position: relative;
  margin-bottom: clamp(48px, 33.882px + 2.941vw, 64px);
  word-break: auto-phrase;
}
.leadh2:after {
  content: "";
  display: block;
  background-color: #6fa107;
  width: 100px;
  height: 1px;
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
}
.leadh2:not(:first-child) {
  margin-top: clamp(64px, 49.882px + 2.941vw, 80px) !important;
}

.leadp {
  margin-bottom: 40px;
  font-family: "Noto Serif JP";
  font-size: clamp(17px, 14.353px + 0.551vw, 20px);
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .leadp {
    text-align: center;
  }
}

.doc-name {
  font-size: clamp(28px, 24.471px + 0.735vw, 32px);
  font-family: "Noto Serif JP";
  margin-bottom: 0;
  line-height: 1;
}
.doc-name span {
  font-size: clamp(16px, 14.235px + 0.368vw, 18px);
}

.doc-name2 {
  font-size: clamp(18px, 18px + 0vw, 18px);
  font-family: "Noto Serif JP";
  margin-top: 8px;
}

.doc-wrap {
  border-left: 6px solid #83C201;
  padding-left: 24px;
}

@media screen and (max-width: 767px) {
  .doc-img {
    max-width: 250px;
    margin-inline: auto;
  }
}

.doch3 {
  color: #998441;
  font-size: clamp(18px, 16.235px + 0.368vw, 20px);
  margin-bottom: 16px;
  border-left: 6px solid #998441;
  padding-left: 16px;
}

.dr-txt {
  font-size: 14px;
}

.haku-fea {
  letter-spacing: 1.5px;
  margin: 0;
}
.haku-fea li {
  margin-bottom: 8px;
}

.wrap-border {
  border: 1px solid #A3B57D;
  background-color: #fff;
  padding: clamp(16px, -12.235px + 5.882vw, 48px);
  max-width: 900px;
  margin-inline: auto;
  margin-bottom: clamp(40px, 18.824px + 4.412vw, 64px);
}
.wrap-border .pageItem.list, .wrap-border ul, .wrap-border ol {
  margin: 0 !important;
}
.wrap-border .wp-block-image, .wrap-border .wp-element-caption {
  margin-bottom: 0 !important;
}
.wrap-border p:last-of-type {
  margin-bottom: 0 !important;
}

.wrap-border.nomb {
  margin-bottom: 0 !important;
}

.tdfont table td {
  font-size: 95%;
}

.imgfull img {
  width: 100%;
}

.flexbtn-wrap {
  margin: 40px 0;
}
@media screen and (min-width: 1024px) {
  .flexbtn-wrap .wp-block-column:first-child .link-box-center {
    justify-content: flex-end;
  }
  .flexbtn-wrap .wp-block-column:nth-child(2) .link-box-center {
    justify-content: flex-start;
  }
}

.notopmg {
  margin-top: 0 !important;
}

.single-helpful .entry-meta, .single-helpful .footer {
  display: none;
}

@media (min-width: 1024px) {
  .sitemap-list {
    -moz-column-count: 2;
         column-count: 2; /* 3にしてもOK */
    -moz-column-gap: 40px;
         column-gap: 40px;
  }
  .sitemap-list li {
    -moz-column-break-inside: avoid;
         break-inside: avoid; /* 項目の途中で折り返さない */
    padding: 4px 0;
  }
}
/* sidebanner2 */
.sideban2 {
  position: fixed;
  bottom: -146px;
  left: 0;
  z-index: 20;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  transition: 0.5s ease-in;
}
.sideban2 img {
  width: 20px;
}
@media screen and (min-width: 1024px) {
  .sideban2 {
    bottom: -146px;
    top: auto;
    width: 100%;
    left: 0;
    flex-wrap: nowrap;
    flex-direction: column;
    background-color: #C9C4B5;
    padding: 27px;
  }
}
.sideban2 .sideban-inner {
  display: flex;
  gap: 0px;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .sideban2 .sideban-inner {
    gap: 16px;
  }
}
.sideban2 a {
  padding: 12px 0;
  letter-spacing: 1px;
  font-family: "Noto Serif JP";
  font-style: normal;
  font-weight: 400;
  display: grid;
  align-items: center;
  justify-items: center;
  justify-content: center;
  line-height: 1.6;
}
@media screen and (min-width: 1024px) {
  .sideban2 a {
    border-radius: 5px;
    padding: 16px 16px;
    min-width: 200px;
    align-items: center;
    letter-spacing: 1px;
  }
}
.sideban2 a.sideban-tel {
  font-size: clamp(14px, 14px + 0vw, 14px);
  background-color: #fff;
}
.sideban2 a.sideban-tel > div {
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .sideban2 a.sideban-tel {
    width: 50%;
  }
}
.sideban2 a.sideban-tel:not(:last-child):not(.daihyo) {
  border-right: 1px solid #A3B57D;
}
.sideban2 a.sideban-tel .icon-sp {
  position: relative;
  padding-left: 24px;
}
.sideban2 a.sideban-tel .icon-sp::before {
  content: "";
  position: absolute;
  display: block;
  background-image: url(../images/icon/foot-tel.svg);
  background-size: contain;
  top: 32%;
  left: 0;
  width: 18px;
  height: 18px;
}
@media screen and (min-width: 1024px) {
  .sideban2 a.sideban-tel .icon-sp::before {
    content: none;
  }
}
@media screen and (min-width: 1024px) {
  .sideban2 a.sideban-tel .icon-sp {
    padding-left: 0;
  }
}
.sideban2 a.sideban-tel .icon-pc {
  display: block;
  font-size: 20px;
  color: #2C8A3D;
  padding-left: 24px;
  position: relative;
}
.sideban2 a.sideban-tel .icon-pc::before {
  content: "";
  position: absolute;
  display: block;
  background-image: url(../images/icon/foot-tel.svg);
  background-size: contain;
  top: 10px;
  left: 0;
  width: 18px;
  height: 18px;
}
@media screen and (max-width: 1023px) {
  .sideban2 a.sideban-tel .icon-pc {
    display: none;
  }
}
@media screen and (max-width: 1023px) {
  .sideban2 a.sideban-tel.daihyo {
    background-color: #998441;
  }
  .sideban2 a.sideban-tel.daihyo .icon-sp {
    color: #fff;
    font-size: clamp(16px, 16px + 0vw, 16px);
  }
  .sideban2 a.sideban-tel.daihyo .icon-sp::before {
    background-image: url(../images/icon/icon-phone.svg);
  }
}
.sideban2 a.sideban-web {
  color: #fff;
  font-size: clamp(16px, 10.706px + 1.103vw, 22px);
  background-color: #2C8A3D;
}
@media screen and (max-width: 1023px) {
  .sideban2 a.sideban-web {
    width: 50%;
  }
}
.sideban2 a.sideban-web .icon {
  position: relative;
  padding-left: 32px;
}
.sideban2 a.sideban-web .icon::before {
  content: "";
  position: absolute;
  display: block;
  background-image: url(../images/icon/icon-calendar.svg);
  background-size: contain;
  top: 4px;
  left: 0;
  width: 22px;
  height: 20px;
}
@media screen and (min-width: 1024px) {
  .sideban2 a.sideban-web:hover {
    background-color: #6DAA2A;
  }
}
.sideban2 a.sideban-web span.sub {
  display: block;
  font-size: 14px;
}
.sideban2 a.sideban-line {
  width: 50%;
  display: flex;
  justify-content: center;
  gap: 10px;
  font-size: clamp(14px, 21.529px + -0.735vw, 18px);
  font-weight: bold;
  background-color: #00B915;
}
@media screen and (min-width: 1024px) {
  .sideban2 a.sideban-line {
    width: 100%;
  }
  .sideban2 a.sideban-line img {
    width: 20px;
  }
  .sideban2 a.sideban-line:hover {
    background-color: rgb(0, 134, 15.2108108108);
  }
}
.sideban2.scroll-in {
  bottom: 0;
}

/* 共通 */
.post-list-cat {
  margin: 0.5em 0;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.post-list-cat > li a {
  font-size: clamp(12px, 12px + 0vw, 12px);
  padding: 2px 10px;
  color: #fff;
  background-color: #83C201;
}

.post-list-img-wrap {
  overflow: hidden;
}

.post-list-img {
  width: 100%;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.5s;
}
.post-list-img:hover {
  transform: scale(1.1);
}

.post-list-card .time, .post-list-card2 .time, .post-list-card3 .time, .post-list .time {
  font-size: clamp(12px, 10.235px + 0.368vw, 14px);
  color: #9B9B9B;
  text-align: right;
}
.post-list-card h3, .post-list-card2 h3, .post-list-card3 h3, .post-list h3 {
  font-size: clamp(16px, 12.471px + 0.735vw, 20px);
  margin-bottom: 0.5em;
  overflow: hidden;
}
.post-list-card a, .post-list-card2 a, .post-list-card3 a, .post-list a {
  text-decoration: none;
}

.post-list {
  margin: 0 auto 2em auto;
}
.post-list > li {
  display: flex;
  gap: 30px;
  padding: 1.5em 0;
}
.post-list > li:not(:last-child) {
  border-bottom: 1px dotted #d1cccc;
}
@media screen and (max-width: 767px) {
  .post-list > li {
    /* flex-direction: column;*/
    gap: 0px;
    padding: 1em 0;
  }
}
.post-list > li .post-list-cat {
  flex-shrink: 0;
  margin: 0;
}
.post-list > li h3 {
  font-size: 16px;
  font-weight: normal;
  margin: 0.5em 0 0 0;
  line-height: 1.8;
}
.post-list > li .time {
  letter-spacing: 2px;
  font-size: clamp(16px, 16px + 0vw, 16px);
  color: #83C201;
  font-weight: 700;
  width: 100px;
  flex-shrink: 0;
  text-align: left;
}
.post-list > li .new {
  background-color: #998441;
  color: #fff;
  padding: 0 6px;
  font-size: 14px;
}

/* タイトルを左にしたい場合*/
.post-list-wrap {
  flex-grow: 1;
}
.post-list-wrap h2 {
  padding: 0;
}
@media screen and (min-width: 1024px) {
  .post-list-wrap {
    display: flex;
    gap: 100px;
  }
  .post-list-wrap .post-list {
    /*flex-basis: fit-content;*/
    width: 60%;
  }
  .post-list-wrap .post-list-title {
    width: 40%;
  }
}

.eyecatch {
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
  margin: auto;
}

.entry-meta time.entry-date {
  /* color: #9B9B9B; */
}

/* ポスト一覧カテゴリ表示 */
.entry-categories ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  gap: 5px;
  margin-bottom: 10px;
  /*  justify-content: flex-end; */
}
.entry-categories ul li a {
  background-color: #A3B57D;
  color: #fff;
  line-height: 1;
  padding: 2px 10px;
  font-size: 14px;
}

.contact-item-wrap {
  display: flex;
  gap: 30px;
  width: 100%;
  margin-bottom: 1em;
}
@media screen and (max-width: 767px) {
  .contact-item-wrap {
    gap: 10px;
    flex-direction: column;
  }
}
.contact-item-wrap .contact-item-th .small {
  font-size: 0.8em;
  font-weight: normal;
  display: block;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .contact-item-wrap .contact-item-th {
    width: 200px;
  }
}
.contact-item-wrap .contact-item-th .red {
  font-size: 14px;
  font-weight: normal;
  color: red;
}
.contact-item-wrap .contact-item-th .form_en {
  font-size: 14px;
  font-weight: normal;
  color: #83C201;
  display: block;
}
.contact-item-wrap .contact-item-td {
  flex-grow: 1;
}
.contact-item-wrap .contact-item-td p {
  display: flex;
  flex-direction: column;
  margin: 0;
}
.contact-item-wrap textarea,
.contact-item-wrap select,
.contact-item-wrap input[type=tel],
.contact-item-wrap input[type=email],
.contact-item-wrap input[type=text],
.contact-item-wrap input[type=button],
.contact-item-wrap input[type=reset],
.contact-item-wrap input[type=search],
.contact-item-wrap input[type=password] {
  width: 100%;
}

.contact-submit-wrap {
  text-align: center;
}

.submit-wrap {
  text-align: center;
  position: relative;
}
.submit-wrap p {
  margin-bottom: 0;
}
.submit-wrap .wpcf7-spinner {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  top: 60px;
  margin: 0;
  display: block;
}

.contact-btn {
  text-align: center;
  margin-top: 2em;
}

.show-pc {
  display: none;
}
@media screen and (min-width: 1024px) {
  .show-pc {
    display: block;
  }
}

.show-sp {
  display: block;
}
@media screen and (min-width: 1024px) {
  .show-sp {
    display: none;
  }
}

.content {
  max-width: 1200px;
  margin-inline: auto;
  padding: 0 15px;
}
@media screen and (max-width: 1023px) {
  .content {
    padding: 0 24px;
  }
}
.content > h2 {
  padding-left: 0;
  padding-right: 0;
}

.radius {
  border-radius: 10px;
}

.mt-m, .mt40 {
  margin-top: clamp(80px, 44.706px + 7.353vw, 120px);
}

.mb-m, .mb40 {
  margin-bottom: clamp(80px, 44.706px + 7.353vw, 120px);
}

.mb-s {
  margin-bottom: clamp(32px, 3.765px + 5.882vw, 64px);
}

.mt-s {
  margin-top: clamp(32px, 3.765px + 5.882vw, 64px);
}

.pt-m {
  padding-top: clamp(80px, 44.706px + 7.353vw, 120px);
}

.pb-m {
  padding-bottom: clamp(80px, 44.706px + 7.353vw, 120px);
}

.txtbr {
  display: inline-block;
}

.small {
  font-size: 14px;
}

/* simple */
/*
.fv-txt-wrap{
  width: 100%;
max-width: 1200px;
padding: 0 15px;
display: flex;
margin: auto;
align-items: center;
}

#fv_outer {
  padding-top: 95px;
  background: url(https://picsum.photos/1366/700);
  background-size: cover;
      }
*/
.cataract-hero {
  position: relative;
  overflow: hidden;
  height: 580px;
}
@media screen and (min-width: 1024px) {
  .cataract-hero {
    height: 700px;
    margin-top: 95px;
  }
}

/* 背景Swiper（一番下） */
.cataract-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  height: 580px;
}
@media screen and (min-width: 1024px) {
  .cataract-hero__bg {
    height: 700px;
  }
}

.cataract-hero__bg-slide {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.cataract-hero__bg-slide--01 {
  background-image: url("../images/toppage/fv1.jpg");
}

.cataract-hero__bg-slide--02 {
  background-image: url("../images/toppage/fv2.jpg");
}

.cataract-hero__bg-slide--03 {
  background-image: url("../images/toppage/fv3.jpg");
}

.cataract-hero__bg-slide--04 {
  background-image: url("../images/toppage/fv4.jpg");
}

/* 黒幕（固定。fadeしない） */
.cataract-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgb(0, 0, 0);
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.83) 6%, rgba(0, 0, 0, 0.45) 100%);
  z-index: 5;
  pointer-events: none;
}
@media screen and (max-width: 1023px) {
  .cataract-hero__overlay {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.83) 6%, rgba(0, 0, 0, 0) 100%);
  }
}

/* テキストSwiper（黒幕より上） */
.cataract-hero__text-wrapper {
  position: absolute;
  inset: 0;
  z-index: 10;
}
@media screen and (max-width: 1023px) {
  .cataract-hero__text-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 40px;
  }
}
@media screen and (min-width: 1024px) {
  .cataract-hero__text-wrapper {
    top: 50%;
    transform: translateY(-50%);
  }
}

.cataract-hero__inner {
  height: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: flex-start;
  color: #fff;
}
@media screen and (max-width: 1023px) {
  .cataract-hero__inner {
    padding: 0 16px;
  }
}

/* テキストのアニメ（スライドごと）   */
.cataract-hero__inner {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.8s ease;
}

.js-cataract-text .swiper-slide-active .cataract-hero__inner {
  opacity: 1;
  transform: translateY(0);
}

/* 右下固定ボックス */
.cataract-hero__fixed-box {
  padding-top: 80px;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .cataract-hero__fixed-box {
    margin: 40px 16px;
  }
}
@media screen and (min-width: 1024px) {
  .cataract-hero__fixed-box {
    position: absolute;
    right: 40px;
    bottom: 40px;
    z-index: 20;
  }
}

.cataract-hero__text {
  font-family: "Noto Serif JP";
  font-style: normal;
  font-weight: 400;
}

.cataract-hero__side-label {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 20px;
  letter-spacing: 0.2em;
  color: #ffffff;
  margin-right: 47px;
  font-family: "Sorts Mill Goudy", serif;
  font-weight: 400;
  font-style: normal;
  position: relative;
}
.cataract-hero__side-label::after {
  content: "";
  position: absolute;
  top: 50px;
  left: 0;
  width: 100px;
  height: 1px;
  background-color: #fff;
  transform: rotate(90deg);
}
@media screen and (max-width: 1023px) {
  .cataract-hero__side-label {
    display: none;
  }
}

.cataract-hero__term {
  background-color: #2C8A3D;
  text-align: center;
  padding: 4px 16px;
  border-radius: 5px;
  letter-spacing: 2px;
  display: inline-block;
  margin-bottom: 16px;
}

.cataract-hero__sub {
  font-size: clamp(20px, 13.824px + 1.287vw, 27px);
}

.cataract-hero__sub2 {
  font-size: clamp(28px, 2.412px + 5.331vw, 57px);
  line-height: 1.3;
}

.cataract-hero__main {
  font-size: clamp(38px, 8.882px + 6.066vw, 71px);
  line-height: 1;
}

.cataract-hero__result {
  font-size: clamp(20px, 2.353px + 3.676vw, 40px);
  margin-bottom: 0;
  line-height: 1.2;
}
.cataract-hero__result span.count {
  font-size: clamp(32px, 9.941px + 4.596vw, 57px);
  padding: 0 12px;
}
.cataract-hero__result span.mini {
  font-size: clamp(18px, 7.412px + 2.206vw, 30px);
}

.cataract-hero__sub4 span {
  font-size: clamp(16px, 8.059px + 1.654vw, 25px);
  border: 1px solid #fff;
  padding: 4px 16px;
}

@media screen and (min-width: 1024px) {
  .cataract-hero__text .slide--01 {
    margin-top: 20px;
  }
}

@media screen and (max-width: 1023px) {
  .cataract-hero__text .slide--02 {
    margin-top: 60px;
  }
}
@media screen and (min-width: 1024px) {
  .cataract-hero__text .slide--02 {
    margin-top: 60px;
  }
}

@media screen and (max-width: 1023px) {
  .cataract-hero__text .slide--03 {
    margin-top: 40px;
  }
}
@media screen and (min-width: 1024px) {
  .cataract-hero__text .slide--03 {
    margin-top: 50px;
  }
}

.cataract-hero__text .slide--04 .cataract-hero__main {
  margin-bottom: clamp(24px, 9.882px + 2.941vw, 40px);
}
@media screen and (max-width: 1023px) {
  .cataract-hero__text .slide--04 {
    margin-top: 40px;
  }
}
@media screen and (min-width: 1024px) {
  .cataract-hero__text .slide--04 {
    margin-top: 50px;
  }
}

.cataract-hero__txt {
  position: relative;
  font-size: clamp(14px, 13.118px + 0.184vw, 15px);
  background-color: #fff;
  text-align: center;
  font-weight: bold;
  border-radius: 15px;
  box-shadow: 0 0px 6px rgba(0, 0, 0, 0.3);
  padding: 40px 32px 16px 32px;
}
.cataract-hero__txt span {
  color: #2C8A3D;
}
@media screen and (max-width: 1023px) {
  .cataract-hero__txt {
    padding: 40px 8px 16px 8px;
  }
}

.cataract-hero__baloon {
  box-shadow: 0 0px 6px rgba(0, 0, 0, 0.3);
  text-align: center;
  position: absolute;
  width: 90%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  margin-bottom: 20px;
  padding: clamp(12px, 8.471px + 0.735vw, 16px);
  border-radius: 15px;
  background-color: #6DAA2A;
  font-size: clamp(12px, 10.235px + 0.368vw, 14px);
  line-height: 1.8;
  color: #fff;
  z-index: 1;
}
@media screen and (max-width: 1023px) {
  .cataract-hero__baloon {
    width: 95%;
  }
}
.cataract-hero__baloon:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 10px 10px 0 10px;
  border-color: #6DAA2A transparent transparent;
  translate: -50% 100%;
}

#stats .has-fixed-layout td {
  font-size: 14px;
}

#c-info {
  background-color: #F8F8F5;
}
#c-info .c-info-mid {
  color: #83C201;
}
#c-info .c-info-wrap {
  display: flex;
  flex-direction: column;
  gap: 42px;
}
@media screen and (min-width: 1024px) {
  #c-info .c-info-wrap {
    flex-direction: row;
    gap: 80px;
  }
}
#c-info .c-info-wrap .c-info-title {
  position: relative;
}
@media screen and (max-width: 1023px) {
  #c-info .c-info-wrap .c-info-title {
    overflow: hidden;
    aspect-ratio: 400/290;
  }
  #c-info .c-info-wrap .c-info-title:after {
    content: "";
    display: block;
    width: 100vw;
    height: 50%;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }
}
@media screen and (min-width: 1024px) {
  #c-info .c-info-wrap .c-info-title {
    width: 50%;
    background-image: url(../images/toppage/c-info.webp);
    background-size: cover;
    position: relative;
  }
}
@media screen and (min-width: 1024px) {
  #c-info .c-info-wrap .c-info-title .c-info-mid {
    font-size: 70px;
    white-space: nowrap;
    letter-spacing: 2px;
    writing-mode: vertical-rl;
    position: absolute;
    right: 0;
    top: 0;
    background-color: #F8F8F5;
    height: 100%;
    padding-top: 40px;
  }
}
@media screen and (max-width: 1023px) {
  #c-info .c-info-wrap .c-info-title .c-info-mid {
    font-size: 9vw;
    line-height: 1.3;
    position: absolute;
    bottom: 0;
    z-index: 3;
    left: 24px;
  }
}
#c-info .c-info-wrap .c-info-title .c-info-img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80%;
  z-index: 2;
}
#c-info .c-info-wrap .c-info-content {
  max-width: 1200px;
  margin-inline: auto;
  padding: 0 15px;
  width: 100%;
}
@media screen and (max-width: 1023px) {
  #c-info .c-info-wrap .c-info-content {
    padding: 0 24px;
  }
}
#c-info .c-info-wrap .c-info-content h2 {
  font-size: clamp(24px, 20.471px + 0.735vw, 28px);
  color: #998441;
  border-bottom: 1px solid #998441;
  padding-bottom: 4px;
}
@media screen and (max-width: 1023px) {
  #c-info .c-info-wrap .c-info-content .c-info-content-inner {
    padding-bottom: 40px;
  }
}
@media screen and (min-width: 1024px) {
  #c-info .c-info-wrap .c-info-content {
    padding: 80px 0;
  }
  #c-info .c-info-wrap .c-info-content .c-info-content-inner {
    max-width: 740px;
  }
}
#c-info .c-info-wrap .c-info-content .c-info-card {
  border: 1px solid #998441;
  border-radius: 5px;
  padding: 24px;
  margin: 32px 0;
}
@media screen and (min-width: 1024px) {
  #c-info .c-info-wrap .c-info-content .c-info-card {
    display: flex;
    align-items: center;
    gap: 30px;
  }
}
#c-info .c-info-wrap .c-info-content .c-info-card p {
  font-size: 14px;
  text-align: center;
  color: #998441;
  line-height: 1.4;
}
@media screen and (min-width: 1024px) {
  #c-info .c-info-wrap .c-info-content .c-info-card p {
    text-align: left;
    margin-bottom: 0;
  }
}
#c-info .c-info-wrap .c-info-content .c-info-card img {
  margin-inline: auto;
}
#c-info .c-info-wrap .c-info-content .c-info-bottom {
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  #c-info .c-info-wrap .c-info-content .c-info-bottom {
    flex-direction: column;
    gap: 0px;
  }
}
#c-info .c-info-wrap .c-info-content .c-info-bottom .c-info-bottom-links {
  flex-grow: 1;
}
#c-info .c-info-wrap .c-info-content .c-info-bottom .c-info-bottom-map {
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  #c-info .c-info-wrap .c-info-content .c-info-bottom .c-info-bottom-map .c-info-map-img {
    width: 100%;
  }
}
#c-info .c-info-wrap .c-info-content .c-info-bottom .c-info-btn {
  font-size: clamp(18px, 16.235px + 0.368vw, 20px);
  display: block;
  margin-bottom: 16px;
  background-blend-mode: multiply;
  color: #fff;
  text-align: center;
  padding: 32px 16px;
}
#c-info .c-info-wrap .c-info-content .c-info-bottom .c-info-btn.examination {
  background: #507405 url(../images/toppage/c-info-btn1.jpg) no-repeat;
  background-size: cover;
}
#c-info .c-info-wrap .c-info-content .c-info-bottom .c-info-btn.medical {
  background: #507405 url(../images/toppage/c-info-btn2.jpg) no-repeat;
  background-size: cover;
}
#c-info .c-info-wrap .c-info-content .c-info-bottom .c-info-btn:hover {
  background-color: rgb(117.2064220183, 101.119266055, 49.7935779817);
  color: #fff;
}

#features {
  overflow-x: hidden;
}
#features h2 {
  font-size: 38px;
  color: #83C201;
  margin-bottom: 16px;
  padding-left: 15px;
}
@media screen and (max-width: 1023px) {
  #features h2 {
    padding-left: 0px;
    font-size: 22px;
    writing-mode: vertical-rl;
    letter-spacing: -6px;
    position: absolute;
    top: 0;
    margin-bottom: 0;
    left: 11vw;
    height: 100%;
  }
  #features h2:after {
    content: "";
    display: block;
    width: 1px;
    height: 50px;
    background-color: #83C201;
    position: absolute;
    top: 150px;
    left: 16px;
  }
}
#features h3 {
  font-size: clamp(20px, 15.588px + 0.919vw, 25px);
  color: #998441;
  line-height: 1.7;
  margin-bottom: 24px;
  letter-spacing: 1px;
}
#features .features-title {
  font-size: clamp(40px, -6.765px + 9.743vw, 93px);
  color: #83C201;
  line-height: 1;
  padding-left: 15px;
}
@media screen and (max-width: 1023px) {
  #features .features-title {
    padding-left: 0px;
    position: absolute;
    bottom: 1vw;
    left: 5vw;
  }
}
#features .features-top {
  margin-bottom: clamp(72px, 56.118px + 3.309vw, 90px);
}
#features .features-top .contents7-inner {
  align-items: center;
  position: relative;
}
@media screen and (max-width: 1023px) {
  #features .features-top .contents7-inner img {
    width: 80%;
    height: auto;
    margin-left: auto;
  }
}
@media screen and (max-width: 767px) {
  #features .features-top .contents7-inner img {
    height: auto;
    width: 70%;
  }
}
#features .features-list .contents7-inner {
  margin-bottom: clamp(40px, -4.118px + 9.191vw, 90px);
}
#features .features-list .contents7-inner .link-box-center {
  margin-top: 32px;
}
#features .features-list .feature-txt {
  padding-right: 16px;
}
@media screen and (max-width: 1023px) {
  #features .features-list .feature-txt {
    padding: 0 24px;
  }
}
@media screen and (min-width: 1024px) {
  #features .features-list .reverse .feature-txt {
    padding-left: 16px;
    padding-right: 0;
  }
}
#features .features-list .contents7-col {
  position: relative;
}
#features .features-list .contents7-col.contents7-outside-left:before {
  content: "";
  width: 100%;
  height: 100%;
  max-height: 340px;
  background: linear-gradient(90deg, rgba(131, 194, 1, 0.7) 1%, rgba(131, 194, 1, 0) 40%);
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
#features .features-list .contents7-col.contents7-outside-right:before {
  content: "";
  width: 100%;
  height: 100%;
  max-height: 340px;
  background: linear-gradient(-90deg, rgba(131, 194, 1, 0.7) 1%, rgba(131, 194, 1, 0) 40%);
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
#features .features-list .contents7-col.contents7-outside-left .features-en {
  font-size: clamp(30px, 9.706px + 4.228vw, 53px);
  position: absolute;
  bottom: 0;
  left: clamp(16px, 8.941px + 1.471vw, 24px);
  color: #fff;
  z-index: 3;
}
#features .features-list .contents7-col.contents7-outside-right .features-en {
  font-size: clamp(30px, 9.706px + 4.228vw, 53px);
  position: absolute;
  bottom: 0;
  right: clamp(16px, 8.941px + 1.471vw, 24px);
  color: #fff;
  z-index: 3;
}
@media screen and (min-width: 1024px) {
  #features .features-list .contents7-col {
    width: 46%;
  }
}
#features .features-list .contents7-inner img {
  max-height: 340px;
  height: 100%;
}
@media screen and (max-width: 1023px) {
  #features .features-list .contents7-inner img {
    max-height: 150px;
  }
}

#care {
  background: linear-gradient(90deg, rgb(246, 255, 236) 20.2073986001%, rgb(246, 254, 236) 20.2073986001%, rgb(248, 248, 245) 80.208295944%);
}
#care .h2--center {
  margin-bottom: 0;
}
#care .h2--center:before {
  font-size: clamp(35px, 23.529px + 2.39vw, 48px);
  max-width: 450px;
}
@media screen and (max-width: 767px) {
  #care .h2--center:before {
    max-width: 300px;
  }
}
#care .care-wrap {
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 1023px) {
  #care .care-wrap {
    flex-direction: column;
    gap: 40px;
  }
}
#care .care-item {
  flex-grow: 1;
}
#care .care-item h3 {
  margin-top: 40px;
  margin-bottom: 32px;
}
#care .care-title {
  flex-shrink: 0;
}
#care .care-item-btn2 {
  position: relative;
  background-color: #fff;
  display: block;
  width: 100%;
  font-family: "Noto Serif JP";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #333333;
  padding: 16px 24px 16px 16px;
  border-left: 10px solid #83C201;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
#care .care-item-btn2:after {
  content: "";
  position: absolute;
  display: block;
  right: 12px;
  top: 45%;
  background-image: url(../images/icon/right-arrow.svg);
  width: 16px;
  height: 10px;
  background-size: contain;
  background-repeat: no-repeat;
  transition: 0.5s;
}
#care .care-item-btn2:hover {
  background-color: #f5f5f5;
}
#care .care-item-btn2:hover:after {
  right: 8px;
}
#care .care-item-btn {
  position: relative;
  background-color: #fff;
  display: block;
  width: 100%;
  font-family: "Noto Serif JP";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  color: #333333;
  padding-right: 24px;
  border: 1px solid #e6e6e6;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
#care .care-item-btn .care-item-inner {
  display: flex;
  align-items: center;
  gap: 24px;
}
#care .care-item-btn .care-item-inner .small {
  font-size: 12px;
  display: block;
  line-height: 1.4;
  color: #7c7c7c;
}
#care .care-item-btn:after {
  content: "";
  position: absolute;
  display: block;
  right: 12px;
  top: 45%;
  background-image: url(../images/icon/right-arrow.svg);
  width: 16px;
  height: 10px;
  background-size: contain;
  background-repeat: no-repeat;
  transition: 0.5s;
}
#care .care-item-btn:hover {
  background-color: #f5f5f5;
}
#care .care-item-btn:hover:after {
  right: 8px;
}
#care .care-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 16px 40px;
}

#stats {
  position: relative;
  background-image: url(../images/toppage/stats_bg.webp);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: top center;
}
#stats:before {
  content: "";
  display: block;
  background-color: #6E7A56;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  mix-blend-mode: multiply;
}
#stats .content {
  position: relative;
  z-index: 1;
}
#stats h2 {
  color: #fff;
  font-size: clamp(18px, 11.824px + 1.287vw, 25px);
}
@media screen and (min-width: 1024px) {
  #stats h2 {
    writing-mode: vertical-rl;
    position: absolute;
    top: 0;
    right: 0;
    letter-spacing: -6px;
    padding-left: 32px;
  }
  #stats h2:before {
    content: "";
    display: block;
    background-color: #fff;
    width: 1px;
    height: 80px;
    position: absolute;
    left: 0;
    top: 0;
  }
}
#stats .stats-title {
  color: #fff;
  font-size: clamp(34px, 9.294px + 5.147vw, 62px);
  line-height: 1.3;
}
@media screen and (min-width: 1024px) {
  #stats .stats-title {
    writing-mode: vertical-rl;
  }
}
#stats .accordion-content {
  display: none;
  width: 100%;
  padding: 24px;
  max-height: 500px;
  overflow-y: scroll;
  background-color: #fff;
}
@media screen and (max-width: 1023px) {
  #stats .accordion-content {
    max-height: 300px;
  }
}
@media screen and (min-width: 1024px) {
  #stats .link-box-center:has(.stats-nen) {
    justify-content: flex-start;
  }
}
#stats .stats-nen {
  color: #fff;
  border: 1px solid #fff;
  padding: 8px 16px;
  display: inline-block;
  line-height: 1;
  margin-bottom: 0;
}
@media screen and (max-width: 1023px) {
  #stats .stats-nen {
    margin-inline: auto;
  }
}
#stats .stats-summary {
  text-align: center;
  color: #fff;
  font-size: clamp(40px, 36.471px + 0.735vw, 44px);
  line-height: 1;
  margin-bottom: 40px;
}
#stats .stats-summary span {
  font-size: clamp(56px, 50.706px + 1.103vw, 62px);
  margin: 0 8px;
}
@media screen and (min-width: 1024px) {
  #stats .stats-summary {
    text-align: left;
  }
}
#stats .accordion-toggle {
  background-color: #83C201;
  color: #fff;
  text-align: center;
  width: 100%;
  padding: 8px;
  margin-top: 40px;
  box-sizing: border-box;
}
#stats .accordion-content-inner {
  background-color: #fff;
}
#stats .data-txt {
  color: #fff;
}
#stats .accordion-content-inner table {
  margin-top: 0;
}
#stats .stats-wrap {
  display: flex;
  flex-direction: column;
  gap: 0px;
}
@media screen and (min-width: 1024px) {
  #stats .stats-wrap {
    flex-direction: row;
    gap: 130px;
  }
  #stats .stats-wrap .stats-title-block {
    width: 260px;
    position: relative;
  }
  #stats .stats-wrap .stats-title-data {
    flex-grow: 1;
    max-width: 600px;
  }
}
@media screen and (max-width: 1023px) {
  #stats .stats-wrap .stats-title-data {
    max-width: 600px;
    margin-inline: auto;
  }
}

@media screen and (min-width: 768px) {
  #common h2 {
    word-break: break-word;
    width: 500px;
  }
}
@media screen and (max-width: 767px) {
  #common .hierarchical-nav ul {
    grid-template-columns: repeat(2, 1fr);
  }
}

#helpful .top-helpful-wrap {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 1024px) {
  #helpful .top-helpful-wrap {
    flex-direction: row;
    justify-content: space-between;
    gap: 0;
  }
}
#helpful .helpful-list {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  grid-gap: 24px;
}
@media screen and (max-width: 1023px) {
  #helpful .helpful-list {
    margin-bottom: 40px;
  }
}

#rclinic {
  background-color: #F8F8F5;
}
@media screen and (min-width: 1024px) {
  #rclinic h2 {
    white-space: nowrap;
  }
}
#rclinic h2:before {
  font-size: clamp(39px, 39px + 0vw, 39px);
}
#rclinic .rclinic-head {
  display: flex;
  gap: 0px;
  flex-direction: column;
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  #rclinic .rclinic-head {
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 1024px) {
  #rclinic .rclinic-head {
    flex-direction: row;
    gap: 40px;
    justify-content: space-between;
  }
}
@media screen and (min-width: 1024px) {
  #rclinic .rclinic-txt {
    width: 45%;
  }
}
#rclinic .rclinic-txt p {
  border-left: 1px solid #83C201;
  padding-left: 24px;
}
#rclinic ul#menu-partnerships {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  flex-direction: column;
}
@media screen and (max-width: 1023px) {
  #rclinic ul#menu-partnerships {
    gap: 16px;
  }
}
@media screen and (min-width: 768px) {
  #rclinic ul#menu-partnerships {
    flex-direction: row;
    margin-bottom: 0px;
  }
}
@media screen and (min-width: 768px) {
  #rclinic ul#menu-partnerships li {
    width: calc(50% - 8px);
  }
}
@media screen and (min-width: 1024px) {
  #rclinic ul#menu-partnerships li {
    width: calc(25% - 12px);
  }
}
#rclinic ul#menu-partnerships a {
  border-radius: 5px;
  display: block;
  border: 1px solid #2C8A3D;
  color: #2C8A3D;
  background-color: #fff;
  position: relative;
  font-size: 14px;
  padding: 8px 24px 8px 32px;
}
#rclinic ul#menu-partnerships a:before {
  content: "";
  display: block;
  width: 14px;
  height: 18px;
  background-image: url(../images/icon/icon-clinic.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
}
#rclinic ul#menu-partnerships a:after {
  content: "";
  display: block;
  width: 15px;
  height: 9px;
  background-image: url(../images/icon/right-arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.5s;
}
#rclinic ul#menu-partnerships a:hover {
  background-color: #fff;
}
#rclinic ul#menu-partnerships a:hover:after {
  right: 8px;
}

/*hNavi2*/
.hNavi2.header-outer {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
}
@media screen and (max-width: 1023px) {
  .hNavi2 .header-inner {
    padding: 1.5em 2em 0em 2em;
    position: fixed;
    top: 0;
    z-index: 10;
    height: 100%;
    left: 0;
    width: 100%;
    transition: all 600ms ease-out;
    opacity: 0;
    transform: translateZ(0) translateX(100%);
    overflow: auto;
  }
  @supports (height: 100dvh) {
    .hNavi2 .header-inner .header-inner {
      height: 100dvh;
    }
  }
}
@media screen and (min-width: 1024px) {
  .hNavi2 .header-inner {
    height: 152px;
    transition: height 0.3s ease;
  }
}
@media screen and (min-width: 1024px) {
  .hNavi2 #menu {
    background-color: transparent;
    transform: translateZ(0) translateY(0px);
  }
}
@media screen and (max-width: 1023px) {
  .hNavi2 #branding {
    margin-bottom: 2em;
  }
}
@media screen and (min-width: 1024px) {
  .hNavi2 #branding {
    transform: translateZ(0) translateY(0px);
    padding: 0;
    background: #fff;
    transition: 0.5s;
    border-bottom: 1px solid #d1cccc;
  }
  .hNavi2 #branding h1 {
    margin: 0;
  }
  .hNavi2 #branding h1 span {
    margin: auto;
  }
  .hNavi2 #branding .logo {
    margin: auto;
  }
}
.hNavi2 #menu-headnav {
  font-family: "Noto Serif JP";
  font-style: normal;
  font-weight: 400;
}
@media screen and (min-width: 1024px) {
  .hNavi2 #menu-headnav {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 3vw;
  }
}
@media screen and (min-width: 1024px) {
  .hNavi2 #menu-headnav > li {
    /*    width: 150px; */
    position: relative;
  }
}
@media screen and (max-width: 1023px) {
  .hNavi2 #menu-headnav > li {
    margin-bottom: 1em;
  }
  .hNavi2 #menu-headnav > li.js_fire.menu-item-has-children {
    position: relative;
  }
  .hNavi2 #menu-headnav > li.js_fire.menu-item-has-children:after {
    content: "";
    background-image: url(../images/icon/icon_minus-light.svg);
    display: block;
    width: 25px;
    height: 25px;
    background-size: cover;
    position: absolute;
    right: 0;
    top: 0px;
  }
  .hNavi2 #menu-headnav > li.menu-item-has-children {
    position: relative;
  }
  .hNavi2 #menu-headnav > li.menu-item-has-children:after {
    content: "";
    background-image: url(../images/icon/icon_plus-light.svg);
    display: block;
    width: 25px;
    height: 25px;
    background-size: cover;
    position: absolute;
    right: 0;
    top: 0.2rem;
  }
}
.hNavi2 #menu-headnav > li > a {
  color: #333333;
  font-size: 22px;
  display: block;
}
@media screen and (min-width: 1024px) {
  .hNavi2 #menu-headnav > li > a {
    color: #fff;
    font-size: clamp(0px, 1.2vw, 15px);
  }
  .hNavi2 #menu-headnav > li > a:hover {
    color: #ece5d9;
  }
}
@media screen and (min-width: 1024px) {
  .hNavi2 #menu-headnav > li > a {
    padding: 15px 0;
    text-align: center;
  }
  .hNavi2 #menu-headnav > li > a:after {
    display: block;
    content: attr(data-subTxt);
    color: #83C201;
    font-size: clamp(10px, 10px + 0vw, 10px);
    font-weight: 600;
    letter-spacing: 1px;
    text-align: center;
  }
}
.hNavi2 #menu-headnav > li > .sub-menu {
  font-size: clamp(16px, 19.765px + -0.368vw, 18px);
}
@media screen and (min-width: 1024px) {
  .hNavi2 #menu-headnav > li > .sub-menu {
    display: none;
    position: absolute;
    background: #fff;
    width: 270px;
    z-index: 2;
    right: 0;
    left: 50%;
    transform: translate(-50%, 0);
    box-shadow: 0px 4px 7px 1px rgba(17, 17, 26, 0.1);
  }
  .hNavi2 #menu-headnav > li > .sub-menu li a {
    display: block;
    padding: 10px 15px;
    background-color: #F5FCEB;
    font-size: 15px;
  }
  .hNavi2 #menu-headnav > li > .sub-menu li a:hover {
    background-color: rgb(233.9130434783, 248.6739130435, 212.8260869565);
    color: rgb(102.3043478261, 157.3913043478, 23.6086956522);
  }
  .hNavi2 #menu-headnav > li > .sub-menu li:not(:last-child) {
    border-bottom: 1px solid #d8e2ca;
  }
}
@media screen and (max-width: 1023px) {
  .hNavi2 #menu-headnav > li > .sub-menu {
    display: none;
    padding: 0.5em 0em;
  }
  .hNavi2 #menu-headnav > li > .sub-menu li:not(:last-child) {
    margin-bottom: 0.6em;
  }
}
@media screen and (min-width: 1024px) {
  .hNavi2 .header-inner.scrolled {
    height: 55px;
  }
  .hNavi2 .header-inner.scrolled header#header {
    height: 55px;
  }
  .hNavi2 .header-inner.scrolled #branding {
    transform: translateZ(0) translateY(-100px);
  }
  .hNavi2 .header-inner.scrolled #menu {
    transform: translateZ(0) translateY(-100px);
    background-color: #fff;
    box-shadow: 0px 0px 7px 1px rgba(17, 17, 26, 0.1);
  }
  .hNavi2 .header-inner.scrolled #menu-headnav > li > a {
    font-size: 14px;
    color: #333333;
  }
  .hNavi2 .header-inner.scrolled #menu-headnav > li > a:hover {
    color: #6DAA2A;
  }
  .hNavi2 .header-inner.scrolled #menu-headnav > li > a:after {
    display: none;
  }
}

.js_humburgerOpen .hNavi2 .header-inner {
  background: #F5FCEB;
  width: 100%;
  opacity: 1;
  transform: translateZ(0) translateX(0);
}

.js_humburgerOpen {
  overflow-y: hidden;
}

/*ハンバーガーボタン*/
.el_humburger {
  position: fixed;
  top: 45px;
  right: 60px;
  width: 46px;
  height: 25px;
  padding-top: 1px;
  box-sizing: border-box;
  padding-top: 0px;
  z-index: 20;
  cursor: pointer;
  pointer-events: auto;
  color: #000;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .el_humburger {
    display: none;
  }
}

@media screen and (max-width: 1023px) {
  .el_humburger {
    display: block;
    right: 0;
    top: 0;
    padding-top: 20px;
    width: 70px;
    height: 70px;
  }
  #factory .el_humburger {
    display: none;
  }
}
.el_humburger_wrapper {
  margin-bottom: 5px;
  width: 42px;
  display: inline-block;
}

@media screen and (max-width: 1023px) {
  .el_humburger_wrapper {
    margin-bottom: 5px;
    width: 30px;
  }
}
.el_humburger_text {
  font-size: 12px;
  letter-spacing: 0.1em;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", Meiryo, メイリオ, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "Yu Gothic", YuGothic, "MS PGothic", Osaka, arial, sans-serif;
}

.js_humburgerOpen .el_humburger_text.el_humburger_text__menu {
  display: none;
}

.el_humburger_text.el_humburger_text__close {
  display: none;
}

.js_humburgerOpen .el_humburger_text.el_humburger_text__close {
  display: block;
}

@media screen and (max-width: 1023px) {
  .el_humburger_text {
    font-size: 10px;
    padding-top: 2px;
  }
}
@media screen and (max-width: 1023px) {
  .el_humburger_text svg path {
    transition: all 200ms cubic-bezier(0.16, 0.52, 0.25, 1);
    fill: #000;
  }
}
@media screen and (max-width: 1023px) {
  .js_humburgerOpen .el_humburger_text svg path {
    fill: #000;
  }
}
.el_humburger span.el_humburger_bar {
  display: block;
  width: 100%;
  margin: 0 auto 9px;
  height: 1px;
  background: #000;
  transition: all 0.2s ease-in-out;
}

.el_humburger span.el_humburger_bar:last-child {
  margin-bottom: 0;
}

.js_humburgerOpen .el_humburger span.el_humburger_bar {
  background: #000;
}

@media screen and (max-width: 1023px) {
  .el_humburger span.el_humburger_bar {
    left: 0;
    top: 0;
    background: #000;
  }
}
.js_humburgerOpen .el_humburger span.el_humburger_bar.top {
  transform: translateY(9px) rotate(-45deg);
}

.js_humburgerOpen .el_humburger span.el_humburger_bar.middle {
  opacity: 0;
}

.js_humburgerOpen .el_humburger span.el_humburger_bar.bottom {
  transform: translateY(-11px) rotate(45deg);
}

.el_humburgerButton.el_humburgerButton__close {
  top: 2%;
  right: 2%;
}

.el_humburgerButton__close span.el_humburger_bar {
  display: block;
  width: 35px;
  margin: 0 auto;
  height: 4px;
  background: #000;
}

.el_humburgerButton__close span.el_humburger_bar.top {
  transform: translateY(5px) rotate(-45deg);
}

.el_humburgerButton__close span.el_humburger_bar.bottom {
  transform: translateY(-6px) rotate(45deg);
}

#footer ul.sub-menu {
  display: block;
  margin: 16px 0;
}

div#site-title {
  text-align: center;
  line-height: 0;
}

#menu-headnav.menu .sub-menu {
  display: none;
}

#menu-headnav.menu .menu-item-has-children .menu-item-has-children .sub-menu {
  background-color: #fff;
}
@media screen and (max-width: 1023px) {
  #menu-headnav.menu .menu-item-has-children .menu-item-has-children .sub-menu {
    padding: 16px;
    margin: 16px 0;
  }
}
#menu-headnav.menu .menu-item-has-children .menu-item-has-children .sub-menu a {
  background-color: #fff;
}

#menu-headnav.menu .menu-item-has-children .menu-item-has-children > a {
  position: relative;
  display: block;
  padding-right: 1.5em; /* 矢印分の余白 */
}
@media screen and (max-width: 1023px) {
  #menu-headnav.menu .menu-item-has-children .menu-item-has-children > a {
    font-size: 18px;
  }
}
#menu-headnav.menu .menu-item-has-children .menu-item-has-children > a:hover {
  color: #2C8A3D;
}

#menu-headnav.menu .menu-item-has-children .menu-item-has-children > a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1em;
  width: 0.5em;
  height: 0.5em;
  border-right: 1px solid #333;
  border-bottom: 1px solid #333;
  transform: translateY(-50%) rotate(45deg); /* ▶風の矢印 */
  transition: transform 0.2s ease;
}
@media screen and (max-width: 1023px) {
  #menu-headnav.menu .menu-item-has-children .menu-item-has-children > a::after {
    right: 0em;
  }
}

#menu-headnav.menu .menu-item-has-children .menu-item-has-children.js_fire > a::after {
  transform: translateY(-50%) rotate(-135deg); /* ▼風の矢印 */
}

/*hNavi2 end*/
div#site-title {
  display: grid;
  align-items: center;
}

.branding-inner {
  padding: 0 0px 0 32px;
  display: flex;
  justify-content: space-between;
  max-width: 1920px;
  margin-inline: auto;
}
@media screen and (max-width: 1023px) {
  .branding-inner {
    padding: 0;
  }
}
.branding-inner .header-pc-content {
  display: flex;
  gap: 32px;
  align-items: center;
}
.branding-inner .header-pc-btn {
  display: flex;
  align-items: stretch;
}
.branding-inner .header-pc-btn a {
  display: grid;
  padding-top: 10px;
  padding-bottom: 10px;
  align-content: center;
  justify-content: center;
  justify-items: center;
  font-family: "Noto Serif JP";
  font-style: normal;
  font-weight: 400;
  color: #998441;
  text-align: center;
  line-height: 1.4;
}
.branding-inner .header-pc-btn a span {
  display: block;
  font-size: 12px;
}
.branding-inner .header-pc-btn .reserve {
  background-color: #998441;
  color: #fff;
  font-size: 19px;
  padding-left: 30px;
  padding-right: 30px;
}
.branding-inner .header-pc-btn .reserve img {
  margin-bottom: 8px;
}
.branding-inner .header-pc-btn .reserve:hover {
  background-color: rgb(135.1032110092, 116.5596330275, 57.3967889908);
}
.branding-inner .header-pc-btn .medical, .branding-inner .header-pc-btn .faq, .branding-inner .header-pc-btn .access {
  font-size: 16px;
  padding-left: 10px;
  padding-right: 10px;
  width: 110px;
  border-right: 1px solid #d1cccc;
  background-color: #fff;
}
.branding-inner .header-pc-btn .medical img, .branding-inner .header-pc-btn .faq img, .branding-inner .header-pc-btn .access img {
  margin-bottom: 6px;
}
.branding-inner .header-pc-btn .medical:hover, .branding-inner .header-pc-btn .faq:hover, .branding-inner .header-pc-btn .access:hover {
  background-color: rgb(249.9, 249.9, 249.9);
}
.branding-inner .header-pc-btn .access {
  border-right: none;
}
.branding-inner .header-pc-btn .line {
  background-color: #83C201;
  font-size: 16px;
  padding-left: 10px;
  padding-right: 10px;
  color: #fff;
  width: 110px;
}
.branding-inner .header-pc-btn .line img {
  margin-bottom: 6px;
}
.branding-inner .header-pc-btn .line:hover {
  background-color: rgb(113.8692307692, 168.6307692308, 0.8692307692);
}
.branding-inner .header-pc-tel {
  font-family: "Noto Serif JP";
  font-style: normal;
  font-weight: 400;
  font-size: 26px;
  letter-spacing: 2px;
  position: relative;
  padding-left: 28px;
}
.branding-inner .header-pc-tel:before {
  content: "";
  display: block;
  background-image: url(../images/icon/head-tel.svg);
  width: 21px;
  height: 21px;
  position: absolute;
  left: 0;
  top: 32%;
}
@media screen and (max-width: 1199px) {
  .branding-inner .header-pc-tel {
    display: none;
  }
}

@media screen and (max-width: 1023px) {
  .h-bg {
    background-color: #fff;
    width: 100%;
    height: 66px;
  }
}

.header-sp-wrap {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  background: #ECF3E1;
  margin-top: 40px;
  padding: 24px 0;
}

.header-sp-content {
  width: 100%;
  padding: 0 2em;
}
.header-sp-content .line {
  background-color: #83C201;
  display: flex;
  justify-content: center;
  margin-top: 24px;
  color: #fff;
  padding: 12px;
  gap: 10px;
  font-family: "Noto Serif JP";
  font-style: normal;
  font-weight: 400;
}

.header-sp-tel {
  text-align: center;
}
.header-sp-tel span {
  font-family: "Noto Serif JP";
  font-style: normal;
  font-weight: 400;
  font-size: 33px;
  letter-spacing: 2px;
  position: relative;
  padding-left: 38px;
}
.header-sp-tel span:before {
  content: "";
  display: block;
  background-image: url(../images/icon/head-tel.svg);
  width: 27px;
  height: 27px;
  position: absolute;
  background-size: contain;
  left: 0;
  top: 32%;
}

.header-sp-btn {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 24px;
}
.header-sp-btn a {
  display: grid;
  padding-top: 16px;
  padding-bottom: 16px;
  align-content: center;
  justify-content: center;
  justify-items: center;
  font-family: "Noto Serif JP";
  font-style: normal;
  font-weight: 400;
  color: #998441;
  text-align: center;
  line-height: 1.4;
  width: 50%;
  background-color: #fff;
  height: 110px;
}
.header-sp-btn a span {
  display: block;
  font-size: 12px;
}
.header-sp-btn a img {
  margin-bottom: 16px;
}
.header-sp-btn .reserve {
  background-color: #998441;
  color: #fff;
}
.header-sp-btn .medical {
  border-bottom: 1px solid #d1cccc;
}
.header-sp-btn .faq {
  border-right: 1px solid #d1cccc;
}

/* news-blog2 */
#news-blog a:not(.btn) {
  color: #333333;
}
#news-blog a:not(.btn):hover {
  color: #6DAA2A;
}
@media screen and (min-width: 1024px) {
  #news-blog {
    display: flex;
    gap: 120px;
  }
}
#news-blog .link-arrow {
  font-size: 14px;
}
@media screen and (min-width: 1024px) {
  #news-blog #news-block {
    display: flex;
    flex-direction: column;
    width: 50%;
    max-width: 497px;
    flex-shrink: 0;
  }
  #news-blog #news-block .post-list-wrap {
    flex-grow: 1;
  }
}
#news-blog #news-block .post-list {
  width: 100%;
}
#news-blog #news-block .post-list > li {
  gap: 10px;
}
#news-blog #news-block .post-list > li:not(:first-child) {
  padding: 1em 0 1em 0;
}
#news-blog #news-block .post-list > li:first-child {
  padding: 0em 0 1em 0;
}
#news-blog #news-block .post-list > li h3 {
  margin: 0;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", Meiryo, メイリオ, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "Yu Gothic", YuGothic, "MS PGothic", Osaka, arial, sans-serif;
}
#news-blog #news-block .post-list > li .time {
  color: #333333;
  font-size: 14px;
  font-family: "Noto Serif JP";
  font-style: normal;
  font-weight: 400;
}
@media screen and (max-width: 1023px) {
  #news-blog #news-block {
    margin-bottom: 60px;
  }
}
@media screen and (min-width: 1024px) {
  #news-blog #blog-block {
    flex-grow: 1;
  }
}
#news-blog #blog-block .blog-list {
  margin-bottom: 2em;
}
@media screen and (max-width: 1023px) {
  #news-blog #blog-block .blog-list li:not(:first-child) {
    margin-top: 16px;
  }
}
@media screen and (max-width: 1023px) {
  #news-blog #blog-block .blog-list .post-list-box {
    display: flex;
    gap: 15px;
  }
  #news-blog #blog-block .blog-list .post-list-box .catch-img {
    min-width: 120px;
    width: 30%;
    flex-shrink: 0;
  }
  #news-blog #blog-block .blog-list .post-list-box .catch-img img {
    aspect-ratio: 3/2;
    -o-object-fit: cover;
       object-fit: cover;
    transition: transform 0.6s ease;
    flex-shrink: 0;
    border-radius: 5px;
  }
}
@media screen and (min-width: 1024px) {
  #news-blog #blog-block .blog-list {
    display: flex;
    gap: 40px;
    justify-content: center;
    margin-bottom: 2em;
  }
  #news-blog #blog-block .blog-list > li {
    width: 50%;
  }
  #news-blog #blog-block .blog-list > li:hover img {
    transform: scale(1.1);
  }
  #news-blog #blog-block .blog-list .post-list-box .catch-img {
    overflow: hidden;
    width: 100%;
  }
  #news-blog #blog-block .blog-list .post-list-box img {
    /*  width: 256px;*/
    aspect-ratio: 3/2;
    -o-object-fit: cover;
       object-fit: cover;
    transition: transform 0.6s ease;
    flex-shrink: 0;
  }
}
#news-blog #blog-block .blog-list .time {
  font-size: 14px;
  color: #9B9B9B;
  text-align: right;
}
@media screen and (max-width: 1023px) {
  #news-blog #blog-block .post-list-box-txt {
    flex-grow: 1;
  }
}
#news-blog #blog-block .post-list-box-txt .cat {
  background: #A3B57D;
  font-weight: bold;
  color: #fff;
  font-size: 10px;
  padding: 2px 8px;
  margin: 0px 0 4px 0;
  display: inline-block;
  border-radius: 5px;
}
@media screen and (min-width: 1024px) {
  #news-blog #blog-block .post-list-box-txt .cat {
    font-size: 12px;
    padding: 6px 16px;
    margin: 20px 0 10px 0;
  }
}
#news-blog #blog-block .post-list-box-txt h3 {
  font-size: 16px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", Meiryo, メイリオ, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "Yu Gothic", YuGothic, "MS PGothic", Osaka, arial, sans-serif;
  overflow: hidden;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media screen and (max-width: 1023px) {
  #news-blog #blog-block .post-list-box-txt h3 {
    font-weight: normal;
    margin-bottom: 0px;
  }
}

span.new {
  float: left;
  margin-right: 8px;
  font-size: 12px;
  padding: 2px 8px 0 8px;
  color: #83C201;
  border: 1px solid #83C201;
}

.post-list-box {
  flex-grow: 1;
}/*# sourceMappingURL=all.css.map */