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

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

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

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

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

:where(button) {
  all: unset;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* 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: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", Meiryo, メイリオ, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "Yu Gothic", YuGothic, "MS PGothic", Osaka, arial, sans-serif;
  color: #4E4E4E;
  font-size: 16px;
  line-height: 1.8;
  font-feature-settings: "palt";
}

body {
  overflow-x: hidden;
  background: linear-gradient(to bottom, #fef8f8 0px, #fef8f8 100px, #ffffff 100px, #ffffff 100%);
}
@media screen and (min-width: 1024px) {
  body {
    background: linear-gradient(to bottom, #fef8f8 0px, #fef8f8 300px, #ffffff 300px, #ffffff 100%);
  }
}

body.home {
  background: #fff;
}

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 #EDF2F5;
  color: #4E4E4E;
}

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 #ccc;
  border-collapse: collapse;
}

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

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

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

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

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

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

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

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

/* page-top */
div#page-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 2;
  background-color: #7A9EBB;
  width: 56px;
  height: 56px;
  border-radius: 50%;
}
@media screen and (max-width: 1023px) {
  div#page-top {
    bottom: 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: #ccc;
}

/* 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: #B89D8E;
  color: #fff;
  font-size: 18px;
  position: relative;
  top: 4px;
  width: 25px;
  height: 25px;
  line-height: 22px;
  text-align: center;
  flex-shrink: 0;
  padding-top: 2px;
}

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

/* 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: 329px;
  height: 55px;
  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: 245px;
    height: 41px;
  }
}
@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: 245px;
    height: 41px;
    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: 700;
  margin-bottom: 2rem;
}
@media screen and (min-width: 1024px) {
  .page-header {
    margin-bottom: 3rem;
  }
}
.page-header.type1 {
  display: grid;
  align-items: center;
  justify-content: center;
  height: 230px;
  background-color: #FBEEEE;
  background-blend-mode: screen;
  background-size: cover;
  position: relative;
}
.page-header.type1 .page-header-inner {
  max-width: 1200px;
  margin-inline: auto;
  padding: 0 15px;
}
@media screen and (max-width: 1023px) {
  .page-header.type1 .page-header-inner {
    padding: 0 24px;
  }
}
.page-header.type1:after {
  content: "";
  display: block;
  width: 1px;
  height: 60px;
  bottom: -4em;
  background-color: #4E4E4E;
  position: absolute;
  left: 50%;
  transform: translate(0, -50%);
}
@media screen and (min-width: 1024px) {
  .page-header.type1:after {
    height: 80px;
    bottom: -4em;
  }
}

@keyframes fadeInAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.type-s {
  background-color: #FEF8F8;
  position: relative;
  padding-top: 50px;
}
@media screen and (max-width: 1023px) {
  .type-s {
    padding-top: 20px;
  }
}
.type-s .pagehead-wave {
  position: absolute;
  bottom: 0;
  left: 0;
}
.type-s .page-header-title {
  font-size: clamp(27px, 13.765px + 2.757vw, 42px);
  margin: 0 0 0 0;
  position: relative;
  text-wrap: balance;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-style: normal;
  white-space: nowrap;
}

.page-header-wrap {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1023px) {
  .page-header-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
.page-header-wrap .page-header-img {
  flex-shrink: 0;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .page-header-wrap .page-header-img {
    width: 65%;
    max-width: 750px;
  }
}
.page-header-wrap .page-header-img img {
  position: relative;
  z-index: 2;
  border-radius: 40px;
  width: 100%;
  height: 166px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 1024px) {
  .page-header-wrap .page-header-img img {
    border-radius: 50px;
    width: 100%;
    height: 380px;
  }
}
.page-header-wrap .page-header-subtitle {
  font-size: clamp(18px, 9.176px + 1.838vw, 28px);
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
  color: #D8B3AE;
  line-height: 1;
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
  ul.nav-hour {
    display: none;
  }
}
/* footer */
@media screen and (max-width: 1023px) {
  .footer-wave {
    margin-top: 50px;
  }
}
@media screen and (min-width: 1024px) {
  .footer-wave {
    margin-top: 90px;
  }
}

#footer {
  background: #FEF8F8;
}
@media screen and (max-width: 1023px) {
  #footer {
    padding-bottom: 60px;
  }
}
#footer a {
  text-decoration: none;
  color: #4E4E4E;
}
#footer a:hover {
  color: #B89D8E;
}
#footer .footer-contents-wrap {
  display: flex;
  padding-top: 2em;
  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: 768px) {
  #footer .footer-contents-wrap {
    flex-wrap: wrap;
    gap: 50px;
  }
}
@media screen and (min-width: 1024px) {
  #footer .footer-contents-wrap {
    gap: 0px;
  }
}
#footer .footer-contents {
  flex-grow: 1;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  #footer .footer-contents {
    margin-right: 60px;
  }
}
#footer .footer-contents .footer-contents-txt {
  margin-top: 1em;
}
#footer .footer-contents .footer-contents-txt .f-note {
  text-align: right;
}
#footer .footer-contents .flogo {
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  #footer .footer-menu.fmenu {
    width: 300px;
  }
  #footer .footer-menu.fban {
    width: 300px;
    margin-inline: auto;
  }
}
@media screen and (min-width: 1024px) {
  #footer .footer-menu.fmenu {
    width: 360px;
  }
  #footer .footer-menu.fban {
    width: 300px;
  }
  #footer .footer-menu.fban a img {
    opacity: 1;
    transition: 0.5s;
  }
  #footer .footer-menu.fban a:hover img {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  #footer .footer-menu {
    width: 100%;
  }
}
#footer .footer-menu > li:not(:last-child) {
  margin-bottom: 0.5em;
}
#footer .footer-menu h2, #footer .footer-menu .widgettitle {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 0.5em;
  padding: 0;
}
#footer .footer-menu .menu-item {
  position: relative;
  padding-left: 15px;
  line-height: 1.5;
  font-size: 14px;
}
#footer .footer-menu .menu-item:not(:last-child) {
  margin-bottom: 0.4rem;
}
#footer .footer-menu .menu-item:before {
  content: "";
  position: absolute;
  top: 0.3em;
  left: 0;
  transform: rotate(45deg);
  width: 5px;
  height: 5px;
  border-top: 1px solid #B89D8E;
  border-right: 1px solid #B89D8E;
}

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

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

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

.footer-tel {
  background-color: #FFFFFF;
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-style: normal;
  margin: 20px 0;
  padding: 12px 0;
  border-radius: 100px;
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: center;
  font-size: clamp(14px, 12.235px + 0.368vw, 16px);
}
.footer-tel a {
  color: #B89D8E !important;
  font-size: clamp(22px, 18.471px + 0.735vw, 26px);
  border-left: 1px solid #D2D2D2;
  padding-left: 16px;
  line-height: 1.2;
}

nav.menu-footer-menu-container {
  -moz-column-count: 2;
       column-count: 2;
}

/* main */
.search .header {
  background-color: rgba(251, 238, 238, 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 #ccc;
  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: #B89D8E;
}
.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 #ccc;
}
.c-linklist li:first-child {
  border-left: 1px dashed #ccc;
}
.c-linklist a {
  color: #4E4E4E;
  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: #7A9EBB;
  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;
}

@media screen and (max-width: 767px) {
  .page-id-23 .wp-block-flexible-table-block-table {
    font-size: 13px;
  }
}

.s-conspt {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-style: normal;
  font-size: clamp(24px, 11.647px + 2.574vw, 38px);
  line-height: 1.6;
  margin-bottom: clamp(32px, 24.941px + 1.471vw, 40px);
}
.s-conspt span.mini {
  font-size: clamp(16px, 8.941px + 1.471vw, 24px);
}
.s-conspt span.pink {
  color: #D8B3AE;
}

.dkana {
  font-size: clamp(11px, 6.588px + 0.919vw, 16px);
  margin-left: 8px;
  letter-spacing: 0;
}

.c-innnai .wp-block-column h3 {
  margin-top: 0 !important;
  font-size: clamp(20px, 20px + 0vw, 20px);
  background-color: transparent !important;
  padding: 0 0 4px 0px !important;
  border-bottom: 1px solid #B89D8E;
  color: #B89D8E;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-innnai .wp-block-column h3 {
    margin-top: 24px !important;
  }
}

.c-innnai .wp-block-column img {
  width: 100%;
}

