@charset "UTF-8";

/*
Theme Name: teine-keisei
Description: teine-keisei
Version: 1.0
Author: Road Skip
Text Domain: teine-keisei.com
*/

/* ここから共通CSS */

/* ==================================================
   01. Variables
================================================== */

:root {
  /* Colors */
  --color-text: #2c2c2c;
  /*--color-base: #e9faff;*/
  --color-accent: #8ba4d5;
  --color-gold: #beab7a;
  --color-light-blue: #87dbff;
  --color-white: #ffffff;
  --color-black: #000000;

  /* Hover colors */
  --color-accent-hover: #748fc5;
  --color-gold-hover: #a99565;
  --color-light-blue-hover: #65caf4;

  /* Fonts */
  --font-ja: "Zen Kaku Gothic New", sans-serif;
  --font-en: "Manrope", sans-serif;

  /* Content width */
  --inner-width: 1200px;

  /* Side spacing */
  --side-space-pc: 40px;
  --side-space-tablet: 30px;
  --side-space-sp: 20px;

  /* Header height
     ヘッダー制作時にデザインに合わせて調整する */
  --header-height-pc: 100px;
  --header-height-sp: 72px;

  /* Animation */
  --transition-base: 0.3s ease;
  --transition-fast: 0.2s ease;

  /* Layer */
  --z-header: 1000;
  --z-drawer-overlay: 1100;
  --z-drawer: 1200;
  --z-menu-button: 1300;
}


/* ==================================================
   02. Base
================================================== */

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  color: var(--color-text);
  background-color: var(--color-white);
  font-family: var(--font-ja);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: 0.04em;
  overflow-wrap: anywhere;
  word-break: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.is-drawer-open {
  overflow: hidden;
}

main {
  display: block;
}

a {
  color: inherit;
}

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

button {
  color: inherit;
}

img {
  vertical-align: bottom;
}

iframe {
  display: block;
  max-width: 100%;
  border: 0;
}

address {
  font-style: normal;
}
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
}

/* ==================================================
   Common Typography
================================================== */

h2 {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.4;
}

.section-en {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
}

p {
  font-size: 18px;
  font-weight: 400;
  line-height: 2;
}

.c-button {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
}

@media screen and (min-width: 768px) and (max-width: 1180px) {
  h2 {
    font-size: 30px;
  }
}

@media screen and (max-width: 767px) {
  h2 {
    font-size: 26px;
  }

  .section-en {
    font-size: 16px;
  }

  p {
    font-size: 16px;
    line-height: 1.9;
  }

  .c-button {
    font-size: 16px;
  }
}

/* ==================================================
   03. Layout
================================================== */

.l-container {
  width: 100%;
  overflow: clip;
}

.l-inner {
  width: min(
    calc(100% - (var(--side-space-pc) * 2)),
    var(--inner-width)
  );
  margin-inline: auto;
}

.l-section {
  position: relative;
  width: 100%;
}

.l-main {
  width: 100%;
}


/* ==================================================
   04. Typography
================================================== */

.font-ja {
  font-family: var(--font-ja);
}

.font-en {
  font-family: var(--font-en);
	color: #06396e;
}

.text-left {
  text-align: left;
}

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

.text-right {
  text-align: right;
}

.font-regular {
  font-weight: 400;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}


/* ==================================================
   05. Responsive visibility
================================================== */

.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

/* PCのときだけ改行 */
.br-pc {
  display: inline;
}

/* スマートフォンのときだけ改行 */
.br-sp {
  display: none;
}


/* ==================================================
   06. Accessibility
================================================== */

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  white-space: nowrap !important;
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 9999;
  padding: 10px 16px;
  color: var(--color-white);
  background-color: var(--color-text);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  transform: translateY(-200%);
  transition: transform var(--transition-fast);
}

.skip-link:focus {
  transform: translateY(0);
}

:focus {
  outline: none;
}

:focus-visible {
  outline: 3px solid var(--color-light-blue);
  outline-offset: 4px;
}


/* ==================================================
   07. Common link
================================================== */

.c-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  transition:
    color var(--transition-base),
    opacity var(--transition-base);
}

.c-link__arrow {
  display: inline-block;
  flex: 0 0 auto;
  transition: transform var(--transition-base);
}


/* ==================================================
   08. Common button base
================================================== */

.c-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 44px;
  padding: 0;
  color: inherit;
  background-color: transparent;
  border: 0;
  font-family: var(--font-ja);
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  transition:
    color var(--transition-base),
    background-color var(--transition-base),
    border-color var(--transition-base),
    opacity var(--transition-base),
    box-shadow var(--transition-base),
    transform var(--transition-base);
}

.c-button__text {
  display: inline-block;
}

.c-button__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}


/* ==================================================
   09. Common media
================================================== */

.c-image {
  display: block;
  width: 100%;
  height: auto;
}

.c-cover-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-contain-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}


/* ==================================================
   10. WordPress common
================================================== */

.aligncenter {
  display: block;
  margin-right: auto;
  margin-left: auto;
}

.alignleft {
  float: left;
  margin-right: 2em;
  margin-bottom: 1em;
}

.alignright {
  float: right;
  margin-bottom: 1em;
  margin-left: 2em;
}

.wp-caption {
  max-width: 100%;
}

.wp-caption-text {
  margin-top: 0.5em;
  font-size: 0.875em;
  line-height: 1.7;
}

.wp-block-image img {
  height: auto;
}

.admin-bar .site-header {
  top: 32px;
}


/* ==================================================
   11. Hover
================================================== */

@media (hover: hover) and (pointer: fine) {
  .c-link:hover {
    color: var(--color-accent-hover);
  }

  .c-link:hover .c-link__arrow {
    transform: translateX(3px);
  }

  .c-button:hover {
    opacity: 0.88;
  }

  a[href^="tel:"]:hover {
    color: inherit;
  }
}


/* ==================================================
   12. Tablet
================================================== */

@media screen and (max-width: 1024px) {
  .l-inner {
    width: calc(100% - (var(--side-space-tablet) * 2));
  }
}


/* ==================================================
   13. Smartphone
================================================== */

@media screen and (max-width: 767px) {
  body {
    font-size: 16px;
    line-height: 1.85;
    letter-spacing: 0.035em;
  }

  .l-inner {
    width: 94%;
  }

  .pc-only {
    display: none !important;
  }

  .sp-only {
    display: block;
  }

  .br-pc {
    display: none;
  }

  .br-sp {
    display: inline;
  }

  .alignleft,
  .alignright {
    float: none;
    margin-right: 0;
    margin-left: 0;
  }

  .admin-bar .site-header {
    top: 46px;
  }
}


/* ==================================================
   14. Small smartphone
================================================== */

@media screen and (max-width: 374px) {
  :root {
    --side-space-sp: 16px;
  }
}


/* ==================================================
   15. Reduced motion
================================================== */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ==================================================
   404 Page
================================================== */

.page-404 {
  width: 100%;
}


/* ==================================================
   404 Hero
================================================== */

.page-404__hero {
  padding: 80px 40px;
  background-color: var(--color-base);
  text-align: center;
}

.page-404__hero-inner {
  max-width: 1200px;
}

.page-404__en {
  margin-bottom: 8px;
  color: #06396e;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
}

.page-404__title {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.4;
}


/* ==================================================
   404 Content
================================================== */

.page-404__section {
  padding: 80px 40px;
}

.page-404__inner {
  max-width: 900px;
}

.page-404__box {
  padding: 64px 70px;
  background-color: var(--color-white);
  border: 2px solid rgba(139, 164, 213, 0.42);
  border-radius: 32px;
  box-shadow: 0 10px 28px rgba(34, 75, 108, 0.1);
  text-align: center;
}

.page-404__number {
  color: var(--color-accent);
  font-size: 88px;
  font-weight: 700;
  line-height: 1;
}

.page-404__message {
  margin-top: 34px;
}

.page-404__message p {
  font-size: 18px;
  font-weight: 400;
  line-height: 2;
}

.page-404__message p + p {
  margin-top: 14px;
}


/* ==================================================
   404 Button
================================================== */

.page-404__button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 420px;
  max-width: 100%;
  min-height: 60px;
  margin: 40px auto 0;
  padding: 12px 64px 12px 28px;
  color: var(--color-white);
  background-color: #06396e;
  border-radius: 999px;
  text-align: center;
  transition:
    background-color var(--transition-base),
    box-shadow var(--transition-base);
}

.page-404__button-arrow {
  position: absolute;
  top: 50%;
  right: 28px;
  width: 13px;
  height: 13px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
  transition: transform var(--transition-base);
}


/* ==================================================
   404 Hover
================================================== */

@media (hover: hover) and (pointer: fine) {
  .page-404__button:hover {
    color: var(--color-white);
    background-color: #092f59;
    box-shadow: 0 8px 20px rgba(6, 57, 110, 0.2);
  }

  .page-404__button:hover .page-404__button-arrow {
    transform: translate(4px, -50%) rotate(45deg);
  }
}


/* ==================================================
   404 Tablet
================================================== */

@media screen and (min-width: 768px) and (max-width: 1180px) {
  .page-404__hero {
    padding-right: 30px;
    padding-left: 30px;
  }

  .page-404__title {
    font-size: 30px;
  }

  .page-404__section {
    padding-right: 30px;
    padding-left: 30px;
  }

  .page-404__box {
    padding: 56px 50px;
  }

  .page-404__number {
    font-size: 76px;
  }
}


/* ==================================================
   404 Smartphone
================================================== */

@media screen and (max-width: 767px) {
  .page-404__hero {
    padding: 60px 20px;
  }

  .page-404__en {
    font-size: 16px;
  }

  .page-404__title {
    font-size: 26px;
  }

  .page-404__section {
    padding: 80px 20px;
  }

  .page-404__box {
    padding: 42px 22px;
    border-width: 1px;
    border-radius: 24px;
  }

  .page-404__number {
    font-size: 64px;
  }

  .page-404__message {
    margin-top: 28px;
  }

  .page-404__message p {
    font-size: 16px;
    line-height: 1.9;
  }

  .page-404__message p + p {
    margin-top: 12px;
  }

  .page-404__button {
    width: 100%;
    min-height: 56px;
    margin-top: 32px;
    padding: 10px 50px 10px 20px;
    font-size: 16px;
  }

  .page-404__button-arrow {
    right: 22px;
    width: 12px;
    height: 12px;
  }
}



/* ==================================================
   16. Header
================================================== */

.site-header {
  position: relative;
  z-index: var(--z-header);
  width: 100%;
  padding-top: 24px;
  background-color: transparent;
}

.site-header__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

.site-header__logo {
  display: block;
  flex: 0 1 470px;
  width: min(34vw, 470px);
  padding-top: 2px;
}

.site-header__logo-image {
  display: block;
  width: 100%;
  height: auto;
}

.site-header__contact {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  flex: 1 1 auto;
}

.site-header__reception {
  width: min(300px, 24vw);
}

.site-header__reception-time {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 9px;
  margin-bottom: 6px;
  color: var(--color-text);
  font-size: clamp(13px, 1.15vw, 17px);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0;
  white-space: nowrap;
}

.site-header__reception-label {
  font-weight: 500;
}

.site-header__reception-hours {
  font-family: var(--font-en);
  font-weight: 500;
}

.site-header__phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 45px;
  padding: 8px 22px;
  color: var(--color-white);
  background-color: var(--color-accent);
  border-radius: 999px;
  font-family: var(--font-en);
  font-size: clamp(18px, 1.55vw, 25px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.025em;
  transition:
    background-color var(--transition-base),
    box-shadow var(--transition-base);
}

.site-header__phone-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.site-header__phone-icon svg {
  width: 24px;
  height: 24px;
}

.site-header__parking {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex: 0 0 66px;
  width: 66px;
  min-height: 72px;
  padding: 7px 6px;
  background-color: rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.02em;
}

.site-header__reservation {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 197px;
  width: 197px;
  min-height: 78px;
  padding: 10px 22px;
  color: var(--color-white);
  background-color: #06396e;
  border: 1px solid #06396e;
  border-radius: 999px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  transition:
    background-color var(--transition-base),
    box-shadow var(--transition-base);
}

.site-header__reservation::before {
  position: absolute;
  inset: 8px;
  border: 1px solid var(--color-gold);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}


/* Global navigation */

.global-nav {
  margin-top: 18px;
  min-height: 86px;
  padding-inline: clamp(30px, 4vw, 70px);
  background-color: var(--color-white);
  border-radius: 999px;
}

.global-nav__list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 86px;
}

.global-nav__list > .menu-item {
  position: relative;
  flex: 0 0 auto;
}

