@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)) {
  -webkit-clip-path: inset(50%) !important;
          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;
}

/* 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: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "メイリオ", Meiryo, "Hiragino Sans", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", sans-serif, -apple-system, BlinkMacSystemFont, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Sans Emoji";
  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: 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 #BFE4D3;
  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 #dfdfdf;
}

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

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

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

table td {
  padding: 1.5em 1em;
  text-align: left;
  background-color: #fff;
  border-right: 1px solid #dfdfdf;
}

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

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

/* 定義リスト */
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 white;
  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: #66C19F;
  color: #fff;
  border-radius: 4px;
  letter-spacing: 2px;
  cursor: pointer;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.2);
  border: 1px solid #66C19F;
  padding: 0.8em 2em;
}
.wpcf7 input[type=submit]:hover {
  border: 1px solid #5CACEE;
}

.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 #dfdfdf;
  border-right: 1px solid #dfdfdf;
  background: #edf7f3;
  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 #dfdfdf;
  border-bottom: 1px solid #dfdfdf;
  background: #edf7f3;
  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 #dfdfdf;
  border-bottom: 1px solid #dfdfdf;
  border-left: 1px solid #dfdfdf;
  border-right: 1px solid #dfdfdf;
  background: #edf7f3;
  z-index: -1;
  box-sizing: content-box;
}

/* page-top */
div#page-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 2;
  background-color: #5CACEE;
  width: 56px;
  height: 56px;
  border-radius: 50%;
}
@media screen and (min-width: 1024px) {
  div#page-top {
    right: 70px;
  }
}
div#page-top:before {
  content: "";
  background-image: url(../images/icon/up-arrow-wt.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: #dfdfdf;
  padding: 16px;
}

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

/* font */
@font-face {
  font-family: "Zen Maru Gothic";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/zenmaru/ZenMaruGothic-Regular.woff2") format("woff2"), url("../fonts/zenmaru/ZenMaruGothic-Regular.woff") format("woff");
}
/* layout */
@media screen and (min-width: 1024px) {
  .archive .sidebarLayout,
  .single .sidebarLayout {
    display: flex;
    flex-direction: row-reverse;
    gap: 68px;
  }
  .archive .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.png);
  width: 394px;
  height: 77px;
  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: 205px;
    height: 40px;
  }
}
@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.png);
    width: 205px;
    height: 40px;
    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 {
  font-weight: 400;
  margin-bottom: 2rem;
  margin-top: 60px;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .page-header {
    margin-bottom: 3rem;
    margin-top: 0px;
  }
  .page-header:after {
    content: "";
    background-image: url(../images/toppage/top_bg_logo.png);
    display: block;
    width: 243px;
    height: 265px;
    background-size: cover;
    position: absolute;
    bottom: -140px;
    z-index: 2;
    right: 60px;
    mix-blend-mode: multiply;
  }
}
.page-header.type3 {
  display: grid;
  align-items: center;
  justify-content: center;
  height: 150px;
  background-image: url(../images/page/header.jpg);
  background-size: cover;
  position: relative;
}
.page-header.type3 .page-header-inner {
  max-width: 1200px;
  margin-inline: auto;
  padding: 0 15px;
}
@media screen and (min-width: 1024px) {
  .page-header.type3 {
    height: 280px;
    margin-top: 114px;
    padding-top: 48px;
  }
}
.page-header.type3 .page-header-title {
  font-size: clamp(24px, 16.941px + 1.471vw, 32px);
  font-weight: 400;
  font-family: "Zen Maru Gothic";
  text-align: center;
  letter-spacing: 5px;
  margin: 0;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .page-header.type3 .page-header-title {
    margin: 1em 0 0 0;
  }
}

@keyframes fadeInAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* footer */
#footer {
  background: #ECF9F0;
}
@media screen and (max-width: 1023px) {
  #footer {
    padding-bottom: 102px;
    margin-top: 80px;
  }
}
@media screen and (min-width: 1024px) {
  #footer {
    margin-top: 120px;
  }
}
#footer a {
  text-decoration: none;
  color: #333333;
  transition: 0.5s;
}
#footer a:hover {
  color: #4182C4;
}
#footer .footer-contents-wrap {
  /*    display: flex;*/
  padding-top: 60px;
  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: 15px;
  }
}
#footer .footer-contents {
  display: flex;
  gap: clamp(30px, -58.235px + 18.382vw, 130px);
  padding-bottom: 60px;
}
@media screen and (max-width: 1023px) {
  #footer .footer-contents {
    flex-direction: column;
    align-items: center;
  }
}
#footer .footer-contents .foot-logo {
  margin-bottom: clamp(34px, 28.706px + 1.103vw, 40px);
}
@media screen and (max-width: 1023px) {
  #footer .footer-contents .foot-logo {
    width: 241px;
    height: 47px;
  }
}
#footer .footer-contents .flex-box {
  justify-content: center;
  margin-top: 24px;
}
#footer .footer-menu {
  display: flex;
  gap: 70px;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  #footer .footer-menu {
    width: 100%;
    flex-direction: column;
    gap: 0;
  }
}
@media screen and (max-width: 1023px) {
  #footer .footer-menu {
    max-width: 600px;
    margin-inline: auto;
  }
}
@media screen and (min-width: 768px) {
  #footer .footer-menu .widget {
    width: 50%;
  }
}
#footer .footer-menu > li:not(:last-child) {
  margin-bottom: 1.5em;
}
#footer .footer-menu h2, #footer .footer-menu .widgettitle {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 0.5em;
  padding: 0;
  color: #66C19F;
  letter-spacing: 2px;
}
#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 #333333;
  border-right: 1px solid #333333;
}

#copyright {
  padding: 1em 0;
  text-align: center;
  font-size: clamp(10px, 6.471px + 0.735vw, 14px);
  width: 100%;
  margin-top: clamp(40px, 22.353px + 3.676vw, 60px);
}

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

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

#footer .foot-tel {
  font-size: 25px;
  position: relative;
  padding-left: 30px;
  margin-bottom: 18px;
}
#footer .foot-tel:before {
  content: "";
  background-image: url(../images/icon/tel-primary.svg);
  display: block;
  background-size: cover;
  width: 20px;
  height: 20px;
  top: 12px;
  position: absolute;
  left: 0px;
}

.foot-txt {
  margin-top: 24px;
  font-size: 14px;
  line-height: 2;
  margin-bottom: 0;
}

.footer-contents-txt {
  max-width: 475px;
}

.footer-map img {
  border-radius: 10px;
  margin-bottom: 16px;
}

.footer-second {
  background-color: #F6FCF8;
  padding-top: clamp(40px, 22.353px + 3.676vw, 60px);
}

.foot-line a {
  width: 220px;
  background-color: #fff;
  color: #00B915 !important;
  border: 1px solid #00B915;
  border-radius: 5px;
  font-weight: 600;
  font-family: "Zen Maru Gothic";
  margin-inline: auto;
  letter-spacing: 0.1em;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
}
.foot-line a:hover {
  background-color: #ecffee;
}

.foot-inst a {
  width: 220px;
  background-color: #fff;
  color: #CF2E92 !important;
  border: 1px solid #CF2E92;
  border-radius: 5px;
  font-weight: 600;
  font-family: "Zen Maru Gothic";
  letter-spacing: 0.1em;
  margin-inline: auto;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
}
.foot-inst a:hover {
  background-color: #fdf5fa;
}

.footer-second-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0 100px;
}
@media screen and (max-width: 1023px) {
  .footer-second-inner {
    flex-direction: column;
    gap: 0;
  }
}
.footer-second-inner .footer-hos {
  display: flex;
  gap: 28px;
}
@media screen and (max-width: 1023px) {
  .footer-second-inner .footer-hos {
    justify-content: center;
  }
}
.footer-second-inner .footer-hos .footer-hos-list {
  display: grid;
  gap: 20px 24px;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 768px) {
  .footer-second-inner .footer-hos .footer-hos-list {
    grid-template-columns: 1fr 1fr;
  }
}
.footer-second-inner .footer-hos .footer-hos-title {
  writing-mode: vertical-rl;
  letter-spacing: 0px;
  font-weight: 400;
  font-family: "Zen Maru Gothic";
  font-size: 20px;
}
.footer-second-inner .footer-hos .footer-hos-title span {
  color: #66C19F;
  font-size: 10px;
  letter-spacing: 2px;
  padding-top: 30px;
  position: relative;
}
.footer-second-inner .footer-hos .footer-hos-title span:before {
  content: "";
  width: 1px;
  height: 16px;
  background-color: #66C19F;
  display: block;
  position: absolute;
  top: 5px;
  left: 49%;
}