.mincho {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-style: normal;
  font-size: clamp(22.13px, 16.218px + 1.232vw, 28.83px);
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* sidebar */
#sidebar {
  border-radius: 5px;
  width: 250px;
  flex-shrink: 0;
  padding: 30px 8px;
}
@media screen and (max-width: 1023px) {
  #sidebar {
    display: none;
  }
}
#sidebar .widget-area {
  width: 100%;
}
#sidebar .widget-area a:not(.btn) {
  color: #4E4E4E;
}
#sidebar .widget-area a:not(.btn):hover {
  color: #4E4E4E;
  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 #4E4E4E;
  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 #4E4E4E;
  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: #D8B3AE;
}
#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 #D8B3AE;
  border-right: 1px solid #D8B3AE;
}
#sidebar .wp-block-heading {
  padding: 0;
  font-size: 20px;
  border-bottom: 1px solid #D8D8D8;
  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: #FBEEEE;
  border-bottom: 1px solid #FBEEEE !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.2rem;
  line-height: 1.9;
}

h1 {
  font-size: clamp(23.61px, 15.819px + 1.623vw, 32.44px);
  font-weight: 500;
  font-family: "Shippori Mincho";
}

h2 {
  font-size: clamp(22.13px, 16.218px + 1.232vw, 28.83px);
  font-weight: 500;
  max-width: 1200px;
  margin-inline: auto;
  padding: 0 15px;
  font-family: "Shippori Mincho";
}
@media screen and (max-width: 1023px) {
  h2 {
    padding: 0 24px;
  }
}

h3 {
  font-size: clamp(20.74px, 16.425px + 0.899vw, 25.63px);
  font-weight: 500;
  font-family: "Shippori Mincho";
}

h4 {
  font-size: clamp(19.44px, 16.493px + 0.614vw, 22.78px);
  font-weight: 500;
  font-family: "Shippori Mincho";
}

h5 {
  font-size: clamp(18.22px, 16.429px + 0.373vw, 20.25px);
  font-weight: 500;
  font-family: "Shippori Mincho";
}

h6 {
  font-size: clamp(17.07px, 16.249px + 0.171vw, 18px);
  font-weight: 500;
  font-family: "Shippori Mincho";
}

/*　見出し　*/
.h2--left {
  position: relative;
  font-size: clamp(18px, 2.118px + 3.309vw, 36px);
}
.h2--left:before {
  content: attr(data-sub);
  font-size: clamp(34px, -7.471px + 8.64vw, 81px);
  color: #D8B3AE;
  display: block;
}
.h2--news-c {
  text-align: center;
  position: relative;
  font-size: clamp(26px, 22.471px + 0.735vw, 30px);
}
.h2--news-c:after {
  content: attr(data-sub);
  font-size: 13px;
  color: #B89D8E;
  display: block;
}
.h2--center {
  text-align: center;
  position: relative;
  font-size: clamp(18px, 7.412px + 2.206vw, 30px);
}
.h2--center:before {
  content: attr(data-sub);
  font-size: clamp(34px, -7.471px + 8.64vw, 81px);
  color: #B89D8E;
  display: block;
}

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

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

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

/*　営業　*/
table.Opening-hours {
  width: 100%;
  /* max-width: 500px; */
  margin: 0;
  border: 0px solid #ccc;
}
table.Opening-hours th {
  font-weight: 500;
  min-width: 1em;
  padding: 0;
  color: #4E4E4E;
  background-color: #EDF2F5;
}
table.Opening-hours td {
  padding: 0;
  color: #4E4E4E;
  text-align: center;
  font-size: 12px;
}
table.Opening-hours td.time {
  font-size: 14px;
}
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 #ccc;
}
table.Opening-hours.oh-4 th {
  line-height: 1;
  padding: 15px 5px;
  background-color: transparent;
  border-right: 0px solid #ccc;
  color: #B89D8E;
  font-weight: bold;
}
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 #ccc;
}
table.Opening-hours.oh-4 td:not(.time) {
  color: #B89D8E;
}
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;
}
@media screen and (max-width: 1023px) {
  #breadcrumb ul {
    padding: 0 24px;
  }
}
#breadcrumb ul::-webkit-scrollbar {
  display: none;
}
#breadcrumb ul li {
  font-size: clamp(12px, 12px + 0vw, 12px);
}
#breadcrumb ul li a {
  color: #4E4E4E;
}
#breadcrumb ul li a:hover {
  color: #A6C0D0;
}
#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 #B89D8E;
  padding: 5px 15px;
  background-color: #B89D8E;
  border-radius: 5px;
  transition: 0.5s;
}
input[type=submit]:hover {
  cursor: pointer;
  background-color: rgb(164.3206521739, 129.8369565217, 110.6793478261);
}

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

/*矢印付きリンク2*/
.lb08 {
  display: inline-block;
  height: 2rem;
  line-height: 2rem;
  display: inline-flex;
  align-items: center;
  color: #4E4E4E;
  gap: 5px;
}
.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: #7A9EBB;
}
.lb08:hover .arrow-icon {
  transform: translate3d(5px, 0, 0);
}
.lb08:hover .arrow-icon--circle {
  stroke-dashoffset: 0;
}

ol.pageItem.olist {
  list-style: none;
  counter-reset: number;
  padding: 0;
}
ol.pageItem.olist li {
  position: relative;
  padding-left: 2.5rem;
  display: block;
}
ol.pageItem.olist li:not(:last-child) {
  margin-bottom: 1.5rem;
}
ol.pageItem.olist li:before {
  counter-increment: number;
  content: counter(number);
  position: absolute;
  top: 5px;
  left: 0;
  width: 24px;
  height: 24px;
  color: #fff;
  background-color: #B89D8E;
  border-radius: 50%;
  font-size: 14px;
  text-align: center;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  ol.pageItem.olist li:before {
    line-height: 1.5;
  }
}

.flow ul li h3 {
  margin: 0.5em 0;
  font-size: clamp(18px, 14.471px + 0.735vw, 22px);
  color: #FBEEEE;
}
.flow p:last-child {
  margin-bottom: 0;
}

.stepbar1 {
  position: relative;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
}
.stepbar1 li {
  position: relative;
  list-style: none;
  text-align: center;
  font-weight: bold;
}
.stepbar1 li p {
  font-size: clamp(14px, 12.235px + 0.368vw, 16px);
  font-weight: normal;
  margin: 1em 10px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .stepbar1 li p {
    margin: 1em 30px;
  }
}
.stepbar1 li:before {
  display: block;
  width: 18px;
  height: 18px;
  margin: 0.5em auto;
  content: "";
  text-align: center;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid #FBEEEE;
}
.stepbar1 li:after {
  position: absolute;
  z-index: -1;
  top: 1em;
  left: -50%;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #FBEEEE;
}
.stepbar1 li:first-child:after {
  content: none;
}

.stepbar2 {
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .stepbar2 {
    /* width: 80%;*/
  }
}
.stepbar2 .stepbarwrap {
  margin-bottom: 2em;
  position: relative;
}
.stepbar2 .stepbarwrap:last-child {
  margin-bottom: 0;
}
.stepbar2 .stepbarwrap .steptitle {
  display: inline-flex;
  align-items: center;
}
.stepbar2 .stepbarwrap .steptitle .stepcircle {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  content: "";
  border-radius: 50%;
  background-color: #B89D8E;
  border: 1px solid #B89D8E;
}
.stepbar2 .stepbarwrap .steptitle .stepnum {
  padding-left: 1em;
  color: #B89D8E;
  font-weight: 500;
}
.stepbar2 .stepbarwrap .steptxt {
  padding-left: 2.5em;
}
.stepbar2 .stepbarwrap .steptxt .title {
  margin-bottom: 0.5em;
  margin-top: 0;
  font-weight: bold;
  font-size: clamp(18px, 14.471px + 0.735vw, 22px);
}
.stepbar2 .stepbarwrap .steptxt .txt {
  font-size: clamp(16px, 16px + 0vw, 16px);
}
.stepbar2 .stepbarwrap .stepline {
  width: 1px;
  height: calc(100% + 1.5em);
  background-color: #FBEEEE;
  position: absolute;
  top: 1em;
  left: 0.7em;
  z-index: -1;
}
.stepbar2 .stepbarwrap:last-of-type .stepline:last-of-type {
  display: none;
}