.global-nav__list > .menu-item > a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 86px;
  color: var(--color-text);
  font-size: clamp(13px, 1.05vw, 17px);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.015em;
  white-space: nowrap;
  transition: color var(--transition-base);
}

.global-nav__list > .current-menu-item > a,
.global-nav__list > .current-menu-ancestor > a {
  color: #06396e;
}

.global-nav__list > .menu-item > a::after {
  position: absolute;
  right: 0;
  bottom: 22px;
  left: 0;
  width: 0;
  height: 2px;
  margin-inline: auto;
  background-color: var(--color-accent);
  content: "";
  transition: width var(--transition-base);
}


/* PC submenu */

.global-nav .sub-menu {
  position: absolute;
  top: calc(100% - 10px);
  left: 50%;
  z-index: 20;
  min-width: 220px;
  padding: 12px;
  background-color: var(--color-white);
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(30, 74, 110, 0.14);
  visibility: hidden;
  opacity: 0;
  transform: translate(-50%, 10px);
  transition:
    opacity var(--transition-base),
    transform var(--transition-base),
    visibility var(--transition-base);
}

.global-nav .sub-menu a {
  display: block;
  padding: 11px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  white-space: nowrap;
}


/* Mobile header */

.site-header__mobile {
  display: none;
}







/* ==================================================
   08. Mobile Header
================================================== */

/* PCではモバイルヘッダーを非表示 */
.site-header__mobile {
  display: none;
}

/* 上段：ロゴ＋ハンバーガー */
.mobile-header__top {
  width: 100%;
}

/* ロゴ */
.mobile-header__logo {
  display: block;
}

.mobile-header__logo-image {
  display: block;
  width: 100%;
  height: auto;
}

/* ハンバーガーを置く領域 */
.mobile-header__actions {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  flex: 0 0 auto;
}


/* ==================================================
   Mobile Header Buttons
================================================== */

.mobile-header__buttons {
  width: 100%;
}

.mobile-header__reception {
  width: 100%;
}

.mobile-header__reception-time {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin-bottom: 7px;
  color: var(--color-text);
  font-weight: 500;
  line-height: 1.4;
  white-space: nowrap;
}

.mobile-header__reception-label {
  font-weight: 700;
}

.mobile-header__reception-hours {
  font-family: var(--font-en);
  font-weight: 500;
}

.mobile-header__phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 45px;
  padding: 8px 20px;
  color: var(--color-white);
  background-color: var(--color-accent);
  border-radius: 999px;
  font-family: var(--font-en);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
}

.mobile-header__phone-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.mobile-header__phone-icon svg {
  display: block;
  width: 22px;
  height: 22px;
}

.mobile-header__cta {
  width: 100%;
}

.mobile-header__parking {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: rgba(255, 255, 255, 0.63);
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
}

.mobile-header__reservation {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  color: var(--color-white);
  background-color: #06396e;
  border-radius: 999px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.mobile-header__reservation::before {
  position: absolute;
  inset: 7px;
  border: 1px solid var(--color-gold);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}


/* ==================================================
   09. Hamburger Button
================================================== */

.menu-toggle {
  position: relative;
  z-index: var(--z-menu-button);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex: 0 0 auto;
  gap: 6px;
  width: 50px;
  height: 50px;
  padding: 0;
  color: var(--color-white);
  background-color: #06396e;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  transition:
    background-color var(--transition-base),
    box-shadow var(--transition-base);
}

.menu-toggle__line {
  display: block;
  width: 22px;
  height: 2px;
  background-color: currentColor;
  border-radius: 999px;
  transform-origin: center;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

/* 三本線から×へ */
.menu-toggle[aria-expanded="true"] .menu-toggle__line:nth-of-type(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__line:nth-of-type(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__line:nth-of-type(3) {
  transform: translateY(-8px) rotate(-45deg);
}


/* ==================================================
   10. Header Responsive
================================================== */

@media screen and (max-width: 1180px) {
  .site-header__desktop {
    display: none;
  }

  .site-header__mobile {
    display: block;
  }
}


/* ==================================================
   Header Tablet
================================================== */

@media screen and (min-width: 768px) and (max-width: 1180px) {
  .site-header {
    padding-top: 16px;
  }

  .mobile-header__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
  }

  .mobile-header__logo {
    flex: 1 1 auto;
    width: auto;
    max-width: 500px;
  }

  .mobile-header__actions {
    margin-left: auto;
  }

  .menu-toggle {
    width: 58px;
    height: 58px;
  }

  .mobile-header__buttons {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
  }

  .mobile-header__reception {
    width: 260px;
    flex: 0 0 260px;
  }

  .mobile-header__reception-time {
    font-size: 16px;
  }

  .mobile-header__phone {
    min-height: 40px;
    padding: 9px 18px;
  }

  .mobile-header__cta {
    display: contents;
  }

  .mobile-header__parking {
    flex: 0 0 80px;
    width: 80px;
    height: 67px;
    padding: 8px 6px;
    border-radius: 24px;
    font-size: 16px;
  }

  .mobile-header__reservation {
    width: 300px;
    max-width: 300px;
    height: 67px;
    padding: 12px 22px;
    font-size: 18px;
  }
}


/* ==================================================
   Header Smartphone
================================================== */

@media screen and (max-width: 767px) {
  .site-header {
    padding-top: 10px;
  }

  .mobile-header__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .mobile-header__logo {
    flex: 1 1 auto;
    width: auto;
    max-width: 400px;
    padding-top: 3px;
  }

  .mobile-header__actions {
    margin-left: auto;
  }

  .menu-toggle {
    width: 52px;
    height: 52px;
    gap: 5px;
  }

  .menu-toggle__line {
    width: 20px;
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__line:nth-of-type(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__line:nth-of-type(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .mobile-header__buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 400px;
    margin: 20px auto 0;
  }

  .mobile-header__reception-time {
    font-size: 16px;
  }

  .mobile-header__phone {
    width: 100%;
    min-height: 45px;
  }

  .mobile-header__cta {
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr);
    align-items: stretch;
    gap: 10px;
    width: 100%;
  }

  .mobile-header__parking {
    width: 70px;
    height: 50px;
    padding: 8px 6px;
    border-radius: 22px;
    font-size: 14px;
  }

  .mobile-header__reservation {
    width: 100%;
    height: 50px;
    padding: 12px 18px;
    font-size: 16px;
  }
}


/* ==================================================
   Header Small Smartphone
================================================== */

@media screen and (max-width: 374px) {
  .menu-toggle {
    width: 48px;
    height: 48px;
  }

  .mobile-header__buttons {
    gap: 10px;
    margin-top: 12px;
  }

  .mobile-header__reception-time {
    gap: 5px;
    font-size: 12px;
  }

  .mobile-header__phone {
    min-height: 46px;
    padding-right: 14px;
    padding-left: 14px;
  }

  .mobile-header__phone-icon svg {
    width: 20px;
    height: 20px;
  }

  .mobile-header__cta {
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 8px;
  }

  .mobile-header__parking {
    width: 62px;
    border-radius: 19px;
  }

  .mobile-header__reservation {
    padding-right: 12px;
    padding-left: 12px;
    font-size: 16px;
  }

  .mobile-header__reservation::before {
    inset: 6px;
  }
}


/* ==================================================
   17. Drawer Overlay
================================================== */

.drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: var(--z-drawer-overlay);
  width: 100%;
  height: 100%;
  background-color: rgba(16, 42, 67, 0.45);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.drawer-overlay.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}


/* ==================================================
   Drawer Menu
================================================== */

.drawer-menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: var(--z-drawer);
  width: 430px;
  max-width: 88%;
  height: 100vh;
  height: 100dvh;
  overflow-x: hidden;
  overflow-y: hidden;
  background-color: var(--color-white);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(100%, 0, 0);
  transition:
    transform 0.38s ease,
    opacity 0.38s ease,
    visibility 0.38s ease;
}

.drawer-menu.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
}

.drawer-menu__inner {
  width: 100%;
  height: 100%;
  padding:
    24px
    24px
    30px;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}


/* ==================================================
   Drawer Header
================================================== */

.drawer-menu__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
}

.drawer-menu__logo {
  flex: 1 1 auto;
  width: auto;
  max-width: 270px;
}

.drawer-menu__logo a {
  display: block;
}

.drawer-menu__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.drawer-menu__close {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  padding: 0;
  background-color: #06396e;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.drawer-menu__close-line {
  position: absolute;
  width: 22px;
  height: 2px;
  background-color: var(--color-white);
  border-radius: 999px;
}

.drawer-menu__close-line:first-child {
  transform: rotate(45deg);
}

.drawer-menu__close-line:last-child {
  transform: rotate(-45deg);
}


/* ==================================================
   Drawer Navigation
================================================== */

.drawer-menu__nav {
  width: 100%;
}

.drawer-menu__list {
  width: 100%;
  border-top: 1px solid rgba(139, 164, 213, 0.38);
}

.drawer-menu__list > .menu-item {
  position: relative;
  border-bottom: 1px solid rgba(139, 164, 213, 0.38);
}

.drawer-menu__list > .menu-item > a {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 14px 48px 14px 4px;
  color: var(--color-text);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.55;
}

.drawer-menu__list > .current-menu-item > a,
.drawer-menu__list > .current-menu-ancestor > a {
  color: var(--color-accent);
}


/* ==================================================
   Drawer Submenu
================================================== */

.drawer-menu__submenu-toggle {
  position: absolute;
  top: 7px;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background-color: transparent;
  border: 0;
  border-radius: 50%;
}

.drawer-menu__submenu-toggle::before,
.drawer-menu__submenu-toggle::after {
  position: absolute;
  width: 14px;
  height: 1px;
  background-color: var(--color-accent);
  content: "";
  transition: transform var(--transition-base);
}

.drawer-menu__submenu-toggle::after {
  transform: rotate(90deg);
}

.drawer-menu__submenu-toggle[aria-expanded="true"]::after {
  transform: rotate(0);
}

.drawer-menu .sub-menu {
  padding: 0 0 14px 16px;
}

.drawer-menu .sub-menu[hidden] {
  display: none;
}

.drawer-menu .sub-menu .menu-item {
  border: 0;
}

.drawer-menu .sub-menu a {
  display: block;
  padding: 9px 8px;
  color: #555f69;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
}


/* ==================================================
   Drawer Contact
================================================== */

.drawer-menu__contact {
  margin-top: 30px;
  padding: 24px 20px;
  background-color: var(--color-base);
  border-radius: 18px;
}

.drawer-menu__reception {
  margin-bottom: 14px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
  text-align: center;
}

.drawer-menu__phone,
.drawer-menu__reservation {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  border-radius: 999px;
  font-weight: 700;
  text-align: center;
}

.drawer-menu__phone {
  gap: 8px;
  color: var(--color-white);
  background-color: var(--color-accent);
  font-family: var(--font-en);
  font-size: 19px;
  line-height: 1;
}

.drawer-menu__phone svg {
  display: block;
  width: 22px;
  height: 22px;
}

.drawer-menu__reservation {
  position: relative;
  margin-top: 12px;
  color: var(--color-white);
  background-color: #06396e;
  font-size: 17px;
  line-height: 1;
}

.drawer-menu__reservation::before {
  position: absolute;
  inset: 5px;
  border: 1px solid var(--color-gold);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}


/* ==================================================
   Drawer Open
================================================== */

body.is-drawer-open {
  overflow: hidden;
}


/* ==================================================
   Header / Drawer Hover
================================================== */

@media (hover: hover) and (pointer: fine) {
  .menu-toggle:hover,
  .drawer-menu__close:hover {
    background-color: #092f59;
    box-shadow: 0 6px 18px rgba(6, 57, 110, 0.2);
  }

  .mobile-header__phone:hover,
  .drawer-menu__phone:hover {
    color: var(--color-white);
    background-color: var(--color-accent-hover);
  }

  .mobile-header__reservation:hover,
  .drawer-menu__reservation:hover {
    color: var(--color-white);
    background-color: #092f59;
  }

  .drawer-menu__list a:hover {
    color: var(--color-accent-hover);
  }

  .drawer-menu__submenu-toggle:hover {
    background-color: var(--color-base);
  }
}


/* ==================================================
   Drawer Responsive
================================================== */

@media screen and (max-width: 767px) {
  .drawer-menu {
    width: 390px;
    max-width: 90%;
  }

  .drawer-menu__inner {
    padding:
      20px
      20px
      26px;
  }

  .drawer-menu__head {
    gap: 14px;
    margin-bottom: 24px;
  }

  .drawer-menu__logo {
    max-width: 230px;
  }

  .drawer-menu__close {
    width: 46px;
    height: 46px;
  }

  .drawer-menu__list > .menu-item > a {
    min-height: 55px;
    padding-top: 13px;
    padding-bottom: 13px;
    font-size: 16px;
  }

  .drawer-menu__contact {
    margin: 0 0 40px;
    padding: 20px 16px;
  }
}

