@charset "UTF-8";

:root {
  --font_base: "Noto Sans JP", sans-serif;
  --font_jp: "FOT-筑紫A丸ゴシック Std B", sans-serif;
  --font_en: "Quicksand", sans-serif;
}

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) {
  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: text-top;
}

sub {
  vertical-align: text-bottom;
}

legend {
  color: #000;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font_jp);
  line-height: 1.6;
  margin-block-start: 0;
}

[lang="en"] {
  font-family: var(--font_en);
  letter-spacing: .1em;
}

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

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


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

  .h-logo {
    width: 150px;
  }

  .gnavi {
    display: none;
  }
}

/*------------
Header02
--------------*/
.header-layout02 {
  background-color: #fff;
  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: 5px;
}

.header-layout02 .h-tel {
  display: inline-flex;
  align-items: center;
  font-family: var(--font_en);
  font-size: 25px;
  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 var(--wp--preset--color--primary);
  color: var(--wp--preset--color--primary);
  text-align: center;
  font-family: var(--font_jp);
  font-size: 11px;
  border-radius: 2px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-layout02 .h-time dd {
  font-size: 13px;
}

@media (max-width: 1024px) {
  .header-layout02 {
    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: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
  width: 100%;
}

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

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

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

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

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

.menu-btn-line span {
  display: block;
  background-color: #333;
  width: 41px;
  height: 1px;
  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) {
  transform: rotate(30deg) translate3d(2px, 5px, 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(4px, -8px, 0);
}

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

  .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: var(--wp--preset--color--primary);
}

/*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 var(--wp--preset--color--primary);
  border-right: 2px solid var(--wp--preset--color--primary);
  width: 8px;
  height: 8px;
  margin: 15px 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: var(--wp--preset--color--primary-light-bg);
  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: 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: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 15px;
}

.gnavi-drawer-links {
  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: grid;
  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: 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;
  border-top: 1px solid var(--wp--preset--color--border-color);
}

.footer-layout01 {
  background-color: #fff;
  padding: 80px 0;
}

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

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

.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 .no-link {
  font-family: var(--font_jp);
  font-size: 20px;
  border-bottom: 1px solid var(--wp--preset--color--border-color);
  padding-bottom: 10px;
  margin-bottom: 20px;
}

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

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

.site-map .sub-menu li::before {
  content: "-";
  color: var(--wp--preset--color--primary);
  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: grid;
  grid-template-columns: 1fr;
  grid-gap: 40px;
}

.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--primary);
  color: #fff;
  font-size: 0.85rem;
  padding: 10px;
}

.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;
  bottom: 70px;
  right: 50px;
  z-index: 5;
}

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

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

.fixed-menu {
  border-radius: 5px 0 0 5px;
  background: var(--wp--preset--color--primary);
  color: #fff;
  display: flex;
  position: fixed;
  top: 50%;
  right: 0;
  transition: transform 0.5s;
  transform: translate(550px, -50%);
  z-index: 10;
}

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

.fixed-menu .ttl {
  border-radius: 5px 0 0 5px;
  font-family: var(--font_jp);
  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: 550px;
}

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

.fixed-menu .wrapper {
  display: grid;
  grid-template-columns: repeat(3, 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;
  border-radius: 100px;
  font-size: 14px;
  font-family: var(--font_jp);
  line-height: 1.2;
  text-align: center;
  padding: 10px;
  min-width: 140px;
  min-height: 45px;
  width: 100%;
}

.fixed-menu .btn img {
  margin-right: 10px;
  vertical-align: text-bottom;
}

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

.sp-navi {
  display: none;
}

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

  .footer-layout01 {
    padding: 50px 0;
  }

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

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

  .footer-container {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 15px;
  }

  .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: 25px 0 15px;
    text-align: center;
  }

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

  .copyright-links {
    font-size: 0.8rem;
    margin-bottom: 15px;
  }

  .fixed-menu {
    display: none;
  }
}


/*診療時間*/
.time-table-ttl {
  font-family: var(--font_jp);
  font-size: 18px;
  margin-bottom: 10px !important;
}

.time-table {
  border: 1px solid var(--wp--preset--color--border-color);
  background: #fff;
  text-align: center;
  overflow: hidden;
  margin-bottom: 5px;
}

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

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

.time-table-body {
  border-top: 1px solid var(--wp--preset--color--border-color);
}

.time-table-body .item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
  font-family: var(--font_jp);
}

.time-table-body .item:first-child {
  background-color: #E4E9F1;
  letter-spacing: 0;
  font-family: var(--font_base);
}

.time-table-head,
.time-table-body {
  display: grid;
  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;
}

.time-table-event01 {
  color: var(--wp--preset--color--primary);
}

.time-table-event02 {
  color: var(--wp--preset--color--secondary);
}

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


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

.sp-only {
  display: none;
}

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

.fs11 {
  font-size: 11px;
}


.red {
  color: #F44336;
}

.blue {
  color: var(--wp--preset--color--primary);
}


.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: 800px) {
  .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: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding-top: 120px;
  height: 400px;
  width: 100%;
  margin-block-end: 100px;
}

