@charset "UTF-8";
/*---------------------------
全体のレイアウト
---------------------------- */
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  min-height: 100vh;
  /* iOS 15 対策 */
}

body {
  position: relative;
  color: var(--on-surface);
}

@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
}

@media not screen and (max-width: 768px) {
  .sp {
    display: none !important;
  }
}

/* -----------------------------
  画像の配置スタイル
----------------------------- */
.wp-block-image.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-block-image.alignright {
  margin-left: auto;
  margin-right: 0;
}

.wp-block-image.alignleft {
  margin-left: 0;
  margin-right: auto;
}

/*------------------------------
文字
-------------------------------*/
span {
  display: inline-block;
}
/*------------------------------
リンク、ボタン
-------------------------------*/
a,
section#ranking .ranking-button--reservation a .button__label {
  color: inherit;
  text-decoration: none !important;
  transition: 0.2s ease;
}

a:hover,
section#ranking .ranking-button--reservation a .button__label:hover {
  transform: translateY(4%);
}

nav ul li a:has([class*="menu-icon"]) {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: var(--scale-8);
  padding: calc(1em / 20 * 16) calc(1em / 20 * 24);
  text-align: center;
}

nav ul li a[class*="button-"] span {
  flex-grow: 1;
}

nav ul li a[class*="button-"] span.material-symbols-rounded {
  flex-grow: 0;
}

button {
  font-family: inherit;
  color: inherit;
  cursor: pointer;
  background-color: transparent;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  line-height: 130%;
}

.button-style-border {
  border: var(--scale-4, 4px) solid;
}

.button-color-transparent {
  background-color: transparent;
  color: var(--on-surface);
}

.button-color-default {
  background-color: #0d47a1;
  color: #ffffff;
}