@media screen and (max-width: 500px) {
  .drawer-menu {
    width: 90%;
    max-width: none;
  }
}

@media screen and (max-width: 374px) {
  .drawer-menu {
    width: 92%;
  }

  .drawer-menu__inner {
    padding-right: 16px;
    padding-left: 16px;
  }

  .drawer-menu__logo {
    max-width: 205px;
  }

  .drawer-menu__close {
    width: 44px;
    height: 44px;
  }
}

/* ==================================================
   18. Front Page
================================================== */

/* ==================================================
   18-01. Header and Main Visual Background
================================================== */

.home .site {
  position: relative;
  background-color: var(--color-base);
  background-image: var(--mv-background-image);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100% 1040px;
}


/* ==================================================
   18-02. Main Visual
================================================== */

.top-mv {
  position: relative;
  min-height: 770px;
  padding: 62px 0 58px;
  overflow: hidden;
}

.top-mv__inner {
  position: relative;
  z-index: 1;
}

.top-mv__copy {
  position: relative;
  z-index: 2;
  max-width: 940px;
}

.top-mv__opening {
  margin-bottom: 10px;
  font-size: clamp(25px, 2.3vw, 36px);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.025em;
}

.top-mv__title {
  font-family: var(--font-ja);
  font-size: clamp(39px, 3.7vw, 58px);
  font-weight: 400;
  line-height: 1.42;
  letter-spacing: 0.055em;
}

.top-mv__keywords {
  margin-top: 29px;
  font-size: clamp(14px, 1.2vw, 18px);
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.015em;
}

.top-mv__background-logo {
  position: absolute;
  top: 10px;
  right: -14px;
  z-index: 0;
  width: min(28vw, 410px);
  pointer-events: none;
}

.top-mv__background-logo img {
  display: block;
  width: 100%;
  height: auto;
  mix-blend-mode: multiply;
  opacity: 0.58;
}

@media screen and (min-width: 769px) {
  .top-mv__title {
    white-space: nowrap;
  }
}


/* ==================================================
   18-03. Main Visual Bottom
================================================== */

.top-mv__bottom {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(460px, 545px) minmax(480px, 580px);
  align-items: end;
  justify-content: space-between;
  gap: clamp(50px, 7vw, 125px);
  width: calc(100% - 130px);
  margin: 58px auto 0;
}


/* ==================================================
   18-04. Hours Card
================================================== */

.top-hours {
  overflow: hidden;
  background-color: rgba(233, 250, 255, 0.93);
  border: 1px solid rgba(95, 146, 171, 0.38);
  border-radius: 28px;
  box-shadow: 0 9px 10px rgba(24, 71, 101, 0.22);
}

.top-hours__header {
  padding: 27px 20px 14px;
  text-align: center;
}

.top-hours__title {
  font-size: clamp(28px, 2.15vw, 36px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.04em;
}

.top-hours__en {
  margin-top: 2px;
  color: #06396e;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.015em;
}

.top-hours__table {
  width: 100%;
  table-layout: fixed;
  background-color: var(--color-white);
}

.top-hours__table th,
.top-hours__table td {
  padding: 0;
  text-align: center;
  vertical-align: middle;
}

.top-hours__table thead {
  color: var(--color-white);
  background-color: #06396e;
}

.top-hours__table thead th {
  height: 62px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
}

.top-hours__table thead th:first-child {
  width: 130px;
  padding-inline: 15px;
  font-size: 18px;
  white-space: nowrap;
}

.top-hours__table tbody tr {
  border-bottom: 1px solid #2c2c2c;
}

.top-hours__table tbody tr:last-child {
  border-bottom: 0;
}

.top-hours__table tbody th {
  position: relative;
  width: 162px;
  height: 64px;
  border-right: 1px solid #2c2c2c;
  font-weight: 400;
}

.top-hours__time {
  display: block;
  font-size: 17px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.13em;
  white-space: nowrap;
}

.top-hours__dot {
  display: block;
  width: 24px;
  height: 24px;
  margin-inline: auto;
  background-color: #06396e;
  border-radius: 50%;
}

.top-hours__closed {
  display: block;
  color: #06396e;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.top-hours__button-wrap {
  padding: 22px 30px 21px;
}

.top-hours__button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 380px);
  min-height: 58px;
  margin-inline: auto;
  padding: 10px 54px 10px 30px;
  color: var(--color-white);
  background-color: var(--color-light-blue);
  border-radius: 999px;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.035em;
  transition:
    background-color var(--transition-base),
    box-shadow var(--transition-base);
}

.top-hours__button-arrow {
  position: absolute;
  top: 50%;
  right: 24px;
  width: 13px;
  height: 13px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
  transition: transform var(--transition-base);
}


/* ==================================================
   18-05. Same-day Reception Card
================================================== */

.top-reception {
  padding: 27px 30px 20px;
  background-color: rgba(233, 250, 255, 0.93);
  border: 1px solid rgba(95, 146, 171, 0.38);
  border-radius: 25px;
  box-shadow: 0 9px 10px rgba(24, 71, 101, 0.22);
}

.top-reception__title {
  margin-bottom: 13px;
  font-size: clamp(21px, 1.8vw, 28px);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.04em;
  text-align: center;
}

.top-reception__body {
  font-size: clamp(14px, 1.17vw, 17px);
  font-weight: 400;
  line-height: 1.95;
  letter-spacing: 0.04em;
}

.top-reception__body strong {
  font-weight: 700;
}

.top-reception__contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  margin-top: 8px;
}

.top-reception__time {
  display: flex;
  align-items: baseline;
  gap: 7px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  white-space: nowrap;
}

.top-reception__phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-height: 39px;
  padding: 7px 17px;
  color: var(--color-white);
  background-color: var(--color-accent);
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.025em;
  white-space: nowrap;
  transition: background-color var(--transition-base);
}

.top-reception__phone-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}


/* ==================================================
   18-06. Main Visual Hover
================================================== */

@media (hover: hover) and (pointer: fine) {
  .top-hours__button:hover {
    color: var(--color-white);
    background-color: var(--color-light-blue-hover);
    box-shadow: 0 6px 16px rgba(67, 175, 220, 0.22);
  }

  .top-hours__button:hover .top-hours__button-arrow {
    transform: translate(3px, -50%) rotate(45deg);
  }

  .top-reception__phone:hover {
    color: var(--color-white);
    background-color: var(--color-accent-hover);
  }
}


/* ==================================================
   18-07. Main Visual Responsive
================================================== */

@media screen and (max-width: 1180px) {
  .home .site {
    background-size: auto 1150px;
  }

  .top-mv {
    min-height: auto;
    padding: 55px 0 70px;
  }

  .top-mv__background-logo {
    top: 95px;
    right: 10px;
    width: min(32vw, 330px);
  }

  .top-mv__bottom {
    grid-template-columns: minmax(390px, 1fr) minmax(390px, 1fr);
    gap: 35px;
    width: 100%;
  }

  .top-hours__table thead th:first-child,
  .top-hours__table tbody th {
    width: 128px;
  }

  .top-reception__contact {
    align-items: stretch;
    flex-direction: column;
  }

  .top-reception__time {
    justify-content: center;
  }

  .top-reception__phone {
    align-self: center;
  }
}

@media screen and (max-width: 900px) {
  .home .site {
    background-size: auto 1500px;
  }
	
  .top-mv__title {
    font-size: clamp(36px, 5vw, 46px);
  }

  .top-mv__background-logo {
    top: 100px;
    width: 250px;
    opacity: 0.8;
  }

  .top-mv__bottom {
    grid-template-columns: 1fr;
    max-width: 620px;
    margin-top: 50px;
  }

  .top-reception {
    padding: 30px;
  }
}

@media screen and (max-width: 767px) {
  .home .site {
    background-size: auto 1510px;
  }

  .top-mv {
    padding: 41px 0 55px;
  }

  .top-mv__copy {
    padding-right: 0;
  }

  .top-mv__opening {
    margin-bottom: 8px;
    font-size: clamp(19px, 5.5vw, 23px);
    line-height: 1.5;
  }

  .top-mv__title {
    max-width: 100%;
    font-size: clamp(30px, 8.3vw, 40px);
    line-height: 1.48;
    letter-spacing: 0.035em;
  }

  .top-mv__keywords {
    max-width: 340px;
    margin-top: 20px;
    font-size: 13px;
    line-height: 1.8;
  }

  .top-mv__background-logo {
    top: 40px;
    right: -5px;
    width: 205px;
    opacity: 0.65;
  }

  .top-mv__bottom {
    display: block;
    width: 100%;
    max-width: 560px;
    margin-top: 42px;
  }

  .top-hours {
    border-radius: 20px;
  }

  .top-hours__header {
    padding: 20px 15px 12px;
  }

  .top-hours__title {
    font-size: 27px;
  }

  .top-hours__en {
    font-size: 15px;
  }

  .top-hours__table thead th {
    height: 51px;
    font-size: 15px;
  }

  .top-hours__table thead th:first-child {
    width: 90px;
    padding-inline: 6px;
    font-size: 15px;
  }

  .top-hours__table tbody th {
    width: 114px;
    height: 57px;
  }

  .top-hours__time {
    font-size: 13px;
    letter-spacing: 0.045em;
  }

  .top-hours__dot {
    width: 17px;
    height: 17px;
  }

  .top-hours__closed {
    font-size: 14px;
  }

  .top-hours__button-wrap {
    padding: 18px 20px;
  }

  .top-hours__button {
    min-height: 52px;
    padding-right: 46px;
    padding-left: 25px;
    font-size: 17px;
  }

  .top-hours__button-arrow {
    right: 21px;
    width: 11px;
    height: 11px;
  }

  .top-reception {
    margin-top: 28px;
    padding: 25px 20px 22px;
    border-radius: 20px;
  }

  .top-reception__title {
    margin-bottom: 12px;
    font-size: 21px;
  }

  .top-reception__body {
    font-size: 14px;
    line-height: 1.9;
  }

  .top-reception__contact {
    gap: 12px;
    margin-top: 15px;
  }

  .top-reception__time {
    flex-wrap: wrap;
    gap: 3px 6px;
    font-size: 13px;
    text-align: center;
  }

  .top-reception__phone {
    min-height: 45px;
    padding-inline: 20px;
    font-size: 17px;
  }
}

@media screen and (max-width: 374px) {
  .top-mv__opening {
    font-size: 18px;
  }

  .top-mv__title {
    font-size: 28px;
  }

  .top-mv__keywords {
    max-width: calc(100% - 40px);
    font-size: 12px;
  }

  .top-hours__table thead th:first-child,
  .top-hours__table tbody th {
    width: 99px;
  }

  .top-hours__table thead th {
    font-size: 12px;
  }

  .top-hours__table thead th:first-child {
    font-size: 12px;
  }

  .top-hours__time {
    font-size: 10px;
  }

  .top-hours__dot {
    width: 15px;
    height: 15px;
  }

  .top-hours__closed {
    font-size: 12px;
  }
}

/* ==================================================
   News Archive
================================================== */

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


/* ==================================================
   News Page Visual
================================================== */

.page-visual {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background-color: var(--color-base);
	margin-top: 10px;
}

.page-visual__image {
  position: absolute;
  inset: 0;
}

.page-visual__image::after {
  position: absolute;
  inset: 0;
  background-color: rgba(233, 250, 255, 0.34);
  content: "";
}

.page-visual__image-element {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-visual__title {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: 360px;
  text-align: center;
}

.page-visual__en {
  color: #06396e;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.08em;
}

.page-visual__ja {
  margin-top: 6px;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.06em;
}


/* ==================================================
   Breadcrumb
================================================== */

.breadcrumb {
  padding-top: 18px;
  padding-bottom: 18px;
  background-color: var(--color-white);
}

.breadcrumb__inner,
.breadcrumb-inner {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.02em;
}

.breadcrumb a {
  color: #546170;
}

.breadcrumb .current-item {
  color: var(--color-text);
}


/* ==================================================
   News Archive Layout
================================================== */

.news-archive__section {
  padding-top: 80px;
  padding-bottom: 80px;
}

.news-archive__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: start;
  gap: 60px;
}

.news-archive__main {
  min-width: 0;
}

.news-archive__header {
  margin-bottom: 34px;
}