.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: 800px) {
  .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;
  }
}

/*-----------------------------------------------------------
Hero
-----------------------------------------------------------*/
/*------------
Hero01
--------------*/
.hero01 {
  position: relative;
}

.hero01 .splide__slide img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.hero01 .splide__pagination {
  justify-content: flex-end;
  right: 10px;
}

.hero01-catch {
  position: absolute;
  bottom: 5%;
  left: 5%;
  z-index: 5;
  font-family: var(--font_jp);
}

.hero01-catch .ttl {
  font-size: 40px;
  font-weight: bold;
}

.hero01-catch .ttl>span {
  color: var(--wp--preset--color--primary);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  display: inline;
  padding: .2em .5em;
  line-height: 2.1;
  background-color: #fff;
  border-radius: 10px;
}

.hero01-catch .sub-ttl {
  font-size: 27px;
  font-weight: bold;
  text-shadow: 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff, 0 0 10px #fff;
  margin-top: 10px;
}

@media (max-width: 800px) {
  .hero01 .splide__slide img {
    height: 50vh;
  }

  .hero01 .splide__pagination {
    display: none;
  }

  .hero01-catch {
    bottom: 20px;
    left: 5%;
  }

  .hero01-catch .ttl {
    font-size: 18px;
  }

  .hero01-catch .sub-ttl {
    font-size: 13px;
  }
}

/*------------
Hero02
--------------*/
.hero02 {
  padding: 200px 0 100px;
  position: relative;
}

.hero02::before {
  content: "";
  background: #f1f1f1;
  display: block;
  width: 25vw;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
}

.hero02 .wrapper {
  display: flex;
  align-items: center;
  margin: 0 auto;
  max-width: 1200px;
  width: 90%;
  position: relative;
}

.hero02 .splide {
  margin-left: auto;
  width: 650px;
}

.hero02 .splide__pagination {
  display: none;
}

.hero02-catch {
  position: absolute;
  bottom: 40%;
  left: 0;
  z-index: 5;
}

.hero02-catch .ttl {
  font-size: 65px;
  font-weight: bold;
}

.hero02-catch .sub-ttl {
  font-size: 20px;
  font-weight: bold;
}

@media (max-width: 800px) {
  .hero02 {
    padding: 0;
  }

  .hero02::before {
    display: none;
  }

  .hero02 .wrapper {
    display: block;
    width: 100%;
  }

  .hero02 .splide {
    width: auto;
  }

  .hero02 .splide__slide img {
    width: 100%;
    height: 50vh;
    object-fit: cover;
  }

  .hero02 .splide__pagination {
    display: none;
  }

  .hero02-catch {
    bottom: 50px;
    left: 5%;
  }

  .hero02-catch .ttl {
    font-size: 30px;
  }

  .hero02-catch .sub-ttl {
    font-size: 13px;
  }
}

/*------------
Hero03
--------------*/
.hero03 {
  position: relative;
}

.hero03 .splide__slide img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.hero03 .splide__pagination {
  justify-content: flex-end;
  right: 10px;
}

.hero03 .splide__slide img {
  transition: transform 7s 1s ease-out;
}

.hero03 .splide__slide[class*=-active] img {
  transition-delay: 0s;
  transform: scale(1.1);
}

.hero03-catch {
  position: absolute;
  bottom: 40%;
  left: 5%;
  z-index: 5;
}

.hero03-catch .ttl {
  font-size: 65px;
  font-weight: bold;
}

.hero03-catch .sub-ttl {
  font-size: 20px;
  font-weight: bold;
}

@media (max-width: 800px) {
  .hero03 .splide__slide img {
    height: 50vh;
  }

  .hero03 .splide__pagination {
    display: none;
  }

  .hero03-catch {
    bottom: 50px;
    left: 5%;
  }

  .hero03-catch .ttl {
    font-size: 30px;
  }

  .hero03-catch .sub-ttl {
    font-size: 13px;
  }
}