.footer-second-r {
  flex-grow: 1;
}
@media screen and (min-width: 1024px) and (max-width: 1170px) {
  .footer-second-r {
    width: 33%;
  }
}

.footer-second-l {
  margin-bottom: 60px;
}

/* main */
.search .header {
  background-color: rgba(102, 193, 159, 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 article:not(:last-of-type) {
  border-bottom: 1px dotted #dfdfdf;
  margin-bottom: 1em;
  padding-bottom: 1em;
}
.search .attachment-thumbnail, .search .noimg, .archive .attachment-thumbnail, .archive .noimg {
  aspect-ratio: 3/2;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.search h2, .archive 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 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 .entry-summary {
  color: #666;
  display: flex;
  gap: 30px;
  margin-top: 1em;
}
.search .entry-summary > a, .archive .entry-summary > a {
  display: none;
  width: 200px;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .search .entry-summary > a, .archive .entry-summary > a {
    width: 100%;
  }
}
.search .entry-summary > a img, .archive .entry-summary > a img {
  transition: 0.5s;
}
.search .entry-summary > a:hover img, .archive .entry-summary > a:hover img {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  .search .entry-summary, .archive .entry-summary {
    flex-direction: column;
    gap: 15px;
  }
}
.search .entry-meta, .search .entry-meta a, .archive .entry-meta, .archive .entry-meta a {
  text-align: right;
  font-size: 14px;
}
.search header, .archive header {
  width: 100%;
}
.search .summary-list time, .archive .summary-list time {
  font-size: 14px;
  display: block;
}
@media screen and (min-width: 1024px) {
  .search .summary-list time, .archive .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;
}

.post-type-archive .eyecatch {
  display: none;
}

.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: #5CACEE;
}
.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 #dfdfdf;
}
.c-linklist li:first-child {
  border-left: 1px dashed #dfdfdf;
}
.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: #66C19F;
  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;
}

/*定義リスト*/
dl.dl01 {
  display: flex;
  flex-flow: row wrap;
  width: 100%;
  margin-top: 0;
}
dl.dl01 dt {
  flex-basis: 20%;
  padding: 10px 20px;
  background-color: #fff;
  border-bottom: 1px solid #66C19F;
  color: #66C19F;
  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;
  background-color: #fff;
  border-bottom: 1px solid #dfdfdf;
  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;
  }
}

.contents2-item h3 {
  position: relative;
  font-size: clamp(22px, 20.235px + 0.368vw, 24px);
  margin-bottom: 0.5em;
  margin-top: 0 !important;
}
.contents2-item h3:before {
  content: attr(data-h3);
  font-size: 14px;
  color: #66C19F;
  display: block;
}
.contents2-item h3 br {
  display: block !important;
}
.contents2-item.img-right { /*　画像右寄せ　*/ }
.contents2-item.img-right li {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media screen and (min-width: 768px) {
  .contents2-item.img-right li {
    flex-direction: row-reverse;
    gap: 60px;
  }
}
@media screen and (min-width: 1024px) {
  .contents2-item.img-right li .contents2-item-r {
    width: 50%;
  }
}
@media screen and (min-width: 1024px) {
  .contents2-item.img-right li .contents2-item-r {
    width: auto;
  }
}
@media screen and (max-width: 1023px) {
  .contents2-item.img-right li .contents2-item-r .btn {
    margin: auto;
  }
}
.contents2-item.img-right li .contents2-item-l {
  flex-shrink: 0;
}
@media screen and (min-width: 1024px) {
  .contents2-item.img-right li .contents2-item-l {
    width: 50%;
  }
}
@media screen and (min-width: 1024px) {
  .contents2-item.img-right li .contents2-item-l {
    flex-shrink: 0;
    width: auto;
  }
}
.contents2-item.img-right li:not(:last-child) {
  margin-bottom: clamp(30px, 21.176px + 1.838vw, 40px);
}
.contents2-item.img-left {
  /*　画像左寄せ　*/
}
.contents2-item.img-left li {
  display: flex;
  flex-direction: column;
  gap: clamp(15px, -24.706px + 8.272vw, 60px);
}
@media screen and (min-width: 1024px) {
  .contents2-item.img-left li {
    flex-direction: row;
  }
}
@media screen and (min-width: 1024px) {
  .contents2-item.img-left li .contents2-item-r {
    width: 50%;
  }
}
@media screen and (min-width: 1024px) {
  .contents2-item.img-left li .contents2-item-r {
    width: auto;
  }
}
.contents2-item.img-left li .contents2-item-r .btn {
  margin-left: auto;
}
@media screen and (max-width: 1023px) {
  .contents2-item.img-left li .contents2-item-r .btn {
    margin: auto;
  }
}
@media screen and (min-width: 1024px) {
  .contents2-item.img-left li .contents2-item-l {
    width: 50%;
  }
}
@media screen and (min-width: 1024px) {
  .contents2-item.img-left li .contents2-item-l {
    flex-shrink: 0;
    width: auto;
  }
}
.contents2-item.img-left li:not(:last-child) {
  margin-bottom: clamp(30px, 21.176px + 1.838vw, 40px);
}
@media screen and (min-width: 768px) {
  .contents2-item.col2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px 30px;
  }
}
.contents2-item.col2 li .contents2-item-l {
  margin-bottom: 1em;
}
.contents2-item.col2 li:not(:last-child) {
  margin-bottom: 30px;
}
@media screen and (min-width: 1024px) {
  .contents2-item.col2 li:not(:last-child) {
    margin-bottom: 0px;
  }
}
.contents2-item.col2 li .btn {
  margin: auto;
}
@media screen and (min-width: 1024px) {
  .contents2-item.col3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 50px 30px;
  }
}
.contents2-item.col3 li .contents2-item-l {
  margin-bottom: 1em;
}
.contents2-item.col3 li:not(:last-child) {
  margin-bottom: 30px;
}
@media screen and (min-width: 1024px) {
  .contents2-item.col3 li:not(:last-child) {
    margin-bottom: 0px;
  }
}
.contents2-item.col3 li .btn {
  margin: auto;
}
@media screen and (min-width: 1024px) {
  .contents2-item.col4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 50px 30px;
  }
}
.contents2-item.col4 li .contents2-item-l {
  margin-bottom: 1em;
}
.contents2-item.col4 li:not(:last-child) {
  margin-bottom: 30px;
}
@media screen and (min-width: 1024px) {
  .contents2-item.col4 li:not(:last-child) {
    margin-bottom: 0px;
  }
}
.contents2-item.col4 li .btn {
  margin: auto;
}

.contents2-item img {
  margin: auto;
}

/*
                            .contents2-item-l {
                              img {
                                height: 100%;
                                width: 100%;
                                object-fit: cover;
                              }
                            }
*/
.flex-box {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .flex-box {
    flex-direction: column;
  }
}

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