.news-archive__title {
  position: relative;
  padding-left: 22px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.news-archive__title::before {
  position: absolute;
  top: 0.18em;
  bottom: 0.18em;
  left: 0;
  width: 5px;
  background-color: var(--color-accent);
  border-radius: 999px;
  content: "";
}


/* ==================================================
   News Archive List
================================================== */

.news-archive__list {
  display: grid;
  gap: 28px;
}

.news-archive__item {
  overflow: hidden;
  background-color: var(--color-white);
  border: 1px solid rgba(139, 164, 213, 0.36);
  border-radius: 22px;
  box-shadow: 0 8px 24px rgba(34, 75, 108, 0.08);
}

.news-archive__link {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  min-height: 220px;
  color: var(--color-text);
  transition:
    border-color var(--transition-base),
    box-shadow var(--transition-base);
}

.news-archive__thumbnail {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  background-color: var(--color-base);
}

.news-archive__thumbnail-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}

.news-archive__thumbnail-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 220px;
  color: #06396e;
  background-color: var(--color-base);
  font-size: 22px;
  font-weight: 600;
}

.news-archive__content {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 28px 32px 25px;
}

.news-archive__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-bottom: 13px;
}

.news-archive__date {
  color: #657180;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
}

.news-archive__categories {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
}

.news-archive__category {
  padding: 5px 12px;
  color: #06396e;
  background-color: var(--color-base);
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
}

.news-archive__item-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.65;
}

.news-archive__excerpt {
  margin-top: 12px;
  color: #535b64;
  font-size: 18px;
  font-weight: 400;
  line-height: 2;
}

.news-archive__more {
  display: inline-flex;
  align-items: center;
  align-self: flex-end;
  gap: 10px;
  margin-top: auto;
  padding-top: 18px;
  color: #06396e;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
}

.news-archive__more-arrow {
  display: block;
  width: 9px;
  height: 9px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.news-archive__empty {
  padding: 50px 30px;
  background-color: var(--color-base);
  border-radius: 20px;
  text-align: center;
}


/* ==================================================
   News Archive Tablet
================================================== */

@media screen and (min-width: 768px) and (max-width: 1180px) {
  .news-archive__link {
    grid-template-columns: 190px minmax(0, 1fr);
  }

  .news-archive__content {
    padding: 24px 26px;
  }

  .news-archive__item-title {
    font-size: 21px;
  }
}


/* ==================================================
   News Archive Smartphone
================================================== */

@media screen and (max-width: 767px) {
  .news-archive__list {
    gap: 20px;
  }

  .news-archive__link {
    display: block;
    min-height: 0;
  }

  .news-archive__thumbnail {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .news-archive__thumbnail-placeholder {
    min-height: 0;
    height: 100%;
    font-size: 20px;
  }

  .news-archive__content {
    padding: 22px 20px 24px;
  }

  .news-archive__meta {
    gap: 8px 12px;
    margin-bottom: 12px;
  }

  .news-archive__date,
  .news-archive__category {
    font-size: 16px;
  }

  .news-archive__item-title {
    font-size: 20px;
    line-height: 1.6;
  }

  .news-archive__excerpt {
    margin-top: 10px;
    font-size: 16px;
    line-height: 1.9;
  }

  .news-archive__more {
    margin-top: 18px;
    padding-top: 0;
    font-size: 16px;
  }
}


/* ==================================================
   News Sidebar
================================================== */

.news-sidebar {
  display: grid;
  gap: 34px;
  width: 100%;
}

.news-sidebar__section {
  overflow: hidden;
  background-color: var(--color-white);
  border: 1px solid rgba(139, 164, 213, 0.38);
  border-radius: 22px;
  box-shadow: 0 8px 24px rgba(34, 75, 108, 0.07);
}


/* ==================================================
   Sidebar Header
================================================== */

.news-sidebar__header {
  padding: 20px 22px 17px;
  color: var(--color-white);
  background-color: #06396e;
  text-align: center;
}

.news-sidebar__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.45;
}

.news-sidebar__en {
  margin-top: 2px;
  color: #8ba3d5;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
}


/* ==================================================
   Sidebar Lists
================================================== */

.news-sidebar__category-list,
.news-sidebar__recent-list,
.news-sidebar__archive-list {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.news-sidebar__category-item,
.news-sidebar__recent-item,
.news-sidebar__archive-item {
  border-bottom: 1px solid rgba(139, 164, 213, 0.28);
}

.news-sidebar__category-item:last-child,
.news-sidebar__recent-item:last-child,
.news-sidebar__archive-item:last-child {
  border-bottom: 0;
}


/* ==================================================
   Common Links
================================================== */

.news-sidebar__category-link,
.news-sidebar__recent-link,
.news-sidebar__archive-link {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 78px;
  padding: 14px 52px 14px 20px;
  color: var(--color-text);
  transition:
    color var(--transition-base),
    background-color var(--transition-base);
}

.news-sidebar__arrow {
  position: absolute;
  top: 50%;
  right: 21px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #06396e;
  border-right: 2px solid #06396e;
  transform: translateY(-50%) rotate(45deg);
  transition: transform var(--transition-base);
}


/* ==================================================
   Category
================================================== */

.news-sidebar__category-link {
  gap: 10px;
}

.news-sidebar__category-name {
  min-width: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
}

.news-sidebar__category-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-width: 28px;
  height: 28px;
  margin-left: auto;
  color: #06396e;
  background-color: var(--color-base);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
}


/* ==================================================
   Recent News
================================================== */

.news-sidebar__recent-link {
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}

.news-sidebar__recent-date {
  color: #74808c;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}

.news-sidebar__recent-title {
  display: -webkit-box;
  min-width: 0;
  overflow: hidden;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}


/* ==================================================
   Monthly Archive
================================================== */

.news-sidebar__archive-link {
  gap: 10px;
}

.news-sidebar__archive-name {
  min-width: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
}

.news-sidebar__archive-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-width: 28px;
  height: 28px;
  margin-left: auto;
  color: #06396e;
  background-color: var(--color-base);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
}


/* ==================================================
   Empty
================================================== */

.news-sidebar__empty {
  padding: 25px 20px;
  font-size: 16px;
  line-height: 1.8;
  text-align: center;
}


/* ==================================================
   Sidebar Hover
================================================== */

@media (hover: hover) and (pointer: fine) {
  .news-sidebar__category-link:hover,
  .news-sidebar__recent-link:hover,
  .news-sidebar__archive-link:hover {
    color: #06396e;
    background-color: var(--color-base);
  }

  .news-sidebar__category-link:hover .news-sidebar__arrow,
  .news-sidebar__recent-link:hover .news-sidebar__arrow,
  .news-sidebar__archive-link:hover .news-sidebar__arrow {
    transform: translate(3px, -50%) rotate(45deg);
  }
}


/* ==================================================
   News Sidebar Smartphone
================================================== */

@media screen and (max-width: 767px) {
  .news-sidebar {
    gap: 34px;
  }

  .news-sidebar__header {
    padding: 22px 20px 19px;
  }

  .news-sidebar__title {
    font-size: 26px;
    line-height: 1.4;
  }

  .news-sidebar__en {
    margin-top: 4px;
    font-size: 16px;
  }

  .news-sidebar__category-link,
  .news-sidebar__recent-link,
  .news-sidebar__archive-link {
    min-height: 92px;
    padding: 18px 58px 18px 20px;
  }

  .news-sidebar__category-name,
  .news-sidebar__recent-title,
  .news-sidebar__archive-name {
    font-size: 18px;
  }

  .news-sidebar__recent-date {
    font-size: 16px;
  }

  .news-sidebar__category-count,
  .news-sidebar__archive-count {
    min-width: 38px;
    height: 38px;
    font-size: 16px;
  }

  .news-sidebar__arrow {
    right: 24px;
    width: 10px;
    height: 10px;
  }
}


/* ==================================================
   Pagination
================================================== */

.pagination {
  margin-top: 50px;
}

.wp-pagenavi,
.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 9px;
}

.wp-pagenavi a,
.wp-pagenavi span,
.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 5px 12px;
  color: #06396e;
  background-color: var(--color-white);
  border: 1px solid var(--color-accent);
  border-radius: 50%;
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
}

.wp-pagenavi .current,
.page-numbers.current {
  color: var(--color-white);
  background-color: #06396e;
  border-color: #06396e;
}

.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink,
.page-numbers.prev,
.page-numbers.next {
  width: auto;
  padding-right: 18px;
  padding-left: 18px;
  border-radius: 999px;
}


/* ==================================================
   News Archive Hover
================================================== */

@media (hover: hover) and (pointer: fine) {
  .news-archive__item:hover {
    border-color: var(--color-accent);
    box-shadow: 0 12px 30px rgba(34, 75, 108, 0.14);
  }

  .news-archive__link:hover {
    color: inherit;
  }

  .news-archive__link:hover .news-archive__thumbnail-image {
    transform: scale(1.035);
  }

  .news-sidebar__category-link:hover,
  .news-sidebar__recent-link:hover,
  .news-sidebar__archive-list > li > a:hover {
    color: #06396e;
    background-color: var(--color-base);
  }

  .news-sidebar__category-link:hover .news-sidebar__arrow,
  .news-sidebar__recent-link:hover .news-sidebar__arrow,
  .news-sidebar__archive-list > li > a:hover .news-sidebar__arrow {
    transform: translate(3px, -50%) rotate(45deg);
  }

  .wp-pagenavi a:hover,
  .page-numbers:hover {
    color: var(--color-white);
    background-color: var(--color-accent);
  }
}


/* ==================================================
   News Archive Tablet
================================================== */

@media screen and (min-width: 768px) and (max-width: 1180px) {
  .news-archive__layout {
    grid-template-columns: minmax(0, 1fr) 270px;
    gap: 35px;
  }

  .news-archive__link {
    grid-template-columns: 180px minmax(0, 1fr);
    min-height: 190px;
  }

  .news-archive__thumbnail,
  .news-archive__thumbnail-placeholder {
    min-height: 190px;
  }

  .news-archive__content {
    padding: 24px;
  }

  .news-archive__item-title {
    font-size: 19px;
  }
}


/* ==================================================
   News Archive Smartphone
================================================== */

@media screen and (max-width: 767px) {
  .page-visual,
  .page-visual__title {
    min-height: 250px;
  }

  .page-visual__en {
    font-size: 15px;
  }

  .page-visual__ja {
    margin-top: 4px;
    font-size: 31px;
  }

  .breadcrumb {
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .breadcrumb__inner,
  .breadcrumb-inner {
    font-size: 11px;
  }

  .news-archive__section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .news-archive__layout {
    display: block;
  }

  .news-archive__header {
    margin-bottom: 26px;
  }

  .news-archive__title {
    padding-left: 17px;
    font-size: 26px;
	  margin-bottom: 20px;
  }

  .news-archive__title::before {
    width: 4px;
  }

  .news-archive__list {
    gap: 22px;
  }

  .news-archive__link {
    display: block;
    min-height: 0;
  }

  .news-archive__thumbnail {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .news-archive__thumbnail-placeholder {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .news-archive__content {
    padding: 22px 20px 20px;
  }

  .news-archive__meta {
    margin-bottom: 11px;
  }

  .news-archive__item-title {
    font-size: 18px;
  }

  .news-archive__excerpt {
    margin-top: 10px;
    font-size: 14px;
  }

  .news-archive__more {
    margin-top: 14px;
    padding-top: 0;
  }

  .pagination {
    margin-top: 38px;
  }

  .news-sidebar {
    gap: 28px;
    margin-top: 70px;
  }

  .news-sidebar__header {
    padding-top: 17px;
    padding-bottom: 15px;
  }

  .news-sidebar__title {
    font-size: 19px;
  }

  .news-sidebar__category-link,
  .news-sidebar__archive-list > li > a {
    min-height: 55px;
  }
}

/* ==================================================
   18-08. Smooth Reservation / News
================================================== */

.top-guide {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: var(--color-white);
}

.top-guide__inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  align-items: center;
  gap: 80px;
}


/* ==================================================
   Smooth Reservation Card
================================================== */

.top-guide__card {
  position: relative;
  min-height: 485px;
  padding: 48px 48px 36px;
  background-color: var(--color-base);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 24px;
}

.top-guide__content {
  position: relative;
  z-index: 1;
  max-width: 390px;
}

.top-guide__title {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 3px;
  margin-bottom: 26px;
  font-size: clamp(25px, 2vw, 32px);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.035em;
}

.top-guide__title span {
  position: relative;
  display: inline-block;
}

.top-guide__title span:first-child::before,
.top-guide__title span:last-child::after {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-gold);
  content: "";
}

.top-guide__title span:first-child::before {
  top: -10px;
}

.top-guide__title span:last-child::after {
  bottom: -8px;
}

.top-guide__lead {
  margin-bottom: 22px;
  padding-left: 48px;
  font-size: clamp(17px, 1.35vw, 21px);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.045em;
}

.top-guide__text {
  font-size: clamp(14px, 1.15vw, 17px);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.04em;
}

.top-guide__balloon {
  position: absolute;
  top: -18px;
  right: -55px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 195px;
  height: 195px;
  padding: 20px;
  color: var(--color-white);
  background-color: var(--color-accent);
  border-radius: 50%;
  text-align: center;
}

.top-guide__balloon::after {
  position: absolute;
  bottom: 3px;
  left: 10px;
  width: 0;
  height: 0;
  border-top: 42px solid var(--color-accent);
  border-right: 18px solid transparent;
  border-left: 18px solid transparent;
  content: "";
  transform: rotate(34deg);
}

.top-guide__balloon p {
  position: relative;
  z-index: 1;
  font-size: 23px;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.04em;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.47);
}

