@charset "UTF-8";

:root {
  --font_base: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, sans-serif;
  --font_jp: "FOT-筑紫A丸ゴシック Std B";
  --font_en: "FOT-筑紫A丸ゴシック Std E";
}

body {
  margin: 0;
  padding: 0;
  line-height: 2;
  font-family: var(--font_base);
  font-size: 15px;
  color: #333;
  letter-spacing: 0.05em;
}

/* リセット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) {
  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) {
  margin-block-start: 0;
  margin-block-end: 0;
}

:where(dd) {
  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);
  line-height: 1.6;
}

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

: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;
  appearance: none;
  font-size: inherit;
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

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 .h-logo {
  max-width: 535px;
  transition: 0.3s;
}

.header.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
}

.header.transform .h-logo {
  max-width: 456px;
}

@media (max-width: 1024px) {
  .header {
    position: static !important;
  }
}

/*------------
Header01
--------------*/
.header-layout01 {
  background-color: #f2f2f2;
  padding: 10px 20px 10px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
  width: 100%;
}

@media (max-width: 1024px) {
  .header-layout01 {
    justify-content: center;
    padding: 10px;
    height: 60px;
  }

  .header .h-logo {
    width: 224px;
  }

  .header.transform .h-logo {
    max-width: 224px;
  }

  .header .h-logo a {
    display: grid;
    place-items: center;
  }

  .gnavi {
    display: none;
  }
}

/*------------
Header02
--------------*/
.header-layout02 {
  background-color: #f2f2f2;
  padding: 0 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 120px;
  width: 100%;
}

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

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

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

.header-layout02 .h-time {
  display: grid;
  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: flex;
  justify-content: center;
  align-items: center;
}

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

@media (max-width: 1024px) {
  .header-layout02 {
    justify-content: center;
    padding: 10px;
    height: 60px;
  }

  .header-layout02 .h-utility {
    display: none;
  }
}

/*------------
Header03
--------------*/
.header-layout03 {
  background-color: #fff;
  padding: 0 0 0 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  height: 119px;
  width: 100%;
}

.header-layout03 .h-logo-txt {
  font-family: var(--font_jp);
  color: #888888;
  margin-bottom: 5px;
}

.header-layout03 .h-utility {
  display: flex;
  align-items: center;
  margin-right: 30px;
}

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

.header-layout03 .h-contact {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  grid-gap: 30px;
  margin-right: 30px;
}

.header-layout03 .h-tel {
  display: inline-flex;
  align-items: center;
  color: var(--wp--preset--color--primary);
  font-size: 23px;
  font-family: var(--font_jp);
  letter-spacing: 0.1em;
}

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

.header-layout03 .h-time {
  display: grid;
  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: flex;
  justify-content: center;
  align-items: center;
}

.header-layout03 .h-sns {
  display: flex;
  align-items: center;
}

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

.header-layout03 .h-sns a {
  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;
  transition: 0.2s;
  z-index: 100;
}

.menu-btn-line {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 0 10px;
}

.menu-btn-line span {
  display: block;
  background-color: var(--wp--preset--color--primary);
  width: 60px;
  height: 3px;
  transition: 0.2s;
}

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

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

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

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

.menu-btn-txt::before {
  content: "";
  display: block;
  background: url(../images/share/txt_menu.svg) no-repeat center/contain;
  width: 60px;
  height: 15px;
  margin: 0 auto;
}

.menu-btn.is-open .menu-btn-txt::before {
  background: url(../images/share/txt_close.svg) no-repeat center/contain;
  width: 68px;
  height: 15px;
}

@media (max-width: 1024px) {
  .header-layout03 {
    padding: 20px 15px;
    height: 70px;
  }

  .header-layout03 .h-logo-txt {
    font-size: 12px;
    margin-bottom: 3px;
  }

  .header-layout03 .h-utility,
  .header-layout03 .gnavi-drawer {
    display: none;
  }
}

/*------------
Gnavi
--------------*/
/*normal*/
.gnavi-list {
  display: flex;
  justify-content: flex-end;
}

.gnavi-list>li {
  margin-left: 30px;
}

.gnavi-list>li>p,
.gnavi-list>li>a {
  display: inline-block;
  font-family: var(--font_jp);
}

.gnavi-list .current-menu-parent p,
.gnavi-list [aria-current="page"],
.gnavi-list a:hover {
  color: #f08300;
}

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

.gnavi-list .menu-item-has-children {
  display: flex;
  position: relative;
}

.gnavi-list .menu-item-has-children::after {
  content: "";
  display: block;
  border-bottom: 2px solid #333;
  border-right: 2px solid #333;
  width: 8px;
  height: 8px;
  margin: 10px 0 0 10px;
  transform: rotate(45deg);
  transform-origin: right;
}

.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;
  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: max-content;
  min-width: 150px;
  transform: translateX(50%);
  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;
  transform: translateX(0);
}

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

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

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