.contents3-item h3 {
  margin-bottom: 0.8em !important;
  margin-top: 0 !important;
  color: #66C19F !important;
}
.contents3-item.img-right-list {
  /*　画像右寄せリスト　*/
}
.contents3-item.img-right-list li {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .contents3-item.img-right-list li {
    flex-direction: row-reverse;
  }
}
.contents3-item.img-right-list li .contents3-item-r {
  display: grid;
  background: rgba(255, 255, 255, 0.6);
  align-items: center;
  justify-content: center;
  align-content: center;
  padding: 1em 2em 2em 2em;
}
@media screen and (min-width: 768px) {
  .contents3-item.img-right-list li .contents3-item-r {
    width: 60%;
    padding: 2em 1em;
  }
}
@media screen and (min-width: 1024px) {
  .contents3-item.img-right-list li .contents3-item-r {
    width: auto;
  }
}
@media screen and (min-width: 768px) {
  .contents3-item.img-right-list li .contents3-item-l {
    width: 40%;
  }
}
@media screen and (min-width: 1024px) {
  .contents3-item.img-right-list li .contents3-item-l {
    flex-shrink: 0;
  }
}
.contents3-item.img-right-list li:not(:last-child) {
  margin-bottom: clamp(30px, 30px + 0vw, 30px);
}
.contents3-item.img-left {
  /*　画像左寄せ　*/
}
.contents3-item.img-left li {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .contents3-item.img-left li {
    flex-direction: row;
    justify-content: space-between;
  }
}
.contents3-item.img-left li .contents3-item-r {
  display: grid;
  background: rgba(255, 255, 255, 0.6);
  align-items: center;
  justify-content: center;
  align-content: center;
  padding: 2em 1em;
}
@media screen and (min-width: 768px) {
  .contents3-item.img-left li .contents3-item-r {
    width: 50%;
    padding: 2em;
  }
}
.contents3-item.img-left li .contents3-item-r h3, .contents3-item.img-left li .contents3-item-r p {
  text-align: center;
}
.contents3-item.img-left li .contents3-item-r .btn {
  margin: auto;
}
@media screen and (min-width: 768px) {
  .contents3-item.img-left li .contents3-item-l {
    width: 50%;
  }
}
@media screen and (min-width: 1024px) {
  .contents3-item.img-left li .contents3-item-l {
    flex-shrink: 0;
  }
}
.contents3-item.img-left li:not(:last-child) {
  margin-bottom: clamp(30px, 21.176px + 1.838vw, 40px);
}
.contents3-item.img-right {
  /*　画像左寄せ　*/
}
.contents3-item.img-right li {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .contents3-item.img-right li {
    flex-direction: row-reverse;
    justify-content: space-between;
  }
}
.contents3-item.img-right li .contents3-item-r {
  display: grid;
  background: rgba(255, 255, 255, 0.6);
  align-items: center;
  justify-content: center;
  align-content: center;
  padding: 2em 1em;
}
@media screen and (min-width: 768px) {
  .contents3-item.img-right li .contents3-item-r {
    width: 50%;
    padding: 2em;
  }
}
.contents3-item.img-right li .contents3-item-r h3,
.contents3-item.img-right li .contents3-item-r p {
  text-align: center;
}
.contents3-item.img-right li .contents3-item-r .btn {
  margin: auto;
}
@media screen and (min-width: 768px) {
  .contents3-item.img-right li .contents3-item-l {
    width: 50%;
  }
}
@media screen and (min-width: 1024px) {
  .contents3-item.img-right li .contents3-item-l {
    flex-shrink: 0;
  }
}
.contents3-item.img-right li:not(:last-child) {
  margin-bottom: clamp(30px, 21.176px + 1.838vw, 40px);
}
.contents3-item.img-right-list li .contents3-item-r {
  padding: 1em 0em;
}
@media screen and (min-width: 768px) {
  .contents3-item.img-right-list li .contents3-item-r {
    width: 70%;
    padding: 2em;
  }
}
.contents3-item.img-left-list {
  /*　画像左せリスト　*/
}
.contents3-item.img-left-list li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media screen and (min-width: 768px) {
  .contents3-item.img-left-list li {
    flex-direction: row;
  }
}
.contents3-item.img-left-list li .contents3-item-r {
  display: grid;
  background: rgba(255, 255, 255, 0.6);
  align-items: center;
  justify-content: center;
  align-content: center;
  padding: 1em 0em;
}
@media screen and (min-width: 768px) {
  .contents3-item.img-left-list li .contents3-item-r {
    width: 60%;
    padding: 2em;
  }
}
.contents3-item.img-left-list li .contents3-item-r ul {
  margin-top: 0 !important;
}
.contents3-item.img-left-list li .contents3-item-r ul li {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .contents3-item.img-left-list li .contents3-item-l {
    width: 40%;
  }
}
.contents3-item.img-left-list li:not(:last-child) {
  margin-bottom: clamp(30px, 21.176px + 1.838vw, 40px);
}

.contents3-item-l img {
  /* height: 100%; */
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.case-block h3, .case-block h4 {
  margin-top: 0 !important;
}
.case-block .wp-block-image {
  margin: 0 !important;
}

.stepbar4 h3.title {
  margin-top: 0px !important;
  background-color: transparent !important;
  padding: 0 !important;
}
.stepbar4 .steptxtimg {
  display: flex;
  flex-direction: column;
  padding-bottom: 40px;
}
.stepbar4 .steptxtimg p:last-of-type {
  margin-bottom: 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: #e4e4e4 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 {
  background: #66C19F;
  display: block;
  text-align: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #fff;
  display: grid;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 28px;
  line-height: 0;
}

.accessmovie {
  max-width: 600px;
}

.acces-route-wrap img {
  max-width: 400px;
  margin-inline: auto;
}
.acces-route-wrap .acces-route {
  font-weight: bold;
  font-size: clamp(18px, 16.235px + 0.368vw, 20px);
  letter-spacing: 0.1em;
  position: relative;
  padding-left: 35px;
}
.acces-route-wrap .acces-route span {
  background-color: #66C19F;
  line-height: 0;
  color: #fff;
  width: 25px;
  height: 25px;
  display: grid;
  position: absolute;
  left: 0;
  align-items: center;
  justify-content: center;
  top: 5px;
}

.wp-block-image figure {
  text-align: center;
}

figcaption.wp-element-caption {
  color: #66C19F;
  border-bottom: 1px solid #66C19F;
  display: inline-block !important;
}

h3.dr-h3 {
  color: #5CACEE !important;
  line-height: 1.8;
  margin-bottom: 1.8rem !important;
}

.gastro-strong {
  font-weight: 400;
  font-size: 20px;
  color: #5CACEE;
  margin-bottom: 16px;
  position: relative;
  padding-left: 28px;
}
.gastro-strong::before {
  content: "";
  width: 20px;
  height: 1px;
  background-color: #5CACEE;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
}

/* sidebar */
#sidebar {
  border-radius: 5px;
  width: 250px;
  flex-shrink: 0;
  /*       padding:30px 30px; */
}
@media screen and (max-width: 1023px) {
  #sidebar {
    display: none;
  }
}
#sidebar .widget-area {
  width: 250px;
}
#sidebar .widget-area a {
  color: #333333;
}
#sidebar .widget-area a: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: #66C19F;
}
#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 #66C19F;
  border-right: 1px solid #66C19F;
}
#sidebar .wp-block-heading {
  padding: 0;
  font-size: 20px;
  color: #66C19F;
  border-bottom: 1px solid #66C19F;
  padding-bottom: 0.5em;
  margin-bottom: 1em;
  text-align: center;
}

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

#sidebar .widget-title {
  padding: 0;
  font-size: 20px;
  color: #66C19F;
  border-bottom: 1px solid #66C19F !important;
  padding-bottom: 0.5em;
  margin-bottom: 1em;
  line-height: 1.5;
  letter-spacing: 1px;
  word-break: break-all;
  font-family: "Zen Maru Gothic";
  font-weight: 500;
  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;
}

.cat-item.cat-item-1 {
  display: none;
}

/*　最近の記事　*/
.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;
}

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

h1 {
  font-size: clamp(23.61px, 15.819px + 1.623vw, 32.44px);
  font-weight: 400;
  font-family: "Zen Maru Gothic";
}

h2 {
  font-size: clamp(24px, 20.471px + 0.735vw, 28px);
  font-weight: 400;
  max-width: 1200px;
  margin-inline: auto;
  padding: 0 15px;
  font-family: "Zen Maru Gothic";
}

h3 {
  font-size: clamp(20.74px, 16.425px + 0.899vw, 25.63px);
  font-weight: 400;
  font-family: "Zen Maru Gothic";
}

h4 {
  font-size: clamp(19.44px, 16.493px + 0.614vw, 22.78px);
  font-weight: 400;
  font-family: "Zen Maru Gothic";
}

h5 {
  font-size: clamp(18.22px, 16.429px + 0.373vw, 20.25px);
  font-weight: 400;
  font-family: "Zen Maru Gothic";
}

h6 {
  font-size: clamp(17.07px, 16.249px + 0.171vw, 18px);
  font-weight: 400;
  font-family: "Zen Maru Gothic";
}

/*　見出し　*/
.h2--center {
  text-align: center;
  position: relative;
}
.h2--center:before {
  content: attr(data-sub);
  font-size: 13px;
  border-bottom: 1px solid #66C19F;
  color: #66C19F;
  display: inline-block;
  position: absolute;
  top: -1.8em;
  left: 50%;
  transform: translateX(-50%);
  padding-bottom: 1px;
  white-space: nowrap;
}

.bg-color {
  background-color: #bfe4d3;
  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: 400;
  font-family: "Zen Maru Gothic";
  min-width: 1em;
  padding: 0;
  color: #333333;
  background-color: #BFE4D3;
}
table.Opening-hours td {
  padding: 0;
  color: #333333;
  text-align: center;
  font-size: 12px;
}
table.Opening-hours td .open {
  color: #66C19F;
}
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 #66C19F;
}
table.Opening-hours.oh-2 th {
  line-height: 1;
  padding: 15px 5px;
  border-right: 1px solid #66C19F;
}
table.Opening-hours.oh-2 td {
  line-height: 1;
  padding: 15px 5px;
  background-color: transparent;
  border-right: 1px solid #66C19F;
}
table.Opening-hours.oh-3 tr {
  border: solid 1px #dfdfdf;
}
table.Opening-hours.oh-3 th {
  text-align: center;
  line-height: 1;
  padding: 15px 5px;
  border-right: 1px solid #dfdfdf;
  background-color: white;
}
table.Opening-hours.oh-3 td {
  line-height: 1;
  padding: 15px 5px;
  background-color: transparent;
  border-right: 1px solid #dfdfdf;
}
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 #dfdfdf;
}
table.Opening-hours.oh-4 th {
  line-height: 1;
  padding: 15px 5px;
  background-color: transparent;
  border-right: 0px solid #dfdfdf;
}
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 #dfdfdf;
}
table.Opening-hours.oh-4 td:last-child {
  border-right: 0px solid transparent;
}

