@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Allan:wght@400;700&display=swap");
/*
  Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/
*,
*::before,
*::after {
  font-style: normal;
  box-sizing: border-box;
}

* {
  margin: 0;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
  text-align: justify;
}

#root,
#__next {
  isolation: isolate;
}

:root {
  --color-primary: #2F2A2A;
  --color-white: #ffffff;
  --color-grey: #212121;
  --color-black: #000000;
  --color-accent: #D53B2F;
  /* Neutral */
  --color-neutral-black: #000000;
  --color-neutral-dark-gray: #333333;
  --color-neutral-dim-gray: #696969;
  --color-neutral-gray: #cbcbcb;
  --color-neutral-white: #ffffff;
  /* Brand (base) */
  --color-brand-primary: #2f2a2a;
  --color-brand-secondary: #e1d38a;
  --color-brand-accent: #d53b2f;
  /* Brand / Accent scale */
  --color-brand-accent-50: #fceaeb;
  --color-brand-accent-100: #f9d8d8;
  --color-brand-accent-200: #f4abab;
  --color-brand-accent-300: #f17f7f;
  /* Brand / Primary scale */
  --color-brand-primary-50: #e4e2e2;
  --color-brand-primary-100: #c7c3c3;
  --color-brand-primary-200: #968c8c;
  --color-brand-primary-300: #605757;
  /* Status */
  --color-status-success: #1b9faf;
  --color-status-error: #d64545;
  /* Background */
  --color-bg-primary: #f9f9f9;
}

html {
  font-size: 16px;
}

body {
  line-height: 1.6;
  color: #000000;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.u-wrap-side {
  padding-inline: unset !important;
}

.container,
.container-l,
.container-s,
.container-xs {
  --container-max: 1130px;
  --side: 0px;
  width: min(100% - var(--side) * 2, var(--container-max));
  margin-inline: auto;
}

.container {
  --container-max: 1130px;
  --side: 16px;
}

.container-l {
  --container-max: 1280px;
}

.container-s {
  --container-max: 896px;
}

.container-xs {
  --container-max: 768px;
}

.u-wrap-side {
  --side: 16px;
}

.u-wrap-side-8 {
  --side: 8px;
}

.u-wrap-side-24 {
  --side: 24px;
}

.u-wrap-side-32 {
  --side: 32px;
}

.u-wrap-side-40 {
  --side: 40px;
}

/* color */
.bg-primary {
  background-color: #f9f9f9;
}

.bg-secondary {
  background-color: #e4e2e2;
}

.bg-white {
  background-color: var(--color-white);
}

.sticky {
  position: sticky;
  top: 96px;
  z-index: -1;
}
@media (max-width: 1023px) {
  .sticky {
    top: 48px;
  }
}

.u-reveal {
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 1s cubic-bezier(0.445, 0.05, 0.55, 0.95), transform 1s cubic-bezier(0.165, 0.84, 0.44, 1), visibility 1s;
  will-change: opacity, transform;
}

.u-reveal.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .u-reveal {
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: none;
  }
}
/* header */
header {
  position: sticky;
  top: 0;
  height: 98px;
  background-color: var(--color-white);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
  z-index: 200;
}
@media (max-width: 1023px) {
  header {
    height: 48px;
  }
}
header .header-inner {
  max-width: 1440px;
  margin-inline: auto;
  height: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
}
header .header-inner .site_logo {
  height: auto;
}
@media (max-width: 1023px) {
  header .header-inner .site_logo {
    height: 32px;
    width: auto;
    margin-left: 8px;
  }
}
header .header-inner .global-nav-toggle__button {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  background: var(--color-accent);
  cursor: pointer;
}
@media (max-width: 1023px) {
  header .header-inner .global-nav-toggle__button {
    display: inline-flex;
  }
}
header .header-inner .global-nav-toggle__line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-white);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
header .header-inner .global-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 40px;
  height: 98px;
}
@media (max-width: 1023px) {
  header .header-inner .global-nav {
    display: block;
    position: fixed;
    top: 48px;
    left: 0;
    width: 100%;
    height: calc(100vh - 48px);
    background: var(--color-bg-primary);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    overflow-y: auto;
    padding: 32px 24px 0 24px;
    z-index: 90;
  }
}
@media (max-width: 1023px) {
  header .header-inner .global-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}