.stepbar3 {
  margin: 0 auto;
  width: 80%;
}
@media screen and (max-width: 767px) {
  .stepbar3 {
    width: 100%;
  }
}
.stepbar3 .stepbarwrap {
  margin: 2em 0;
  position: relative;
}
.stepbar3 .stepbarwrap .steptitle {
  display: inline-flex;
  align-items: center;
  gap: 1em;
}
.stepbar3 .stepbarwrap .steptitle .stepcircle {
  flex-shrink: 0;
  display: inline-block;
  width: 3em;
  height: 3em;
  content: "";
  border-radius: 50%;
  background-color: #FBEEEE;
  color: #fff;
  text-align: center;
}
.stepbar3 .stepbarwrap .steptitle .stepcircle span {
  display: inline-block;
  line-height: 1.2em;
  font-size: 0.8em;
  font-weight: bold;
  position: relative;
  top: 0.9em;
}
.stepbar3 .stepbarwrap .steptitle .title {
  margin-bottom: 0em;
  font-weight: bold;
  font-size: clamp(18px, 14.471px + 0.735vw, 22px);
  color: #FBEEEE !important;
}
.stepbar3 .stepbarwrap .steptxt {
  padding-left: 4em;
}
.stepbar3 .stepbarwrap .steptxt .txt {
  font-size: clamp(16px, 16px + 0vw, 16px);
}
.stepbar3 .stepbarwrap .stepline {
  width: 1px;
  height: calc(100% + 1em);
  background-color: #FBEEEE;
  position: absolute;
  top: 1em;
  left: 1.5em;
  z-index: -1;
}
.stepbar3 .stepbarwrap .stepline:last-of-type {
  display: none;
}

.stepbar3 .stepbarwrap .steptxt {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
@media screen and (min-width: 1024px) {
  .stepbar3 .stepbarwrap .steptxt {
    flex-wrap: nowrap;
  }
}

.steptxt picture {
  flex-shrink: 0;
}

.btn {
  display: block;
  text-decoration: none;
  border-radius: 50px;
  padding: 14px 24px;
  text-align: center;
  line-height: 1;
  color: #fff;
}
.btn.btn1st {
  background-color: #7A9EBB;
}
.btn.btn1st:hover {
  background-color: #A6C0D0;
  color: #fff;
}
.btn.btn2nd {
  background-color: #7A9EBB;
  color: #fff;
}
.btn.btn2nd:hover {
  background-color: rgb(88.2537313433, 133.3880597015, 169.7462686567);
  color: #fff;
}
.btn.btn3rd {
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
}
.btn.btn3rd:hover {
  background-color: rgb(164.3206521739, 129.8369565217, 110.6793478261);
  color: #fff;
}
.btn.btnM {
  width: 180px;
  font-weight: bold;
}

.btnL {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-width: 250px;
  max-width: 400px;
  height: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

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

a:hover {
  color: #A6C0D0;
}

.link-arrow {
  color: #4E4E4E;
  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: #7A9EBB;
}
.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 #7A9EBB;
  border-right: 1px solid #7A9EBB;
  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;
}

/* article */
.page:not(.page-template-page_lp) article .wp-block-image, .single article .wp-block-image {
  margin-bottom: 1.5em;
}
.page:not(.page-template-page_lp) article h2, .single article h2 {
  padding: 0;
}
.page:not(.page-template-page_lp) article .eyecatch, .single article .eyecatch {
  margin-bottom: 2em;
  /*
  aspect-ratio: 3/2;
    object-fit: cover;
    */
}
.page:not(.page-template-page_lp) article h2:not(.h2--center):not(.h2--leftline):not(.h2--slash), .single article h2:not(.h2--center):not(.h2--leftline):not(.h2--slash) {
  position: relative;
  /*ツートン下ボーダー*/
  border-bottom: 5px solid #F3F3F3;
  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: 20%;
  height: 5px;
  content: "";
  background: #D8B3AE;
}
.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: #F9F7F3;
  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 #ccc;
  padding-bottom: 0.5em;
  margin-bottom: clamp(10px, 1.176px + 1.838vw, 20px);
}
.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 #B89D8E;
  margin-bottom: clamp(10px, 1.176px + 1.838vw, 20px);
  padding-left: 0.5em;
}
.page:not(.page-template-page_lp) article h6, .single article h6 {
  margin-bottom: clamp(10px, 1.176px + 1.838vw, 20px);
}
.page:not(.page-template-page_lp) article blockquote p:last-of-type, .single article blockquote p:last-of-type {
  margin-bottom: 0;
}
.page:not(.page-template-page_lp) article .contents2-item, .page:not(.page-template-page_lp) article .contents1-item, .page:not(.page-template-page_lp) article .contents3-item,
.page:not(.page-template-page_lp) article .contents4-item, .page:not(.page-template-page_lp) article .contents6-item, .page:not(.page-template-page_lp) article .stepbar1, .page:not(.page-template-page_lp) article .stepbar2, .page:not(.page-template-page_lp) article .stepbar3, .page:not(.page-template-page_lp) article .menu-list-item,
.page:not(.page-template-page_lp) article .t-contact, .single article .contents2-item, .single article .contents1-item, .single article .contents3-item,
.single article .contents4-item, .single article .contents6-item, .single article .stepbar1, .single article .stepbar2, .single article .stepbar3, .single article .menu-list-item,
.single article .t-contact {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.page:not(.page-template-page_lp) article .contents2-item br, .page:not(.page-template-page_lp) article .contents1-item br, .page:not(.page-template-page_lp) article .contents3-item br,
.page:not(.page-template-page_lp) article .contents4-item br, .page:not(.page-template-page_lp) article .contents6-item br, .page:not(.page-template-page_lp) article .stepbar1 br, .page:not(.page-template-page_lp) article .stepbar2 br, .page:not(.page-template-page_lp) article .stepbar3 br, .page:not(.page-template-page_lp) article .menu-list-item br,
.page:not(.page-template-page_lp) article .t-contact br, .single article .contents2-item br, .single article .contents1-item br, .single article .contents3-item br,
.single article .contents4-item br, .single article .contents6-item br, .single article .stepbar1 br, .single article .stepbar2 br, .single article .stepbar3 br, .single article .menu-list-item br,
.single article .t-contact br {
  display: none;
}
.page:not(.page-template-page_lp) article .contents2-item p br, .page:not(.page-template-page_lp) article .contents1-item p br, .page:not(.page-template-page_lp) article .contents3-item p br,
.page:not(.page-template-page_lp) article .contents4-item p br, .page:not(.page-template-page_lp) article .contents6-item p br, .page:not(.page-template-page_lp) article .stepbar1 p br, .page:not(.page-template-page_lp) article .stepbar2 p br, .page:not(.page-template-page_lp) article .stepbar3 p br, .page:not(.page-template-page_lp) article .menu-list-item p br,
.page:not(.page-template-page_lp) article .t-contact p br, .single article .contents2-item p br, .single article .contents1-item p br, .single article .contents3-item p br,
.single article .contents4-item p br, .single article .contents6-item p br, .single article .stepbar1 p br, .single article .stepbar2 p br, .single article .stepbar3 p br, .single article .menu-list-item p br,
.single article .t-contact p br {
  display: block;
}
.page:not(.page-template-page_lp) article .contents2-item h3, .page:not(.page-template-page_lp) article .contents1-item h3, .page:not(.page-template-page_lp) article .contents3-item h3,
.page:not(.page-template-page_lp) article .contents4-item h3, .page:not(.page-template-page_lp) article .contents6-item h3, .page:not(.page-template-page_lp) article .stepbar1 h3, .page:not(.page-template-page_lp) article .stepbar2 h3, .page:not(.page-template-page_lp) article .stepbar3 h3, .page:not(.page-template-page_lp) article .menu-list-item h3,
.page:not(.page-template-page_lp) article .t-contact h3, .single article .contents2-item h3, .single article .contents1-item h3, .single article .contents3-item h3,
.single article .contents4-item h3, .single article .contents6-item h3, .single article .stepbar1 h3, .single article .stepbar2 h3, .single article .stepbar3 h3, .single article .menu-list-item h3,
.single article .t-contact h3 {
  margin-bottom: 0.5em;
  background: inherit;
  color: inherit;
  padding: initial;
}
.page:not(.page-template-page_lp) article .contents3-item.img-left-list li .contents3-item-r, .single article .contents3-item.img-left-list li .contents3-item-r {
  padding: 0 0 0 2em;
  width: 100%;
  justify-content: space-between;
}
.page:not(.page-template-page_lp) article .contents3-item.img-right-list li .contents3-item-r, .single article .contents3-item.img-right-list li .contents3-item-r {
  padding: 0 2em 0 0;
  width: 100%;
  justify-content: space-between;
}
.page:not(.page-template-page_lp) article .contents4-item-bottomList, .single article .contents4-item-bottomList {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.page:not(.page-template-page_lp) article .contents5 .content, .single article .contents5 .content {
  width: 100%;
  padding: 0 30px;
}
.page:not(.page-template-page_lp) article .contents5 .content .contents5-num, .single article .contents5 .content .contents5-num {
  left: 30px;
}
.page:not(.page-template-page_lp) article .contents5-3 > p, .page:not(.page-template-page_lp) article .contents5 > p, .page:not(.page-template-page_lp) article .contents5-2 > p, .page:not(.page-template-page_lp) article .t-contact > p, .single article .contents5-3 > p, .single article .contents5 > p, .single article .contents5-2 > p, .single article .t-contact > p {
  display: none;
}
.page:not(.page-template-page_lp) article .contents5-3 h2, .page:not(.page-template-page_lp) article .contents5 h2, .page:not(.page-template-page_lp) article .contents5-2 h2, .page:not(.page-template-page_lp) article .t-contact h2, .single article .contents5-3 h2, .single article .contents5 h2, .single article .contents5-2 h2, .single article .t-contact h2 {
  background-color: initial;
  padding: 0;
  border: 0px;
}
.page:not(.page-template-page_lp) article .contents5-3 h2::before, .page:not(.page-template-page_lp) article .contents5 h2::before, .page:not(.page-template-page_lp) article .contents5-2 h2::before, .page:not(.page-template-page_lp) article .t-contact h2::before, .single article .contents5-3 h2::before, .single article .contents5 h2::before, .single article .contents5-2 h2::before, .single article .t-contact h2::before {
  content: none;
}
.page:not(.page-template-page_lp) article .contents5-3 h2::after, .page:not(.page-template-page_lp) article .contents5 h2::after, .page:not(.page-template-page_lp) article .contents5-2 h2::after, .page:not(.page-template-page_lp) article .t-contact h2::after, .single article .contents5-3 h2::after, .single article .contents5 h2::after, .single article .contents5-2 h2::after, .single article .t-contact h2::after {
  content: none;
}
.page:not(.page-template-page_lp) article .contents5-2.right .contents5-2-txtbox, .page:not(.page-template-page_lp) article .contents5-2.left .contents5-2-txtbox, .single article .contents5-2.right .contents5-2-txtbox, .single article .contents5-2.left .contents5-2-txtbox {
  padding-left: 15px;
  padding-right: 15px;
}
@media screen and (min-width: 768px) {
  .page:not(.page-template-page_lp) article .contents5-2.right .contents5-2-txtbox, .page:not(.page-template-page_lp) article .contents5-2.left .contents5-2-txtbox, .single article .contents5-2.right .contents5-2-txtbox, .single article .contents5-2.left .contents5-2-txtbox {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.page:not(.page-template-page_lp) article .stepbar3 .stepbarwrap .steptitle .stepcircle span, .single article .stepbar3 .stepbarwrap .steptitle .stepcircle span {
  top: 0.7em;
}
.page:not(.page-template-page_lp) article .c-linklist, .single article .c-linklist {
  margin: 0;
  padding: 0;
  list-style-type: none;
  margin-bottom: 3em;
}
.page:not(.page-template-page_lp) article .toggle_contents.toggle_color .toggle_title, .single article .toggle_contents.toggle_color .toggle_title {
  color: #fff;
}
.page:not(.page-template-page_lp) article .toggle_contents h3, .single article .toggle_contents h3 {
  background-color: inherit;
  border-left: 0px;
}
.page:not(.page-template-page_lp) article .pageItem.list, .single article .pageItem.list {
  line-height: 1.8;
  margin: 0;
  padding: 0;
  list-style-type: none;
  position: relative;
  padding: 1em 2em;
  background: rgba(237, 242, 245, 0.3);
  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 #D8B3AE;
}
.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 #D8B3AE;
  border-bottom: 2px solid #D8B3AE;
}
.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 #D8B3AE;
  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: 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(237, 242, 245, 0.5);
  border-radius: 5px;
  padding: 1.5rem;
}
.page-Boxcontent .Boxcontent-inner .imgtxt-txt-mida {
  color: #FBEEEE;
  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: 0.5rem;
  background-color: #B89D8E;
  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: #FBEEEE;
  border-bottom: 1px solid #FBEEEE;
  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: #FBEEEE;
  margin: 1em auto auto auto;
}
.single .entry-title.bgcolor {
  text-align: left;
  padding: 0.5em 1em;
  background-color: #EDF2F5;
  margin: 0em 0 2em 0;
}
.single .entry-title.bgcolor:after {
  content: none;
}
.single .eyecatch {
  margin: auto auto 2em auto;
  border-radius: clamp(30px, 21.176px + 1.838vw, 40px);
}
.single.single-news .eyecatch {
  display: none;
  margin: 0 auto;
}
.single .entry-meta {
  border-top: 1px dotted #ccc;
  border-bottom: 1px dotted #ccc;
  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 #ccc;
  }
  .r-tb td:last-child {
    border-bottom: solid 0px #ccc;
  }
}

.eyecatch-container img {
  margin: auto;
}

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

/*関連リンク*/
.single article .page-linkBox {
  border: 1px solid #FBEEEE;
  margin: 4em 0;
  position: relative;
}
.single article .page-linkBox h4 {
  background: #FBEEEE;
  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(251, 238, 238, 0.4);
  border: 3px solid #fbeeee;
  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: #B89D8E;
}

/* 表示／非表示トグル */
#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: #4E4E4E;
}