/* movie */
.movie_iframe {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
}
.movie_iframe iframe {
  width: 100%;
  height: 100%;
}

/* 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;
}
#breadcrumb ul::-webkit-scrollbar {
  display: none;
}
#breadcrumb ul li {
  font-size: clamp(12px, 10.235px + 0.368vw, 14px);
}
#breadcrumb ul li a {
  color: #333333;
}
#breadcrumb ul li a:hover {
  color: #7399be;
}
#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 #5CACEE;
  padding: 5px 15px;
  background-color: #5CACEE;
  border-radius: 5px;
  transition: 0.5s;
}
input[type=submit]:hover {
  cursor: pointer;
  background-color: #2e94e9;
}

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: #66C19F;
  padding: 0 0.5em;
  border: 1px solid #66C19F;
  transition: 0.5s;
}
.nav-links .page-numbers:not(.dots).current {
  background-color: #66C19F;
  font-weight: bold;
  color: #fff;
}
.nav-links .page-numbers:not(.dots):not(span):hover {
  background-color: #66C19F;
  color: #fff;
}

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

.toggle_title {
  font-weight: bold;
  margin: 0;
  padding: 1em 50px 1em 1em;
  position: relative;
  cursor: pointer;
  transition: 0.3s;
  line-height: 1.6;
  color: inherit !important;
  font-size: clamp(18px, 18px + (100vw - 480px) * 0, 18px) !important;
  border-bottom: 1px solid #dfdfdf;
}
.toggle_title.toggle-q {
  padding: 1em 50px 1em 36px !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: #66C19F;
  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: #66C19F;
}

.toggle_title:after {
  content: "";
  display: inline-block;
  width: 17px;
  height: 12px;
  background: url(../images/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);
  position: absolute;
  line-height: 1;
  left: 3px;
  font-weight: 400;
  font-family: "Zen Maru Gothic";
  color: #5CACEE;
}

.toggle_contents.toggle_color {
  border-radius: 10px;
  color: #fff;
  margin-bottom: 20px;
}
.toggle_contents.toggle_color .toggle_title {
  border-radius: 10px;
  border-bottom: 0px;
  background-color: #66C19F !important;
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "メイリオ", Meiryo, "Hiragino Sans", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", sans-serif, -apple-system, BlinkMacSystemFont, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Sans Emoji" !important;
}
.toggle_contents.toggle_color .toggle_title:hover {
  color: #fff;
}
.toggle_contents.toggle_color .toggle_title:after {
  background: url(../images/arrow-down-w.svg) no-repeat right top;
}
.toggle_contents.toggle_color .toggle_title.toggle-q {
  padding: 1em 50px 1em 50px;
}
.toggle_contents.toggle_color .toggle_title.toggle-q:before {
  color: #fff;
  left: 15px;
}
.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;
}

.btn {
  display: block;
  text-decoration: none;
  border-radius: 5px;
  padding: 14px 10px;
  text-align: center;
  line-height: 1;
  color: #333333;
}
.btn.btn1st {
  background-color: #5CACEE;
}
.btn.btn1st:hover {
  background-color: #2e94e9;
  color: #fff;
}
.btn.btn2nd {
  background-color: #4182C4;
  color: #fff;
}
.btn.btn2nd:hover {
  background-color: #3269a0;
  color: #fff;
}
.btn.btn3rd {
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
}
.btn.btn3rd:hover {
  background-color: #2e94e9;
  color: #fff;
}
.btn.btnM {
  width: 150px;
  font-weight: bold;
}

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

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

a:hover {
  color: #7399be;
}

.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: #4182C4;
}
.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 #4182C4;
  border-right: 1px solid #4182C4;
  transform: rotate(45deg);
  transition: 0.5s;
}
.link-arrow:hover::before {
  right: -5px;
}

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

.link-box-center {
  text-align: center;
  display: flex;
  justify-content: center;
}

/*矢印付きリンク2*/
.lb08 {
  display: inline-block;
  height: 2rem;
  line-height: 2rem;
  display: inline-flex;
  align-items: center;
  color: #333333;
  gap: 5px;
  font-weight: 400;
}
.lb08 .arrow-icon {
  position: relative;
  top: -1px;
  transition: transform 0.3s ease;
  vertical-align: middle;
}
.lb08 .arrow-icon--circle {
  transition: stroke-dashoffset 0.3s ease;
  stroke-dasharray: 95;
  stroke-dashoffset: 95;
}
.lb08:hover {
  color: #4182C4 !important;
}
.lb08:hover .arrow-icon {
  transform: translate3d(5px, 0, 0);
}
.lb08:hover .arrow-icon--circle {
  stroke-dashoffset: 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;
  width: 100%;
}
.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), .single article h2:not(.h2--center):not(.h2--leftline):not(.h2--slash) {
  position: relative;
  /*ツートン下ボーダー*/
  border-bottom: 5px solid #ddd;
  padding: 10px 0;
}
.page:not(.page-template-page_lp) article h2:not(.h2--center):not(.h2--leftline):not(.h2--slash):before, .single article h2:not(.h2--center):not(.h2--leftline):not(.h2--slash):before {
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 30%;
  height: 5px;
  content: "";
  background: #66C19F;
}
.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, .single article h3 {
  background: rgba(102, 193, 159, 0.05);
  color: #66C19F;
  padding: 0.5em;
  margin-top: clamp(36px, 21.882px + 2.941vw, 52px);
  margin-bottom: clamp(10px, 1.176px + 1.838vw, 20px);
}
.page:not(.page-template-page_lp) article h3:has(.feature), .single article h3:has(.feature) {
  line-height: 1.8;
}
.page:not(.page-template-page_lp) article h4, .single article h4 {
  border-bottom: 1px solid #dfdfdf;
  padding-bottom: 0.5em;
}
.page:not(.page-template-page_lp) article h4:has(.feature), .single article h4:has(.feature) {
  line-height: 1.8;
}
.page:not(.page-template-page_lp) article h5, .single article h5 {
  border-left: 10px solid #66C19F;
  padding-left: 0.5em;
}
.page:not(.page-template-page_lp) article h6, .single article h6 {
  margin-bottom: 1rem;
}
.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 {
  width: 100%;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .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;
  }
}
.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;
  font-weight: 400;
}
.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 1.5em;
  background: #FBFBFB;
  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 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.45em;
  left: 0;
  width: 0;
  height: 0;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent transparent #5CACEE;
}
.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.4em;
  left: 5px;
  transform: rotate(50deg);
  width: 5px;
  height: 9px;
  border-right: 2px solid #5CACEE;
  border-bottom: 2px solid #5CACEE;
}
.page:not(.page-template-page_lp) article .pageItem.list.check li:after, .single article .pageItem.list.check li:after {
  content: "";
  position: absolute;
  top: 0.3em;
  left: 0;
  width: 15px;
  height: 15px;
  border: 1px solid #5CACEE;
  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: 768px) {
  .page:not(.page-template-page_lp) article .pageItem.list.flex.col3 li, .single article .pageItem.list.flex.col3 li {
    width: calc(50% - 1em);
  }
}
@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(191, 228, 211, 0.5);
  border-radius: 5px;
  padding: 1.5rem;
}
.page-Boxcontent .Boxcontent-inner .imgtxt-txt-mida {
  color: #66C19F;
  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: #66C19F;
  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 1.5em 0;
  position: relative;
}
.single .entry-title.Bborder {
  color: #66C19F;
  border-bottom: 1px solid #66C19F;
  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: #66C19F;
  margin: 1em auto auto auto;
}
.single .entry-title.bgcolor {
  text-align: left;
  padding: 0.5em 1em;
  background-color: #BFE4D3;
  margin: 0em 0 2em 0;
}
.single .entry-title.bgcolor:after {
  content: none;
}
.single .eyecatch {
  margin: auto auto 2em auto;
}
.single.single-news .eyecatch {
  display: none;
  margin: 0 auto;
}
.single .entry-meta {
  border-top: 1px dotted #dfdfdf;
  border-bottom: 1px dotted #dfdfdf;
  padding: 0.5em 0;
  display: flex;
  color: #666;
  font-size: 14px;
  justify-content: flex-end;
  gap: 15px;
}
@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;
}