.top-guide__button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 365px;
  max-width: 100%;
  min-height: 56px;
  margin: 30px auto 0;
  padding: 10px 54px 10px 28px;
  color: var(--color-white);
  background-color: #06396e;
  border-radius: 999px;
  font-size: clamp(17px, 1.35vw, 21px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.035em;
  transition:
    background-color var(--transition-base),
    box-shadow var(--transition-base);
}

.top-guide__button-arrow {
  position: absolute;
  top: 50%;
  right: 24px;
  width: 12px;
  height: 12px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
  transition: transform var(--transition-base);
}

@media screen and (max-width: 767px){
.top-guide__title {
  align-items: center;
	}
	.top-guide__lead{
		text-align: center;
	}
}

/* ==================================================
   News
================================================== */

.top-news {
  width: 100%;
}

.top-news__header {
  margin-bottom: 18px;
  text-align: center;
}


.top-news__list {
  width: 100%;
}

.top-news__item {
  border-bottom: 1px solid #666666;
}

.top-news__link {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 69px;
  padding: 10px 36px;
  transition:
    color var(--transition-base),
    background-color var(--transition-base);
}

.top-news__date {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0;
  white-space: nowrap;
}

.top-news__item-title {
  min-width: 0;
  overflow: hidden;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.04em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* カテゴリー */

.top-news__categories{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin:10px 0 12px;
}

.top-news__category{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:5px 12px;
  background:var(--color-base);
  color:#fff;
  background-color: #8ba4d5;
  border-radius:999px;
  font-size:12px;
  font-weight:700;
  line-height:1;
  letter-spacing:.05em;
}

.top-news__empty {
  padding: 35px 20px;
  border-top: 1px solid #666666;
  border-bottom: 1px solid #666666;
  text-align: center;
}

.top-news__button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 405px;
  max-width: 100%;
  min-height: 56px;
  margin: 28px auto 0;
  padding: 10px 54px 10px 28px;
  color: var(--color-white);
  background-color: var(--color-light-blue);
  border-radius: 999px;
  font-size: clamp(17px, 1.35vw, 21px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.05em;
  transition:
    background-color var(--transition-base),
    box-shadow var(--transition-base);
}

.top-news__button-arrow {
  position: absolute;
  top: 50%;
  right: 25px;
  width: 13px;
  height: 13px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
  transition: transform var(--transition-base);
}

@media screen and (max-width: 767px){
.top-news__link {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 0px;
	}
}

/* ==================================================
   Smooth Reservation / News Hover
================================================== */

@media (hover: hover) and (pointer: fine) {
  .top-guide__button:hover {
    color: var(--color-white);
    background-color: #092f59;
    box-shadow: 0 6px 18px rgba(6, 57, 110, 0.2);
  }

  .top-guide__button:hover .top-guide__button-arrow {
    transform: translate(3px, -50%) rotate(45deg);
  }

  .top-news__link:hover {
    color: #06396e;
    background-color: rgba(233, 250, 255, 0.65);
  }

  .top-news__button:hover {
    color: var(--color-white);
    background-color: var(--color-light-blue-hover);
    box-shadow: 0 6px 16px rgba(67, 175, 220, 0.22);
  }

  .top-news__button:hover .top-news__button-arrow {
    transform: translate(3px, -50%) rotate(45deg);
  }
}


/* ==================================================
   Smooth Reservation / News Tablet
================================================== */

@media screen and (min-width: 768px) and (max-width: 1180px) {
  .top-guide__inner {
    grid-template-columns: 1fr;
    gap: 60px;
    max-width: 780px;
  }

  .top-guide__card {
    width: 100%;
    min-height: 470px;
  }

  .top-guide__content {
    max-width: 500px;
  }

  .top-guide__balloon {
    right: 30px;
  }

  .top-news {
    width: 100%;
  }
}


/* ==================================================
   Smooth Reservation / News Smartphone
================================================== */

@media screen and (max-width: 767px) {
  .top-guide {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .top-guide__inner {
    display: block;
  }

  .top-guide__card {
    min-height: 0;
    padding: 36px 24px 28px;
    border-radius: 20px;
  }

  .top-guide__content {
    max-width: none;
  }

  .top-guide__balloon {
    position: relative;
    top: auto;
    right: auto;
    width: 138px;
    height: 138px;
    margin: -65px 0 18px auto;
  }

  .top-guide__balloon::after {
    bottom: 1px;
    left: 5px;
    border-top-width: 31px;
    border-right-width: 13px;
    border-left-width: 13px;
  }

  .top-guide__balloon p {
    font-size: 17px;
    line-height: 1.5;
  }

  .top-guide__title {
    margin-bottom: 24px;
    font-size: 23px;
  }

  .top-guide__lead {
    margin-bottom: 20px;
    padding-left: 0;
    font-size: 16px;
    line-height: 1.8;
  }

  .top-guide__text {
    font-size: 16px;
    line-height: 1.6;
  }

  .top-guide__button {
    min-height: 52px;
    margin-top: 26px;
    padding-right: 47px;
    padding-left: 22px;
    font-size: 16px;
  }

  .top-guide__button-arrow {
    right: 21px;
    width: 11px;
    height: 11px;
  }

  .top-news {
    margin-top: 70px;
  }

  .top-news__header {
    margin-bottom: 15px;
  }

  .top-news__link {
    min-height: 0;
    padding: 16px 4px;
  }

  .top-news__date {
    display: block;
    margin-bottom: 5px;
    font-size: 13px;
  }

  .top-news__item-title {
    display: block;
    overflow: visible;
    font-size: 16px;
    text-overflow: clip;
    white-space: normal;
  }

  .top-news__button {
    min-height: 52px;
    margin-top: 24px;
    padding-right: 47px;
    padding-left: 22px;
    font-size: 16px;
  }

  .top-news__button-arrow {
    right: 21px;
    width: 11px;
    height: 11px;
  }
}

/* ==================================================
   20. News Single
================================================== */

.news-pg {
  color: var(--color-text);
  background-color: var(--color-white);
}


/* ==================================================
   20-01. Breadcrumb
================================================== */

.news-pg .breadcrumb {
  padding-top: 18px;
  padding-bottom: 18px;
  background-color: var(--color-white);
  border-bottom: 1px solid rgba(139, 164, 213, 0.28);
}

.news-pg .breadcrumb-inner {
  width: 100%;
  max-width: var(--inner-width);
  margin-right: auto;
  margin-left: auto;
  padding-right: var(--side-space-pc);
  padding-left: var(--side-space-pc);
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.02em;
}

.news-pg .breadcrumb a {
  color: #53606d;
}


/* ==================================================
   20-02. News Detail Layout
================================================== */

.news-pg .inner.is-small {
  width: 100%;
  max-width: var(--inner-width);
  margin-right: auto;
  margin-left: auto;
  padding: 80px var(--side-space-pc);
}

.news-pg .news-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: start;
  gap: 60px;
}

.news-pg .main-content {
  min-width: 0;
}

.news-pg .box-white {
  overflow: hidden;
  background-color: var(--color-white);
  border: 1px solid rgba(139, 164, 213, 0.4);
  border-radius: 24px;
  box-shadow: 0 8px 26px rgba(34, 75, 108, 0.08);
}


/* ==================================================
   20-03. Category
================================================== */

.news-pg .cat-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 38px 45px 0;
}

.news-pg .cat-list li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 5px 14px;
  color: #06396e;
  background-color: var(--color-base);
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.03em;
}


/* ==================================================
   20-04. Post Header
================================================== */

.news-pg .post-header {
  padding: 18px 45px 0;
}

.news-pg .post-header time {
  color: #657180;
  font-family: var(--font-en);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.02em;
}

.news-pg .post-title {
  margin-top: 15px;
  padding: 0 45px 34px;
  border-bottom: 1px solid rgba(139, 164, 213, 0.3);
  font-size: 34px;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.045em;
}


/* ==================================================
   20-05. Post Content
================================================== */

.news-pg .post-wrapper {
  padding: 42px 45px 50px;
  font-size: 18px;
  line-height: 2;
  letter-spacing: 0.04em;
}

.news-pg .post-wrapper > * + * {
  margin-top: 1.6em;
}

.news-pg .post-wrapper .eyecatch {
  margin: 0 0 36px;
  overflow: hidden;
  border-radius: 18px;
}

.news-pg .post-wrapper .eyecatch img {
  display: block;
  width: 100%;
  height: auto;
}

.news-pg .post-wrapper p {
  font-size: 18px;
  line-height: 2;
}

.news-pg .post-wrapper h2 {
  position: relative;
  margin-top: 2.4em;
  padding: 16px 22px;
  background-color: var(--color-base);
  border-left: 6px solid var(--color-accent);
  border-radius: 0 14px 14px 0;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.05em;
}

.news-pg .post-wrapper h3 {
  margin-top: 2.2em;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--color-accent);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.05em;
}

.news-pg .post-wrapper h4 {
  margin-top: 2em;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.04em;
}

.news-pg .post-wrapper strong {
  font-weight: 700;
}

.news-pg .post-wrapper a {
  color: #06396e;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.news-pg .post-wrapper ul,
.news-pg .post-wrapper ol {
  padding: 24px 28px 24px 48px;
  background-color: var(--color-base);
  border-radius: 16px;
}

.news-pg .post-wrapper ul {
  list-style: disc;
}

.news-pg .post-wrapper ol {
  list-style: decimal;
}

.news-pg .post-wrapper li {
  padding-left: 5px;
  font-size: 18px;
  line-height: 1.9;
}

.news-pg .post-wrapper li + li {
  margin-top: 8px;
}

.news-pg .post-wrapper blockquote {
  padding: 25px 28px;
  background-color: #f7fafc;
  border-left: 5px solid var(--color-gold);
  border-radius: 0 14px 14px 0;
}

.news-pg .post-wrapper img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
}

.news-pg .post-wrapper table {
  width: 100%;
  border-collapse: collapse;
}

.news-pg .post-wrapper th,
.news-pg .post-wrapper td {
  padding: 15px 18px;
  border: 1px solid rgba(139, 164, 213, 0.45);
  font-size: 18px;
  line-height: 1.7;
  text-align: left;
}

.news-pg .post-wrapper th {
  background-color: var(--color-base);
  font-weight: 700;
}


/* ==================================================
   20-06. Page Navigation
================================================== */

.news-pg .page-nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  gap: 18px;
  padding: 0 45px 45px;
}

.news-pg .page-nav li {
  display: flex;
}

.news-pg .page-nav li:first-child {
  justify-content: flex-start;
}

.news-pg .page-nav li:nth-child(2) {
  justify-content: center;
}

.news-pg .page-nav li:last-child {
  justify-content: flex-end;
}

.news-pg .page-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 12px 22px;
  color: #06396e;
  background-color: var(--color-white);
  border: 1px solid var(--color-accent);
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  transition:
    color var(--transition-base),
    background-color var(--transition-base),
    border-color var(--transition-base);
}

.news-pg .page-nav .to-archive {
  min-width: 190px;
  color: var(--color-white);
  background-color: #06396e;
  border-color: #06396e;
}


/* ==================================================
   20-07. Hover
================================================== */

@media (hover: hover) and (pointer: fine) {
  .news-pg .post-wrapper a:hover {
    color: var(--color-accent-hover);
  }

  .news-pg .page-nav a:hover {
    color: var(--color-white);
    background-color: var(--color-accent);
  }

  .news-pg .page-nav .to-archive:hover {
    background-color: #092f59;
    border-color: #092f59;
  }
}


/* ==================================================
   20-08. Tablet
================================================== */