/* マウスオーバー時 */
#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: #b89d8e;
}

/* 親の目次の番号 */
#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: #D8B3AE;
    font-weight: 600;
    font-size: 120%;
  }
  #table-of-contents a.active:before, #table-of-contents a:hover:before {
    background-color: #D8B3AE;
  }
  .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: #FBEEEE;
}
.summary-list .eyecatch {
  width: 120px;
  border-radius: clamp(20px, 11.176px + 1.838vw, 30px);
}
@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;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .post-nav {
    gap: 0px;
    flex-wrap: nowrap;
  }
}

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

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

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

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

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

.nav-prev-title:before {
  content: "< 前の記事";
  display: block;
  font-size: 12px;
  color: #7A9EBB;
  background-color: #fff;
  border: 1px solid #7A9EBB;
  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: #7A9EBB;
  background-color: #fff;
  border: 1px solid #7A9EBB;
  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 #FBEEEE;
}
.sitemap-wrap .wp-block-group ul li ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  margin: 1em 0;
}
.sitemap-wrap .wp-block-group ul li + li {
  margin-top: 10px;
}

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

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

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

/*定義リスト*/
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 #B89D8E;
  color: #B89D8E;
  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 #ccc;
  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 {
    padding-left: 10px;
  }
}

/* sidebanner2 */
.sideban2 {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 20;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
@media screen and (max-width: 1023px) {
  .sideban2 {
    bottom: -60px;
    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: 30%;
    right: -60px;
    width: 60px;
    flex-wrap: nowrap;
    flex-direction: column;
    gap: 8px;
    transition: 0.5s ease-in;
  }
  .sideban2.scroll-in {
    right: 0;
  }
}
.sideban2 a {
  color: #fff;
  padding: 8px 0;
  letter-spacing: 2px;
}
@media screen and (min-width: 1024px) {
  .sideban2 a {
    writing-mode: vertical-rl;
    padding: 16px 8px;
    text-orientation: upright;
    align-items: center;
    letter-spacing: 3px;
  }
}
.sideban2 a.sideban-tel {
  width: 100%;
  display: flex;
  justify-content: center;
  font-size: clamp(16px, 31.059px + -1.471vw, 24px);
  font-weight: bold;
  background-color: #B89D8E;
}
@media screen and (min-width: 1024px) {
  .sideban2 a.sideban-tel {
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
  }
}
.sideban2 a.sideban-tel img {
  margin-right: 5px;
}
@media screen and (min-width: 1024px) {
  .sideban2 a.sideban-tel img {
    width: 20px;
    margin-bottom: 8px;
    margin-right: 0;
  }
  .sideban2 a.sideban-tel span {
    text-orientation: sideways;
    position: relative;
    left: 1px;
    margin: 1px 0 0px 0;
  }
}
.sideban2 a.sideban-web {
  width: 50%;
  font-size: clamp(14px, 21.529px + -0.735vw, 18px);
  display: flex;
  justify-content: center;
  gap: 10px;
  font-weight: bold;
  background-color: white;
}
@media screen and (min-width: 1024px) {
  .sideban2 a.sideban-web {
    width: 100%;
  }
  .sideban2 a.sideban-web img {
    width: 20px;
  }
  .sideban2 a.sideban-web:hover {
    background-color: rgb(250.0285714286, 233.8714285714, 233.8714285714);
  }
}
.sideban2 a.sideban-line {
  width: 50%;
  display: flex;
  justify-content: center;
  gap: 10px;
  font-size: clamp(14px, 21.529px + -0.735vw, 18px);
  font-weight: bold;
  background-color: #00B915;
}
@media screen and (min-width: 1024px) {
  .sideban2 a.sideban-line {
    width: 100%;
  }
  .sideban2 a.sideban-line img {
    width: 20px;
  }
  .sideban2 a.sideban-line:hover {
    background-color: rgb(0, 134, 15.2108108108);
  }
}

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

.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 #ccc;
}
@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: #4E4E4E;
  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: #B89D8E;
  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: #FBEEEE;
  display: block;
}
.contact-item-wrap .contact-item-td {
  flex-grow: 1;
}
.contact-item-wrap .contact-item-td p {
  display: flex;
  flex-direction: column;
  margin: 0;
}
.contact-item-wrap textarea,
.contact-item-wrap select,
.contact-item-wrap input[type=tel],
.contact-item-wrap input[type=email],
.contact-item-wrap input[type=text],
.contact-item-wrap input[type=button],
.contact-item-wrap input[type=reset],
.contact-item-wrap input[type=search],
.contact-item-wrap input[type=password] {
  width: 100%;
}

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

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

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

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

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

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