.gnavi-drawer-wrapper {
  display: flex;
  flex-direction: row-reverse;
  height: 100%;
}

.gnavi-drawer-right-area {
  width: 50%;
  padding: 130px 5% 120px 7%;
  overflow: auto;
  position: relative;
}

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

.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: 480px;
}

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

.gnavi-drawer-links {
  /* display: grid;
  grid-template-columns: minmax(0, 215px) minmax(0, 265px);
  grid-template-rows: repeat(3, auto);
  grid-auto-flow: column; */
  column-count: 2;
  column-gap: 3.333vw;
  /* grid-gap: 50px 3.333vw; */
  font-family: var(--font_jp);
}

.gnavi-drawer-links>li {
  margin-bottom: 30px;
}

.gnavi-drawer-links>li>a,
.gnavi-drawer-links>li>p {
  display: block;
  font-size: 20px;
  padding-bottom: 10px;
  position: relative;
}

.gnavi-drawer-links>li>a::after,
.gnavi-drawer-links>li>p::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: url(../images/share/icon_dot_line.svg) repeat-x left bottom / 6px 2px;
}

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

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

.gnavi-drawer-links>li>ul {
  display: grid;
  grid-gap: 5px;
  margin-top: 15px;
  font-family: var(--font_base);
  font-size: 15px;
}

.gnavi-drawer-links>li>ul>li {
  padding-left: 20px;
  position: relative;
}

.gnavi-drawer-links>li>ul>li::before {
  content: "";
  display: block;
  width: 6px;
  height: 1px;
  background-color: var(--wp--preset--color--secondary);
  position: absolute;
  left: 0;
  top: 15px;
}

.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: flex;
  position: fixed;
  inset: 0;
}

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

.gnavi-drawer-logo {
  position: absolute;
  right: 20px;
  bottom: 20px;
}

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

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

.footer-layout01 {
  background-color: #FAF6F0;
  padding: 100px 0 90px
}

.footer-layout01 .l-wrapper {
  display: grid;
  grid-template-columns: 48% 1fr;
  grid-gap: 5%;
}

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

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

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

.f-sns a {
  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: 15px;
  padding-left: 20px;
  position: relative;
}

.site-map .sub-menu li::before {
  content: "";
  width: 6px;
  height: 1px;
  background-color: var(--wp--preset--color--secondary);
  position: absolute;
  left: 0;
  top: 10px;
}

.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: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px 30px;
}

.footer-container>li>p,
.footer-container>li>a {
  display: block;
  font-size: 20px;
  font-family: var(--font_jp);
  padding-bottom: 15px;
  margin-bottom: 20px;
  position: relative;
}

.footer-container>li>p::after,
.footer-container>li>a::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: url(../images/share/icon_dot_line.svg) repeat-x left bottom / 6px 2px;
}

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

.footer-layout02 {
  background-color: #dedede;
  padding: 80px 0;
}

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

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

.footer-layout02 .l-ttl .txt02 {
  display: block;
  font-size: 16px;
}

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

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

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

.copyright {
  background-color: var(--wp--preset--color--secondary);
  color: #fff;
  font-size: 12px;
  padding: 15px;
}

.copyright small {
  font-size: 12px;
}

.copyright .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright-links {
  display: flex;
  justify-content: center;
  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;
  top: 35px;
  right: 200px;
  z-index: 5;
}

.pagetop a {
  display: grid;
  place-items: center;
  background: var(--wp--preset--color--secondary);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: transform 0.5s;
  position: relative;
  z-index: 0;
}

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

.fixed-menu {
  border-radius: 4px 0 0 4px;
  background: #37414f;
  color: #fff;
  display: flex;
  position: fixed;
  top: 50%;
  right: 0;
  transition: transform 0.5s;
  transform: translate(400px, -50%);
  z-index: 10;
}

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

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

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

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

.fixed-menu .txt {
  font-size: 13px;
  text-align: center;
}

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

.fixed-menu .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid #fff;
  color: #fff;
  font-size: 15px;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
  padding: 10px;
  min-width: 170px;
  min-height: 50px;
  width: 100%;
}

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

.fixed-menu .btn .small {
  display: block;
  font-size: 10px;
  margin-top: 5px;
}

.sp-navi {
  display: none;
}

@media (max-width: 1600px) {
  .pagetop {
    right: 50px;
  }
}