/*------------
Hero04
--------------*/
.hero04 {
  position: relative;
}

.hero04 video {
  object-fit: cover;
  width: 100%;
  height: 100vh;
}

.hero04-catch {
  position: absolute;
  bottom: 40%;
  left: 5%;
  z-index: 5;
}

.hero04-catch .ttl {
  font-size: 65px;
  font-weight: bold;
}

.hero04-catch .sub-ttl {
  font-size: 20px;
  font-weight: bold;
}

@media (max-width: 800px) {
  .hero04 video {
    height: 50vh;
  }

  .hero04-catch {
    bottom: 50px;
    left: 5%;
  }

  .hero04-catch .ttl {
    font-size: 30px;
  }

  .hero04-catch .sub-ttl {
    font-size: 13px;
  }
}

/*------------
Hero05
--------------*/
.hero05 {
  padding: 100px 0 0;
  position: relative;
}

.hero05 .splide__pagination {
  bottom: -25px;
}

.hero05-catch {
  position: absolute;
  bottom: 100px;
  left: calc((100% - 850px) / 2);
  z-index: 5;
}

.hero05-catch .ttl {
  font-size: 65px;
  font-weight: bold;
}

.hero05-catch .sub-ttl {
  font-size: 20px;
  font-weight: bold;
}

@media (max-width: 800px) {
  .hero05 {
    padding: 10px 0 0;
  }

  .hero05 .splide__slide img {
    width: 100%;
    height: 50vh;
    object-fit: cover;
  }

  .hero05 .splide__arrows {
    display: none;
  }

  .hero05-catch {
    bottom: 50px;
    left: 10%;
  }

  .hero05-catch .ttl {
    font-size: 30px;
  }

  .hero05-catch .sub-ttl {
    font-size: 13px;
  }
}

/*------------
Hero06
--------------*/
.hero06 {
  position: relative;
  padding: 150px 0 30px;
}

.hero06 .splide__slide {
  text-align: center;
}

.hero06 .splide__pagination {
  bottom: -30px;
}

.hero06-catch {
  position: absolute;
  bottom: 100px;
  left: calc((100% - 750px) / 2);
  z-index: 5;
}

.hero06-catch .ttl {
  font-size: 65px;
  font-weight: bold;
}

.hero06-catch .sub-ttl {
  font-size: 20px;
  font-weight: bold;
}

@media (max-width: 800px) {
  .hero06 {
    padding: 30px 5vw;
  }

  .hero06 .splide__slide {
    text-align: center;
  }

  .hero06 .splide__pagination {
    display: none;
  }

  .hero06-catch {
    bottom: 0;
    left: 5%;
  }

  .hero06-catch .ttl {
    font-size: 30px;
  }

  .hero06-catch .sub-ttl {
    font-size: 13px;
  }
}

/*------------
Hero07
--------------*/
.hero07 {
  padding: 100px 0 50px;
  overflow: hidden;
  position: relative;
}

.hero07::before {
  content: "";
  background-color: var(--wp--preset--color--primary-light-bg);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  z-index: -1;
}

.hero07 .wrapper {
  display: flex;
  align-items: center;
  margin: 0 auto;
  max-width: 1200px;
  width: 90%;
  position: relative;
}

.hero07 .splide {
  padding-bottom: 30px;
  margin-left: auto;
  right: -70px;
  width: 900px;
}

.hero07 .splide__pagination {
  justify-content: flex-end;
  bottom: 0;
  right: 150px;
}

.hero07-catch {
  position: absolute;
  bottom: 35%;
  left: 0;
  z-index: 5;
}

.hero07-catch .ttl {
  font-size: 65px;
  font-weight: bold;
}

.hero07-catch .sub-ttl {
  font-size: 20px;
  font-weight: bold;
}

@media (max-width: 800px) {
  .hero07 {
    padding: 0 0 50px;
  }

  .hero07 .splide {
    padding-bottom: 0;
    right: -90px;
    width: 100%;
  }

  .hero07 .splide img {
    object-fit: cover;
    object-position: left;
    height: 50vh;
  }

  .hero07 .splide__pagination {
    display: none;
  }

  .hero07-catch {
    bottom: 50px;
  }

  .hero07-catch .ttl {
    font-size: 30px;
  }

  .hero07-catch .sub-ttl {
    font-size: 13px;
  }
}