.t-scroll {
  overflow-x: auto;
}
.t-scroll table {
  min-width: 800px;
  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 #dfdfdf;
  }
  .r-tb td:last-child {
    border-bottom: solid 0px #dfdfdf;
  }
}
.r-tb td p:last-of-type {
  margin-bottom: 0px;
}

.eyecatch-container img {
  margin: auto;
}

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

/*関連リンク*/
.single article .page-linkBox {
  border: 1px solid #66C19F;
  margin: 4em 0;
  position: relative;
}
.single article .page-linkBox h4 {
  background: #66C19F;
  font-size: 16px;
  color: #fff;
  position: absolute;
  top: -28px;
  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;
}

/* TOC */
#toc_container {
  margin: 20px auto 30px;
  background-color: rgba(191, 228, 211, 0.04);
  border: 3px solid rgba(191, 228, 211, 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: #BFE4D3;
}

/* 表示／非表示トグル */
#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(191, 228, 211, 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: #66C19F;
    font-weight: 600;
    font-size: 120%;
  }
  #table-of-contents a.active:before, #table-of-contents a:hover:before {
    background-color: #66C19F;
  }
  .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: #66C19F;
}
.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;
  }
}

@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;
}
@media screen and (min-width: 768px) {
  .post-nav {
    gap: 0px;
  }
}

a.nav-prev-link {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  width: 100%;
  opacity: 1;
  transition: 0.5s;
  color: #4182C4;
}
a.nav-prev-link picture, a.nav-prev-link img {
  flex-shrink: 0;
}

a.nav-next-link {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  opacity: 1;
  transition: 0.5s;
  color: #4182C4;
}
a.nav-next-link picture, a.nav-next-link img {
  flex-shrink: 0;
}

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;
}

.nav-prev-title:before {
  content: "< 前の記事";
  display: block;
  font-size: 12px;
  color: #4182C4;
  background-color: #fff;
  border: 1px solid #4182C4;
  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: #4182C4;
  background-color: #fff;
  border: 1px solid #4182C4;
  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 #66C19F;
}
.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;
}

.item-bg-color.type1 {
  border: 1px solid #BFE4D3;
  display: flex;
  flex-direction: column;
}
.item-bg-color.type1 h2 {
  margin-top: 20px;
}
.item-bg-color.type1 .flex-txt {
  flex-grow: 1;
}
.item-bg-color.type1 .flex-txt p:last-child {
  margin-bottom: 16px;
}

/* sidebanner2 */
.sideban2 {
  position: fixed;
  bottom: -107px;
  left: 0;
  z-index: 20;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  line-height: 1;
  transition: 0.5s ease-in;
}
.sideban2.scroll-in {
  bottom: 0;
}
.sideban2 img {
  width: 20px;
}
@media screen and (min-width: 1024px) {
  .sideban2 {
    bottom: auto;
    left: auto;
    top: 12%;
    width: 60px;
    flex-wrap: nowrap;
    flex-direction: column;
    gap: 8px;
    right: -90px;
    transition: 0.5s ease-in;
    white-space: nowrap;
  }
  .sideban2.scroll-in {
    right: 0;
  }
}
.sideban2 a {
  color: #fff;
  padding: 8px 0;
  letter-spacing: 2px;
  font-weight: 400;
  font-family: "Zen Maru Gothic";
}
@media screen and (min-width: 1024px) {
  .sideban2 a {
    writing-mode: vertical-rl;
    padding: 16px 8px;
    text-orientation: upright;
    align-items: center;
    letter-spacing: -5px;
  }
}
.sideban2 a.sideban-tel {
  width: 100%;
  display: flex;
  justify-content: center;
  font-size: clamp(16px, 31.059px + -1.471vw, 24px);
  background-color: #66C19F;
}
.sideban2 a.sideban-tel img {
  margin-right: 5px;
}
@media screen and (max-width: 1023px) {
  .sideban2 a.sideban-tel {
    padding: 16px 0;
    margin-bottom: -1px;
  }
}
@media screen and (min-width: 1024px) {
  .sideban2 a.sideban-tel {
    border-top-left-radius: 20px;
  }
  .sideban2 a.sideban-tel img {
    width: 20px;
    margin-bottom: 0px;
    margin-right: 0;
  }
  .sideban2 a.sideban-tel span {
    text-orientation: sideways;
    position: relative;
    left: 3px;
    margin: 4px 0 0px 0;
  }
}
.sideban2 a.sideban-web {
  width: 50%;
  font-size: clamp(14px, 21.529px + -0.735vw, 18px);
  display: flex;
  justify-content: center;
  gap: 8px;
  background-color: #5CACEE;
}
@media screen and (max-width: 1023px) {
  .sideban2 a.sideban-web {
    align-items: center;
  }
}
@media screen and (min-width: 1024px) {
  .sideban2 a.sideban-web {
    border-top-left-radius: 20px;
    width: 100%;
    gap: 2px;
  }
  .sideban2 a.sideban-web img {
    width: 20px;
  }
  .sideban2 a.sideban-web:hover {
    background-color: #2e94e9;
  }
}
.sideban2 a.sideban-doc {
  width: 50%;
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: clamp(14px, 17.765px + -0.368vw, 16px);
  background-color: #5CC1EE;
}
@media screen and (max-width: 1023px) {
  .sideban2 a.sideban-doc {
    padding: 10px 24px;
  }
}
@media screen and (min-width: 1024px) {
  .sideban2 a.sideban-doc {
    gap: 2px;
    border-top-left-radius: 20px;
    width: 100%;
  }
  .sideban2 a.sideban-doc .sideban-doc-txt {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .sideban2 a.sideban-doc span {
    font-size: 10px;
    background-color: #3CA8D8;
    padding: 4px 2px;
    border-radius: 30px;
  }
  .sideban2 a.sideban-doc img {
    width: 20px;
  }
  .sideban2 a.sideban-doc:hover {
    background-color: #18a6e6;
  }
}
@media screen and (max-width: 1023px) {
  .sideban2 a.sideban-doc span {
    display: none;
  }
}

/* 共通 */
.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: #66C19F;
}

.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 #dfdfdf;
}
@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: #66C19F;
  font-weight: 700;
  width: 100px;
  flex-shrink: 0;
  text-align: left;
}

/* タイトルを左にしたい場合*/
.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: #66C19F;
  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: #66C19F;
  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;
}
.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) !important;
}

.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;
}

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

#fv_outer {
  position: relative;
}
@media screen and (min-width: 1024px) {
  #fv_outer {
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    margin: 114px 50px 0 50px;
  }
  #fv_outer:after {
    content: "";
    background-image: url(../images/toppage/top_bg_logo.png);
    display: block;
    width: 393px;
    height: 428px;
    background-size: cover;
    position: absolute;
    bottom: -90px;
    z-index: 2;
    left: -36px;
    mix-blend-mode: multiply;
  }
}
@media screen and (max-width: 1023px) {
  #fv_outer {
    padding-top: 0px;
    margin-top: 60px;
  }
}
#fv_outer .fv-txt-wrap {
  display: flex;
  height: 500px;
}
@media screen and (max-width: 1023px) {
  #fv_outer .fv-txt-wrap {
    padding-top: 0px;
    height: 100vh;
  }
}
#fv_outer.fv-center { /* 真ん中寄せ */ }
#fv_outer.fv-center .fv-txt-wrap {
  justify-content: center;
  text-align: center;
}
#fv_outer.fv-center a.btn {
  margin: 2em auto 0 auto;
}
#fv_outer.fv-left { /* 左寄せ */ }
#fv_outer.fv-left a.btn {
  margin-top: 2em;
}
#fv_outer.fv-right {
  /* 右寄せ */
}
#fv_outer.fv-right a.btn {
  margin-top: 2em;
  margin-left: auto;
}
#fv_outer.fv-right .fv-txt-wrap {
  justify-content: flex-end;
  text-align: right;
}
@media screen and (min-width: 1024px) {
  #fv_outer .fv-txt {
    position: absolute;
    z-index: 2;
    left: 72px;
    top: calc(50% + 32px);
    transform: translateY(-50%);
    width: 17.55vw;
    max-width: 337px;
  }
}
@media screen and (max-width: 1023px) {
  #fv_outer .fv-txt {
    position: absolute;
    z-index: 2;
    left: 50%;
    top: 10%;
    transform: translateX(-50%);
    width: 80%;
  }
}

.fv-txt-catch {
  font-size: clamp(30.63px, 14.571px + 3.346vw, 48.83px);
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 0.5em;
}
.fv-txt-catch-mini {
  font-size: clamp(14px, 12.235px + 0.368vw, 16px);
}

.swiper-slide img {
  height: auto;
  width: 100%;
}