@media screen and (min-width: 768px) and (max-width: 1180px) {
  .news-pg .breadcrumb-inner {
    padding-right: var(--side-space-tablet);
    padding-left: var(--side-space-tablet);
  }

  .news-pg .inner.is-small {
    padding-right: var(--side-space-tablet);
    padding-left: var(--side-space-tablet);
  }

  .news-pg .news-wrapper {
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 35px;
  }

  .news-pg .cat-list {
    padding-right: 32px;
    padding-left: 32px;
  }

  .news-pg .post-header {
    padding-right: 32px;
    padding-left: 32px;
  }

  .news-pg .post-title {
    padding-right: 32px;
    padding-left: 32px;
    font-size: 30px;
  }

  .news-pg .post-wrapper {
    padding: 36px 32px 44px;
    font-size: 18px;
  }

  .news-pg .page-nav {
    padding-right: 32px;
    padding-left: 32px;
  }
}


/* ==================================================
   20-09. Smartphone
================================================== */

@media screen and (max-width: 767px) {
  .news-pg .breadcrumb {
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .news-pg .breadcrumb-inner {
    padding-right: var(--side-space-sp);
    padding-left: var(--side-space-sp);
    font-size: 16px;
  }

  .news-pg .inner.is-small {
    padding: 80px var(--side-space-sp);
  }

  .news-pg .news-wrapper {
    display: block;
  }

  .news-pg .box-white {
    border-radius: 20px;
  }

  .news-pg .cat-list {
    gap: 7px;
    padding: 27px 20px 0;
  }

  .news-pg .cat-list li {
    font-size: 16px;
  }

  .news-pg .post-header {
    padding: 16px 20px 0;
  }

  .news-pg .post-header time {
    font-size: 16px;
  }

  .news-pg .post-title {
    margin-top: 13px;
    padding: 0 20px 24px;
    font-size: 25px;
    line-height: 1.6;
  }

  .news-pg .post-wrapper {
    padding: 28px 20px 34px;
    font-size: 16px;
    line-height: 1.9;
  }

  .news-pg .post-wrapper .eyecatch {
    margin-bottom: 28px;
    border-radius: 14px;
  }

  .news-pg .post-wrapper p,
  .news-pg .post-wrapper li,
  .news-pg .post-wrapper th,
  .news-pg .post-wrapper td {
    font-size: 16px;
  }

  .news-pg .post-wrapper h2 {
    margin-top: 2.1em;
    padding: 14px 16px;
    border-left-width: 5px;
    font-size: 23px;
  }

  .news-pg .post-wrapper h3 {
    margin-top: 2em;
    font-size: 21px;
  }

  .news-pg .post-wrapper h4 {
    font-size: 18px;
  }

  .news-pg .post-wrapper ul,
  .news-pg .post-wrapper ol {
    padding: 20px 18px 20px 38px;
  }

  .news-pg .post-wrapper blockquote {
    padding: 20px;
  }

  .news-pg .post-wrapper table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  .news-pg .page-nav {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 0 20px 28px;
  }

  .news-pg .page-nav li:nth-child(2) {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .news-pg .page-nav a {
    width: 100%;
    min-height: 52px;
    padding: 10px 13px;
    font-size: 16px;
  }

  .news-pg .page-nav .to-archive {
    width: 100%;
    min-width: 0;
  }

  .news-pg .news-sidebar {
    margin-top: 70px;
  }
}
/* ==================================================
   News Category Archive
================================================== */

.news-category__header {
  margin-bottom: 36px;
}

.news-category__label {
  margin-bottom: 8px;
  color: #06396e;
  font-family: var(--font-en);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.08em;
}

.news-category__title {
  position: relative;
  padding-left: 22px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.news-category__title::before {
  position: absolute;
  top: 5px;
  bottom: 5px;
  left: 0;
  width: 5px;
  background-color: var(--color-accent);
  border-radius: 999px;
  content: "";
}

.news-category__description {
  margin-top: 20px;
  padding: 22px 24px;
  background-color: var(--color-base);
  border-radius: 16px;
  font-size: 18px;
  line-height: 1.9;
  letter-spacing: 0.04em;
}

.news-category__description p {
  font-size: 18px;
  line-height: 1.9;
}

.news-category__description a {
  color: #06396e;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ==================================================
   News Category Hover
================================================== */

@media (hover: hover) and (pointer: fine) {
  .news-category__description a:hover {
    color: var(--color-accent-hover);
  }
}


/* ==================================================
   News Category Smartphone
================================================== */

@media screen and (max-width: 767px) {
  .news-category__header {
    margin-bottom: 28px;
  }

  .news-category__label {
    margin-bottom: 6px;
    font-size: 16px;
  }

  .news-category__title {
    padding-left: 17px;
    font-size: 27px;
  }

  .news-category__title::before {
    width: 4px;
  }

  .news-category__description {
    margin-top: 16px;
    padding: 18px 20px;
    font-size: 16px;
  }

  .news-category__description p {
    font-size: 16px;
  }
}

/* ==================================================
   18-09. About Plastic Surgery
================================================== */

.top-about {
  width: 100%;
  padding: 80px 40px;
  background-color: var(--color-white);
}

.top-about__inner {
  width: 100%;
  max-width: 1380px;
  margin-right: auto;
  margin-left: auto;
  padding: 62px 88px 66px;
  overflow: hidden;
  background-color: var(--color-base);
  background-image: url("/wp-content/uploads/2026/08/about-bg-scaled.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border: 3px solid #06396e;
  border-radius: 40px;
  box-sizing: border-box;
}


/* ==================================================
   About Header
================================================== */

.top-about__header {
  margin-bottom: 40px;
  text-align: center;
}

/* ==================================================
   About Accordion
================================================== */

.top-about__accordion {
  display: grid;
  gap: 24px;
  width: 100%;
  box-sizing: border-box;
}

.top-about__item {
  width: 100%;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.82);
  border: 2px solid var(--color-accent);
  border-radius: 48px 48px 48px 48px;
  box-sizing: border-box;
}

.top-about__item-heading {
  margin: 0;
}

.top-about__trigger {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  min-height: 84px;
  padding: 18px 66px;
  color: var(--color-white);
  background-color: var(--color-accent);
  border-radius: 999px;
  box-sizing: border-box;
  text-align: left;
  transition:
    background-color var(--transition-base),
    border-radius var(--transition-base);
}

.top-about__trigger[aria-expanded="true"] {
  border-radius: 36px 36px 0 0;
}

.top-about__trigger-text {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
}

.top-about__trigger-icon {
  position: relative;
  display: block;
  flex: 0 0 auto;
  width: 28px;
  height: 18px;
}

.top-about__trigger-icon::before,
.top-about__trigger-icon::after {
  position: absolute;
  top: 6px;
  width: 18px;
  height: 4px;
  background-color: var(--color-white);
  border-radius: 999px;
  content: "";
  transition: transform 0.3s ease;
}

.top-about__trigger-icon::before {
  left: 0;
  transform: rotate(45deg);
}

.top-about__trigger-icon::after {
  right: 0;
  transform: rotate(-45deg);
}

.top-about__trigger[aria-expanded="true"]
.top-about__trigger-icon::before {
  transform: rotate(-45deg);
}

.top-about__trigger[aria-expanded="true"]
.top-about__trigger-icon::after {
  transform: rotate(45deg);
}

.top-about__panel {
  width: 100%;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.82);
  box-sizing: border-box;
}

.top-about__panel {
  width: 100%;
  max-height: 0;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  background-color: rgba(255, 255, 255, 0.82);
  box-sizing: border-box;
  transition:
    max-height 0.65s ease,
    opacity 0.45s ease,
    visibility 0.65s ease;
}

.top-about__panel.is-open {
  visibility: visible;
  opacity: 1;
}

.top-about__panel-inner {
  width: 100%;
  padding: 32px 66px 34px;
  box-sizing: border-box;
}

.top-about__panel-inner p {
  font-size: 18px;
  font-weight: 400;
  line-height: 2;
}




/* ==================================================
   About Button
================================================== */

.top-about__button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 600px;
  max-width: 100%;
  min-height: 60px;
  margin: 44px auto 0;
  padding: 12px 70px 12px 34px;
  color: var(--color-white);
  background-color: #06396e;
  border-radius: 999px;
  box-sizing: border-box;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  transition:
    background-color var(--transition-base),
    box-shadow var(--transition-base);
}

.top-about__button-arrow {
  position: absolute;
  top: 50%;
  right: 34px;
  width: 14px;
  height: 14px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
  transition: transform var(--transition-base);
}


/* ==================================================
   About Hover
================================================== */

@media (hover: hover) and (pointer: fine) {
  .top-about__trigger:hover {
    background-color: var(--color-accent-hover);
  }

  .top-about__button:hover {
    color: var(--color-white);
    background-color: #092f59;
    box-shadow: 0 7px 20px rgba(6, 57, 110, 0.2);
  }

  .top-about__button:hover .top-about__button-arrow {
    transform: translate(4px, -50%) rotate(45deg);
  }
}


/* ==================================================
   About Tablet
================================================== */

@media screen and (min-width: 768px) and (max-width: 1180px) {
  .top-about {
    padding-right: 30px;
    padding-left: 30px;
  }

  .top-about__inner {
    padding: 54px 48px 58px;
    border-radius: 34px;
  }

  .top-about__trigger {
    min-height: 80px;
    padding-right: 48px;
    padding-left: 48px;
  }

  .top-about__trigger-text {
    font-size: 19px;
  }

  .top-about__panel-inner {
    padding-right: 48px;
    padding-left: 48px;
  }

  .top-about__button {
    width: 540px;
    min-height: 60px;
  }
}


/* ==================================================
   About Smartphone
================================================== */

@media screen and (max-width: 767px) {
  .top-about {
    padding: 0px 20px 80px;
  }

  .top-about__inner {
    padding: 42px 8px 46px;
    border-width: 2px;
    border-radius: 28px;
  }

  .top-about__header {
    margin-bottom: 30px;
  }


  .top-about__accordion {
    gap: 18px;
  }

  .top-about__item {
    border-width: 1px;
    border-radius: 48px 48px 48px 48px;
  }

  .top-about__trigger {
    min-height: 68px;
    padding: 14px 22px;
  }

  .top-about__trigger[aria-expanded="true"] {
    border-radius: 28px 28px 0 0;
  }

  .top-about__trigger-text {
    font-size: 18px;
    line-height: 1.5;
  }

  .top-about__trigger-icon {
    width: 24px;
    height: 16px;
  }

  .top-about__trigger-icon::before,
  .top-about__trigger-icon::after {
    top: 6px;
    width: 15px;
    height: 3px;
  }

  .top-about__panel-inner {
    padding: 24px 22px 26px;
  }

  .top-about__panel-inner p {
    font-size: 16px;
    line-height: 1.9;
  }

  .top-about__button {
    width: 100%;
    min-height: 56px;
    margin-top: 30px;
    padding: 10px 48px 10px 20px;
    font-size: 16px;
  }

  .top-about__button-arrow {
    right: 22px;
    width: 12px;
    height: 12px;
    border-top-width: 3px;
    border-right-width: 3px;
  }
}

/* ==================================================
   18-10. Features
================================================== */

.top-features {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: var(--color-base);
  background-image: url("/wp-content/uploads/2026/08/features-bg.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.top-features__inner {
  width: 100%;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
}


/* ==================================================
   Features Header
================================================== */

.top-features__header {
  margin-bottom: 40px;
  text-align: center;
}

.top-features__title {
  font-weight: 600;
  line-height: 1.4;
}

.top-features__en {
  margin-top: 3px;
  color: #06396e;
}

.top-features__lead {
  margin-top: 16px;
  font-size: 18px;
  font-weight: 400;
  line-height: 2;
}


/* ==================================================
   Features List
================================================== */

.top-features__list {
  display: grid;
  gap: 24px;
  width: 100%;
  max-width: 1020px;
  margin-right: auto;
  margin-left: auto;
}

.top-features__item {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  align-items: center;
  width: 100%;
  min-height: 140px;
  padding: 26px 40px;
  overflow: hidden;
  background-color: var(--color-white);
  border-radius: 24px;
  box-shadow: 0 8px 18px rgba(34, 75, 108, 0.14);
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base);
}


/* ==================================================
   Features Point
================================================== */

.top-features__point {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  align-self: stretch;
  padding-right: 30px;
}

.top-features__point::after {
  position: absolute;
  top: 8px;
  right: 0;
  bottom: 8px;
  width: 2px;
  background-color: var(--color-light-blue);
  content: "";
}

.top-features__point-label {
  color: var(--color-accent);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
}

.top-features__point-number {
  margin-top: 2px;
  color: #06396e;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
}


/* ==================================================
   Features Content
================================================== */

.top-features__content {
  min-width: 0;
  padding-left: 40px;
}

.top-features__item-title {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.5;
}

.top-features__text {
  margin-top: 10px;
  font-size: 18px;
  font-weight: 400;
  line-height: 2;
}


/* ==================================================
   Features Hover
================================================== */

@media (hover: hover) and (pointer: fine) {
  .top-features__item:hover {
    transform: translateY(-4px);
    box-shadow: 0 13px 26px rgba(34, 75, 108, 0.18);
  }
}


/* ==================================================
   18-11. Medical Care
================================================== */

.top-medical {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 80px;
  padding-bottom: 80px;
  overflow: visible;
  background-image: url("/wp-content/uploads/2026/08/medicalcare-bg.jpg");
  background-repeat: no-repeat;
  background-position: center -10px;
  background-size: cover;
}
.top-medical__background-logo {
  position: absolute;
  top: -80px;
  left: 40px;
  z-index: 1;
  display: block;
  width: 340px;
  max-width: 34vw;
  height: auto;
  opacity: 0.75;
  pointer-events: none;
}

.top-medical__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (max-width: 767px) {
  .top-medical {
    padding: 80px 20px;
    background-position: center -20px;
  }
}


/* ==================================================
   Medical Care Header
================================================== */

.top-medical__header {
  margin-bottom: 40px;
  text-align: center;
}

.top-medical__title {
  font-weight: 600;
  line-height: 1.4;
}

.top-medical__en {
  margin-top: 3px;
  color: #06396e;
}

.top-medical__lead {
  margin-top: 16px;
  font-size: 18px;
  font-weight: 400;
  line-height: 2;
}


/* ==================================================
   Medical Care List
================================================== */

.top-medical__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px 46px;
  width: 90%;
    margin: auto;
}

.top-medical__item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  min-width: 0;
  min-height: 170px;
  padding: 28px 24px;
  overflow: hidden;
  color: var(--color-text);
  background-color: var(--color-white);
  border: 1px solid rgba(139, 164, 213, 0.18);
  border-radius: 22px;
  box-shadow: 0 7px 14px rgba(34, 75, 108, 0.16);
  text-align: center;
  transition:
    color var(--transition-base),
    border-color var(--transition-base),
    box-shadow var(--transition-base),
    transform var(--transition-base);
}