/*------------
Hero08
--------------*/
.hero08 {
  padding: 150px 0 50px;
  overflow: hidden;
  position: relative;
}

.hero08::before {
  content: "";
  background-color: var(--wp--preset--color--primary-light-bg);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  z-index: -1;
}

.hero08 .wrapper {
  margin: 0 auto;
  max-width: 1200px;
  width: 90%;
  position: relative;
}

.hero08 .splide {
  text-align: right;
  padding-bottom: 30px;
  margin-left: 200px;
}

.hero08 .splide__pagination {
  justify-content: flex-end;
  bottom: 0;
}

.hero08-catch {
  writing-mode: vertical-rl;
  font-feature-settings: initial;
  position: absolute;
  top: 150px;
  left: 50px;
  white-space: nowrap;
  z-index: 5;
}

.hero08-catch .ttl {
  font-size: 40px;
  margin-left: 10px;
  font-weight: bold;
}

.hero08-catch .ttl span {
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  padding: 10px;
  line-height: 2;
  background-color: #fff;
}

.hero08-catch .sub-ttl {
  font-size: 20px;
  font-weight: bold;
}

.hero08-catch .sub-ttl span {
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  padding: 10px;
  line-height: 2.8;
  background-color: #fff;
}

@media (max-width: 1024px) {
  .hero08 {
    padding: 0 0 50px;
  }

  .hero08 .wrapper {
    width: 100%;
    padding-left: 15vw;
  }

  .hero08 .splide {
    margin: 0;
    padding: 0;
  }

  .hero08 .splide img {
    object-fit: cover;
    height: 50vh;
  }

  .hero08 .splide__pagination {
    display: none;
  }

  .hero08-catch {
    writing-mode: horizontal-tb;
    top: auto;
    bottom: 30px;
    left: 5vw;
    right: 5vw;
  }

  .hero08-catch .ttl {
    font-size: 25px;
    margin: 0 0 10px;
  }

  .hero08-catch .sub-ttl {
    font-size: 15px;
  }
}

/*------------
Hero09
--------------*/
.hero09 {
  position: relative;
}

.hero09 .splide__slide img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.hero09 .splide__pagination {
  justify-content: flex-end;
  right: 10px;
}

.hero09-catch {
  position: absolute;
  bottom: 10%;
  left: 5%;
  right: 5%;
  z-index: 5;
}

.hero09-catch .ttl {
  font-size: 65px;
  font-weight: bold;
}

.hero09-catch .sub-ttl {
  font-size: 20px;
  font-weight: bold;
}

.hero09-catch .hero-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 50px;
  width: fit-content;
}

@media (max-width: 800px) {
  .hero09 .splide__slide img {
    height: 60vh;
  }

  .hero09 .splide__pagination {
    display: none;
  }

  .hero09-catch {
    bottom: 30px;
  }

  .hero09-catch .ttl {
    font-size: 30px;
  }

  .hero09-catch .sub-ttl {
    font-size: 13px;
  }

  .hero09-catch .hero09-catch .hero-features {
    gap: 15px;
    margin-top: 30px;
  }
}

/*------------
splide
-------------*/
.splide__container {
  box-sizing: border-box;
  position: relative;
}

.splide__list {
  backface-visibility: hidden;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}

.splide__pagination {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0;
  pointer-events: none;
}

.splide__pagination li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
  margin: 0 2px;
  pointer-events: auto;
}

.splide__progress__bar {
  width: 0;
}

.splide {
  position: relative;
  visibility: hidden;
}

.splide.is-initialized,
.splide.is-rendered {
  visibility: visible;
}

.splide__slide {
  backface-visibility: hidden;
  box-sizing: border-box;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative;
}

.splide__slide img {
  vertical-align: bottom;
}

.splide__spinner {
  animation: splide-loading 1s linear infinite;
  border: 2px solid #999;
  border-left-color: transparent;
  border-radius: 50%;
  bottom: 0;
  contain: strict;
  display: inline-block;
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}

.splide__sr {
  clip: rect(0 0 0 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.splide__toggle.is-active .splide__toggle__play,
.splide__toggle__pause {
  display: none;
}

.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}

.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0;
}

@keyframes splide-loading {
  0% {
    transform: rotate(0);
  }

  to {
    transform: rotate(1turn);
  }
}

.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.splide__track--fade>.splide__list {
  display: block;
}

.splide__track--fade>.splide__list>.splide__slide {
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  z-index: 0;
}