@media screen and (min-width: 1024px) {
  .swiper {
    border-bottom-right-radius: 30px;
    border-bottom-left-radius: 30px;
  }
}

/* ズームアニメーション */
@keyframes zoomUpAnimation {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}
.swiper-slide-active .swiper-img,
.swiper-slide-duplicate-active .swiper-img,
.swiper-slide-prev .swiper-img {
  animation: zoomUpAnimation 12s linear infinite;
}

.fv-access {
  position: absolute;
  z-index: 2;
  right: 75px;
  bottom: 40px;
  display: flex;
  gap: 26px;
  justify-content: center;
}
@media screen and (max-width: 1023px) {
  .fv-access {
    right: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    bottom: 64px;
  }
  .fv-access img {
    width: 50%;
  }
}

#clinic {
  position: relative;
}
@media screen and (max-width: 1023px) {
  #clinic {
    background: linear-gradient(180.6160599084deg, rgb(242, 249, 255) 0.2205882353%, rgb(235, 249, 237) 83.4686700767%);
  }
}
#clinic .clinic-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 1024px) {
  #clinic .clinic-inner {
    gap: 70px;
    flex-direction: row;
    padding-right: 60px;
    background: linear-gradient(69.7843074046deg, rgb(235, 249, 237) 36.1407284768%, rgb(242, 249, 255) 93.690397351%);
  }
}
#clinic .clinic-inner .clinic-inner-l {
  max-width: 475px;
}
#clinic .clinic-inner .clinic-inner-l .Opening-hours {
  margin-bottom: 24px;
}
#clinic .clinic-inner .clinic-inner-l .small {
  font-size: 14px;
}
#clinic .clinic-inner .clinic-inner-l h2 {
  font-size: clamp(18px, 16.235px + 0.368vw, 20px);
  padding: 0 0 4px 0;
  display: inline-block;
  border-bottom: 1px solid #66C19F;
  margin-bottom: 24px;
}
#clinic .clinic-inner .clinic-inner-l .top-tel {
  font-size: 25px;
  margin-bottom: 16px;
  margin-top: 8px;
  display: block;
  position: relative;
  padding-left: 25px;
}
#clinic .clinic-inner .clinic-inner-l .top-tel:before {
  content: "";
  background-image: url(../images/icon/tel-primary.svg);
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0;
  top: 12px;
}
#clinic .clinic-inner .clinic-inner-l .flex-box {
  justify-content: center;
}
#clinic .clinic-inner .clinic-inner-r {
  /* flex-shrink: 0; */
}
#clinic .clinic-inner .clinic-inner-r img {
  border-radius: 10px;
  margin-bottom: 16px;
  margin-inline: auto;
}
#clinic:before {
  content: "";
  background-color: #EBF9ED;
  width: 50%;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

#feature .contents3-item-l {
  margin-inline: auto;
}
@media screen and (max-width: 1023px) {
  #feature .contents3-item-l {
    margin-bottom: 30px;
  }
}
#feature .feature-num {
  font-size: 20px;
  color: #66C19F;
  font-weight: 400;
  font-family: "Zen Maru Gothic";
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 20px;
}
#feature .feature-num span {
  position: relative;
}
#feature .feature-num span:after {
  content: "";
  width: 60px;
  height: 1px;
  background-color: #66C19F;
  display: block;
  position: absolute;
  top: 50%;
  right: -70px;
}
#feature .feature-img {
  border-radius: 10px;
}
@media screen and (min-width: 768px) {
  #feature .contents3-item.img-left-list li,
  #feature .contents3-item.img-right-list li {
    gap: 30px;
  }
}
@media screen and (min-width: 1024px) {
  #feature .contents3-item.img-left-list li,
  #feature .contents3-item.img-right-list li {
    gap: 60px;
  }
}
#feature .contents3-item.img-left-list li .contents3-item-l {
  position: relative;
}
#feature .contents3-item.img-left-list li .contents3-item-l:after {
  content: "";
  background: linear-gradient(214.873207457deg, rgb(242, 249, 254) 15.9174022699%, rgb(102, 193, 159) 85.4003783102%);
  width: clamp(200px, 80.882px + 24.816vw, 335px);
  height: clamp(200px, 80.882px + 24.816vw, 335px);
  display: block;
  position: absolute;
  bottom: clamp(-36px, 5.412px + -4.044vw, -14px);
  left: clamp(-36px, -15.294px + -2.022vw, -25px);
  z-index: -1;
  border-radius: 10px;
}
@media screen and (min-width: 768px) {
  #feature .contents3-item.img-left-list li .contents3-item-l:after {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  #feature .contents3-item.img-left-list li .contents3-item-l:after {
    display: block;
  }
}
@media screen and (min-width: 1024px) {
  #feature .contents3-item.img-left-list li .contents3-item-l {
    width: 570px;
    flex-shrink: 0;
  }
}
#feature .contents3-item.img-left-list li .contents3-item-r {
  position: relative;
}
@media screen and (min-width: 1024px) {
  #feature .contents3-item.img-left-list li .contents3-item-r:after {
    content: "";
    background-image: url(../images/toppage/feature-logo.png);
    width: 154px;
    height: 167px;
    display: block;
    position: absolute;
    top: 0;
    right: 0;
  }
}
@media screen and (min-width: 768px) {
  #feature .contents3-item.img-left-list li .contents3-item-r {
    flex-grow: 1;
    padding: 0em;
  }
}
#feature .contents3-item.img-right-list li .contents3-item-l {
  position: relative;
}
#feature .contents3-item.img-right-list li .contents3-item-l:after {
  content: "";
  background: linear-gradient(214.873207457deg, rgb(242, 249, 254) 15.9174022699%, rgb(102, 193, 159) 85.4003783102%);
  width: clamp(200px, 80.882px + 24.816vw, 335px);
  height: clamp(200px, 80.882px + 24.816vw, 335px);
  display: block;
  position: absolute;
  bottom: -14px;
  right: -25px;
  z-index: -1;
  border-radius: 10px;
}
@media screen and (min-width: 768px) {
  #feature .contents3-item.img-right-list li .contents3-item-l:after {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  #feature .contents3-item.img-right-list li .contents3-item-l:after {
    display: block;
  }
}
@media screen and (min-width: 1024px) {
  #feature .contents3-item.img-right-list li .contents3-item-l {
    width: 570px;
    bottom: -36px;
    right: -36px;
  }
}
#feature .contents3-item.img-right-list li .contents3-item-r {
  position: relative;
}
@media screen and (min-width: 1024px) {
  #feature .contents3-item.img-right-list li .contents3-item-r:after {
    content: "";
    background-image: url(../images/toppage/feature-logo.png);
    width: 154px;
    height: 167px;
    display: block;
    position: absolute;
    top: 0;
    right: 0;
  }
}
@media screen and (min-width: 768px) {
  #feature .contents3-item.img-right-list li .contents3-item-r {
    flex-grow: 1;
    padding: 0em;
  }
}
#feature h3 {
  font-size: clamp(20px, 19.118px + 0.184vw, 21px);
  color: #333333 !important;
  letter-spacing: 2px;
}
#feature h3 .feature-cat {
  display: block;
  margin: 14px 0 0 0;
}
#feature h3 .feature-cat span {
  color: #5CACEE;
  font-size: 16px;
  padding: 5px 20px;
  border: 1px solid #5CACEE;
}
#feature .contents3-item.img-right-list li,
#feature .contents3-item.img-left-list li {
  align-items: flex-start;
}
#feature .contents3-item-r p {
  margin-top: clamp(10px, -2.353px + 2.574vw, 24px);
}
#feature .feature-mg {
  margin-top: clamp(50px, -11.765px + 12.868vw, 120px);
}

.consultation-bg {
  background: linear-gradient(69.7843074046deg, rgb(235, 249, 237) 36.1407284768%, rgb(242, 249, 255) 93.690397351%);
}