.cta-button-color-primary {
  background-color: var(--button-primary, #17962e);
  color: var(--on-button-primary, #ffffff);
}

.cta-button-color-secondary {
  background-color: var(--button-secondary, #ff9800);
  color: var(--on-button-secondary, #ffffff);
}

.button-color-surface {
  background-color: var(--surface);
  color: var(--on-surface);
}

.button-color-primary {
  background-color: var(--primary);
  color: var(--on-primary);
}

.button-color-secondary {
  background-color: var(--secondary);
  color: var(--on-secondary);
}

.button-color-tertiary {
  background-color: var(--tertiary);
  color: var(--on-tertiary);
}

.button-shadow-small {
  box-shadow: 0px var(--scale-4, 4px) var(--scale-8, 8px) 0px
    rgba(0, 0, 0, 0.16);
}

.button-shadow-large {
  box-shadow: 0px var(--scale-8, 8px) var(--scale-16, 16px) 0px
    rgba(0, 0, 0, 0.16);
}

.button-shape-rounded {
  border-radius: var(--scale-8);
}

.button-shape-elongated {
  border-radius: 9999px;
}

.button-width-short {
  width: 10em;
}

.button-width-long {
  width: 15em;
}

/*-------------------------------
画像
---------------------------------*/
img,
svg {
  display: block;
  max-width: 100%;
}

/*-------------------------
テーブル
---------------------------*/
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*-------------------------
フォーム
---------------------------*/
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="month"],
input[type="week"],
input[type="color"],
input[type="file"],
input[type="range"],
textarea {
  border: 1px solid var(--border-color, #aaa);
  border-radius: 2px;
  padding: 0.5em 1em;
  width: 100%;
  background-color: var(--surface);
}

input[type="submit"] {
  margin-top: 1em;
  font-size: 1.2em;
  background-color: var(--primary, #17962e);
  color: var(--on-primary, #fff);
  border: none;
  width: fit-content;
  line-height: 1;
  padding: 0.8em 2em;
}

th.required:before {
  content: "必須";
  display: inline-block;
  font-size: 0.9em;
  padding: 0.2em 0.4em;
  background-color: var(--bgcolor-button-cta);
  color: var(--text-color-on-dark);
  font-weight: normal;
  line-height: 1;
}

select {
  appearance: auto;
}

/*-------------------------
リスト
---------------------------*/
ol {
  list-style: auto inside;
}

/*==========================
pagination
============================*/

nav.navigation.pagination {
  margin-top: min(100vw / 750 * 40, 40px);
}

nav.navigation.pagination div.nav-links {
  display: flex;
  justify-content: center;
  gap: 0.5em;
  align-items: center;
  font-size: min(20rem * 1.414 + 9.79px, 20px);
}

nav.navigation.pagination div.nav-links .page-numbers {
  width: 2em;
  line-height: 1;
  text-align: center;
  padding: 0.5em;
  background-color: var(--bgcolor-secondary);
}

nav.navigation.pagination div.nav-links span.page-numbers.current {
  color: var(--text-color-on-dark);
  background-color: var(--text-color-link);
}

div.newer-older {
  display: flex;
  justify-content: center;
  gap: 0.5em;
  align-items: center;
  width: 100%;
  font-size: min(20rem * 1.414 + 9.79px, 20px);
  justify-content: space-between;
}

div.newer-older p a {
  width: 2em;
  line-height: 1;
  text-align: center;
  padding: 0.5em;
  text-decoration: none;
  color: var(--text-color-on-dark);
  background-color: var(--text-color-link);
}

/*============================
404 notfound
============================*/
section#notfound.notfound {
  padding-left: min(100vw / 750 * 48, 48px);
  padding-right: min(100vw / 750 * 48, 48px);
}

section#notfound.notfound div.container {
  text-align: center;
}

/*============================
breadcrumbs
============================*/
div.breadcrumbs {
  background: var(--surface-variant);
  padding: var(--scale-8) var(--padding-inline);
}
div.breadcrumbs span {
  font-size: var(--scale-14);
  color: var(--on-surface);
}
div.breadcrumbs span span.post.post-page.current-item {
  font-weight: bold;
}

/*============================
Progress Bar
============================*/
.progress-container {
  width: 100%;
  height: 4px;
  background: var(--surface-variant);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}

.progress-container .progress-bar {
  width: 100%;
  height: 100%;
  background: var(--primary);
}

/*============================
header
============================*/
header {
  width: var(--width-full, 1366px);
  padding: var(--scale-16, 16px) var(--padding-inline, 24px);
  flex-direction: column;
  align-items: center;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 1);
  transition: 0.2s ease;
  height: min(100vw / 375 * 64, 80px);
  display: flex;
  justify-content: center;
}

/*スクロール時のヘッダー背景色変更*/
header.is-scrolled {
  background: var(--surface);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 1);
}

header div.header__container {
  display: flex;
  max-width: var(--width-md, 1100px);
  align-items: flex-start;
  align-self: stretch;
  display: flex;
  gap: var(--scale-8, 8px);
  align-items: center;
  margin-inline: auto;
  width: 100%;
}

body.lower-page header {
  position: sticky;
  background: var(--surface);
}

/*============================
c-logo
============================*/
.c-logo {
  display: flex;
  align-items: center;
  gap: var(--scale-4, 4px);
}
/*ロゴマーク*/
.c-logo figure.logo__image {
  width: var(--scale-32, 32px);
  aspect-ratio: 1/1;
}
.c-logo figure.logo__image img {
  width: 100%;
  height: 100%;
}
.c-logo div.logo__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.c-logo div.logo__text div.logo__subtitle {
  color: var(--on-surface, #393f47);
  font-family: "Noto Sans JP";
  font-size: var(--scale-12, 12px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.c-logo div.logo__text div.text__title {
  color: var(--on-primary-container, #245eb4);
  font-family: "Noto Sans JP";
  font-size: var(--scale-20, 20px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.c-logo .logo__area {
  display: flex;
  padding: var(--scale-4, 4px);
  justify-content: center;
  align-items: center;
  color: var(--primary, #2894e2);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: var(--scale-12, 12px);
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 14.4px */
  border-radius: var(--scale-4, 4px);
  border: 1px solid var(--primary, #2894e2);
  background: #fff;
}

/*============================
#footer
============================*/
footer#footer.footer {
  display: flex;
  padding: var(--scale-24, 24px) var(--padding-inline, 24px);
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  background: var(--surface-nutral, #fff);
}

footer#footer.footer .footer__container {
  display: flex;
  max-width: var(--width-md, 1100px);
  justify-content: space-between;
  align-items: flex-start;
  align-content: flex-start;
  gap: 16px;
  align-self: stretch;
  flex-wrap: wrap;
  margin-inline: auto;
  width: 100%;
}

@media screen and (max-width: 768px) {
  footer#footer.footer .footer__container {
    flex-direction: column;
  }
}

footer#footer.footer nav ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--scale-8, 8px);
}
footer#footer.footer nav ul li a {
  display: flex;
  align-items: center;
  gap: var(--scale-8, 8px);

  color: var(--on-surface, #222);
  font-family: "Noto Sans JP";
  font-size: var(--scale-14, 14px);
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 14px */
  text-decoration: none;
}
footer#footer.footer nav ul li a svg {
  color: var(--primary);
  width: var(--scale-24, 24px);
  aspect-ratio: 1/1;
}

/*============================
#copyright
============================*/
section#copyright {
  display: flex;
  padding: var(--scale-24, 24px) var(--padding-inline, 24px);
  justify-content: center;
  align-items: center;
  align-self: stretch;
  background: var(--primary, #4a64ba);
}
section#copyright div.copyright__container {
  flex: 1 0 0;
  color: var(--surface, #fff);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: var(--scale-12, 12px);
  font-style: normal;
  font-weight: 700;
  line-height: 130%; /* 15.6px */
}
