@charset "UTF-8";
:root {
  /* .noto-sans-jp-<uniquifier> {
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
  } */
  --font_base: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, sans-serif;
  /* Noto Serif JP */
  /* .noto-serif-jp-<uniquifier> {
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
  } */
  --font_jp: "Noto Serif JP", serif;
  /* .cardo-bold {
    font-family: "Cardo", serif;
    font-weight: 700;
    font-style: normal;
  } */
  --font_en: "Cardo", serif;
  --navi-border-color: #fff;
  --navi-text-color: #fff;
  --svg-stroke: #fff;
  --menu-btn: #fff;
  --navi-font: "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, sans-serif;
  --color_primary: var(--wp--preset--color--primary);
}

body {
  margin: 0;
  padding: 0;
  line-height: 2;
  font-family: var(--font_base);
}

/* リセットCSS - :where()で詳細度を0にして上書きしやすくする */
/* margin は削除 - WordPress ブロックエディタの論理プロパティ (margin-block-start) と競合するため */
:where(div,
object,
iframe,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
img,
ins,
kbd,
q,
samp,
sub,
sup,
var,
b,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
caption,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
mark,
audio,
video,
a) {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  background: transparent;
  font-size: 100%;
  font: inherit;
}

:where(span,
small,
em,
time,
i) {
  font-style: normal;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

:where(p,
ul,
ol,
li,
dl,
dt,
dd) {
  -webkit-margin-before: 0;
          margin-block-start: 0;
  -webkit-margin-after: 0;
          margin-block-end: 0;
}

:where(dd) {
  -webkit-margin-start: 0;
          margin-inline-start: 0;
}

a {
  color: inherit;
  text-decoration: none;
  border: medium;
}

:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

sup {
  vertical-align: super;
}

sub {
  vertical-align: sub;
}

legend {
  color: #000;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font_jp);
  font-weight: 500;
  line-height: 1.7;
}

[lang=en] {
  font-family: var(--font_en);
}

:where(main,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section) {
  display: block;
}

li {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

input,
select {
  vertical-align: middle;
}

abbr[title],
dfn[title] {
  cursor: help;
}

del {
  text-decoration: line-through;
}

ins {
  font-style: oblique;
  text-decoration: none;
}

mark {
  background: transparent;
  font-style: normal;
}

img {
  vertical-align: top;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

th {
  font-weight: normal;
  text-align: left;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-size: inherit;
}

*,
*::before,
*::after {
	    margin: 0;
    padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

::-moz-selection {
  background: #d4dcd6;
}

::selection {
  background: #d4dcd6;
}

img {
  max-width: 100%;
  height: auto;
  -webkit-backface-visibility: hidden;
}

html {
  scroll-behavior: smooth;
}

body,
html {
  height: 100%;
}

.link {
  text-decoration: underline;
}

.link:hover {
  text-decoration: none;
}

.link[target=_blank]::after {
  content: "";
  background: url(../images/share/icon_out.svg) no-repeat center/contain;
  width: 12px;
  height: 10px;
  display: inline-block;
  margin: 0 5px;
}

.no-link {
  pointer-events: none;
}

a[href^=tel] {
  cursor: default;
}

.container {
  margin: 0 auto;
  max-width: 1024px;
  width: 90%;
}

.container.wide {
  max-width: 1200px;
}

.container.narrow {
  max-width: 782px;
}

/*-----------------------------------------------------------
Header
-----------------------------------------------------------*/
.header {
  position: absolute;
  width: 100%;
  z-index: 100;
}

.header.is-fixed {
  position: fixed;
}

@media (max-width: 1024px) {
  .header {
    position: static !important;
  }
}
/*------------
Header01
--------------*/
.header-layout01 {
  background-color: #f2f2f2;
  padding: 10px 20px 10px 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100px;
  width: 100%;
}

.h-logo {
  max-width: 250px;
}

@media (max-width: 1024px) {
  .header-layout01 {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 10px;
    height: 60px;
  }
  .h-logo {
    width: 150px;
  }
  .gnavi {
    display: none;
  }
}
/*------------
Header02
--------------*/
.header-layout02 {
  background-color: #f2f2f2;
  padding: 0 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 120px;
  width: 100%;
}

.header-layout02 .h-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  grid-gap: 20px;
  margin-bottom: 13px;
}

.header-layout02 .h-tel {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 23px;
  font-weight: bold;
}

.header-layout02 .h-tel img {
  margin-right: 5px;
}

.header-layout02 .h-time {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 70px 10px 1fr;
  grid-template-columns: 70px 1fr;
  grid-gap: 5px 10px;
  font-size: 13px;
}

.header-layout02 .h-time dt {
  border: 1px solid #000;
  text-align: center;
  font-size: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-layout02 .btn-icon {
  height: 50px;
  min-width: 150px;
  font-size: 14px;
}

@media (max-width: 1024px) {
  .header-layout02 {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 10px;
    height: 60px;
  }
  .header-layout02 .h-utility {
    display: none;
  }
}
/*------------
Header03
--------------*/
.header-layout03 {
  background-color: #f2f2f2;
  padding: 0 0 0 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100px;
  width: 100%;
}

.header-layout03 .h-utility {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-layout03 .h-utility .btn-mail {
  height: 50px;
  min-width: 150px;
  font-size: 14px;
}

.header-layout03 .h-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 20px;
}

.header-layout03 .h-tel {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 23px;
  font-weight: bold;
}

.header-layout03 .h-tel img {
  margin-right: 5px;
}

.header-layout03 .h-time {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 70px 10px 1fr;
  grid-template-columns: 70px 1fr;
  grid-gap: 5px 10px;
  font-size: 13px;
}

.header-layout03 .h-time dt {
  border: 1px solid #000;
  text-align: center;
  font-size: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-layout03 .h-sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-layout03 .h-sns li + li {
  margin-left: 15px;
}

.header-layout03 .h-sns a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.header-layout03 .h-sns a:hover {
  opacity: 0.5;
}

html.is-open {
  height: 100%;
  overflow: hidden;
}

.menu-btn {
  width: 100px;
  height: 80px;
  position: relative;
  color: #333;
  font-size: 13px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  z-index: 100;
}

.menu-btn-line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 5px 0 7px;
}

.menu-btn-line span {
  display: block;
  background-color: #333;
  width: 41px;
  height: 1px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.menu-btn-line span:nth-of-type(2) {
  margin: 6px 0;
}

.menu-btn.is-open .menu-btn-line span:nth-of-type(1) {
  -webkit-transform: rotate(30deg) translate3d(2px, 5px, 0);
          transform: rotate(30deg) translate3d(2px, 5px, 0);
}

.menu-btn.is-open .menu-btn-line span:nth-of-type(2) {
  opacity: 0;
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
}

.menu-btn.is-open .menu-btn-line span:nth-of-type(3) {
  -webkit-transform: rotate(-30deg) translate3d(4px, -8px, 0);
          transform: rotate(-30deg) translate3d(4px, -8px, 0);
}

@media (max-width: 1024px) {
  .header-layout03 {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 10px;
    height: 60px;
  }
  .header-layout03 .h-utility,
  .header-layout03 .gnavi-drawer {
    display: none;
  }
}
/*------------
Gnavi
--------------*/
/*normal*/
.gnavi-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 25px;
}

.gnavi-list > li > p,
.gnavi-list > li > a {
  display: inline-block;
  font-family: var(--font_jp);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.1em;
}

.gnavi-list .current-menu-parent p,
.gnavi-list [aria-current=page],
.gnavi-list a:hover {
  color: var(--color_primary);
}

/*dropdown*/
.gnavi-list .current-menu-item > a,
.gnavi-list a[href="#"] {
  pointer-events: none;
}

.gnavi-list .menu-item-has-children {
  background: url(../images/share/arrow_down.svg) top 15px right/auto no-repeat;
  padding-right: 15px;
  position: relative;
}

.gnavi-list .menu-item-has-children > a:hover {
  opacity: 0.5;
}

.gnavi-list .menu-item-has-children.is-open .sub-menu {
  pointer-events: auto;
  opacity: 1;
}

.gnavi-list .menu-item-has-children .sub-menu {
  pointer-events: none;
  background-color: #fff;
  border-radius: 5px;
  -webkit-box-shadow: 5px 15px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 5px 15px 20px rgba(0, 0, 0, 0.1);
  padding: 20px;
  font-family: var(--font_jp);
  font-size: 14px;
  position: absolute;
  top: 30px;
  right: 50%;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  min-width: 150px;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  opacity: 0;
  z-index: 5;
}

.gnavi-list .menu-item-has-children .sub-menu::before {
  content: "";
  display: block;
  position: absolute;
  top: -16px;
  left: 0;
  width: 100%;
  height: 16px;
}

.gnavi-list .menu-item-has-children .sub-menu li + li {
  margin-top: 5px;
}

.gnavi-list .menu-item-has-children:last-child .sub-menu {
  right: 0;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

/*drawer*/
.gnavi-drawer {
  pointer-events: none;
  background-color: #f5f5f5;
  position: fixed;
  inset: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  will-change: opacity;
}

.gnavi-drawer.is-open {
  opacity: 1;
  pointer-events: all;
}

.gnavi-drawer-container {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  overflow-y: auto;
}

.gnavi-drawer-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  height: 100%;
}

.gnavi-drawer-right-area {
  width: 50%;
  padding: 100px 5%;
  overflow: auto;
}

.gnavi-drawer-right-area > .item + .item {
  margin-top: 50px;
}

.gnavi-drawer-right-area .item-ttl {
  font-family: var(--font_jp);
  font-size: 16px;
  margin-bottom: 15px;
}

.gnavi-drawer-right-area .item-ttl a {
  text-decoration: underline;
}

.gnavi-drawer-right-area .item-ttl a:hover {
  text-decoration: none;
}

.gnavi-drawer-right-area .time-table {
  max-width: 500px;
}

.gnavi-drawer-right-area .h-bnr {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 15px 1fr 15px 1fr;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 15px;
}

.gnavi-drawer-links {
  display: -ms-grid;
  display: grid;
  grid-gap: 30px;
  font-family: var(--font_jp);
}

.gnavi-drawer-links > li {
  font-size: 16px;
}

.gnavi-drawer-links > li > a:not([href="#"]) {
  text-decoration: underline;
}

.gnavi-drawer-links > li > a:not([href="#"]):hover {
  text-decoration: none;
}

.gnavi-drawer-links > li > a[href="#"] {
  cursor: auto;
  pointer-events: none;
  text-decoration: underline;
}

.gnavi-drawer-links > li > ul {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 5px 20px;
  margin-top: 15px;
  font-size: 14px;
}

.gnavi-drawer-links > li > ul > li > a:hover {
  text-decoration: underline;
}

.gnavi-drawer-left-area {
  background: url(../images/share/gnavi-drawer_bg.jpg) no-repeat center/cover;
  width: 50%;
  height: 100%;
  padding: 0 0 0 5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  inset: 0;
}

.gnavi-drawer-utility {
  position: absolute;
  bottom: 70px;
}

.gnavi-drawer-logo {
  margin-bottom: 30px;
}

.gnavi-drawer-address {
  color: #fff;
  font-size: 13px;
}

/*-----------------------------------------------------------
Footer
-----------------------------------------------------------*/
.footer {
  position: relative;
  margin-top: auto;
}

.footer-layout01 {
  background: #F3F4F6;
  padding: 100px 0;
}

.footer-layout01 .l-wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 45% 5% 1fr;
  grid-template-columns: 45% 1fr;
  grid-gap: 5%;
  margin-bottom: 30px;
}

.f-logo {
  margin-bottom: 20px;
}

.f-logo a {
  display: block;
  max-width: 315px;
}

.f-sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 25px;
}

.f-sns li + li {
  margin-left: 15px;
}

.f-sns a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.f-sns a:hover {
  opacity: 0.5;
}

.site-map {
  line-height: 1.5;
}

.site-map .sub-menu {
  margin-top: 10px;
}

.site-map .sub-menu li {
  font-size: 14px;
  margin-bottom: 5px;
}

.site-map .sub-menu li::before {
  content: "-";
  margin-right: 5px;
}

.site-map a:not([href="#"]):hover {
  text-decoration: underline;
}

.site-map a[href="#"] {
  cursor: auto;
  pointer-events: none;
  display: block;
  font-weight: bold;
  border-bottom: 1px solid #ccc;
  padding-bottom: 5px;
}

.footer-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 30px;
}

.f-bnr {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
}

.footer-layout02 {
  background: url(../images/share/footer_bg.jpg) no-repeat center/cover;
  color: #fff;
  padding: 100px 0;
}

.footer-layout02 .l-ttl {
  text-align: center;
  margin-bottom: 30px;
}

.footer-layout02 .l-ttl .txt01 {
  display: block;
  font-size: 35px;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-layout02 .l-ttl .txt02 {
  display: block;
  font-family: var(--font_en);
  font-weight: 600;
  font-size: 20px;
}

.footer-layout02 .l-sub-ttl {
  font-size: 17px;
  font-family: var(--font_jp);
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
}

.footer-layout02 .l-sub-ttl .marker {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(90%, transparent), color-stop(90%, #ABCD03));
  background: linear-gradient(transparent 90%, #ABCD03 90%);
  padding-bottom: 8px;
}

.footer-layout02 .l-txt {
  text-align: center;
}

.footer-layout02 .l-btn-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  grid-gap: 15px;
  margin: 0 auto 30px;
  width: 80%;
}

.footer-layout02 .btn-line {
  background: #fff;
  border-radius: 5px;
  color: #00A73C;
  height: 64px;
  width: 275px;
}

.copyright {
  background-color: var(--wp--preset--color--primary);
  color: #fff;
  font-size: 0.85rem;
  padding: 10px;
}

.copyright .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.copyright-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.copyright-links li + li::before {
  content: "|";
  margin: 0 15px;
}

.copyright-links a {
  line-height: 1.5;
}

.copyright-links a:hover {
  text-decoration: underline;
}

.pagetop {
  position: absolute;
  bottom: 70px;
  right: 50px;
  z-index: 5;
}

.pagetop a {
  display: inline-block;
  background: var(--wp--preset--color--primary);
  border-radius: 5px;
  text-align: center;
  width: 50px;
  height: 50px;
  padding: 18px 0 0;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  position: relative;
  z-index: 0;
}

.pagetop a:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}

.fixed-menu {
  border-radius: 4px 0 0 4px;
  background: #ABCD03;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  top: 50%;
  right: 0;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  -webkit-transform: translate(460px, -50%);
          transform: translate(460px, -50%);
  z-index: 10;
}

.fixed-menu:hover {
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

.fixed-menu .ttl {
  border-radius: 5px 0 0 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  line-height: 1;
  white-space: nowrap;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
  padding: 40px 0;
  width: 60px;
}

.fixed-menu .ttl i {
  margin-bottom: 15px;
}

.fixed-menu .inner {
  display: -ms-grid;
  display: grid;
  place-items: center;
  padding: 15px;
  padding-left: 0;
  width: 460px;
}

.fixed-menu .txt {
  font-size: 15px;
  font-family: var(--font_jp);
  text-align: center;
}

.fixed-menu .wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 10px 1fr;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 10px;
  margin: 15px 0;
}

.fixed-menu .wrapper .btn-line {
  background: #fff;
  border: none;
  color: #00A73C;
  min-width: auto;
}

@media (max-width: 782px) {
  .footer {
    padding-bottom: 60px;
  }
  .footer-layout01 {
    padding: 50px 0;
  }
  .footer-layout01 .l-wrapper {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 30px;
    margin-bottom: 30px;
  }
  .f-logo a {
    margin: auto;
  }
  .footer-container {
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 15px;
  }
  .f-bnr {
    -ms-grid-columns: 1fr 10px 1fr;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
  }
  .footer-layout02 {
    padding: 50px 0;
  }
  .footer-layout02 .l-ttl {
    margin-bottom: 30px;
  }
  .footer-layout02 .l-ttl .txt01 {
    font-size: 25px;
    margin-bottom: 10px;
  }
  .footer-layout02 .l-ttl .txt02 {
    font-size: 13px;
  }
  .footer-layout02 .l-sub-ttl {
    text-align: left;
    font-size: 17px;
  }
  .footer-layout02 .l-btn-list {
    display: -ms-grid;
    display: grid;
    -webkit-box-pack: normal;
        -ms-flex-pack: normal;
            justify-content: normal;
    grid-gap: 15px;
    margin: 0 auto 15px;
    width: 100%;
  }
  .copyright {
    padding: 25px 0 15px;
    text-align: center;
  }
  .copyright .container {
    display: block;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .copyright-links {
    font-size: 0.8rem;
    margin-bottom: 15px;
  }
  .fixed-menu {
    display: none;
  }
}
.sp-navi {
  display: none;
}

@media (max-width: 1024px) {
  .sp-navi {
    display: block;
  }
  .sp-navi-btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: var(--color_primary);
    -webkit-box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.15);
            box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.15);
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 65px;
    z-index: 10000;
  }
  .sp-navi-btns > * {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    position: relative;
  }
  .sp-navi-btns .item {
    border-right: 1px solid var(--navi-border-color);
    font-size: 10px;
    font-family: var(--navi-font);
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
    white-space: nowrap;
  }
  .sp-navi-btns .item a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: var(--navi-text-color);
    text-decoration: none;
    height: 100%;
    padding: 10px 0;
  }
  .sp-navi-btns .item .img {
    display: block;
  }
  .sp-navi-btns .item .img svg {
    -o-object-fit: cover;
       object-fit: cover;
    height: 20px;
    margin-bottom: 8px;
    stroke: var(--svg-stroke);
  }
  .sp-navi-btns .item .ttl {
    display: block;
  }
  .sp-menu-btn {
    cursor: pointer;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    padding-bottom: 10px;
  }
  .sp-menu-btn .ttl {
    display: block;
    color: var(--navi-text-color);
    font-family: var(--navi-font);
    font-size: 10px;
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
  }
  .sp-menu-btn span:not(.ttl) {
    background: var(--menu-btn);
    position: absolute;
    left: 50%;
    width: 22px;
    height: 1px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
  .sp-menu-btn span:not(.ttl):nth-of-type(1) {
    top: 20px;
  }
  .sp-menu-btn span:not(.ttl):nth-of-type(2) {
    top: 26px;
  }
  .sp-menu-btn span:not(.ttl):nth-of-type(3) {
    top: 32px;
  }
  .sp-menu-btn.is-open span:nth-of-type(1) {
    -webkit-transform: translate(-50%, 6px) rotate(-45deg);
            transform: translate(-50%, 6px) rotate(-45deg);
  }
  .sp-menu-btn.is-open span:nth-of-type(2) {
    opacity: 0;
  }
  .sp-menu-btn.is-open span:nth-of-type(3) {
    -webkit-transform: translate(-50%, -6px) rotate(45deg);
            transform: translate(-50%, -6px) rotate(45deg);
  }
  .sp-navi-contents {
    pointer-events: none;
    visibility: hidden;
    background: #fff;
    font-family: var(--navi-font);
    padding: 50px 10% 100px;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    opacity: 0;
    z-index: 9999;
  }
  .sp-navi-contents.is-open {
    pointer-events: auto;
    visibility: visible;
    overflow-y: auto;
    opacity: 1;
  }
  .sp-navi-list {
    border-top: 1px solid #d6d6d6;
    font-family: var(--font_jp);
    margin: 0 0 50px;
  }
  .sp-navi-list > li {
    border-bottom: 1px solid #d6d6d6;
  }
  .sp-navi-list > li > a,
  .sp-navi-list > li > .no-link {
    color: #333;
    display: block;
    font-size: 14px;
    line-height: 1;
    padding: 15px 0;
  }
  .sp-navi-list > li.menu-item-has-children {
    position: relative;
  }
  .sp-navi-list > li.menu-item-has-children::before,
  .sp-navi-list > li.menu-item-has-children::after {
    content: "";
    background-color: #333;
    position: absolute;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .sp-navi-list > li.menu-item-has-children::before {
    width: 1px;
    height: 11px;
    top: 17px;
    right: 20px;
  }
  .sp-navi-list > li.menu-item-has-children::after {
    width: 11px;
    height: 1px;
    top: 22px;
    right: 15px;
  }
  .sp-navi-list > li.menu-item-has-children.is-on::before {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  .sp-navi-list .sub-menu {
    padding: 0 0 15px;
  }
  .sp-navi-list .sub-menu > li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 5px;
  }
  .sp-navi-list .sub-menu > li::before {
    content: "-";
    color: #333;
    position: absolute;
    left: 0;
    top: 0;
  }
  .sp-navi-list .sub-menu > li > a {
    display: inline-block;
    font-size: 13px;
    text-decoration: none;
  }
  .sp-navi-logo {
    text-align: center;
    margin-bottom: 30px;
  }
  .sp-navi-address {
    text-align: center;
    font-size: 13px;
  }
  .sp-navi-tel {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 23px;
    font-weight: bold;
  }
  .sp-navi-tel img {
    margin-right: 10px;
  }
  .sp-navi-time {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 70px 10px 1fr;
    grid-template-columns: 70px 1fr;
    grid-gap: 5px 10px;
    font-size: 13px;
  }
  .sp-navi-time dt {
    background-color: #fff;
    border: 1px solid #000;
    text-align: center;
    font-size: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .sp-navi-sns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .sp-navi-sns li + li {
    margin-left: 15px;
  }
  .sp-navi-sns a {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .sp-navi-sns a:hover {
    opacity: 0.5;
  }
}
/*-----------------------------------------------------------
Common
-----------------------------------------------------------*/
.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

hr {
  max-width: 1024px;
  margin: 50px auto;
}

.fs11 {
  font-size: 11px;
}

.red {
  color: #F44336;
}

.notice {
  font-size: 0.8rem;
  text-indent: -1.6em;
  padding-left: 1.6em;
}

.mb0 {
  margin-bottom: 0 !important;
}

.mbXS {
  margin-bottom: 5px !important;
}

.mbS {
  margin-bottom: 15px !important;
}

.mbM {
  margin-bottom: 30px !important;
}

.mbL {
  margin-bottom: 60px !important;
}

.mbXL {
  margin-bottom: 90px !important;
}

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

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

.tac {
  text-align: center;
}

.tar {
  text-align: right;
}

.tal {
  text-align: left;
}

@media (max-width: 782px) {
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
  .sp-tac {
    text-align: center !important;
  }
  .sp-tar {
    text-align: right !important;
  }
  .sp-tal {
    text-align: left !important;
  }
  .mbL {
    margin-bottom: 30px !important;
  }
  .mbXL {
    margin-bottom: 50px !important;
  }
}
/*-----------------------------------------------------------
下層レイアウト
-----------------------------------------------------------*/
.page-ttl {
  background: var(--wp--preset--color--primary);
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  padding-top: 100px;
  margin-bottom: 50px;
  height: 400px;
  width: 100%;
}

.page-ttl-main {
  font-family: var(--font_jp);
  font-size: 45px;
  line-height: 1.2;
  margin: 0 0 10px;
}

.page-ttl-sub {
  display: block;
  font-family: var(--font_en);
  text-transform: uppercase;
  font-size: 18px;
}

.breadcrumb {
  position: relative;
  z-index: 1;
  margin-top: 50px;
}

.breadcrumb ul {
  font-size: 0.8rem;
  padding: 5px 5vw;
}

.breadcrumb ul li {
  display: inline;
}

.breadcrumb ul li + li:before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-top: 1px solid #ccc;
  border-right: 1px solid #ccc;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin: 0 12px 0 3px;
  vertical-align: 1px;
}

@media (max-width: 782px) {
  .page-ttl {
    padding-top: 0;
    height: 120px;
  }
  .page-ttl-main {
    font-size: 25px;
    padding: 0 15px;
    margin-bottom: 8px;
  }
  .page-ttl-sub {
    font-size: 15px;
  }
}
/*診療時間*/
.time-table {
  border: 1px solid var(--wp--preset--color--border-color);
  background: #fff;
  text-align: center;
  overflow: hidden;
  font-size: 13px;
  margin-bottom: 5px;
}

.time-table-head {
  background-color: #607D8B;
  color: #fff;
}

.time-table-head .item {
  padding: 10px 0;
}

.time-table-body {
  border-top: 1px solid #DFDFDF;
}

.time-table-body .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px 0;
}

.time-table-body .item:first-child {
  background-color: #8299A3;
  color: #fff;
  letter-spacing: 0;
}

.time-table-head,
.time-table-body {
  display: -ms-grid;
  display: grid;
  font-family: var(--font_jp);
  -ms-grid-columns: 120px (1fr)[6] 60px;
  grid-template-columns: 120px repeat(6, 1fr) 60px;
}

.time-table.large .time-table-head,
.time-table.large .time-table-body {
  -ms-grid-columns: 220px (1fr)[6] 100px;
  grid-template-columns: 220px repeat(6, 1fr) 100px;
}

@media (max-width: 782px) {
  .time-table-head {
    font-size: 12px;
  }
  .time-table-head .item {
    padding: 5px 0;
  }
  .time-table-body .item {
    padding: 5px 0;
    font-size: 13px;
  }
  .time-table-body .item:first-child {
    line-height: 1.3;
    font-size: 10px;
  }
  .time-table-head,
  .time-table-body {
    -ms-grid-columns: 70px (1fr)[6] 50px !important;
    grid-template-columns: 70px repeat(6, 1fr) 50px !important;
  }
}
/*ボタン*/
.btn-more,
.btn-icon,
.btn-tel,
.btn-line {
  background: #fff;
  border: 2px solid #0075C2;
  color: #0075C2;
  border-radius: 5px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  font-weight: 500;
  line-height: 1;
  min-height: 64px;
  min-width: 275px;
  padding: 15px 20px;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}

.btn-more:hover,
.btn-icon:hover,
.btn-tel:hover,
.btn-line:hover {
  opacity: 0.5;
}

.btn-more {
  background: url(../images/share/arrow_right_c.svg) right 15px center/auto no-repeat #fff;
  color: #0075C2;
  line-height: 1.5;
  position: relative;
}

.btn-more.small {
  min-width: 200px;
}

.btn-tel {
  background: #333;
  color: #fff;
}

.btn-tel i {
  font-size: 10px;
  margin-right: 10px;
}

.btn-icon {
  background-color: var(--wp--preset--color--primary);
  color: #fff;
}

.btn-icon img {
  margin-right: 10px;
}

.btn-line {
  background: #4CC764;
  color: #fff;
  padding: 10px 25px;
}

.btn-line img {
  line-height: 1;
  margin: 0 10px 0 -20px;
}

.btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px;
}