header .header-inner .global-nav--list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  max-width: 528px;
  font-weight: bold;
  row-gap: 8px;
}
@media (max-width: 1023px) {
  header .header-inner .global-nav--list {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    max-width: none;
    row-gap: 0;
    border-top: 1px solid var(--color-neutral-gray);
  }
}
header .header-inner .global-nav--list a {
  color: var(--color-primary);
}
@media (max-width: 1023px) {
  header .header-inner .global-nav--list a {
    padding: 12px 8px;
    display: block;
  }
}
header .header-inner .global-nav--list > li > a {
  position: relative;
}
@media (min-width: 1024px) {
  header .header-inner .global-nav--list > li > a {
    padding-bottom: 3px;
  }
  header .header-inner .global-nav--list > li > a::after {
    position: absolute;
    left: 0;
    content: "";
    width: 100%;
    height: 2px;
    background: var(--color-accent);
    bottom: -2px;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform 0.3s;
  }
  header .header-inner .global-nav--list > li > a:hover::after {
    transform: scale(1, 1);
  }
}
header .header-inner .global-nav--list > li:has(.mega)::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 12px;
  content: "\f078";
  color: #696969;
  padding-left: 5px;
}
@media (max-width: 1023px) {
  header .header-inner .global-nav--list > li:has(.mega) > a {
    padding-right: 32px;
  }
  header .header-inner .global-nav--list > li:has(.mega)::after, header .header-inner .global-nav--list > li:has(.mega)::before {
    content: "";
    position: absolute;
    right: 12px;
    top: 24px;
    width: 12px;
    height: 1px;
    background-color: currentColor;
  }
  header .header-inner .global-nav--list > li:has(.mega)::before {
    transform: rotate(90deg);
    transition: transform 0.2s ease, opacity 0.2s ease;
  }
}
@media (max-width: 1023px) {
  header .header-inner .global-nav--list > li.is-mega-open::before {
    opacity: 0;
    transform: rotate(90deg) scaleY(0);
  }
}
@media (max-width: 1023px) {
  header .header-inner .global-nav--list > li {
    position: relative;
    width: 100%;
    border-bottom: 1px solid var(--color-neutral-gray);
  }
}
header .header-inner .global-nav--list .mega {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  background: #fff;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
@media (max-width: 1023px) {
  header .header-inner .global-nav--list .mega {
    position: static;
    display: block;
    width: 100%;
    background: none;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transition: max-height 0.25s ease, opacity 0.25s ease;
  }
}
header .header-inner .global-nav--list > li.is-mega-open .mega {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
@media (max-width: 1023px) {
  header .header-inner .global-nav--list > li.is-mega-open .mega {
    transform: none;
  }
}
header .header-inner .global-nav--list .mega__inner {
  max-width: 768px;
  margin: 0 auto;
  padding: 24px 16px; /* 左右余白（予約） */
}
@media (max-width: 1023px) {
  header .header-inner .global-nav--list .mega__inner {
    max-width: none;
    margin: 0;
    padding: 0 0 8px;
  }
}
header .header-inner .global-nav--list .mega__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px 24px;
}
@media (max-width: 1023px) {
  header .header-inner .global-nav--list .mega__list {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
header .header-inner .global-nav--list .mega__list > li {
  max-width: 240px;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
}
header .header-inner .global-nav--list .mega__list > li a {
  transition: all 0.2s;
  height: 100%;
  display: flex;
  flex-direction: column;
}
header .header-inner .global-nav--list .mega__list > li a:hover {
  opacity: 0.7;
}
@media (max-width: 1023px) {
  header .header-inner .global-nav--list .mega__list > li {
    max-width: none;
    text-align: left;
    letter-spacing: 0;
    padding-left: 24px;
  }
  header .header-inner .global-nav--list .mega__list > li a {
    position: relative;
    padding-block: 8px;
    padding-right: 40px;
  }
  header .header-inner .global-nav--list .mega__list > li a::after {
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 12px;
    color: var(--color-neutral-dim-gray);
    content: "\f054";
  }
}
header .header-inner .global-nav--list .mega__list > li img {
  margin-inline: auto;
  margin-bottom: 4px;
  border-radius: 8px;
}
@media (max-width: 1023px) {
  header .header-inner .global-nav--list .mega__list > li img {
    display: none;
  }
}
header .header-inner .global-nav--cta {
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
  width: max-content;
  padding-inline: 24px;
  color: var(--color-white);
  background-color: var(--color-accent);
  font-weight: bold;
}
@media (max-width: 1023px) {
  header .header-inner .global-nav--cta {
    height: auto;
    margin-block: 16px 32px;
    margin-inline: auto;
    width: max-content;
    padding: 16px 24px;
    border-radius: calc(infinity * 1px);
  }
}
header .header-inner .global-nav--cta::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 12px;
  content: "\f061";
}

@media (max-width: 1023px) {
  body.is-nav-open {
    overflow: hidden;
  }
  body.is-nav-open .global-nav-toggle__button {
    background: var(--color-neutral-gray);
  }
  body.is-nav-open .global-nav-toggle__line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  body.is-nav-open .global-nav-toggle__line:nth-child(2) {
    opacity: 0;
  }
  body.is-nav-open .global-nav-toggle__line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}
/* footer */
.footer_cta {
  padding-block: 96px 80px;
  background-color: var(--color-bg-primary);
}
.footer_cta__heading {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-weight: bold;
  gap: 24px;
}
@media (max-width: 599px) {
  .footer_cta__heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
.footer_cta__heading .en {
  font-size: 64px;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1;
}
@media (max-width: 599px) {
  .footer_cta__heading .en {
    font-size: 40px;
  }
}
.footer_cta__heading .ja {
  font-size: 24px;
}
@media (max-width: 599px) {
  .footer_cta__heading .ja {
    font-size: 16px;
  }
}
.footer_cta__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 1023px) {
  .footer_cta__list {
    grid-template-columns: 1fr;
  }
}
.footer_cta__detail {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  background-color: var(--color-white);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.05);
}
.footer_cta__detail > div {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer_cta__detail .btn {
  margin-top: auto;
}
.footer_cta__icon {
  margin-bottom: 24px;
}
.footer_cta__tel {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-family: "Noto Sans JP", sans-serif;
  color: var(--color-primary);
  line-height: 1;
  letter-spacing: 0em;
  font-size: 36px;
}
@media (max-width: 599px) {
  .footer_cta__tel {
    font-size: 24px;
  }
}
.footer_cta__tel::before {
  font-size: 20px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f879";
}
@media (max-width: 599px) {
  .footer_cta__tel::before {
    font-size: 16px;
  }
}

.footer-sns {
  background-color: var(--color-primary);
  padding-block: 48px;
}
@media (max-width: 599px) {
  .footer-sns {
    padding-block: 32px;
  }
}
.footer-sns--list {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 32px;
}
@media (max-width: 599px) {
  .footer-sns--list {
    gap: 24px;
  }
}
.footer-sns--list a {
  color: var(--color-white);
}

footer {
  padding-block: 32px;
  padding-bottom: 80px;
}
footer .footer_contents {
  display: grid;
  grid-template-columns: max-content auto;
  gap: 32px;
}
@media (max-width: 599px) {
  footer .footer_contents {
    display: contents;
  }
}
footer .footer_information {
  padding-right: 32px;
}
@media (max-width: 599px) {
  footer .footer_information {
    padding: 0 0 32px 0;
  }
}
footer .footer_information p {
  line-height: 1.75;
}
footer .footer_nav {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(max-content, 180px));
  gap: 32px;
  border-left: 1px solid var(--color-brand-primary-50);
  padding-left: 32px;
}
@media (max-width: 1023px) {
  footer .footer_nav {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
@media (max-width: 599px) {
  footer .footer_nav {
    padding: 32px 0;
    border-top: 1px solid var(--color-brand-primary-50);
    border-left: unset;
  }
}
footer .footer_nav ul {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 16px;
}
footer .footer_nav ul.menu a {
  position: relative;
  font-weight: bold;
  color: var(--color-brand-primary);
}
footer .footer_nav ul.menu a::after {
  position: absolute;
  bottom: -4px; /*テキストからの距離*/
  left: 0;
  content: "";
  width: 100%; /*hover時に表示*/
  height: 2px; /*下線の高さ*/
  background: var(--color-accent); /*下線の色*/
  transform: scale(0, 1); /*トランス前の下線*/
  transform-origin: left top; /*トランスフォーム開始位置*/
  transition: transform 0.3s; /*アニメーション速度*/
}
footer .footer_nav ul.menu a:hover::after {
  transform: scale(1, 1);
}
footer .footer_nav ul li ul.sub-menu {
  padding-top: 1em;
  padding-left: 1em;
}
footer .footer_nav ul li ul.sub-menu a {
  font-weight: normal;
}
footer .footer-fixed-nav {
  display: block;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: color-mix(in srgb, var(--color-brand-primary) 95%, transparent);
  box-shadow: 0 -3px 2px rgba(51, 51, 51, 0.1);
  z-index: 150;
}
footer .footer-fixed-nav.is-cta-gated {
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
footer .footer-fixed-nav.is-cta-gated.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
footer .footer-fixed-nav__inner {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  column-gap: 12px;
  padding-block: 16px;
}
@media (max-width: 599px) {
  footer .footer-fixed-nav__inner {
    column-gap: 20px;
    padding-block: 8px;
  }
}
footer .footer-fixed-nav__btn {
  display: inline-block;
  background-color: var(--color-white);
  color: var(--color-accent);
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  padding: 8px 16px;
  margin-right: 28px;
}
@media (max-width: 599px) {
  footer .footer-fixed-nav__btn {
    font-size: 12px;
    margin-right: unset;
  }
}
@media (max-width: 599px) {
  footer .footer-fixed-nav__tel img, footer .footer-fixed-nav__line img, footer .footer-fixed-nav__reserve img {
    width: 32px;
    height: auto;
  }
}
footer .footer-fixed-nav__note {
  width: fit-content;
  font-size: 12px;
  color: var(--color-white);
  padding-left: 20px;
}
@media (max-width: 599px) {
  footer .footer-fixed-nav__note {
    width: 100%;
    font-size: 8px;
    padding-left: unset;
    padding-block: 4px;
    text-align: center;
  }
}
footer .copyright {
  margin-top: 32px;
}
@media (max-width: 599px) {
  footer .copyright {
    margin-top: unset;
    text-align: center;
  }
}

/* post - single */
.post-contents {
  max-width: 800px;
  margin-inline: auto;
}
.post-contents .post-header {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--color-neutral-gray);
}
.post-contents .post-header time {
  color: var(--color-neutral-dim-gray);
}
.post-contents .post-header .post-title {
  border: unset;
  padding: unset;
  font-size: 36px;
}
@media (max-width: 599px) {
  .post-contents .post-header .post-title {
    font-size: 24px;
  }
}
.post-contents .post-header .article-tag {
  padding-top: 48px;
}
.post-contents .post-content h1,
.post-contents .post-content h2,
.post-contents .post-content h3,
.post-contents .post-content h4,
.post-contents .post-content h5,
.post-contents .post-content h6,
.post-contents .post-content p {
  border: unset;
  background-color: unset;
  margin: unset;
  padding: unset;
  margin-block: 16px;
  color: var(--color-brand-primary);
}
.post-contents .post-content h1,
.post-contents .post-content h2 {
  font-size: 24px;
}
.post-contents .post-content h3 {
  font-size: 20px;
}
.post-contents .post-content h4,
.post-contents .post-content h5,
.post-contents .post-content h6 {
  font-size: 14px;
}
.post-contents .post-content p {
  margin-block: unset 1em;
  color: var(--color-neutral-dark-gray);
}

#mdl-breadcrumbs {
  background-color: unset !important;
  padding: 8px 16px;
}

/* swiper */
.swiper_contents {
  overflow-x: hidden;
}
.swiper_contents .swiper_head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}
@media (max-width: 599px) {
  .swiper_contents .swiper_head {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }
}
.swiper_contents .swiper_head__actions {
  position: relative;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 16px;
}
@media (max-width: 599px) {
  .swiper_contents .swiper_head__actions {
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    width: 100%;
  }
}
.swiper_contents .swiper_head__nav {
  display: flex;
  gap: 10px;
  position: relative;
  z-index: 50;
}
.swiper_contents .swiper_head__nav .slide_prev,
.swiper_contents .swiper_head__nav .slide_next {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 0;
  background: #e5e5e5;
  color: #333;
  cursor: pointer;
  display: grid;
  place-items: center;
  position: relative;
  z-index: 50;
}
.swiper_contents .swiper_head__nav .slide_prev.swiper-button-disabled,
.swiper_contents .swiper_head__nav .slide_next.swiper-button-disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.swiper_contents .swiper_head__nav .slide_next {
  background: var(--color-brand-accent);
  color: var(--color-white);
}
.swiper_contents .swiper_head__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  border-bottom: 1px solid var(--color-brand-accent);
  padding-bottom: 2px;
  color: var(--color-primary);
}
@media (max-width: 599px) {
  .swiper_contents .swiper_head__more {
    font-size: 14px;
  }
}
.swiper_contents .swiper_body {
  max-width: calc(100vw - 32px);
  overflow: visible !important;
  position: relative;
  z-index: 1;
}

.yarpp .swiper_contents {
  padding-bottom: 16px;
}
.yarpp .swiper_contents .swiper_head__actions {
  justify-content: space-between;
}
@media (max-width: 599px) {
  .yarpp .swiper_contents .swiper_head__actions {
    align-items: flex-start;
  }
}

.article-tag.secondary li {
  background-color: var(--color-brand-primary-50) !important;
  color: var(--color-neutral-dark-gray);
}

.grecaptcha-badge {
  z-index: 0;
  bottom: 0 !important;
}/*# sourceMappingURL=common.css.map */