@charset "UTF-8";
:root {
  --header-h: 75px;
}
@media screen and (min-width: 1024px) {
  :root {
    --header-h: 100px;
  }
}
*,
*::before,
*::after {
  box-sizing: inherit;
  background-repeat: no-repeat;
}
* {
  margin: 0;
  padding: 0;
}
:where(:root) {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}
:where(body) {
  color: #171717;
  font-family: 'Noto Sans JP', sans-serif;
  font-optical-sizing: auto;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  overflow-wrap: anywhere;
  word-break: normal;
}
:where(h1,
h2,
h3,
h4,
h5,
h6) {
  font: inherit;
}
:where(em) {
  font-style: normal;
}
:where(a:any-link) {
  color: inherit;
  text-decoration: none;
}
:where(a:any-link):has(> img) {
  display: block;
}
:where(img) {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}
:where(ul,
ol) {
  list-style-type: "";
}
:where(table) {
  border-collapse: collapse;
  width: 100%;
}
:where(button) {
  display: block;
  padding: 0;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  word-spacing: inherit;
  background: none;
  background-repeat: no-repeat;
  border: none;
  border-radius: unset;
  outline: none;
  cursor: pointer;
  touch-action: manipulation;
  user-select: none;
}
.ff-zmg {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
}
.inner {
  width: calc(100% - 40px);
  max-width: 1120px;
  margin-inline: auto;
}
/* header */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 10px;
  width: 100%;
  height: var(--header-h);
  padding: 10px 15px 10px 19px;
  color: #fff;
  position: fixed;
  top: 0;
  z-index: 10;
}
.site-header::before {
  content: '';
  background: linear-gradient(90deg, #182987 0%, #0c1544 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  position: absolute;
  inset: 0;
  z-index: -1;
}
.site-header.is-scrolled::before {
  opacity: 1;
}
.site-header .logo {
  max-width: 268px;
}
@media screen and (min-width: 1360px) {
  .site-header {
    padding: 10px 33px 10px 27px;
  }
  .site-header .logo {
    max-width: 394px;
  }
}
/* gnav */
.gnav {
  display: none;
}
@media screen and (min-width: 1024px) {
  .gnav {
    display: flex;
    align-items: center;
    column-gap: 20px;
  }
  .gnav--list {
    display: flex;
    column-gap: 1em;
    letter-spacing: 0.05em;
  }
  .gnav--tel dt {
    font-size: 18px;
  }
  .gnav--tel dd {
    font-size: 20px;
  }
  .gnav .hours {
    font-size: 14px;
    text-align: center;
  }
}
@media screen and (min-width: 1360px) {
  .gnav {
    column-gap: 37px;
  }
  .gnav--list {
    column-gap: 2em;
    font-size: 18px;
  }
  .gnav .tel dt {
    font-size: 20px;
  }
  .gnav .tel dd {
    font-size: 24px;
  }
}
@media (any-hover: hover) {
  .gnav--list a:hover {
    text-decoration: underline;
  }
}
/* menu */
.menu--btn {
  --menu-b: 2px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 10px 2px;
  color: #fff;
}
.menu--btn .icon {
  display: block;
  width: 40px;
  height: 12px;
  border-style: solid;
  border-width: var(--menu-b) 0;
  position: relative;
}
.menu--btn .icon::before,
.menu--btn .icon::after {
  content: '';
  display: block;
  width: 100%;
  height: var(--menu-b);
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}
.menu--btn[aria-expanded="true"] .icon {
  border-color: transparent;
}
.menu--btn[aria-expanded="true"] .icon::before,
.menu--btn[aria-expanded="true"] .icon::after {
  background-color: currentcolor;
}
.menu--btn[aria-expanded="true"] .icon::before {
  rotate: -30deg;
}
.menu--btn[aria-expanded="true"] .icon::after {
  content: '';
  rotate: 30deg;
}
.menu {
  width: 100%;
  height: 100dvh;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9;
}
.menu[aria-hidden="true"] {
  opacity: 0;
  visibility: hidden;
}
.menu[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease;
}
.menu--content {
  height: 100%;
  color: #fff;
  background-color: #182987;
  overflow-y: auto;
  overscroll-behavior-y: contain;
  scrollbar-width: none;
}
.menu--inner {
  min-height: calc(100% + 1px);
  padding: 100px 20px 80px;
}
.menu--list {
  display: grid;
  row-gap: 1.5em;
  font-size: 18px;
  letter-spacing: 0.1em;
  line-height: 1;
  text-align: center;
}
.menu--list a {
  display: inline-block;
  padding: 5px;
}
.menu--tel {
  margin-top: 40px;
  width: fit-content;
  margin-inline: auto;
}
.menu--tel a {
  display: block;
}
.menu--tel .item dt {
  font-size: 18px;
}
.menu--tel .item dd {
  font-size: 20px;
}
.menu--tel .hours {
  margin-top: 10px;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .menu--btn {
    display: none;
  }
}
@media (any-hover: hover) {
  .menu a:hover {
    text-decoration: underline;
  }
}
/* main */
[class*="heading-lv"] {
  color: var(--heading-color, currentcolor);
  font-family: "Zen Maru Gothic", sans-serif;
  letter-spacing: 0.1em;
  text-align: center;
}
[class*="heading-lv"].line::after {
  content: '';
  display: block;
  width: 2px;
  height: 37px;
  margin-inline: auto;
  margin-top: 13px;
  background-color: currentcolor;
  border-radius: 15px;
}
.heading-lv1 {
  font-size: 24px;
}
.heading-lv2 {
  font-size: 20px;
}
@media screen and (min-width: 1024px) {
  [class*="heading-lv"].line::after {
    height: 52px;
    margin-top: 17px;
  }
  .heading-lv1,
  .heading-lv2 {
    font-size: 30px;
  }
}
.tel .item {
  display: flex;
  align-items: baseline;
  column-gap: 8px;
  line-height: 1;
}
.list-post {
  letter-spacing: 0.1em;
  line-height: 1.5;
}
.list-post .item {
  display: grid;
  row-gap: 6px;
  padding: 14px 19px;
  border-bottom: 1px solid var(--border, currentcolor);
}
@media screen and (min-width: 768px) {
  .list-post .item {
    grid-template-columns: max-content 1fr;
    column-gap: 27px;
    padding: 24px 0;
  }
}
@media (any-hover: hover) {
  .list-post a:hover {
    text-decoration: underline;
  }
}
.link-btn {
  max-width: 318px;
  margin-inline: auto;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.1em;
  border-radius: 37px;
  overflow: hidden;
  position: relative;
  isolation: isolate;
}
.link-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 51px;
  padding: 5px 70px;
  text-decoration: none;
}
.link-btn.back a::after,
.link-btn.more a::after,
.link-btn.more-2 a::after {
  content: '';
  display: block;
  width: 28px;
  height: 8px;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: 37%;
}
.link-btn.back a,
.link-btn.more a {
  color: #fff;
  background: linear-gradient(90deg, #086acf 0%, #182987 100%);
}
.link-btn.back a::after {
  background-image: url("../img/link-back.svg");
  left: 36px;
}
.link-btn.more a::after,
.link-btn.more-2 a::after {
  right: 26px;
}
.link-btn.more a::after {
  background-image: url("../img/link-more.svg");
}
.link-btn.more-2 a {
  color: #182987;
  background-color: #dec5f1;
}
.link-btn.more-2 a::after {
  background-image: url("../img/link-more-2.svg");
}
@media (any-hover: hover) {
  .link-btn a {
    transition: opacity 0.3s ease;
  }
  .link-btn a:hover {
    opacity: 0.8;
  }
}
.schedule--table,
.schedule--text {
  max-width: 669px;
  margin-inline: auto;
}
.schedule--table {
  table-layout: fixed;
  color: var(--table-txt, currentcolor);
  font-size: 18px;
}
.schedule--table th,
.schedule--table td {
  padding: 3px 6px;
  font-weight: 400;
  text-align: center;
  border-style: solid;
  border-width: 0 0 1px;
}
.schedule--table th:not(:last-child),
.schedule--table td:not(:last-child) {
  border-right-width: 1px;
}
.schedule--table thead {
  background-color: var(--thead-bg, unset);
}
.schedule--table thead th {
  border-bottom-width: 4px;
}
.schedule .table-1 {
  margin-top: 51px;
}
.schedule--text {
  margin-top: 25px;
  letter-spacing: 0.1em;
  line-height: 2;
}
.schedule--box {
  padding: 22px 20px 20px 25px;
  color: #000;
  letter-spacing: 0.1em;
  line-height: 2;
  position: relative;
  isolation: isolate;
}
.schedule--box::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.88;
  z-index: -1;
}
.schedule .box-1 {
  margin-top: 40px;
}
.schedule .box-2,
.schedule .box-3 {
  margin-top: 23px;
}
@media screen and (min-width: 1024px) {
  .schedule .table-1 {
    margin-top: 37px;
  }
  .schedule--text {
    margin-top: 28px;
  }
  .schedule--box {
    padding: 33px 40px;
  }
  .schedule .box-1 {
    margin-top: 32px;
  }
  .schedule .box-2,
  .schedule .box-3 {
    margin-top: 27px;
  }
}
/* footer */
.site-footer {
  padding-top: 123px;
  padding-bottom: 95px;
  color: #fff;
  text-align: center;
  background-size: 100% 100%;
}
.site-footer.type-1 {
  background-image: url("../img/footer_sp.jpg");
}
.site-footer.type-2 {
  background-image: url("../img/footer_white_sp.jpg");
}
.site-footer .logo {
  max-width: 250px;
  margin-inline: auto;
}
.site-footer .address {
  margin-top: 54px;
  line-height: 1.625;
}
.site-footer .address span {
  display: inline-block;
}
.site-footer .tel {
  display: grid;
  justify-content: center;
  row-gap: 12px;
  margin-top: 22px;
}
.site-footer .tel .item {
  column-gap: 10px;
}
.site-footer .tel dt {
  font-size: 23px;
}
.site-footer .tel dd {
  font-size: 27px;
}
.site-footer .copy {
  margin-top: 29px;
}
.site-bottom {
  text-align: right;
  position: fixed;
  right: 8px;
  bottom: 8px;
  z-index: 2;
}
.site-bottom .scroll {
  display: none;
}
.site-bottom .reservation {
  max-width: 130px;
}
@media screen and (min-width: 1024px) {
  .site-footer {
    padding-top: 113px;
  }
  .site-footer.type-1 {
    background-image: url("../img/footer.jpg");
  }
  .site-footer.type-2 {
    background-image: url("../img/footer_white.jpg");
  }
  .site-footer .logo {
    max-width: 281px;
  }
  .site-footer .address {
    margin-top: 45px;
  }
  .site-footer .tel {
    grid-auto-flow: column;
    column-gap: 40px;
  }
  .site-footer .copy {
    margin-top: 40px;
  }
  .site-bottom {
    right: 23px;
    bottom: 26px;
  }
  .site-bottom .scroll {
    display: revert;
    aspect-ratio: 1;
    color: #fff;
    background-color: #182987;
    border-radius: 50%;
    overflow: hidden;
    width: 87px;
  }
  .site-bottom .reservation {
    max-width: 197px;
    margin-top: 22px;
  }
}