@media (max-width: 1024px) {
  .footer {
    padding-bottom: 65px;
  }

  .sp-navi {
    display: block;
  }

  :root {
    --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;
  }

  .sp-navi-btns {
    display: flex;
    background-color: var(--wp--preset--color--primary);
    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>* {
    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: flex;
    flex-direction: column;
    justify-content: flex-end;
    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 {
    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: flex;
    justify-content: center;
    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;
    transform: translateX(-50%);
    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) {
    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) {
    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;
    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;
    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 {
    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: var(--wp--preset--color--primary);
    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: flex;
    justify-content: center;
    align-items: center;
    font-size: 23px;
    font-weight: bold;
  }

  .sp-navi-tel img {
    margin-right: 10px;
  }

  .sp-navi-time {
    display: grid;
    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: flex;
    justify-content: center;
    align-items: center;
  }

  .sp-navi-sns {
    display: flex;
    align-items: center;
  }

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

  .sp-navi-sns a {
    transition: 0.3s;
  }

  .sp-navi-sns a:hover {
    opacity: 0.5;
  }
}

@media (max-width: 782px) {
  .footer-layout01 {
    padding: 50px 0;
  }

  .footer-layout01 .l-wrapper {
    grid-template-columns: 1fr;
    grid-gap: 30px;
  }

  .f-logo {
    text-align: center;
  }

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

  .footer-container {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    grid-gap: 15px;
  }

  .footer-container>li:last-child {
    grid-area: auto;
  }

  .footer-container>li>p,
  .footer-container>li>a {
    font-size: 16px;
    padding-bottom: 10px;
  }

  .f-bnr {
    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 {
    font-size: 17px;
  }

  .footer-layout02 .l-btn-list {
    display: grid;
    justify-content: normal;
    grid-gap: 15px;
    margin: 0 auto 15px;
    width: 100%;
  }

  .copyright {
    padding: 20px 0 15px;
    text-align: center;
  }

  .copyright .container {
    display: block;
    justify-content: space-between;
    align-items: center;
  }

  .copyright-links {
    margin-bottom: 10px;
  }

  .pagetop {
    display: none;
  }

  .fixed-menu {
    display: none;
  }

}

/*-----------------------------------------------------------
Common
-----------------------------------------------------------*/
.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

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

.fs11 {
  font-size: 11px;
}


.red {
  color: #F44336;
}

.color01 {
  color: var(--wp--preset--color--secondary);
}

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

.mtXL {
  margin-top: 90px !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;
  }

  .mtXL {
    margin-top: 50px !important;
  }

}


/*-----------------------------------------------------------
下層レイアウト
-----------------------------------------------------------*/
.page-ttl {
  background: var(--wp--preset--color--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  margin-top: 119px;
  height: 400px;
  width: 100%;
}

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

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

.breadcrumb {
  position: relative;
  z-index: 1;
}

.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;
  transform: rotate(45deg);
  margin: 0 12px 0 3px;
  vertical-align: 1px;
}

@media (max-width: 782px) {
  .page-ttl {
    margin-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-family: "FOT-筑紫A丸ゴシック Std D";
  font-size: 16px;
  margin-bottom: 10px;
}

.time-table-head {
  background-color: var(--wp--preset--color--secondary);
  color: #fff;
}

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

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

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

.time-table-body .item:first-child {
  background-color: #EFF4F7;
  color: #333;
  letter-spacing: 0;
}

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

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

@media (max-width: 782px) {
  .time-table-head {
    font-size: 12px;
  }

  .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 {
    grid-template-columns: 70px repeat(6, 1fr) 50px !important;
  }
}

/*ボタン*/
.btn-more,
.btn-icon,
.btn-tel,
.btn-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font_jp);
  line-height: 1;
  text-align: center;
  min-height: 50px;
  min-width: 170px;
  border-radius: 100px;
  padding: 15px 20px;
  transition: opacity 0.5s;
  position: relative;
}

.btn-more::before,
.btn-icon::before,
.btn-tel::before,
.btn-line::before {
  content: "";
  mask: url(../images/share/icon_arrow_right.svg) no-repeat center center / contain;
  background-color: #fff;
  width: 4px;
  height: 9px;
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
}

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

.btn-more {
  background-color: var(--wp--preset--color--primary);
  color: #fff;
  line-height: 1.5;
  padding: 10px 30px;
}

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

.btn-more.white::before {
  background-color: #333;
}

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

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

.btn-icon {
  background-color: #FEF198;
  color: #333;
}

.btn-icon::before {
  background-color: #333;
}

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

.btn-line {
  background: var(--wp--preset--color--secondary);
  color: #fff;
  padding: 10px 25px;
}

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

.btn-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 20px;
}

.btn-wrap.center {
  justify-content: center;
}

@media (max-width: 800px) {

  .btn-more,
  .btn-tel,
  .btn-icon,
  .btn-line {
    width: 100%;
  }

  .btn-wrap {
    display: grid;
  }
}

/*-----------------------------------------------------------
Animation
-----------------------------------------------------------*/
.js-fadein {
  transition: opacity 1.2s, transform 1s;
  opacity: 0;
  transform: translateY(120px);
}

.js-fadein.is-show {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .js-fadein {
    opacity: 1;
    transform: translateY(0);
  }
}