.btn-wrap.center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 800px) {
  .btn-more,
  .btn-tel,
  .btn-icon,
  .btn-line {
    min-height: 60px;
    min-width: auto;
    width: 100%;
  }
  .btn-wrap {
    display: -ms-grid;
    display: grid;
  }
}
.site-map + .site-map {
  margin-top: 40px;
}

.site-map .column-ttl {
  font-size: 16px;
  margin-bottom: 10px;
}

.site-map .footer-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 54px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 54px;
}

.footer-list li a {
  display: block;
  padding-left: 14px;
  position: relative;
}

.footer-list li a::before {
  background: #0075C2;
  display: block;
  content: "";
  height: 1px;
  position: absolute;
  top: 13px;
  left: 0;
  width: 6px;
}

.f-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  gap: 10px;
}

.f-btns .btn:hover {
  opacity: 0.6;
}
.f-btns .btn {
  -webkit-transition: opacity 0.6s ease;
  transition: opacity 0.6s ease;
  background: #0075C2;
  border-radius: 5px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 64px;
  width: 215px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

.f-btns .btn.type02 {
  background: #ABCD03;
}

.btn-arrow:hover {
  opacity: 0.6;
}
.btn-arrow {
  -webkit-transition: opacity 0.6s ease;
  transition: opacity 0.6s ease;
  background: url("../images/share/arrow_right.svg") right 15px center/auto no-repeat #ABCD03;
  border-radius: 5px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 64px;
  width: 275px;
  font-size: 16px;
  font-weight: 500;
  padding: 10px 30px 10px 20px;
  text-align: center;
  line-height: 1.5;
  position: relative;
}

.table-scroll-txt {
  display: none;
}

.table-recruit {
  table-layout: fixed;
  background-color: #fff;
  width: 100%;
}
.table-recruit th,
.table-recruit td {
  color: #fff;
  border: 1px solid #ccc;
  padding: 10px;
  line-height: 1.5;
  font-size: 14px;
  vertical-align: middle;
  text-align: center;
}
.table-recruit th {
  background-color: #000;
}
.table-recruit .bg01 {
  background-color: #666;
}

@media (max-width: 800px) {
  .table-scroll-txt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 10px;
  }
  .table-scroll-txt::before {
    content: "";
    display: block;
    background: url(../images/share/icon_scroll.svg) no-repeat center/contain;
    width: 30px;
    height: 24.5px;
    margin-right: 10px;
  }
  .table-scroll {
    overflow-x: scroll;
    overflow-scrolling: touch;
    -webkit-overflow-scrolling: touch;
  }
  .table-scroll::-webkit-scrollbar {
    height: 5px;
  }
  .table-scroll::-webkit-scrollbar-track {
    border-radius: 5px;
    background: #f5f6f8;
  }
  .table-scroll::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: #333;
  }
  .table-scroll table {
    margin-bottom: 10px !important;
    width: 150%;
  }
}
.recruit-data {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 17px 1fr 17px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
}
.recruit-data .item {
  background-color: #eee;
  padding: 30px 24px;
}
.recruit-data .item-ttl {
  text-align: center;
  font-size: 17px;
  line-height: 1.5;
  font-weight: bold;
  margin-bottom: 20px;
}
.recruit-data .item-img {
  margin-bottom: 25px;
}
.recruit-data .item-img img {
  width: 100%;
}
.recruit-data .item-number {
  font-size: 30px;
  line-height: 1;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}