#consultation h2 {
  margin-bottom: clamp(40px, 22.353px + 3.676vw, 60px);
}
#consultation .pageItem.list {
  line-height: 1.8;
  margin: 0;
  padding: 0;
  list-style-type: none;
  position: relative;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  margin: 0;
  padding-left: clamp(21px, 9.529px + 2.39vw, 34px);
  padding-right: clamp(21px, 9.529px + 2.39vw, 34px);
  padding-top: clamp(28px, 24.471px + 0.735vw, 32px);
  padding-bottom: clamp(28px, 24.471px + 0.735vw, 32px);
  background-color: #fff;
}
#consultation .pageItem.list li ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  margin: 1em 0;
}
#consultation .pageItem.list li + li {
  margin-top: 10px;
}
#consultation .pageItem.list.check li {
  position: relative;
  padding-left: 25px;
}
#consultation .pageItem.list.check li:before {
  content: "";
  position: absolute;
  top: 0.4em;
  left: 5px;
  transform: rotate(50deg);
  width: 5px;
  height: 9px;
  border-right: 2px solid #5CACEE;
  border-bottom: 2px solid #5CACEE;
}
#consultation .pageItem.list.check li:after {
  content: "";
  position: absolute;
  top: 0.3em;
  left: 0;
  width: 15px;
  height: 15px;
  border: 1px solid #5CACEE;
  border-radius: 2px;
}
#consultation .pageItem.list.flex {
  display: flex;
  gap: 0.5em 2em;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  align-items: flex-start;
}
#consultation .pageItem.list.flex li + li {
  margin-top: 0px;
}
#consultation .pageItem.list.flex.col2 li {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  #consultation .pageItem.list.flex.col2 li {
    width: calc(50% - 1em);
  }
}
#consultation .pageItem.list.flex.col3 li {
  width: 100%;
}
@media screen and (min-width: 768px) {
  #consultation .pageItem.list.flex.col3 li {
    width: calc(50% - 1em);
  }
}
@media screen and (min-width: 1024px) {
  #consultation .pageItem.list.flex.col3 li {
    width: calc(32.6% - 1em);
  }
}
#consultation h3 {
  background-color: #66C19F;
  color: #fff;
  font-size: clamp(20px, 16.471px + 0.735vw, 24px);
  text-align: center;
  margin-bottom: 0;
  padding: 15px 0;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
@media screen and (min-width: 768px) {
  #consultation .consultation-1 .pageItem.list {
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    border-top-right-radius: 10px;
  }
}
@media screen and (min-width: 1024px) {
  #consultation .consultation-1 picture {
    flex-shrink: 0;
  }
}
#consultation .consultation-1 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  min-width: 200px;
}
@media screen and (min-width: 768px) {
  #consultation .consultation-1 h3 {
    writing-mode: vertical-rl;
    letter-spacing: 0px;
    font-weight: 400;
    border-top-right-radius: 0px;
    border-bottom-left-radius: 10px;
    padding: 0px 10px;
  }
}
@media screen and (min-width: 768px) {
  #consultation .consultation-1 {
    display: flex;
  }
}
#consultation .consultation-wrap {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 1024px) {
  #consultation .consultation-wrap {
    flex-direction: row;
  }
}
#consultation .consultation-2, #consultation .consultation-3 {
  display: flex;
  flex-direction: column;
}
#consultation .consultation-2 ul, #consultation .consultation-3 ul {
  flex-grow: 1;
}

#m-info {
  padding-top: 20px;
}
#m-info h2 {
  margin-bottom: clamp(40px, -4.118px + 9.191vw, 90px);
}

.m-info-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
@media screen and (min-width: 1024px) {
  .m-info-list {
    gap: 40px 60px;
  }
}
.m-info-list a {
  background: linear-gradient(54.0933788423deg, rgb(102, 193, 159) 26.6452266034%, rgb(101, 192, 159) 26.6452266034%, rgb(92, 172, 238) 83.0465682264%);
  width: clamp(160px, 124.706px + 7.353vw, 200px);
  height: clamp(160px, 124.706px + 7.353vw, 200px);
  border-radius: 100%;
  display: grid;
  align-items: center;
  justify-content: center;
  justify-items: center;
  align-content: center;
  color: #fff;
}
.m-info-list a:hover {
  box-shadow: 0px 0px 10px #ccc, 0px 0px 20px #ccc;
}
.m-info-list-name {
  font-size: clamp(17px, 14.353px + 0.551vw, 20px);
  letter-spacing: 0.1em;
  font-weight: 400;
  font-family: "Zen Maru Gothic";
  margin-top: 10px;
  text-align: center;
}
.m-info-list-en {
  font-size: clamp(10px, 8.235px + 0.368vw, 12px);
  letter-spacing: 0.1em;
  font-weight: 400;
  font-family: "Zen Maru Gothic";
  line-height: 1.5;
}
.m-info-list .m-info1 {
  width: clamp(47px, 36.412px + 2.206vw, 59px);
}
.m-info-list .m-info2 {
  width: clamp(39px, 30.176px + 1.838vw, 49px);
}
.m-info-list .m-info3 {
  width: clamp(47px, 36.412px + 2.206vw, 59px);
}
.m-info-list .m-info4, .m-info-list .m-info5 {
  width: clamp(50px, 39.412px + 2.206vw, 62px);
}
.m-info-list .m-info6 {
  width: clamp(42px, 33.176px + 1.838vw, 52px);
}
.m-info-list .m-info7 {
  width: clamp(49px, 38.412px + 2.206vw, 61px);
}
.m-info-list .small {
  font-size: 10px;
  display: block;
  line-height: 1.4;
}

#greeting {
  margin-top: clamp(80px, -2.941px + 17.279vw, 174px);
  position: relative;
}
@media screen and (max-width: 1023px) {
  #greeting {
    padding-top: 80px;
    padding-bottom: 80px;
    background: linear-gradient(180.6160599084deg, rgb(242, 249, 255) 0.2205882353%, rgb(235, 249, 237) 83.4686700767%);
  }
}
@media screen and (min-width: 1024px) {
  #greeting:before {
    content: "";
    background-color: #f3f9ff;
    width: 50%;
    height: 100%;
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
  }
}
@media screen and (min-width: 1024px) {
  #greeting .greeting-inner {
    padding-top: clamp(0px, -105.882px + 22.059vw, 120px);
    padding-bottom: clamp(0px, -105.882px + 22.059vw, 120px);
    padding-left: clamp(0px, -52.941px + 11.029vw, 60px);
    background: linear-gradient(69.7843074046deg, rgb(235, 249, 237) 36.1407284768%, rgb(242, 249, 255) 93.690397351%);
  }
}
#greeting .greeting-inner .greeting-img {
  border-radius: 10px;
  position: relative;
  z-index: 2;
}
#greeting .greeting-inner .greeting-dr {
  margin-inline: auto;
  position: relative;
  width: 320px;
}
#greeting .greeting-inner .greeting-dr:after {
  content: "";
  background: linear-gradient(214.873207457deg, rgb(226, 241, 251) 15.9174022699%, rgb(102, 193, 159) 85.4003783102%);
  width: clamp(302px, 302px + 0vw, 302px);
  height: clamp(439px, 439px + 0vw, 439px);
  display: block;
  position: absolute;
  bottom: clamp(-19px, -19px + 0vw, -19px);
  right: clamp(-19px, -19px + 0vw, -19px);
  z-index: 0;
  border-radius: 10px;
}
#greeting .greeting-inner .greeting-dr-txt {
  text-align: right;
  margin-top: 50px;
}
@media screen and (max-width: 1023px) {
  #greeting .greeting-inner .greeting-dr-txt {
    padding-right: 16px;
  }
}
#greeting .greeting-inner .greeting-dr-txt p {
  margin-bottom: 0;
}
#greeting .greeting-inner .greeting-dr-txt .small {
  font-size: 12px;
  margin-bottom: 12px;
}
#greeting .greeting-inner .greeting-dr-txt .dr-name {
  font-size: 24px;
  margin-bottom: 30px;
}
#greeting .greeting-inner .greeting-dr-txt .dr-name span {
  font-size: 16px;
}
#greeting .greeting-inner .greeting-box-wrap {
  display: flex;
  gap: clamp(42px, 26.118px + 3.309vw, 60px);
}
@media screen and (max-width: 1023px) {
  #greeting .greeting-inner .greeting-box-wrap {
    flex-direction: column-reverse;
  }
}
#greeting .greeting-inner .greeting-txt-wrap {
  display: flex;
  flex-grow: 1;
  gap: 60px;
}
@media screen and (max-width: 1023px) {
  #greeting .greeting-inner .greeting-txt-wrap {
    flex-wrap: wrap;
    gap: 40px;
  }
}
#greeting .greeting-inner .greeting-txt-title h2 {
  writing-mode: vertical-rl;
  letter-spacing: -2px;
  font-size: clamp(24px, 20.471px + 0.735vw, 28px);
  padding-left: 0;
  padding-right: 0;
  width: 38px;
}
#greeting .greeting-inner .greeting-txt-title h2 span {
  color: #66C19F;
  font-size: 13px;
  letter-spacing: 2px;
  padding-top: 65px;
  position: relative;
  line-height: 0;
}
#greeting .greeting-inner .greeting-txt-title h2 span:before {
  content: "";
  width: 1px;
  height: 36px;
  background-color: #66C19F;
  display: block;
  position: absolute;
  top: 15px;
  left: 44%;
}
@media screen and (min-width: 1024px) {
  #greeting .greeting-inner .greeting-txt {
    flex-grow: 1;
  }
}
@media screen and (max-width: 1023px) {
  #greeting .greeting-inner .greeting-txt {
    width: calc(100% - 78px);
  }
}
#greeting .greeting-inner .greeting-txt h3 {
  font-size: clamp(22px, 20.235px + 0.368vw, 24px);
  padding-bottom: clamp(12px, -0.353px + 2.574vw, 26px);
  border-bottom: 1px solid #5CACEE;
  color: #5CACEE;
  line-height: 1.8;
}
#greeting .top-ban-pc {
  display: flex;
  margin-top: clamp(46px, 79.882px + -3.309vw, 64px);
  gap: clamp(18px, 29.294px + -1.103vw, 24px);
}
@media screen and (max-width: 1023px) {
  #greeting .top-ban-pc {
    display: none;
  }
}
#greeting .top-ban-sp {
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 1024px) {
  #greeting .top-ban-sp {
    display: none;
  }
}
#greeting .top-ban-sp img {
  width: 100%;
  max-width: 348px;
}