.radius {
  border-radius: 10px;
}

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

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

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

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

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

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

.txtbr {
  display: inline-block;
}

/* simple */
.mv-text-wrap {
  width: 100%;
  max-width: 1200px;
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 0px;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .mv-text-wrap {
    padding: 0 32px;
  }
  .mv-text-wrap .mv-txt {
    max-width: 263px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .mv-text-wrap .mv-txt {
    padding: 0 54px;
    max-width: 700px;
  }
}

#fv_outer {
  position: relative;
}
#fv_outer:after {
  content: "";
  background-image: linear-gradient(0deg, #fbeeee 10%, transparent);
  width: 100%;
  height: 150px;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
}

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

.mv-wave {
  position: absolute;
  top: -1px;
  left: 0;
  z-index: 2;
}

/* clinic */
.sns-iframe {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}
.sns-iframe .movie_iframe {
  height: 300px;
  width: auto;
}
.sns-iframe > iframe {
  flex-shrink: 0;
  max-width: 500px;
}
@media screen and (max-width: 1023px) {
  .sns-iframe {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  .sns-iframe .movie_iframe {
    flex-shrink: 0;
    width: 100%;
    height: auto;
  }
  .sns-iframe > iframe {
    max-width: 500px;
  }
}

#message {
  /* overflow-x: hidden;*/
  margin-bottom: clamp(55px, 41.765px + 2.757vw, 70px);
  margin-top: clamp(55px, 32.941px + 4.596vw, 80px);
}
#message h2 {
  margin-bottom: clamp(34px, -4.824px + 8.088vw, 78px);
}
#message .lead {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  line-height: 1.5;
  font-size: clamp(20px, 18.235px + 0.368vw, 22px);
}
#message .column {
  width: 50%;
}
#message .message-1, #message .message-2 {
  display: flex;
  justify-content: space-between;
  margin: auto;
}
#message .message-1 .column-outside-right, #message .message-2 .column-outside-right {
  flex: 1;
  margin-right: calc(50% - 50vw);
  margin-left: 135px;
}
#message .message-1 .column-outside-right img, #message .message-2 .column-outside-right img {
  width: 100%;
  border-top-left-radius: 300px;
  border-bottom-left-radius: 300px;
  -o-object-position: left;
     object-position: left;
}
#message .message-1 .column-outside-left, #message .message-2 .column-outside-left {
  flex: 1;
  margin-left: calc(50% - 50vw);
  margin-right: 135px;
}
#message .message-1 .column-outside-left img, #message .message-2 .column-outside-left img {
  width: 100%;
  border-top-right-radius: 300px;
  border-bottom-right-radius: 300px;
  -o-object-position: center;
     object-position: center;
}
#message .message-1 img, #message .message-2 img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#message .reverse {
  flex-direction: row-reverse;
}
#message .message-2 {
  margin-top: 100px;
}
#message .lead-block {
  border-left: 1px solid #B89D8E;
  padding-left: 1rem;
}
#message .message-sp .mes-img1 {
  width: 100%;
  margin-left: 20%;
  margin-bottom: 40px;
  border-top-left-radius: 300px;
  border-bottom-left-radius: 300px;
}
#message .message-sp .mes-img2 {
  width: 80%;
  margin-left: auto;
  margin-right: 20%;
  display: block;
  margin-bottom: 40px;
  margin-top: 32px;
  border-top-right-radius: 300px;
  border-bottom-right-radius: 300px;
}
#message .readmore-text {
  max-height: 15em;
  overflow: hidden;
  position: relative;
  transition: max-height 0.6s ease-in-out;
  margin-bottom: 24px;
}
#message .readmore-text:after {
  content: "";
  display: block;
  width: 100%;
  height: 50px;
  box-shadow: inset 0 -50px 30px rgba(255, 255, 255, 0.9);
  position: absolute;
  z-index: 2;
  top: 14rem;
  left: 0;
  opacity: 1;
}
#message button.readmore-toggle {
  text-align: center;
  margin-inline: auto;
  background-color: #B89D8E;
  display: block;
  color: #fff;
  padding: 8px 30px;
  border-radius: 50px;
}
#message .readmore-box.open .readmore-text {
  max-height: 500em;
}
#message .readmore-box.open .readmore-text::after {
  opacity: 0;
}
#message .link-box-center {
  margin-top: clamp(40px, 22.353px + 3.676vw, 60px);
}

#certified {
  overflow-x: hidden;
  padding-bottom: 240px;
  background-color: #F9F7F3;
  background-image: url(../images/toppage/sec-wave3.svg);
  background-position: bottom center;
  background-repeat: no-repeat;
}
#certified h2 {
  font-size: clamp(16px, 3.647px + 2.574vw, 30px);
}
#certified h2:after {
  content: "— 認定施設基準に適合しています —";
  display: block;
  font-size: clamp(14px, 12.235px + 0.368vw, 16px);
  margin-top: 8px;
}
#certified h2::before {
  font-size: clamp(32px, -11.235px + 9.007vw, 81px);
}
@media screen and (max-width: 767px) {
  #certified {
    background-image: url(../images/toppage/sec-wave3-sp.svg);
    padding-bottom: 140px;
    background-size: 100%;
  }
}
#certified .certified-block {
  max-width: 950px;
  margin-inline: auto;
  background-color: #fff;
  border-radius: 30px;
  padding: 24px 40px;
}
@media screen and (max-width: 767px) {
  #certified .certified-block {
    padding: 24px 24px;
  }
}
#certified .certified-block:not(:last-child) {
  margin-bottom: clamp(24px, 18.706px + 1.103vw, 30px);
}
#certified h3 {
  color: #B89D8E;
  text-align: center;
  font-size: 20px;
  margin-bottom: 16px;
}
#certified ul {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 30px;
}
@media screen and (max-width: 767px) {
  #certified ul {
    gap: 8px;
  }
}
#certified ul li {
  position: relative;
  padding-left: 32px;
}
#certified ul li::before {
  content: "";
  display: block;
  background-image: url(../images/toppage/icon-check.svg);
  width: 19px;
  height: 19px;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 2px;
  z-index: 0;
}
#certified img.leaf {
  position: absolute;
  bottom: -78px;
  right: -24%;
}
#certified .content {
  position: relative;
}

#features {
  background-color: #EDF2F5;
  position: relative;
  padding-bottom: clamp(90px, 37.059px + 11.029vw, 150px);
}
@media screen and (max-width: 767px) {
  #features {
    padding-top: 30px !important;
  }
}
#features h2 {
  margin-bottom: clamp(40px, 22.353px + 3.676vw, 60px);
}
@media screen and (min-width: 768px) {
  #features .lead {
    text-align: center;
  }
}
#features h3 {
  font-size: clamp(22px, 18.471px + 0.735vw, 26px);
  margin-bottom: 24px;
}
#features .accent {
  color: #B89D8E;
  font-size: clamp(25px, 24.118px + 0.184vw, 26px);
}
#features .features-item {
  position: relative;
  z-index: 2;
  margin-top: clamp(60px, 33.529px + 5.515vw, 90px);
}
@media screen and (min-width: 1024px) {
  #features .features-item {
    display: flex;
    gap: 70px;
  }
  #features .features-item.reverse {
    flex-direction: row-reverse;
  }
}
#features .features-item .fea-img {
  border-radius: clamp(30px, 12.353px + 3.676vw, 50px);
  flex-shrink: 0;
}
#features .features-item .fea-no {
  margin: 24px 0 24px 0;
}
@media screen and (max-width: 767px) {
  #features .features-item .fea-no {
    width: 86px;
    margin: 24px 0 16px 0;
  }
}
@media screen and (min-width: 1024px) {
  #features .features-item .fea-no {
    margin: 0 0 24px 0;
  }
}
@media screen and (min-width: 1024px) {
  #features .features-item .features-item-txt {
    width: 385px;
  }
}
#features .sec-wave3 {
  position: absolute;
  z-index: 1;
  left: 0;
  bottom: 0;
  width: 100%;
}
#features .link-box-center {
  margin-top: 32px;
}
#features .sec-blob1 {
  position: absolute;
  top: 450px;
  right: 0;
  z-index: 0;
}
#features .sec-blob2 {
  position: absolute;
  bottom: 400px;
  left: 0;
  z-index: 0;
}