.splide__track--fade>.splide__list>.splide__slide.is-active {
  opacity: 1;
  position: relative;
  z-index: 1;
}

.splide--rtl {
  direction: rtl;
}

.splide__track--ttb>.splide__list {
  display: block;
}

.splide__arrow {
  -ms-flex-align: center;
  align-items: center;
  background: #e9e9e9;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: -ms-flexbox;
  display: flex;
  height: 64px;
  width: 64px;
  -ms-flex-pack: center;
  justify-content: center;
  opacity: 0.7;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.splide__arrow--prev::after,
.splide__arrow--next::after {
  content: "";
  width: 1rem;
  height: 1rem;
  border: solid #000;
  border-width: 1px 1px 0 0;
}

.splide__arrow--prev::after {
  margin-left: 0.4rem;
  transform: rotate(-135deg);
}

.splide__arrow--next::after {
  margin-right: 0.4rem;
  transform: rotate(45deg);
}

.splide__arrow svg {
  fill: #000;
  height: 1.2em;
  width: 1.2em;
}

.splide__arrow:hover:not(:disabled) {
  opacity: 0.9;
}

.splide__arrow:disabled {
  opacity: 0.3;
}

.splide__arrow:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__arrow--prev {
  left: calc((100% - 1080px) / 2);
}

.splide__arrow--prev svg {
  transform: scaleX(-1);
}

.splide__arrow--next {
  right: calc((100% - 1080px) / 2);
}

.splide.is-focus-in .splide__arrow:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__pagination {
  bottom: 1em;
  left: 0;
  position: absolute;
  right: 0;
  z-index: 1;
}

.splide__pagination__page {
  background: #ccc;
  border: 0;
  border-radius: 50%;
  display: inline-block;
  height: 8px;
  margin: 3px;
  opacity: 0.7;
  padding: 0;
  position: relative;
  transition: transform 0.2s linear;
  width: 8px;
}

.splide__pagination__page.is-active {
  background: #333;
  transform: scale(1.4);
  z-index: 1;
}

.splide__pagination__page:hover {
  cursor: pointer;
  opacity: 0.9;
}

.splide__pagination__page:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide.is-focus-in .splide__pagination__page:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__progress__bar {
  background: #ccc;
  height: 3px;
}

.splide__slide {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.splide__slide:focus {
  outline: 0;
}

@supports (outline-offset: -3px) {
  .splide__slide:focus-visible {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}

@media screen and (-ms-high-contrast: none) {
  .splide__slide:focus-visible {
    border: 3px solid #0bf;
  }
}

@supports (outline-offset: -3px) {
  .splide.is-focus-in .splide__slide:focus {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}

@media screen and (-ms-high-contrast: none) {
  .splide.is-focus-in .splide__slide:focus {
    border: 3px solid #0bf;
  }

  .splide.is-focus-in .splide__track>.splide__list>.splide__slide:focus {
    border-color: #0bf;
  }
}

.splide__toggle {
  cursor: pointer;
}

.splide__toggle:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide.is-focus-in .splide__toggle:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__track--nav>.splide__list>.splide__slide {
  border: 3px solid transparent;
  cursor: pointer;
}

.splide__track--nav>.splide__list>.splide__slide.is-active {
  border: 3px solid #000;
}

.splide__arrows--rtl .splide__arrow--prev {
  left: auto;
  right: 1em;
}

.splide__arrows--rtl .splide__arrow--prev svg {
  transform: scaleX(1);
}

.splide__arrows--rtl .splide__arrow--next {
  left: 1em;
  right: auto;
}

.splide__arrows--rtl .splide__arrow--next svg {
  transform: scaleX(-1);
}

.splide__arrows--ttb .splide__arrow {
  left: 50%;
  transform: translate(-50%);
}

.splide__arrows--ttb .splide__arrow--prev {
  top: 1em;
}

.splide__arrows--ttb .splide__arrow--prev svg {
  transform: rotate(-90deg);
}

.splide__arrows--ttb .splide__arrow--next {
  bottom: 1em;
  top: auto;
}

.splide__arrows--ttb .splide__arrow--next svg {
  transform: rotate(90deg);
}

.splide__pagination--ttb {
  bottom: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  left: auto;
  padding: 1em 0;
  right: 0.5em;
  top: 0;
}


.single-page {
  margin-block-end: 7px;
}

@media (max-width: 782px) {
  .single-page {
    margin-block-end: 50px;
  }
}

.tall+.tall {
  margin-block-start: 50px;
}