.recruit-data .item-number .unit {
  font-size: 14px;
}
.recruit-data .col-1 {
  -ms-grid-column-span: 1;
  grid-column: span 1;
}
.recruit-data .col-2 {
  -ms-grid-column-span: 2;
  grid-column: span 2;
}

.table-recruit-data {
  table-layout: fixed;
  background-color: #fff;
  width: 100%;
  margin-bottom: 20px;
}
.table-recruit-data th,
.table-recruit-data td {
  border: 1px solid #ccc;
  padding: 10px;
  line-height: 1.5;
  font-size: 14px;
  vertical-align: middle;
  text-align: center;
}
.table-recruit-data th {
  background-color: #666;
  color: #fff;
}
.table-recruit-data .num {
  font-size: 30px;
  line-height: 1;
  font-weight: bold;
}
.table-recruit-data .unit {
  font-size: 17px;
  line-height: 1;
}

@media (max-width: 800px) {
  .footer-layout02 .btn-line {
    height: 64px;
    width: 100%;
  }
  .f-btns .btn,
  .btn-arrow {
    width: 100%;
  }
  ul.wp-block-post-template:has(.type-post, .type-gallery) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: auto;
    padding-bottom: 20px;
    width: 100%;
  }
  .wp-block-post-template:has(.type-post, .type-gallery) .wp-block-post {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 240px;
            flex: 0 0 240px;
  }
  body .is-layout-flex {
    row-gap: 15px;
  }
  .recruit-data {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .recruit-data .col-1 {
    grid-column: auto;
  }
  .recruit-data .col-2 {
    grid-column: auto;
  }
  .table-recruit-data th,
  .table-recruit-data td {
    padding: 5px;
    font-size: 13px;
    line-height: 1.5;
  }
  .table-recruit-data .num {
    font-size: 20px;
  }
  .table-recruit-data .unit {
    font-size: 15px;
  }
}

.wp-block-button__link.wp-element-button {
  background: url(../images/share/arrow_right_c.svg) right 15px center/auto no-repeat #fff;
  border: 2px solid #0075C2;
  color: #0075C2;
  border-radius: 5px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  font-weight: 500;
  line-height: 1.5;
  min-height: 64px;
  min-width: 275px;
  padding: 15px 20px;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  position: relative;
}

.wp-block-button__link.wp-element-button:hover {
  background-color: transparent!important;
  color: #0075C2!important;
  opacity: 0.5;
}