#tmenu h2 {
  margin-bottom: clamp(40px, 22.353px + 3.676vw, 60px);
}
#tmenu h2:before {
  color: #BAC3CC;
}
#tmenu .tmenu-item {
  padding: 45px 0px 45px 50px;
  position: relative;
}
#tmenu .tmenu-item h3 {
  text-align: center;
  font-size: clamp(30px, 22.941px + 1.471vw, 38px);
}
@media screen and (min-width: 1024px) {
  #tmenu .tmenu-item h3 {
    text-align: left;
    writing-mode: vertical-lr;
    text-orientation: upright;
    margin-bottom: 0;
    line-height: 1.3;
    padding: 0 24px 0 0px;
  }
  #tmenu .tmenu-item h3 .menuh3 {
    margin-top: 2rem;
  }
}
#tmenu .tmenu-item h4 {
  font-size: clamp(20px, 18.235px + 0.368vw, 22px);
  margin-bottom: 0;
}
@media screen and (min-width: 1024px) {
  #tmenu .tmenu-item h4 {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  #tmenu .tmenu-item {
    padding: 32px 0px 32px 24px;
  }
}
@media screen and (min-width: 1024px) {
  #tmenu .tmenu-item {
    display: flex;
    padding: 45px 50px 45px 50px;
    gap: 40px;
  }
}
#tmenu .tmenu-item.tmemu-a {
  background-color: #F9F7F3;
  border-top-left-radius: clamp(30px, 12.353px + 3.676vw, 50px);
  border-bottom-left-radius: clamp(30px, 12.353px + 3.676vw, 50px);
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #tmenu .tmenu-item.tmemu-a {
    padding: 45px 50px 45px 50px;
  }
}
@media screen and (max-width: 767px) {
  #tmenu .tmenu-item.tmemu-a {
    padding: 32px 24px 32px 24px;
  }
}
#tmenu .tmenu-item.tmemu-a h3 {
  color: #B89D8E;
  padding: 0 24px 0 24px;
}
@media screen and (max-width: 767px) {
  #tmenu .tmenu-item.tmemu-a h3 {
    padding: 0 0px 0 0px;
  }
}
#tmenu .tmenu-item.tmemu-a ul li span {
  background-color: #B89D8E;
}
#tmenu .tmenu-item.tmemu-a:before {
  content: "";
  background-color: #F9F7F3;
  width: 50vw;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  margin: 0 calc(50% - 50vw);
  z-index: -1;
}
#tmenu .tmenu-item.tmemu-b {
  background-color: #FEF8F8;
  border-top-right-radius: clamp(30px, 12.353px + 3.676vw, 50px);
  border-bottom-right-radius: clamp(30px, 12.353px + 3.676vw, 50px);
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  #tmenu .tmenu-item.tmemu-b {
    padding: 32px 24px 32px 24px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #tmenu .tmenu-item.tmemu-b {
    padding: 45px 50px 45px 50px;
  }
}
#tmenu .tmenu-item.tmemu-b ul li span {
  background-color: #D8B3AE;
}
#tmenu .tmenu-item.tmemu-b:before {
  content: "";
  background-color: #FEF8F8;
  width: 50vw;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  margin: 0 calc(50% - 50vw);
  z-index: -1;
}
#tmenu .tmenu-item.tmemu-b h3 {
  color: #D8B3AE;
  padding: 0 0px;
  line-height: 1.3;
}
#tmenu .tmenu-item.tmemu-c {
  background-color: #EDF2F5;
  border-top-left-radius: clamp(30px, 12.353px + 3.676vw, 50px);
  border-bottom-left-radius: clamp(30px, 12.353px + 3.676vw, 50px);
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  #tmenu .tmenu-item.tmemu-c {
    padding: 45px 50px 45px 50px;
  }
}
@media screen and (max-width: 767px) {
  #tmenu .tmenu-item.tmemu-c {
    padding: 32px 24px 32px 24px;
  }
}
#tmenu .tmenu-item.tmemu-c ul li span {
  background-color: #7A9EBB;
}
#tmenu .tmenu-item.tmemu-c:before {
  content: "";
  background-color: #EDF2F5;
  width: 50vw;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  margin: 0 calc(50% - 50vw);
  z-index: -1;
}
#tmenu .tmenu-item.tmemu-c h3 {
  color: #7A9EBB;
  padding: 0 24px 0 0px;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  #tmenu .tmenu-item.tmemu-c h3 {
    padding: 0 0px 0 0px;
  }
}
#tmenu .tmenu-item .menu-img {
  flex-shrink: 0;
}
#tmenu .tmenu-item .menu-img img {
  border-radius: 30px;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media screen and (min-width: 1024px) {
  #tmenu .tmenu-item ul {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
  }
}
#tmenu .tmenu-item ul li a {
  color: #4E4E4E;
  display: block;
  background-color: #fff;
  border-radius: clamp(16px, 3.647px + 2.574vw, 30px);
  padding: 8px 16px 16px 16px;
  box-shadow: 0 0 8px #e0e0e0;
  opacity: 1;
  transition: 0.5s;
}
@media screen and (max-width: 767px) {
  #tmenu .tmenu-item ul li a:not(:last-child) {
    margin-bottom: 24px;
  }
}
@media screen and (min-width: 768px) {
  #tmenu .tmenu-item ul li a {
    width: 100%;
    padding: 24px;
  }
}
@media screen and (min-width: 1024px) {
  #tmenu .tmenu-item ul li a {
    width: 280px;
  }
  #tmenu .tmenu-item ul li a .menu-pcicon {
    margin: 16px auto 12px auto;
  }
}
#tmenu .tmenu-item ul li a:hover {
  opacity: 0.8;
}
#tmenu .tmenu-item ul li a .menu-pcicon {
  height: clamp(42px, 21.706px + 4.228vw, 65px);
  -o-object-fit: contain;
     object-fit: contain;
}
#tmenu .tmenu-item ul li span {
  font-size: clamp(12px, 10.235px + 0.368vw, 14px);
  text-align: center;
  display: block;
  border-radius: 50px;
  font-weight: 500;
  font-family: "Shippori Mincho";
  color: #fff;
  padding: 4px 0;
  margin-bottom: clamp(8px, 0.941px + 1.471vw, 16px);
}
#tmenu .tmenu-item ul li p {
  font-size: clamp(12px, 10.235px + 0.368vw, 14px);
  margin-bottom: 0;
}
@media screen and (min-width: 1024px) {
  #tmenu .tmenu-item ul li p {
    text-align: center;
  }
}
@media screen and (max-width: 1023px) {
  #tmenu .tmenu-item ul li:not(:last-child) {
    margin-bottom: 16px;
  }
  #tmenu .tmenu-item ul li .menu-item-wrap {
    display: flex;
    gap: 16px;
    justify-content: center;
  }
}

#pickup-menu {
  padding-top: clamp(40px, 77.647px + -3.676vw, 60px);
  padding-bottom: clamp(20px, 11.176px + 1.838vw, 30px);
  background-color: #F9F7F3;
}
#pickup-menu h2 {
  margin-bottom: clamp(40px, 77.647px + -3.676vw, 60px);
}
#pickup-menu h2:before {
  color: #D8B3AE;
}
#pickup-menu h3 {
  font-size: 22px;
  text-align: center;
  margin: 16px 0;
}
#pickup-menu .pup-no {
  position: absolute;
  top: -30px;
  left: -15px;
}
@media screen and (max-width: 767px) {
  #pickup-menu .pup-no {
    width: 66px;
    top: -15px;
    left: -15px;
  }
}
#pickup-menu .pup-img {
  border-radius: 30px;
  width: 100%;
}
#pickup-menu .p-menu-img {
  position: relative;
  flex-shrink: 0;
}
#pickup-menu .p-menu-item {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
}
#pickup-menu .p-menu-item p {
  font-size: 14px;
}
@media screen and (min-width: 1024px) {
  #pickup-menu .p-menu-item {
    margin-top: 40px;
  }
  #pickup-menu .p-menu-item.item5 {
    margin-bottom: 0;
    flex-direction: row;
    gap: 40px;
  }
  #pickup-menu .p-menu-item.item5 h3 {
    text-align: left;
    margin-top: 0;
  }
}
@media screen and (min-width: 768px) {
  #pickup-menu .p-menu-wrap {
    align-items: stretch;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}