#guidance {
  padding-top: 20px;
}
#guidance h2 {
  margin-bottom: clamp(40px, -4.118px + 9.191vw, 90px);
}

/*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 15px;
    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;
  }
}
@media screen and (min-width: 1024px) {
  .hNavi2 .header-inner {
    transition: 0.5s;
  }
}
@media screen and (min-width: 1024px) {
  .hNavi2 #menu {
    background-color: #fff;
    transition: 0.5s;
    transform: translateZ(0) translateY(0px);
  }
}
@media screen and (max-width: 1023px) {
  .hNavi2 #branding {
    margin-bottom: 3em;
  }
}
@media screen and (min-width: 1024px) {
  .hNavi2 #branding {
    transform: translateZ(0) translateY(0px);
    padding: 30px 0 20px 0;
    background: #fff;
    transition: 0.5s;
    text-align: center;
  }
  .hNavi2 #branding h1 {
    margin: 0;
  }
  .hNavi2 #branding h1 span {
    margin: auto;
  }
  .hNavi2 #branding .logo {
    margin: auto;
  }
}
@media screen and (min-width: 1024px) {
  .hNavi2 #menu-headnav {
    container-name: hnav-container;
    position: relative;
    display: flex;
    justify-content: center;
    gap: 16px;
    container-type: inline-size;
  }
  @container hnav-container (max-width: 1155px) {
    .hNavi2 #menu-headnav > li > a {
      font-size: 14px !important;
    }
  }
}
@media screen and (min-width: 1024px) {
  .hNavi2 #menu-headnav > li {
    padding: 0 10px;
    position: relative;
  }
  .hNavi2 #menu-headnav > li:after {
    content: "";
    background-color: #66C19F;
    display: block;
    height: 5px;
    width: 0%;
    position: absolute;
    left: 0;
    bottom: 0;
  }
  .hNavi2 #menu-headnav > li:hover:after {
    animation: expandWidth 0.2s forwards;
  }
}
@media screen and (max-width: 1023px) {
  .hNavi2 #menu-headnav > li {
    margin-bottom: 0.8em;
    padding-bottom: 0.8em;
  }
  .hNavi2 #menu-headnav > li:not(:last-child) {
    border-bottom: 2px dotted #daf1e8;
  }
  .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: 1px;
    background-size: cover;
    position: absolute;
    right: 0;
    top: 1rem;
  }
  .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 {
  font-weight: 400;
  color: #333333;
  font-size: clamp(18px, 29.294px + -1.103vw, 24px);
  font-family: "Zen Maru Gothic";
  display: block;
}
.hNavi2 #menu-headnav > li > a:hover {
  color: #333333;
}
@media screen and (min-width: 1024px) {
  .hNavi2 #menu-headnav > li > a {
    padding: 12px 0 17px 0;
    text-align: center;
  }
  .hNavi2 #menu-headnav > li > a:after {
    display: block;
    content: attr(data-subTxt);
    color: #66C19F;
    font-size: clamp(10px, 10px + 0vw, 10px);
    font-weight: 400;
    letter-spacing: 0.1em;
    text-align: center;
  }
}
.hNavi2 #menu-headnav > li > .sub-menu {
  font-size: clamp(14px, 21.529px + -0.735vw, 18px);
}
@media screen and (min-width: 1024px) {
  .hNavi2 #menu-headnav > li > .sub-menu {
    display: none;
    position: absolute;
    background: #fff;
    width: 260px;
    z-index: 2;
    right: 0;
    left: 0;
  }
  .hNavi2 #menu-headnav > li > .sub-menu li a {
    display: block;
    padding: 8px 15px;
    background-color: #F5FBF8;
    font-weight: 400;
    font-family: "Zen Maru Gothic";
    color: #333333;
  }
  .hNavi2 #menu-headnav > li > .sub-menu li a:hover {
    background-color: #e3f4eb;
    color: #317355;
  }
  .hNavi2 #menu-headnav > li > .sub-menu li:not(:last-child) {
    border-bottom: 1px dotted #66C19F;
  }
}
@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.5em;
  }
}
.hNavi2 #menu-headnav > li > .sub-menu a {
  color: #66C19F;
}
@media screen and (min-width: 1024px) {
  .hNavi2 .header-inner.scrolled header#header {
    height: 55px;
  }
  .hNavi2 .header-inner.scrolled #branding {
    transform: translateZ(0) translateY(-138px);
  }
  .hNavi2 .header-inner.scrolled #menu {
    transform: translateZ(0) translateY(-138px);
    background-color: rgba(255, 255, 255, 0.8);
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);
    box-shadow: 0px 0px 7px 1px rgba(17, 17, 26, 0.1);
  }
  .hNavi2 .header-inner.scrolled #menu-headnav > li > a {
    font-size: 14px;
  }
  .hNavi2 .header-inner.scrolled #menu-headnav > li > a:after {
    display: none;
  }
}

.js_humburgerOpen .hNavi2 .header-inner {
  background: linear-gradient(139.2411374346deg, rgb(255, 255, 255) 2.635301353%, rgb(254, 254, 254) 2.635301353%, rgb(235, 249, 237) 90.8271832718%);
  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: #fff;
  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: 18px;
    width: 60px;
    height: 60px;
    background: #66C19F;
  }
  #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: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "メイリオ", Meiryo, "Hiragino Sans", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", sans-serif, -apple-system, BlinkMacSystemFont, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Sans Emoji";
}

.js_humburgerOpen .el_humburger {
  background: transparent;
}

.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: #fff;
  }
}
@media screen and (max-width: 1023px) {
  .js_humburgerOpen .el_humburger_text svg path {
    fill: #fff;
  }
}
.el_humburger span.el_humburger_bar {
  display: block;
  width: 100%;
  margin: 0 auto 9px;
  height: 1px;
  background: #fff;
  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: #333333;
}

@media screen and (max-width: 1023px) {
  .el_humburger span.el_humburger_bar {
    left: 0;
    top: 0;
    background: #fff;
  }
}
.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);
}

div#site-title {
  line-height: 0;
}
@media screen and (min-width: 1024px) {
  div#site-title {
    text-align: center;
    display: inline-block;
  }
}

/*hNavi2 end*/
.menu-headnav-container {
  max-width: 1200px;
  margin-inline: auto;
  padding: 0 15px;
}

@keyframes expandWidth {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}
/* news-blog2 */
#news-blog a {
  color: #333333;
}
#news-blog a:not(.lb08):hover {
  color: #7399be;
}
@media screen and (min-width: 1024px) {
  #news-blog {
    display: flex;
    gap: 120px;
    padding-top: 20px;
  }
}
#news-blog h2.h2--center {
  font-size: clamp(24px, 20.471px + 0.735vw, 28px);
  margin-bottom: clamp(40px, 22.353px + 3.676vw, 60px);
  padding-left: 0;
  padding-right: 0;
}
#news-blog h2.h2--center:before {
  font-size: 13px;
}
#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: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "メイリオ", Meiryo, "Hiragino Sans", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", sans-serif, -apple-system, BlinkMacSystemFont, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Sans Emoji";
}
#news-blog #news-block .post-list > li .time {
  color: #333333;
  font-size: 14px;
}
@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%;
  }
  #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;
  }
}
@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: #66C19F;
  font-weight: bold;
  color: #fff;
  font-size: 10px;
  padding: 2px 8px;
  margin: 0px 0 4px 0;
  display: inline-block;
}
@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;
    line-height: 1.5;
  }
}
#news-blog #blog-block .post-list-box-txt h3 {
  font-size: 16px;
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "メイリオ", Meiryo, "Hiragino Sans", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", sans-serif, -apple-system, BlinkMacSystemFont, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Sans Emoji";
  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;
  }
}/*# sourceMappingURL=all.css.map */