.top-medical__item::after {
  position: absolute;
  right: 22px;
  bottom: 21px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #06396e;
  border-right: 2px solid #06396e;
  content: "";
  opacity: 0;
  transform: translateX(-5px) rotate(45deg);
  transition:
    opacity var(--transition-base),
    transform var(--transition-base);
}

.top-medical__item-title {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.55;
}

.top-medical__item-text {
  margin-top: 26px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;
}


/* ==================================================
   Medical Care Hover
================================================== */

@media (hover: hover) and (pointer: fine) {
  .top-medical__item:hover {
    color: #06396e;
    border-color: var(--color-accent);
    box-shadow: 0 13px 26px rgba(34, 75, 108, 0.2);
    transform: translateY(-4px);
  }

  .top-medical__item:hover::after {
    opacity: 1;
    transform: translateX(0) rotate(45deg);
  }
}


/* ==================================================
   Features / Medical Care Tablet
================================================== */

@media screen and (min-width: 768px) and (max-width: 1180px) {
  .top-features {
    padding-right: 30px;
    padding-left: 30px;
  }

  .top-features__inner {
    max-width: 900px;
  }

  .top-features__header {
    margin-bottom: 40px;
  }

  .top-features__item {
    grid-template-columns: 130px minmax(0, 1fr);
    min-height: 132px;
    padding: 24px 32px;
  }

  .top-features__point {
    padding-right: 24px;
  }

  .top-features__point-number {
    font-size: 30px;
  }

  .top-features__content {
    padding-left: 32px;
  }

  .top-features__item-title {
    font-size: 21px;
  }

  .top-medical {
    padding-right: 30px;
    padding-left: 30px;
  }

  .top-medical::before {
    top: -12px;
  }

  .top-medical__background-logo {
    top: -50px;
    left: 20px;
    width: 280px;
    max-width: 32vw;
  }

  .top-medical__inner {
    max-width: 900px;
  }

  .top-medical__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
  }

  .top-medical__item {
    min-height: 160px;
  }

  .top-medical__item-title {
    font-size: 21px;
  }
}


/* ==================================================
   Features / Medical Care Smartphone
================================================== */

@media screen and (max-width: 767px) {
  .top-features {
    padding: 80px 20px;
  }

  .top-features__header {
    margin-bottom: 32px;
  }

  .top-features__en {
    font-size: 16px;
  }

  .top-features__lead {
    margin-top: 14px;
    font-size: 16px;
    line-height: 1.9;
    text-align: left;
  }

  .top-features__list {
    gap: 18px;
  }

  .top-features__item {
    display: block;
    min-height: 0;
    padding: 24px 22px 26px;
    border-radius: 20px;
  }

  .top-features__point {
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: row;
    gap: 8px;
    padding-right: 0;
    padding-bottom: 14px;
  }

  .top-features__point::after {
    top: auto;
    right: auto;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 2px;
  }

  .top-features__point-label {
    font-size: 16px;
  }

  .top-features__point-number {
    margin-top: 0;
    font-size: 24px;
    line-height: 1.1;
  }

  .top-features__content {
    padding-top: 17px;
    padding-left: 0;
  }

  .top-features__item-title {
    font-size: 20px;
    line-height: 1.5;
  }

  .top-features__text {
    margin-top: 9px;
    font-size: 16px;
    line-height: 1.9;
  }

  .top-medical {
    padding: 80px 20px;
  }

  .top-medical::before {
    top: -14px;
  }

  .top-medical__background-logo {
    top: -65px;
    left: 0;
    width: 150px;
    max-width: 42vw;
    opacity: 0.68;
  }

  .top-medical__header {
    margin-bottom: 32px;
  }

  .top-medical__en {
    font-size: 16px;
  }

  .top-medical__lead {
    margin-top: 14px;
    font-size: 16px;
    line-height: 1.9;
    text-align: left;
  }

  .top-medical__list {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .top-medical__item {
    min-height: 135px;
    padding: 24px 38px 24px 22px;
    border-radius: 20px;
    text-align: left;
  }

  .top-medical__item::after {
    top: 50%;
    right: 22px;
    bottom: auto;
    opacity: 1;
    transform: translateY(-50%) rotate(45deg);
  }

  .top-medical__item-title {
    width: 100%;
    font-size: 20px;
    line-height: 1.5;
  }

  .top-medical__item-text {
    width: 100%;
    margin-top: 12px;
    font-size: 16px;
    line-height: 1.8;
  }
}

/* ==================================================
   18-12. Access
================================================== */

.top-access {
  padding: 80px 0;
  background: var(--color-white);
}

.top-access__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.top-access__content {
  display: flex;
  gap: 40px;
  align-items: flex-end;
}

.top-access__header {
  text-align: center;
  margin-bottom: 40px;
}

.top-access__en {
  margin-top: 4px;
  color: #06396e;
}

.top-access__address {
  padding-bottom: 22px;
  border-bottom: 2px solid #b8c9ea;
}

.top-access__address p + p {
  margin-top: 8px;
}

.top-access__list {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 16px 24px;
  margin: 28px 0;
}

.top-access__list li {
  position: relative;
  padding-left: 20px;
  font-size: 18px;
  line-height: 1.8;
}

.top-access__list li::before{
  content:"";
  position:absolute;
  left:0;
  top:10px;
  width:14px;
  height:14px;
  border-radius:50%;
  background:#8ba4d5;
}

.top-access__contact{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding-top:22px;
  border-top:2px solid #b8c9ea;
}

.top-access__time p:first-child{
  margin-bottom:6px;
}

.top-access__phone{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  width:390px;
  height:60px;
  color:#fff;
  background:#8ba4d5;
  border-radius:999px;
}

.top-access__phone-icon{
  display:flex;
}

.top-access__map {
  flex: 1;
}

.top-access__map iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 16;
  height: auto;
  border: 0;
  border-radius: 30px;
}

/* ==================================================
   Tablet
================================================== */

@media screen and (min-width: 768px) and (max-width: 1180px) {

  .top-access__content {
    flex-direction: column;
    gap: 40px;
  }

  .top-access__info,
  .top-access__map {
    width: 100%;
  }

  .top-access__map iframe {
    width: 100%;
    height: 420px;
  }
}


/* ==================================================
   Smartphone
================================================== */

@media screen and (max-width:767px){

  .top-access{
    padding:80px 0px;
  }

  .top-access__content{
    display:flex;
    flex-direction:column;
    gap:32px;
	  align-items: center;
  }

  .top-access__header{
    margin-bottom:30px;
  }

  .top-access__address{
    padding-bottom:18px;
  }

  .top-access__list{
    grid-template-columns:1fr;
    gap:12px;
    margin:22px 0;
  }

  .top-access__list li{
    font-size:16px;
  }

  .top-access__contact{
    flex-direction:column;
    gap:20px;
    align-items:flex-start;
  }

  .top-access__phone{
    width:100%;
    height:56px;
  }

  .top-access__map iframe{
    height:320px;
	  aspect-ratio: 16 / 8;
  }

}

/* ==================================================
   18-13. Access Guide
================================================== */

.top-access-guide {
  width: 100%;
  padding-bottom: 80px;
  background-color: var(--color-white);
}

.top-access-guide__inner {
  display: grid;
  grid-template-columns: 5fr 5fr;
  align-items: stretch;
  gap: 40px;
  width: 94%;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
}

.top-access-guide__side {
  display: grid;
  grid-template-rows: auto auto;
  align-content: stretch;
  gap: 40px;
  min-width: 0;
}


/* ==================================================
   Access Hours
================================================== */

.top-access-hours {
  overflow: hidden;
  background-color: #e9faff;
  border-radius: 24px;
}

.top-access-hours__header {
  padding: 28px 20px 20px;
  text-align: center;
}

.top-access-hours__title {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.4;
}

.top-access-hours__en {
  margin-top: 2px;
  color: #06396e;
}

.top-access-hours__table-wrap {
  width: 100%;
  overflow-x: auto;
}

.top-access-hours__table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  background-color: var(--color-white);
}

.top-access-hours__table th,
.top-access-hours__table td {
  padding: 16px 7px;
  font-size: 18px;
  line-height: 1.4;
  text-align: center;
  vertical-align: middle;
}

.top-access-hours__table thead th {
  color: var(--color-white);
  background-color: #06396e;
  font-weight: 600;
  white-space: nowrap;
}

.top-access-hours__table thead th:first-child {
  width: 26%;
}

.top-access-hours__table tbody th {
  position: relative;
  font-weight: 400;
  white-space: nowrap;
}

.top-access-hours__table tbody th::after {
  position: absolute;
  top: 10px;
  right: 0;
  bottom: 10px;
  width: 1px;
  background-color: #4c4c4c;
  content: "";
}

.top-access-hours__table tbody tr + tr {
  border-top: 1px solid #4c4c4c;
}

.top-access-hours__time {
  font-size: 18px;
  font-weight: 600;
}

.top-access-hours__dot {
  display: block;
  width: 26px;
  height: 26px;
  margin-right: auto;
  margin-left: auto;
  background-color: #06396e;
  border-radius: 50%;
}

.top-access-hours__closed {
  color: #06396e;
  font-size: 18px;
  font-weight: 600;
}

.top-access-hours__button-wrap {
  padding: 28px 20px 32px;
  background-color: #e9faff;
}

.top-access-hours__button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 410px;
  max-width: 100%;
  min-height: 58px;
  margin-right: auto;
  margin-left: auto;
  padding: 10px 58px 10px 26px;
  color: var(--color-white);
  background-color: var(--color-light-blue);
  border-radius: 999px;
  text-align: center;
  transition:
    background-color var(--transition-base),
    box-shadow var(--transition-base);
}

.top-access-hours__button-arrow {
  position: absolute;
  top: 50%;
  right: 25px;
  width: 13px;
  height: 13px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
  transition: transform var(--transition-base);
}


/* ==================================================
   Access Reception
================================================== */

.top-access-reception {
  padding: 30px 38px;
  background-color: #e9faff;
  border-radius: 24px;
}

.top-access-reception__title {
  position: relative;
  padding-bottom: 11px;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
}

.top-access-reception__title::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 300px;
  max-width: 80%;
  height: 1px;
  background-color: var(--color-gold);
  content: "";
  transform: translateX(-50%);
}

.top-access-reception__body {
  margin-top: 15px;
}

.top-access-reception__body p {
  font-size: 18px;
  line-height: 2;
}

.top-access-reception__body strong {
  font-weight: 700;
}


/* ==================================================
   Instagram
================================================== */

.top-instagram {
  min-height: 195px;
  padding: 28px 34px;
  overflow: hidden;
  background-color: var(--color-accent);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 24px;
}

.top-instagram__head {
  display: flex;
  align-items: flex-end;
  min-width: 0;
}