@media screen and (min-width: 1024px) {
  #pickup-menu .p-menu-wrap {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
@media screen and (min-width: 768px) {
  #pickup-menu .p-menu-txt {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
  }
  #pickup-menu .p-menu-txt p {
    flex-grow: 1;
  }
  #pickup-menu .p-menu-txt .link-box-right {
    margin-top: auto;
  }
}

.sec-wave-b {
  transform: rotate(180deg);
}

#access {
  margin-bottom: clamp(60px, 60px + 0vw, 60px);
}
#access .access-logo {
  margin-bottom: 40px;
  margin-inline: auto;
}
@media screen and (min-width: 1024px) {
  #access .access-wrap {
    display: flex;
    gap: 60px;
  }
}
#access iframe {
  border-radius: 30px;
  width: 100%;
  height: 200px;
  margin-bottom: 24px;
  margin-top: 24px;
}
@media screen and (min-width: 1024px) {
  #access iframe {
    width: 475px;
    height: 296px;
    margin-bottom: 40px;
    margin-top: 0;
  }
}

section#tmenu, .message-sp {
  overflow-x: hidden;
}

/*hNavi4*/
.hNavi4.header-outer {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
}
.hNavi4 .header-inner {
  padding: 1.5em 2em;
  position: fixed;
  top: 0;
  z-index: 10;
  height: 100vh;
  left: 0;
  width: 100%;
  transition: all 600ms ease-out;
  opacity: 0;
  /* transform:translateZ(0) translateX(100%); */
  overflow: auto;
  pointer-events: none;
}
@media screen and (min-width: 1024px) {
  .hNavi4 .header-inner {
    padding: 3em 3em;
  }
}
.hNavi4 #menu-headnav > li {
  margin-bottom: 1em;
}
@media screen and (min-width: 1024px) {
  .hNavi4 #menu-headnav > li {
    margin-bottom: 0;
  }
}
.hNavi4 #menu-headnav > li.js_fire.menu-item-has-children {
  position: relative;
}
.hNavi4 #menu-headnav > li.js_fire.menu-item-has-children:after {
  content: "";
  background-image: url(../images/icon/icon_minus-light.svg);
  display: block;
  width: 25px;
  height: 25px;
  background-size: cover;
  position: absolute;
  right: 0;
  top: 0.2rem;
}
.hNavi4 #menu-headnav > li.menu-item-has-children {
  position: relative;
}
@media screen and (max-width: 1023px) {
  .hNavi4 #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;
  }
}
.hNavi4 #menu-headnav > li > a {
  font-size: clamp(20px, 23.765px + -0.368vw, 22px);
  color: #4E4E4E;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
  position: relative;
  font-weight: 600;
  display: block;
  padding-left: 24px;
}
@media screen and (min-width: 1024px) {
  .hNavi4 #menu-headnav > li > a:hover {
    color: #D8B3AE;
  }
}
@media screen and (min-width: 1024px) {
  .hNavi4 #menu-headnav > li > a {
    padding-top: 8px;
    padding-bottom: 8px;
  }
}
.hNavi4 #menu-headnav > li > a:before {
  content: "";
  position: absolute;
  top: 1rem;
  left: 0;
  transform: rotate(45deg);
  width: 8px;
  height: 8px;
  border-top: 2px solid #D8B3AE;
  border-right: 2px solid #D8B3AE;
}
@media screen and (min-width: 1024px) {
  .hNavi4 #menu-headnav > li > a:before {
    top: 1.5rem;
  }
}
.hNavi4 #menu-headnav > li > .sub-menu {
  display: none;
  padding: 0.5em 0em;
  font-size: clamp(16px, 14.235px + 0.368vw, 18px);
}
.hNavi4 #menu-headnav > li > .sub-menu li:not(:last-child) {
  margin-bottom: 0.5em;
}

@media screen and (max-width: 1023px) {
  #branding .logo {
    margin-top: 16px;
    margin-left: 16px;
  }
}

.js_humburgerOpen .hNavi4 .header-inner {
  background: #F9F7F3;
  width: 100%;
  opacity: 1;
  pointer-events: visible;
}

@media screen and (min-width: 1024px) {
  .pcheader-inner-cont {
    display: flex;
    gap: 100px;
    height: 100%;
    justify-content: center;
  }
}
.pcheader-inner-cont .header-inner-img {
  flex-grow: 1;
  background: url(../images/menu-img.jpg);
  background-size: cover;
  border-radius: 50px;
  position: relative;
}
.pcheader-inner-cont .header-inner-img .header-inner-img-txt {
  font-size: 70px;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
  color: #FFFFFF;
  line-height: 1.1;
  position: absolute;
  bottom: 8px;
  left: 18px;
}
@media screen and (min-width: 1024px) {
  .pcheader-inner-cont nav#menu {
    width: 40%;
  }
}

@media screen and (max-width: 1023px) {
  .menu-headnav-container {
    margin-top: 60px;
  }
}

.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: #4E4E4E;
  text-align: center;
}

.el_humburger {
  display: block;
  right: 0;
  top: 0;
  padding-top: 20px;
  width: 70px;
  height: 70px;
  transition: 0.5s;
}

.el_humburger_wrapper {
  margin-bottom: 5px;
  width: 42px;
  display: inline-block;
}

@media screen and (min-width: 1024px) {
  .js_humburgerOpen .el_humburger {
    right: 18px;
  }
}

.el_humburger_text {
  font-size: 12px;
  letter-spacing: 0.1em;
  font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", Meiryo, メイリオ, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "Yu Gothic", YuGothic, "MS PGothic", Osaka, arial, sans-serif;
}

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

.el_humburger_text.el_humburger_text__close {
  display: none;
}

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

.el_humburger_text {
  font-size: 10px;
  padding-top: 2px;
}

.el_humburger_text svg path {
  transition: all 200ms cubic-bezier(0.16, 0.52, 0.25, 1);
  fill: #4E4E4E;
}

.js_humburgerOpen .el_humburger_text svg path {
  fill: #4E4E4E;
}

.el_humburger span.el_humburger_bar {
  display: block;
  width: 100%;
  margin: 0 auto 9px;
  height: 2px;
  background: #4E4E4E;
  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: #4E4E4E;
}

.el_humburger span.el_humburger_bar {
  left: 0;
  top: 0;
  background: #4E4E4E;
}

.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: #4E4E4E;
}

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

/* PC用 */
@media screen and (min-width: 1024px) {
  header#header {
    padding-top: 16px;
    padding-right: 80px;
    padding-left: 40px;
    width: 100%;
    max-width: 1920px;
    margin-inline: auto;
  }
}
@media screen and (max-width: 1023px) {
  header#header .header-content {
    padding-top: 10px;
    padding-bottom: 20px;
  }
}
@media screen and (min-width: 1024px) {
  header#header .header-content {
    width: 100%;
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }
}

/*hNavi4 end*/
nav#menu-pc {
  width: 100%;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 1023px) {
  nav#menu-pc {
    display: none;
  }
}
nav#menu-pc .menu li a {
  position: relative;
  display: inline-block;
  padding-bottom: 12px; /* 下線と文字の間隔 */
  text-decoration: none;
  height: 50px;
  display: grid;
  align-items: center;
}
nav#menu-pc .menu li:not(.menu-item-249) a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #D8B3AE; /* 下線の色 */
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
nav#menu-pc .menu li:not(.menu-item-249):hover a::after {
  transform: scaleX(1);
}
nav#menu-pc .menu li.current-menu-item a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #D8B3AE; /* 下線の色 */
  transform: scaleX(1);
}
nav#menu-pc .menu li.current-menu-parent .sub-menu .current-menu-item a::after,
nav#menu-pc .menu li.menu-item-has-children .sub-menu .menu-item:hover a::after {
  height: 0px;
  transform: scaleX(0);
}
nav#menu-pc .menu li.menu-item-has-children > ul a {
  height: auto;
  font-size: 14px;
}

.home .menu li.current-menu-item a::after {
  transform: scaleX(0) !important;
}

ul#menu-headnav-1 {
  width: 100%;
  max-width: 1170px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  padding-top: 24px;
  padding-bottom: 30px;
  justify-content: center;
}
@media screen and (max-width: 1023px) {
  ul#menu-headnav-1 {
    display: none;
  }
}
ul#menu-headnav-1 > li {
  padding: 0 22px;
  line-height: 1.4;
  position: relative;
}
@media screen and (min-width: 1280px) {
  ul#menu-headnav-1 > li {
    width: 140px;
    padding: 0px;
  }
}
ul#menu-headnav-1 > li.menu-item-has-children .sub-menu {
  display: none;
}
ul#menu-headnav-1 > li.menu-item-has-children .sub-menu a {
  padding: 10px;
  display: block;
  text-align: center;
  background-color: #fff;
  color: #4E4E4E;
}
ul#menu-headnav-1 > li.menu-item-has-children .sub-menu a:hover {
  background-color: #fbeeee;
  color: #4E4E4E;
}
ul#menu-headnav-1 > li.menu-item-has-children .sub-menu li:not(:last-child) {
  border-bottom: 1px solid #eee;
}
ul#menu-headnav-1 > li > a {
  color: #4E4E4E;
  text-align: center;
  display: block;
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
}
ul#menu-headnav-1 > li:hover {
  cursor: pointer;
}
ul#menu-headnav-1 > li:not(:nth-child(n+9)):after {
  content: "";
  border-right: 1px solid #E2E2E2;
  height: 45px;
  position: absolute;
  top: 0;
  right: 0;
}

@media (max-width: 768px) {
  .menu-allow-br br {
    display: none;
  }
}
.header-inner .menu-allow-br br {
  display: none;
}

.nav-tel {
  font-size: 11px;
  font-weight: bold;
  line-height: 1.2;
}
.nav-tel span {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 39px;
  color: #D8B3AE;
  display: block;
  letter-spacing: 2px;
}

.nav-hour {
  font-size: 12px;
  line-height: 1.5;
  border-left: 1px solid #E2E2E2;
  padding-left: 16px;
}
.nav-hour span {
  background-color: #D8B3AE;
  width: 60px;
  display: inline-block;
  color: #FFFFFF;
  text-align: center;
  font-weight: bold;
  padding: 5px 0 2px 0;
  line-height: 1;
  border-radius: 4px;
  margin-right: 10px;
}
.nav-hour li:not(:last-child) {
  margin-bottom: 4px;
}

div#site-title {
  display: grid;
  align-items: center;
}

@media screen and (max-width: 1023px) {
  .nav-tel, .nav-fb, .nav-hour {
    display: none;
  }
}

#menu-headnav-1 .is-pcmenu {
  display: none;
}

a.spnav-fb {
  margin-top: 40px;
  float: right;
}

@media screen and (min-width: 1024px) {
  ul.sub-menu {
    position: absolute;
    width: 100%;
    top: 50px;
    z-index: 2;
  }
}
@media screen and (min-width: 1024px) {
  .pcheader-inner-cont .sub-menu {
    display: block !important; /* ← JSでdisplay:noneされないように */
    position: static; /* 必要に応じて調整 */
    visibility: visible;
    opacity: 1;
  }
}
@media screen and (max-width: 1023px) {
  li.menu-item-has-children > a {
    pointer-events: none;
  }
  .hNavi4 #menu-headnav > li > .sub-menu {
    margin-left: 32px;
    margin-top: 16px;
    position: relative;
  }
  .hNavi4 #menu-headnav > li > .sub-menu a {
    color: #4E4E4E;
    font-size: 18px;
  }
  .hNavi4 #menu-headnav > li > .sub-menu a:before {
    content: "- ";
    color: #B89D8E;
  }
}
@media screen and (min-width: 1024px) {
  .menu-item-249 > a:hover {
    color: #4E4E4E !important;
  }
  .hNavi4 #menu-headnav > li > .sub-menu {
    margin-left: 32px;
    position: relative;
    top: 0;
  }
  .hNavi4 #menu-headnav > li > .sub-menu a {
    color: #4E4E4E;
    font-size: 16px;
    transition: 0.5s;
  }
  .hNavi4 #menu-headnav > li > .sub-menu a:before {
    content: "- ";
    color: #B89D8E;
  }
  .hNavi4 #menu-headnav > li > .sub-menu a:hover {
    color: #D8B3AE;
  }
}
@media screen and (min-width: 1024px) {
  #news-blog {
    display: flex;
    gap: 50px;
  }
}
#news-blog h2.h2--center {
  font-size: clamp(26px, 22.471px + 0.735vw, 30px);
  margin-bottom: 2rem;
  padding-left: 0;
  padding-right: 0;
}
#news-blog h2.h2--center:after {
  font-size: 14px;
}
#news-blog .link-arrow {
  font-size: 14px;
}
#news-blog #news-block {
  background-color: #fff;
  border-radius: 30px;
  padding: 20px 20px;
}
#news-blog #news-block a {
  color: #4E4E4E;
}
#news-blog #news-block a:hover {
  color: #A6C0D0;
}
@media screen and (min-width: 1024px) {
  #news-blog #news-block {
    padding: 30px 34px;
    width: 50%;
  }
}
#news-blog #news-block .post-list {
  width: 100%;
}
#news-blog #news-block .post-list > li h3 {
  margin: 0;
}
#news-blog #blog-block {
  background-color: #fff;
  border-radius: 30px;
  padding: 30px 34px;
  position: relative;
}
@media screen and (max-width: 1023px) {
  #news-blog #blog-block {
    margin-top: 30px;
    padding: 20px 20px;
  }
}
@media screen and (min-width: 1024px) {
  #news-blog #blog-block {
    width: 50%;
  }
}
#news-blog #blog-block .wp-post-image {
  border-radius: 20px;
  width: 120px;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 1024px) {
  #news-blog #blog-block .wp-post-image {
    width: 170px;
    height: 113px;
  }
}
#news-blog #blog-block .blog-list {
  margin-bottom: 40px;
}
#news-blog #blog-block .blog-list li:not(:last-child) {
  margin-bottom: 16px;
}
#news-blog #blog-block .blog-list li .post-list-box {
  display: flex;
  gap: 20px;
}
#news-blog #blog-block .blog-list li .post-list-box picture {
  flex-shrink: 0;
}
#news-blog #blog-block .blog-list li a {
  color: #4E4E4E;
  opacity: 1;
  transition: 0.5s;
}
#news-blog #blog-block .blog-list li a .post-list-box-txt .cat {
  background: #B89D8E;
  font-weight: bold;
  color: #fff;
  font-size: 12px;
  padding: 4px 16px;
}
#news-blog #blog-block .blog-list li a .post-list-box-txt .time {
  font-size: 14px;
  color: #9B9B9B;
  text-align: right;
}
#news-blog #blog-block .blog-list li a .post-list-box-txt h3 {
  font-size: 16px;
  font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", Meiryo, メイリオ, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "Yu Gothic", YuGothic, "MS PGothic", Osaka, arial, sans-serif;
  font-weight: 400;
  margin-bottom: 8px;
  margin-top: 8px;
  line-height: 1.6;
}
@media screen and (max-width: 1023px) {
  #news-blog #blog-block .blog-list li a .post-list-box-txt h3 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-height: 1.4;
  }
}
#news-blog #blog-block .blog-list li a:hover {
  opacity: 0.7;
}

.post-list-box-txt {
  flex-grow: 1;
}

#news-block .post-list > li:first-child {
  padding-top: 0;
}

#news-block .post-list > li {
  padding: 1rem 0;
}
@media screen and (max-width: 767px) {
  #news-block .post-list > li {
    flex-direction: column;
  }
}
#news-block .post-list > li .time {
  font-size: 14px;
}
#news-block .post-list > li h3 {
  font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", Meiryo, メイリオ, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "Yu Gothic", YuGothic, "MS PGothic", Osaka, arial, sans-serif;
}
#news-block .post-list > li:first-child {
  padding-top: 0;
}

.news-blog-bg {
  background-color: #FBEEEE;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .news-blog-bg {
    padding-bottom: 230px;
    background-image: url(../images/toppage/sec1-bg.svg);
    background-repeat: no-repeat;
    background-position: bottom 30px right 85px;
  }
}
.news-blog-bg .sec-wave1 {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
}/*# sourceMappingURL=all.css.map */