.top-instagram__title {
  flex: 0 1 auto;
  color: var(--color-white);
  font-size: 26px;
  font-weight: 600;
  line-height: 1.4;
  white-space: nowrap;
}

.top-instagram__comingsoon {
  display: block;
  width: 150px;
  height: auto;
  margin-left: 14px;
}

.top-instagram__logo {
  display: block;
  flex: 0 0 auto;
  width: 48px;
  height: auto;
  margin-left: auto;
}

.top-instagram__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-top: 24px;
}

.top-instagram__text {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.8;
}

.top-instagram__button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-width: 215px;
  min-height: 56px;
  padding: 5px 48px 10px 24px;
  color: var(--color-white);
  background-color: #06396e;
  border-radius: 999px;
  text-align: center;
  transition:
    background-color var(--transition-base),
    box-shadow var(--transition-base);
}

.top-instagram__button-arrow {
  position: absolute;
  top: 50%;
  right: 22px;
  width: 12px;
  height: 12px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
  transition: transform var(--transition-base);
}


/* ==================================================
   Access Guide Hover
================================================== */

@media (hover: hover) and (pointer: fine) {
  .top-access-hours__button:hover {
    color: var(--color-white);
    background-color: var(--color-accent);
    box-shadow: 0 8px 18px rgba(34, 75, 108, 0.15);
  }

  .top-access-hours__button:hover
  .top-access-hours__button-arrow {
    transform: translate(4px, -50%) rotate(45deg);
  }

  .top-instagram__button:hover {
    color: var(--color-white);
    background-color: #092f59;
    box-shadow: 0 8px 18px rgba(6, 57, 110, 0.2);
  }

  .top-instagram__button:hover
  .top-instagram__button-arrow {
    transform: translate(4px, -50%) rotate(45deg);
  }
}


/* ==================================================
   Access Guide Tablet
================================================== */

@media screen and (min-width: 768px) and (max-width: 1180px) {
  .top-access-guide {
    padding-right: 30px;
    padding-left: 30px;
  }

  .top-access-guide__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 760px;
  }

  .top-access-guide__side {
    gap: 40px;
  }

  .top-access-hours__title {
    font-size: 30px;
  }

  .top-access-hours__table th,
  .top-access-hours__table td {
    font-size: 18px;
  }

  .top-access-reception__title,
  .top-instagram__title {
    font-size: 24px;
  }
}


/* ==================================================
   Access Guide Smartphone
================================================== */

@media screen and (max-width: 767px) {
  .top-access-guide {
    padding: 0 0px 80px;
  }

  .top-access-guide__inner {
    display: block;
  }

  .top-access-guide__side {
    display: grid;
    gap: 40px;
    margin-top: 40px;
  }

  .top-access-hours {
    border-radius: 20px;
  }

  .top-access-hours__header {
    padding: 24px 15px 18px;
  }

  .top-access-hours__title {
    font-size: 26px;
  }

  .top-access-hours__table th,
  .top-access-hours__table td {
    padding: 14px 6px;
    font-size: 15px;
  }

  .top-access-hours__time,
  .top-access-hours__closed {
    font-size: 13px;
	  letter-spacing: 0.045em;
  }

  .top-access-hours__dot {
    width: 22px;
    height: 22px;
  }

  .top-access-hours__button-wrap {
    padding: 24px 16px 28px;
  }

  .top-access-hours__button {
    width: 100%;
    min-height: 56px;
    font-size: 16px;
  }

  .top-access-reception {
    padding: 26px 22px;
    border-radius: 20px;
  }

  .top-access-reception__title {
    font-size: 22px;
  }

  .top-access-reception__body p {
    font-size: 16px;
    line-height: 1.9;
  }

  .top-instagram {
    min-height: 0;
    padding: 26px 22px;
    border-radius: 20px;
  }

  .top-instagram__head {
    flex-wrap: wrap;
    gap: 8px 12px;
  }

  .top-instagram__title {
    font-size: 22px;
    white-space: normal;
  }

  .top-instagram__comingsoon {
    width: 120px;
    margin-left: 0;
  }

  .top-instagram__logo {
    width: 44px;
  }

  .top-instagram__bottom {
    align-items: stretch;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
  }

  .top-instagram__text {
    font-size: 16px;
    line-height: 1.8;
  }

  .top-instagram__button {
    width: 100%;
    min-width: 0;
    min-height: 56px;
    font-size: 16px;
  }
}

/* ==================================================
   27. Footer
================================================== */

.site-footer {
  position: relative;
  padding: 80px 0 70px;
  color: var(--color-white);
  background-color: #002F67;
}

.site-footer__inner {
  width: 100%;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
}


/* ==================================================
   Footer Head
================================================== */

.site-footer__head {
  display: flex;
  justify-content: flex-start;
}

.site-footer__logo {
  display: inline-block;
}

.site-footer__logo-image {
  display: block;
  width: 340px;
  max-width: 100%;
  height: auto;
}


/* ==================================================
   Footer Navigation
================================================== */

.site-footer__navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-top: 54px;
}

.site-footer__nav {
  flex: 1 1 auto;
  min-width: 0;
}

.site-footer__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 46px;
  list-style: none;
}

.site-footer__item {
  margin: 0;
}

.site-footer__item a {
  position: relative;
  display: inline-block;
  color: var(--color-white);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  transition:
    color var(--transition-base),
    opacity var(--transition-base);
}

.site-footer__item a::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 1px;
  margin-right: auto;
  margin-left: auto;
  background-color: var(--color-gold);
  content: "";
  transition: width var(--transition-base);
}


/* ==================================================
   Footer Divider
================================================== */

.site-footer__divider {
  width: 100%;
  height: 1px;
  margin: 44px 0;
  background-color: rgba(255, 255, 255, 0.7);
}


/* ==================================================
   Footer Secondary Navigation
================================================== */

.site-footer__list--secondary {
  justify-content: flex-start;
  gap: 44px;
}


/* ==================================================
   Footer Instagram
================================================== */

.site-footer__instagram {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
}

.site-footer__instagram-image {
  display: block;
  width: 44px;
  height: 44px;
  transition:
    transform var(--transition-base),
    opacity var(--transition-base);
}


/* ==================================================
   Footer Copyright
================================================== */

.site-footer__copyright {
  margin-top: 74px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  text-align: center;
}

.site-footer__copyright small {
  font-size: 9px;
}


/* ==================================================
   Footer Focus
================================================== */

.site-footer__item a:focus-visible,
.site-footer__instagram:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 4px;
}


/* ==================================================
   Footer Hover
================================================== */

@media (hover: hover) and (pointer: fine) {
  .site-footer__item a:hover {
    color: var(--color-gold);
  }

  .site-footer__item a:hover::after {
    width: 100%;
  }

  .site-footer__instagram:hover .site-footer__instagram-image {
    opacity: 0.85;
    transform: scale(1.08);
  }
}


/* ==================================================
   Page Top
================================================== */

.page-top {
  position: fixed;
  right: 40px;
  bottom: 40px;
  z-index: 1000;
  display: block;
  width: 90px;
  height: 90px;
  padding: 0;
  background-color: transparent;
  border: 0;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  cursor: pointer;
  transition:
    visibility 0.35s ease,
    opacity 0.35s ease,
    transform 0.35s ease;
}

.page-top.is-visible {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.page-top__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 1;
}

.page-top:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 4px;
}

@media (hover: hover) and (pointer: fine) {
  .page-top:hover {
    transform: translateY(-5px);
  }
}


/* ==================================================
   Footer Tablet
================================================== */

@media screen and (min-width: 768px) and (max-width: 1180px) {
  .site-footer {
    padding: 70px 30px 60px;
  }

  .site-footer__inner {
    max-width: 900px;
  }

  .site-footer__logo-image {
    width: 300px;
  }

  .site-footer__navigation {
    align-items: flex-start;
    gap: 30px;
    margin-top: 46px;
  }

  .site-footer__list {
    gap: 26px 34px;
  }

  .site-footer__item a {
    font-size: 18px;
  }

  .site-footer__list--secondary {
    justify-content: flex-start;
    gap: 24px 34px;
  }

  .site-footer__divider {
    margin: 38px 0;
  }

  .site-footer__copyright {
    margin-top: 60px;
  }

  .page-top {
    right: 30px;
    bottom: 30px;
    width: 80px;
    height: 80px;
  }
}


/* ==================================================
   Footer Smartphone
================================================== */

@media screen and (max-width: 767px) {
  .site-footer {
    padding: 60px 20px 48px;
  }

  .site-footer__head {
    justify-content: center;
  }

  .site-footer__logo-image {
    width: 260px;
  }

  .site-footer__navigation {
    display: block;
    margin-top: 40px;
  }

  .site-footer__nav {
    width: 100%;
  }

  .site-footer__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
	padding-bottom: 16px;
  }

  .site-footer__item a {
    display: block;
    font-size: 14px;
    line-height: 1.6;
  }

  .site-footer__instagram {
    width: 48px;
    height: 48px;
    margin: 30px auto 0;
  }

  .site-footer__instagram-image {
    width: 40px;
    height: 40px;
  }

  .site-footer__divider {
    margin: 34px 0;
  }

  .site-footer__list--secondary {
    gap: 16px;
    text-align: left;
  }

  .site-footer__copyright {
    margin-top: 48px;
    font-size: 16px;
  }

  .page-top {
    right: 20px;
    bottom: 20px;
    width: 64px;
    height: 64px;
  }
}

@media screen and (min-width: 768px) {
.footer-insta-sp {
	display: none;
}
}
@media screen and (max-width: 767px) {
	.footer-insta-pc {
	display: none;
}
}

/* ==================================================
   Coming Soon Page
================================================== */

.coming-soon-page {
  width: 100%;
  background-color: var(--color-white);
}

.coming-soon {
  padding-top: 80px;
  padding-bottom: 80px;
}

.coming-soon__inner {
  width: 100%;
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
  padding: 64px 70px;
  background-color: var(--color-base);
  border: 2px solid rgba(139, 164, 213, 0.42);
  border-radius: 32px;
  box-shadow: 0 10px 28px rgba(34, 75, 108, 0.1);
  text-align: center;
}

.coming-soon__title {
  margin-bottom: 40px;
  color: #06396e;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.4;
}

.coming-soon__text {
  font-size: 18px;
  font-weight: 400;
  line-height: 2;
}

.coming-soon__text + .coming-soon__text {
  margin-top: 18px;
}


/* ==================================================
   Coming Soon Tablet
================================================== */

@media screen and (min-width: 768px) and (max-width: 1180px) {
  .coming-soon {
    padding-right: 30px;
    padding-left: 30px;
  }

  .coming-soon__inner {
    max-width: 760px;
    padding: 56px 50px;
  }

  .coming-soon__title {
    font-size: 30px;
  }
}


/* ==================================================
   Coming Soon Smartphone
================================================== */

@media screen and (max-width: 767px) {
  .coming-soon {
    padding: 80px 20px;
  }

  .coming-soon__inner {
    padding: 42px 22px;
    border-width: 1px;
    border-radius: 24px;
  }

  .coming-soon__title {
    margin-bottom: 30px;
    font-size: 26px;
  }

  .coming-soon__text {
    font-size: 16px;
    line-height: 1.9;
	  text-align: left;
  }

  .coming-soon__text + .coming-soon__text {
    margin-top: 14px;
  }
}
/* ==================================================
   Coming Soon Button
================================================== */

.coming-soon__button-wrap {
  margin-top: 48px;
}

.coming-soon__button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 420px;
  max-width: 100%;
  min-height: 60px;
  margin: 0 auto;
  padding: 12px 64px 12px 28px;
  color: var(--color-white);
  background-color: #06396e;
  border-radius: 999px;
  text-align: center;
  transition:
    background-color var(--transition-base),
    box-shadow var(--transition-base);
}

.coming-soon__button-arrow {
  position: absolute;
  top: 50%;
  right: 28px;
  width: 13px;
  height: 13px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
  transition: transform var(--transition-base);
}

@media (hover: hover) and (pointer: fine) {
  .coming-soon__button:hover {
    color: var(--color-white);
    background-color: #092f59;
    box-shadow: 0 8px 20px rgba(6, 57, 110, 0.2);
  }

  .coming-soon__button:hover .coming-soon__button-arrow {
    transform: translate(4px, -50%) rotate(45deg);
  }
}

@media screen and (max-width: 767px) {
  .coming-soon__button-wrap {
    margin-top: 36px;
  }

  .coming-soon__button {
    width: 100%;
    min-height: 56px;
    padding: 10px 50px 10px 20px;
    font-size: 16px;
  }

  .coming-soon__button-arrow {
    right: 22px;
    width: 12px;
    height: 12px;
  }
}
.site-header__phone-number{
	font-size: 15px;
}