@charset "UTF-8";

:root {
  --color-base: #ffffff;
  --color-text: #000000;
  --color-white: #ffffff;
  --color-line: #d8d8d8;
  --color-gold: #aa8e39;
  --color-blue: #1563c2;
  --font-mincho: "Zen Old Mincho", serif;
  --font-sans: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
  --header-height: 82px;
  --inner-wide: 1360px;
  --inner: 1120px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--color-text);
  background: var(--color-base);
  font-family: var(--font-sans);
  font-size: 1.6rem;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  opacity: 1;
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  overflow-x: hidden;
}

body.is-preload {
  opacity: 0;
  transform: translateY(16px);
}

body.nav-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  color: inherit;
  text-decoration: none;
}

a.link {
	color: var(--color-blue);
	text-decoration: underline;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

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

button {
  font: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

.page-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.28);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s var(--ease);
  z-index: 90;
}

body.nav-open .page-overlay {
  opacity: 1;
  pointer-events: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.header-inner {
  max-width: var(--inner-wide);
  margin: 0 auto;
  height: var(--header-height);
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-logo {
  margin: 0;
  flex-shrink: 0;
}

.site-logo a {
  display: flex;
  align-items: center;
  height: 100%;
}

.site-logo img {
  width: 120px;
  height: auto;
  object-fit: contain;
}

.global-nav {
  margin-left: auto;
}

.global-nav-sns {
  display: none;
}

.global-nav-list {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 100%;
}

.global-nav-list li {
  display: flex;
  align-items: center;
  height: 100%;
}

.global-nav-list a {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 100%;
  padding: 0 2px;
  font-family: var(--font-sans);
  font-weight: 400;
  letter-spacing: 0.04em;
  overflow: hidden;
  transition: color 0.35s var(--ease);
}

.global-nav-list a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 1px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.45s var(--ease);
}

.global-nav-list a::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 100%;
  transform: translateY(105%);
  transition: transform 0.45s var(--ease);
  z-index: -1;
}

.global-nav-list a:hover {
  color: var(--color-gold);
}

.global-nav-list a:hover::before {
  transform: scaleX(1);
  transform-origin: left center;
}

.global-nav-list a:hover::after {
  transform: translateY(0);
}

.hamburger {
  display: none;
  width: 52px;
  height: 52px;
  position: relative;
  z-index: 110;
}

.hamburger span {
  position: absolute;
  left: 12px;
  width: 28px;
  height: 2px;
  background: var(--color-text);
  transition: transform 0.4s var(--ease), opacity 0.35s var(--ease), top 0.4s var(--ease);
}

body.nav-open .hamburger span {
  background: #ffffff;
}

.hamburger span:nth-child(1) {
  top: 17px;
}

.hamburger span:nth-child(2) {
  top: 25px;
}

.hamburger span:nth-child(3) {
  top: 33px;
}

.hamburger.is-active span:nth-child(1) {
  top: 25px;
  transform: rotate(45deg);
}

.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
  top: 25px;
  transform: rotate(-45deg);
}

.home-mv {
  position: relative;
  height: calc(100vh - var(--header-height));
  min-height: 640px;
  overflow: hidden;
}

.home-mv-image,
.home-mv-image img {
  width: 100%;
  height: 100%;
}

.home-mv-image img {
  object-fit: cover;
  transform: scale(1.04);
  animation: mvZoom 9s var(--ease) 0.2s forwards;
}

.home-mv-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.14));
}

.home-mv-title {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 40px;
}

.home-mv-title img {
  width: min(78vw, 1080px);
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.2));
  animation: fadeUp 1.1s var(--ease) 0.4s both;
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.split-grid--reverse .split-grid-image {
  order: 1;
}

.split-grid--reverse .split-grid-content {
  order: 2;
}

.split-grid-content {
  min-height: 430px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
}

.split-grid-image {
  min-height: 430px;
}

.split-grid-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-copy {
  width: min(100%, 560px);
}

.section-title {
  margin: 0;
  font-family: var(--font-mincho);
  font-size: clamp(3.4rem, 3vw, 5.2rem);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.06em;
}

.section-title--sm {
  font-size: clamp(2.8rem, 2.2vw, 4rem);
  margin-bottom: 28px;
}

.section-copy p {
  margin: 0 0 36px;
  font-family: var(--font-sans);
  line-height: 2.1;
}

.btn-arrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-width: 260px;
  height: 56px;
  padding: 0 22px;
  background: var(--color-text);
  color: var(--color-white);
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.btn-arrow::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #1f1f1f 0%, #3c3c3c 100%);
  transform: translateX(-102%);
  transition: transform 0.5s var(--ease);
}

.btn-arrow:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.btn-arrow:hover::before {
  transform: translateX(0);
}

.btn-arrow > * {
  position: relative;
  z-index: 1;
}

.btn-arrow-icon,
.feature-card-arrow,
.sns-card-arrow,
.footer-btn-arrow {
  position: relative;
  width: 10px;
  height: 10px;
  flex-shrink: 0;
}

.btn-arrow-icon::before,
.feature-card-arrow::before,
.sns-card-arrow::before,
.footer-btn-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid currentColor;
  transform: translateY(-50%);
}

.btn-arrow-text {
  font-weight: 400;
  letter-spacing: 0.08em;
}

.home-links {
  padding: 60px 24px;
}

.home-links-inner {
  max-width: var(--inner);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.feature-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 360px;
  border: 1px solid #cfcfcf;
  background: var(--color-white);
  overflow: hidden;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 32px rgba(0, 0, 0, 0.12);
}

.feature-card-media {
  flex: 1;
  overflow: hidden;
}

.feature-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.feature-card:hover .feature-card-media img {
  transform: scale(1.06);
}

.feature-card-body {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}

.feature-card-bottom {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--color-text);
  color: var(--color-white);
}

.home-news,
.home-sns {
  padding: 40px 24px 60px;
  border-top: 1px solid var(--color-line);
}

.section-heading {
  text-align: center;
  margin-bottom: 30px;
}

.news-list {
  width: min(100%, 560px);
  margin: 0 auto;
}

.news-item a {
  display: grid;
  grid-template-columns: 110px 1fr;
  align-items: start;
  gap: 24px;
  padding: 10px 0;
  transition: color 0.35s var(--ease), transform 0.35s var(--ease);
}

.news-item a:hover {
  color: var(--color-gold);
  transform: translateX(6px);
}

.section-button {
  text-align: center;
  margin-top: 34px;
}

.sns-grid {
  max-width: var(--inner);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.sns-card {
  display: block;
}

.sns-card-logo {
  min-height: 84px;
  border: 1px solid #c8c8c8;
  background: var(--color-white);
  display: grid;
  place-items: center;
  padding: 8px 20px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.sns-card--dark .sns-card-logo {
  background: var(--color-text);
  border-color: var(--color-text);
}

.sns-card:hover .sns-card-logo {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.sns-card-logo img {
  width: 90%;
  max-height: 90px;
  object-fit: contain;
}

.sns-card-name {
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 1.45rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.site-footer {
  background: var(--color-text);
  color: var(--color-white);
}

.footer-upper {
  max-width: 1060px;
  margin: 0 auto;
  padding: 30px 24px 22px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
  align-items: center;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 16px;
}

.footer-logo img {
  width: 130px;
  object-fit: contain;
}

.footer-address {
  margin: 0;
}

.footer-nav-area {
  display: grid;
  grid-template-columns: auto;
  grid-template-areas:
    "top"
    "buttons";
  justify-content: end;
  align-content: center;
  row-gap: 26px;
  min-width: 0;
}

.footer-nav {
  grid-area: top;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
}

.footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  min-width: 0;
  order: 1;
}

.footer-nav a {
  font-size: 1.45rem;
  transition: color 0.3s var(--ease);
}

.footer-nav a:hover {
  color: #d6bc65;
}

.footer-sns {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 25px;
  margin-top: 0;
  flex-shrink: 0;
  min-width: max-content;
  order: 2;
}

.footer-sns a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: 22px;
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
}

.footer-sns a:hover {
  opacity: 0.75;
  transform: translateY(-2px);
}

.footer-sns img {
  width: auto;
  height: 22px;
  object-fit: contain;
}

.footer-buttons {
  grid-area: buttons;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-end;
}

.footer-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-width: 220px;
  height: 46px;
  padding: 0 18px;
  background: var(--color-gold);
  color: var(--color-white);
  transition: background 0.35s var(--ease), transform 0.35s var(--ease);
}

.footer-btn:hover {
  background: #c0a44a;
  transform: translateY(-2px);
}

.footer-btn span:last-child {
  font-size: 1.45rem;
  letter-spacing: 0.06em;
}

.footer-lower {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding: 18px 24px 24px;
  text-align: center;
}

.footer-lower p {
  margin: 0;
  font-size: 1.2rem;
}

.reveal {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

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

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes mvZoom {
  from {
    transform: scale(1.2);
  }
  to {
    transform: scale(1.0);
  }
}

@media screen and (max-width: 767px) {
  :root {
    --header-height: 72px;
  }

  html {
    font-size: 56.25%;
  }

  .site-header {
    backdrop-filter: blur(14px);
  }

  .header-inner {
    height: var(--header-height);
    padding: 0 16px;
  }

  .site-logo img {
    width: 70%;
  }

  .hamburger {
    display: block;
  }

.global-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: min(88vw, 360px);
  max-width: 100%;
  height: 100dvh;
  padding: 96px 28px 36px;
  box-sizing: border-box;
  background: rgba(0, 0, 0, 0.75);
  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    transform 0.5s var(--ease),
    opacity 0.3s var(--ease),
    visibility 0.3s var(--ease);
  overflow-y: auto;
  overflow-x: hidden;
}

.global-nav.is-open {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.global-nav-sns {
  display: flex;
  margin-top: 28px;
  padding-top: 18px;
  justify-content: center;
  align-items: center;
  gap: 30px;
  border-top: 1px solid rgb(255, 255, 255);
}

.global-nav-sns a {
	  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: 22px;
  line-height: 1;
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
}

.global-nav-sns img {
  display: block;
  width: auto;
  height: 22px;
  object-fit: contain;
}

.global-nav-list {
	padding-top: 8px;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  height: auto;
  border-top: 1px solid rgb(255, 255, 255);
}

.global-nav-list li {
  width: 100%;
  margin: 0;
}

.global-nav-list a {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 0 8px 0 18px;
  line-height: 1.5;
  font-weight: 400;
  color: var(--color-white);
  background: transparent;
  box-sizing: border-box;
  transition:
    color 0.35s var(--ease),
    background 0.35s var(--ease),
    letter-spacing 0.35s var(--ease);
}

.global-nav-list a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(170, 142, 57, 0.05);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
  z-index: 0;
}

.global-nav-list a:hover {
  color: var(--color-gold);
}

.global-nav-list a:hover::before {
  transform: scaleX(1);
  transform-origin: left center;
}

.global-nav-list a:hover::after {
  transform: translateY(0);
}

.home-mv {
  aspect-ratio: 1 / 1;
  height: auto;
  min-height: auto;
}

  .home-mv-title {
    padding: 24px;
  }

.home-mv-title img {
  width: min(86vw, 420px);
}

  .split-grid {
    grid-template-columns: 1fr;
  }

  .split-grid-image,
  .split-grid-content {
    min-height: auto;
  }

  .split-grid-content {
    padding: 32px 24px 42px;
  }

.split-grid--reverse .split-grid-image {
  order: 2;
}

.split-grid--reverse .split-grid-content {
  order: 1;
}

  .split-grid--about .split-grid-content {
    order: 1;
  }

  .split-grid--about .split-grid-image {
    order: 2;
  }

.section-heading {
  margin-bottom: 20px;
}

.section-copy {
  width: min(100%, 560px);
  margin: 0 auto;
  text-align: center;
}

  .section-title {
    font-size: 3.4rem;
  }

  .section-title--sm {
    font-size: 3rem;
    margin-bottom: 20px;
  }

.section-copy p {
  text-align: left;
  font-size: 1.6rem;
}

  .btn-arrow {
    min-width: 220px;
    width: 100%;
    max-width: 280px;
  }

  .home-links {
    padding: 44px 16px 32px;
  }

  .home-links-inner,
  .sns-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .feature-card {
    min-height: auto;
  }

  .feature-card-media {
    min-height: 240px;
  }

  .feature-card-body {
    min-height: 200px;
  }

  .home-news,
  .home-sns {
    padding: 30px 28px;
  }

  .news-item a {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .sns-card-logo {
    min-height: 76px;
  }

.footer-upper {
  grid-template-columns: 1fr;
  gap: 28px;
  min-width: 0;
  box-sizing: border-box;
  width: 100%;
}

  .footer-brand {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-logo {
  display: inline-flex;
  justify-content: center;
  margin: 0 auto 16px;
}

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

.footer-nav-area {
  grid-template-columns: 1fr;
  grid-template-areas:
    "top"
    "buttons";
  justify-content: stretch;
  row-gap: 30px;
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 30px;
}

.footer-nav ul {
  display: block;
  width: 100%;
}

.footer-nav li {
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.footer-nav ul a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 0;
  font-family: var(--font-sans);
}

.footer-nav ul a::before {
  content: "▶";
  font-size: 1rem;
}

.footer-sns {
  justify-content: center;
  margin: 0 auto;
  gap: 30px;
}

.footer-buttons {
  width: 100%;
  min-width: 0;
}

.footer-btn {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
  padding: 0 16px;
  white-space: normal;
  word-break: keep-all;
  overflow-wrap: break-word;
}

  .footer-lower {
    padding: 16px;
  }

}

/* =========================================
   sub page common
========================================= */
.subpage-mv {
  position: relative;
  height: 350px;
  overflow: hidden;
}

.subpage-mv-image,
.subpage-mv-image img {
  width: 100%;
  height: 100%;
}

.subpage-mv-image img {
  object-fit: cover;
}

.subpage-mv-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.subpage-mv-title {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
}

.subpage-mv-title h1 {
  margin: 0;
  color: var(--color-white);
  font-family: var(--font-mincho);
  font-size: 6rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.08em;
}

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

.breadcrumb-list {
  max-width: 1060px;
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.breadcrumb-list li {
  position: relative;
  color: var(--color-white);
  font-size: 1.2rem;
  line-height: 1.4;
}

.breadcrumb-list li + li::before {
  content: ">";
  position: absolute;
  left: -12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-white);
  font-size: 1rem;
}

.subpage-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 60px;
  box-sizing: border-box;
}

.section-block {
  padding: 44px 0 70px;
}

.section-block + .section-block {
  border-top: 1px solid #cfcfcf;
  max-width: 1100px;
  margin: 0 auto;
}

.subpage-heading {
  margin: 0 0 42px;
  text-align: center;
  font-family: var(--font-mincho);
  font-size: 5rem;
  font-weight: 500;
  line-height: 1.25;
}

.small-heading {
  font-size: 3.5rem;
}

@media screen and (max-width: 767px) {
  .subpage-mv {
    height: 180px;
  }

  .subpage-mv-title h1 {
    font-size: 4rem;
  }

  .breadcrumb-list {
    padding: 10px 16px;
    gap: 16px;
    flex-wrap: wrap;
  }

  .subpage-inner {
    padding: 0 24px;
  }

  .section-block {
    padding: 30px 0 48px;
  }

  .subpage-heading {
    margin-bottom: 28px;
    font-size: 4.2rem;
  }
  .small-heading {
    font-size: 2.8rem;
  }
}

/* =========================================
   about page
========================================= */

.about-greeting-sign {
  margin-top: 32px;
  text-align: right;
}

.about-greeting-sign-beya {
  margin: 0 0 6px;
  line-height: 1.6;
}

.about-greeting-sign-shisho {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.06em;
}

.about-master-layout,
.about-place-layout {
  display: grid;
  grid-template-columns: 1fr 450px;
  gap: 40px;
  align-items: start;
}

.about-master-content {
  min-width: 0;
}

.about-master-profile {
  margin: 0 0 28px;
}

.about-master-profile-row {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 16px;
  padding: 3px 0;
}

.about-master-profile-row dt,
.about-master-profile-row dd {
  margin: 0;
}

.about-master-history {
  border-top: 1px solid #8e8e8e;
}

.about-master-history-title {
  margin: 0;
  padding: 10px 0;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 400;
  border-bottom: 1px solid #8e8e8e;
  background-color: #ebebeb;
}

.about-master-history-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid #8e8e8e;
}

.about-master-history-text p {
  margin: 0;
}

.about-master-image img,
.about-place-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.about-place-content {
  min-width: 0;
}

.about-place-title {
  margin: 0 0 28px;
  font-family: var(--font-mincho);
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1.35;
}

.about-place-block + .about-place-block {
  margin-top: 28px;
}

.about-place-label {
  margin: 0 0 10px;
  padding-bottom: 6px;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.6;
  border-bottom: 1px solid #8e8e8e;
}

.about-place-block p {
  margin: 0;
}

@media screen and (max-width: 767px) {
  .about-greeting-sign {
    margin-top: 24px;
  }
  .about-greeting-sign-beya {
    font-size: 1.6rem;
  }
  .about-master-layout,
  .about-place-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .about-master-profile-row {
    grid-template-columns: 76px 1fr;
    gap: 12px;
    padding: 6px 0;
  }
  .about-master-profile-row dt,
  .about-master-profile-row dd,
  .about-master-history-year,
  .about-master-history-text p,
  .about-place-block p {
    line-height: 1.8;
  }
  .about-master-history-item {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 12px 0;
  }
  .about-place-title {
    margin-bottom: 20px;
	text-align: center;
  }
  .about-place-label {
    font-size: 1.6rem;
  }
}

/* =========================================
   rikishi page
========================================= */
.rikishi-grid,
.rikishi-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 40px;
  row-gap: 50px;
  max-width: 980px;
  margin: 0 auto;
}

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

.rikishi-card-button {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: center;
  cursor: pointer;
}

.rikishi-card-image {
  display: block;
  width: 100%;
  max-width: 300px;
  margin: 0 auto 10px;
  padding: 0;
  border: none;
  background: transparent;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.rikishi-card-image:hover {
  transform: translateY(-6px);
}

.rikishi-card-image img {
  width: 100%;
  height: auto;
  display: block;
}

.rikishi-card-rank {
  display: block;
  margin: 0 0 4px;
  font-size: 1.4rem;
  line-height: 1.6;
}

.rikishi-card-name {
  display: inline-block;
  padding: 0;
  border: none;
  background: transparent;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: underline;
  text-underline-offset: 0.14em;
  transition: color 0.3s var(--ease);
}

.rikishi-card-name:hover {
  color: var(--color-gold);
}

.rikishi-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s var(--ease), visibility 0.35s var(--ease);
}

.rikishi-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.rikishi-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
}

.rikishi-modal-container {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(calc(100% - 80px), 1080px);
  transform: translate(-50%, -50%);
  box-sizing: border-box;
}

.rikishi-modal-close {
  position: absolute;
  top: -38px;
  right: 0;
  z-index: 2;
  padding: 0;
  color: var(--color-white);
  font-size: 1.9rem;
  font-weight: 400;
  line-height: 1;
}

.rikishi-modal-panel {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: 370px 1fr;
  gap: 30px;
  align-items: start;
  background: var(--color-base);
  border-radius: 10px;
  padding: 40px;
  box-sizing: border-box;
}

.rikishi-modal-image img {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 20px;
}

.rikishi-modal-rank {
  margin: 0 0 8px;
  font-size: 1.8rem;
  line-height: 1.4;
}

.rikishi-modal-name {
  margin: 0 0 26px;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.35;
}

.rikishi-modal-table {
  border-top: 1px solid #8e8e8e;
}

.rikishi-modal-table-title {
  margin: 0;
  padding: 8px 0;
  text-align: center;
  font-size: 1.6rem;
  background: #ebebeb;
  border-bottom: 1px solid #8e8e8e;
}

.rikishi-modal-table-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 0;
  border-bottom: 1px solid #8e8e8e;
}

.rikishi-modal-table-row dt,
.rikishi-modal-table-row dd {
  margin: 0;
  padding: 0px 18px 12px;
  font-size: 1.5rem;
  line-height: 1.55;
}

.rikishi-modal-table-row dt {
  font-weight: 400;
}

html.modal-open,
body.modal-open,
html.is-rikishi-modal-open,
body.is-rikishi-modal-open {
  overflow: hidden;
}

body.modal-open {
  position: fixed;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .rikishi-archive-heading {
    margin-bottom: 14px;
    font-size: 3.8rem;
  }

  .rikishi-grid,
  .rikishi-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 15px;
    row-gap: 20px;
    max-width: 100%;
  }

  .rikishi-card-image {
    max-width: 140px;
  }

  .rikishi-card-rank {
    font-size: 1.2rem;
  }

  .rikishi-card-name {
    font-size: 1.8rem;
  }

.rikishi-modal-container {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% - 32px);
  max-height: none;
  transform: translate(-50%, -50%);
  overflow: visible;
  box-sizing: border-box;
}

.rikishi-modal-close {
  position: absolute;
  top: -44px;
  right: 0;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 82px;
  height: 34px;
  padding: 0 12px;
  color: var(--color-white);
  background: rgba(0, 0, 0, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  font-size: 1.5rem;
  line-height: 1;
  box-sizing: border-box;
}

.rikishi-modal-panel {
  grid-template-columns: 1fr;
  gap: 20px;
  max-height: calc(100vh - 128px);
  max-height: calc(100dvh - 128px);
  padding: 20px;
  border-radius: 8px;
  overflow-y: auto;
}

  .rikishi-modal-image {
    padding: 18px 16px;
  }
  .rikishi-modal-image img {
	margin: 0 auto;
	width: 80%;
  }
  .rikishi-modal-name {
    margin-bottom: 18px;
  }

  .rikishi-modal-table-row {
    grid-template-columns: 90px 1fr;
  }
}

/* =========================================
   news page
========================================= */
.news-archive {
  padding: 48px 0 86px;
}

.news-archive-inner {
  max-width: 760px;
}

.news-archive-list {
  width: 100%;
}

.news-archive-item a {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 34px;
  align-items: start;
  padding: 10px 0;
  transition: color 0.35s var(--ease), transform 0.35s var(--ease);
}

.news-archive-item a:hover {
  color: var(--color-gold);
  transform: translateX(6px);
}

.news-archive-item time,
.news-archive-item span {
  font-size: 1.6rem;
  line-height: 1.8;
}

.news-detail-header {
  margin-bottom: 28px;
}

.news-detail-title {
  margin: 0;
  padding-bottom: 14px;
  font-family: var(--font-mincho);
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.45;
  border-bottom: 1px solid var(--color-text);
}

.news-detail-date {
  display: block;
  margin-top: 10px;
  font-size: 1.4rem;
  line-height: 1.8;
}

.news-detail-body {
  font-size: 1.6rem;
  line-height: 2;
}

.news-detail-body p {
  margin: 0 0 28px;
}

.news-detail-body figure {
  margin: 34px auto 42px;
  max-width: 800px;
}

.news-detail-body figure img {
  display: block;
  width: 100%;
  height: auto;
}

.news-detail-body h2 {
  margin: 34px 0 22px;
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 1.5;
}

.news-detail-body strong {
  font-weight: 700;
}

.news-detail-body .text-red {
  color: #d90000;
}

.news-detail-body a {
  color: var(--color-blue);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.news-detail-body ul,
.news-detail-body ol {
  margin: 0 0 28px;
  padding-left: 1.5em;
  list-style-position: outside;
}

.news-detail-body ul {
  list-style-type: disc;
}

.news-detail-body ol {
  list-style-type: decimal;
}

.news-detail-body li {
  margin: 0 0 8px;
  line-height: 1.9;
}

.news-post-nav {
  margin-top: 76px;
  padding-top: 76px;
  border-top: 1px solid #cfcfcf;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.news-post-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.6rem;
  line-height: 1.6;
  transition: color 0.35s var(--ease), transform 0.35s var(--ease);
}

.news-post-nav-link:hover {
  color: var(--color-gold);
}

.news-post-nav-link--prev:hover {
  transform: translateX(-4px);
}

.news-post-nav-link--next:hover {
  transform: translateX(4px);
}

.news-post-nav-icon {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-gold);
  color: var(--color-white);
  flex-shrink: 0;
}

.news-post-nav-link--prev .news-post-nav-icon::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-right: 6px solid currentColor;
}

.news-post-nav-link--next .news-post-nav-icon::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid currentColor;
}

@media screen and (max-width: 767px) {
  .news-archive {
    padding: 34px 0 56px;
  }

  .news-archive-inner {
    max-width: 100%;
  }

  .news-year-heading {
    margin-bottom: 28px;
    font-size: 4rem;
  }

  .news-archive-item a {
    grid-template-columns: 1fr;
    gap: 2px;
    padding: 12px 0;
  }

  .news-archive-item time,
  .news-archive-item span {
    font-size: 1.45rem;
  }

  .news-detail-title {
    font-size: 2.4rem;
  }

  .news-detail-body {
    font-size: 1.45rem;
    line-height: 1.9;
  }

  .news-detail-body figure {
    margin: 28px auto 34px;
  }

  .news-detail-body h2 {
    font-size: 2.2rem;
  }

  .news-post-nav {
    margin-top: 48px;
    padding-top: 28px;
  }

  .news-post-nav-link {
    font-size: 1.4rem;
  }
}
/* =========================================
   contact page
========================================= */
.contact-notice {
  margin: 0 auto 38px;
  padding: 20px 32px;
  border: 1px solid var(--color-text);
  box-sizing: border-box;
}

.contact-notice h3 {
  margin: 0 0 10px;
  font-family: var(--font-mincho);
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.5;
}

.contact-notice p {
  margin: 0;
  line-height: 1.9;
}

.contact-form-heading {
  margin: 0 auto 22px;
  padding: 12px 24px;
  border-left: 6px solid var(--color-gold);
  background: #f5f5f5;
  font-family: var(--font-mincho);
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.5;
  box-sizing: border-box;
}

.contact-form {
  margin: 0 auto;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 210px 1fr;
  border-top: 1px solid #ccc;
}

.contact-form-row--textarea {
  border-bottom: 1px solid #ccc;
}

.contact-form-label {
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 14px 20px;
  background: #efebdf;
  box-sizing: border-box;
}

.contact-form-label span {
  margin-left: 4px;
  color: #d90000;
}

.contact-form-field {
  padding: 16px;
  box-sizing: border-box;
}

.contact-form-field input,
.contact-form-field select,
.contact-form-field textarea {
  width: min(100%, 260px);
  height: 40px;
  padding: 0 12px;
  border: 1px solid #d8d8d8;
  border-radius: 6px;
  background: #f7f7f7;
  font-family: var(--font-sans);
  font-size: 1.4rem;
  box-sizing: border-box;
}

.contact-form-field--wide input {
  width: min(100%, 520px);
}

.contact-form-field select {
  appearance: auto;
}

.contact-form-field textarea {
  width: 100%;
  min-height: 110px;
  padding: 12px;
  resize: vertical;
}

.contact-form-row--textarea .contact-form-label {
  align-items: center;
}

.privacy-policy {
  margin-top: 30px;
}

.privacy-policy h3 {
  margin: 0 0 12px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
}

.privacy-policy-scroll {
  height: 367px;
  padding: 18px 22px 18px 28px;
  border: 1px solid #cfcfcf;
  overflow-y: auto;
  box-sizing: border-box;
}

.privacy-policy-scroll section + section {
  margin-top: 20px;
}

.privacy-policy-scroll h4 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
}

.privacy-policy-scroll p {
  margin: 0 0 8px;
}

.privacy-policy-scroll ul {
  margin: 8px 0 12px;
  padding-left: 1.2em;
  list-style: disc;
}

.privacy-policy-scroll li {
  margin-bottom: 4px;
  line-height: 1.7;
}

.contact-agreement {
  margin-top: 20px;
  text-align: center;
}

.contact-agreement label {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.7;
}

.contact-agreement input {
  margin-top: 8px;
}

.contact-agreement em {
  color: #d90000;
  font-style: normal;
}

.contact-submit {
  margin-top: 28px;
  text-align: center;
}

.contact-submit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 280px;
  padding: 0 14px 0 8px;
  height: 46px;
  background: var(--color-gold);
  color: var(--color-white);
  font-family: var(--font-sans);
  transition: background 0.35s var(--ease), transform 0.35s var(--ease), opacity 0.35s var(--ease);
}

.contact-submit-button:not(:disabled):hover {
  background: #c0a44a;
  transform: translateY(-2px);
}

.contact-submit-link {
	text-decoration: none;
	pointer-events: auto;
}

.contact-submit-link:hover {
	background: #c0a44a;
	transform: translateY(-2px);
}

@media screen and (max-width: 767px) {
  .contact-notice {
    padding: 18px;
  }

  .contact-notice h3,
  .contact-form-heading {
    font-size: 2.1rem;
  }

  .contact-form-heading {
    padding: 10px 18px;
  }

  .contact-form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-label {
    min-height: auto;
    padding: 12px 14px;
  }

  .contact-form-field {
    padding: 12px 0 16px;
  }

  .contact-form-field input,
  .contact-form-field select,
  .contact-form-field textarea {
    width: 100%;
  }

  .privacy-policy-scroll {
    height: 300px;
    padding: 16px;
  }

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

  .contact-submit-button {
    width: 100%;
    max-width: 260px;
  }
}
/* =========================================
   Contact Form 7 adjustment
========================================= */

/* CF7が自動生成するformの余白・構造をリセット */
.contact-form .wpcf7,
.contact-form .wpcf7-form {
  margin: 0;
  padding: 0;
}

/* CF7が自動挿入するp/brでテーブル風レイアウトが崩れないようにする */
.contact-form .wpcf7-form p {
  margin: 0;
  padding: 0;
}

.contact-form .wpcf7-form br {
  display: none;
}

/* CF7化後も、フォーム行を静的HTMLと同じテーブル風に保つ */
.contact-form .contact-form-row {
  display: grid;
  grid-template-columns: 210px 1fr;
  align-items: stretch;
  border-top: 1px solid #ccc;
}

/* 最終行の下罫線 */
.contact-form .contact-form-row--textarea {
  border-bottom: 1px solid #ccc;
}

/* 左側ラベルのベージュ背景を行の高さいっぱいに伸ばす */
.contact-form .contact-form-label {
  display: flex;
  align-items: center;
  height: 100%;
  min-height: 54px;
  padding: 14px 20px;
  background: #efebdf;
  box-sizing: border-box;
}

/* CF7が入力欄の外側に自動生成するspan */
.contact-form .contact-form-field .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
  min-width: 0;
}

.contact-form .contact-form-row--textarea .contact-form-field {
  width: 100%;
}

.contact-form .contact-form-row--textarea .wpcf7-form-control-wrap {
  width: 100%;
}

.contact-form .contact-form-row--textarea .wpcf7-textarea {
  width: 100%;
  max-width: 100%;
}

/* input / select は静的HTMLと同じ幅・高さにする */
.contact-form .contact-form-field .wpcf7-text,
.contact-form .contact-form-field .wpcf7-email,
.contact-form .contact-form-field .wpcf7-tel,
.contact-form .contact-form-field .wpcf7-select {
  display: block;
  width: min(100%, 260px);
  height: 40px;
  padding: 0 12px;
  border: 1px solid #d8d8d8;
  border-radius: 6px;
  background-color: #f7f7f7;
  font-family: var(--font-sans);
  font-size: 1.4rem;
  box-sizing: border-box;
}

/* selectの矢印は既存デザインに合わせる */
.contact-form .contact-form-field .wpcf7-select {
  appearance: none;
  padding-right: 36px;
  background-image:
    linear-gradient(45deg, transparent 50%, #000 50%),
    linear-gradient(135deg, #000 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 50%,
    calc(100% - 12px) 50%;
  background-size:
    6px 6px,
    6px 6px;
  background-repeat: no-repeat;
}

/* textareaは静的HTMLと同じく右側エリアいっぱいに広げる */
.contact-form .contact-form-field .wpcf7-textarea {
  display: block;
  width: 100%;
  min-height: 110px;
  height: auto;
  padding: 12px;
  border: 1px solid #d8d8d8;
  border-radius: 6px;
  background-color: #f7f7f7;
  font-family: var(--font-sans);
  font-size: 1.4rem;
  resize: vertical;
  box-sizing: border-box;
}

/* 住所など広い入力欄を使う場合 */
.contact-form .contact-form-field--wide .wpcf7-text,
.contact-form .contact-form-field--wide .wpcf7-email,
.contact-form .contact-form-field--wide .wpcf7-tel {
  width: min(100%, 520px);
}

/* acceptance部分は通常のinput幅指定から除外 */
.contact-agreement .wpcf7-form-control-wrap,
.contact-agreement .wpcf7-form-control {
  display: inline;
  width: auto;
  min-width: 0;
  height: auto;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
}

/* CF7 acceptanceのリスト余白を消す */
.contact-agreement .wpcf7-list-item {
  margin: 0;
}

.contact-agreement .wpcf7-list-item label {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.7;
}

/* チェックボックス */
.contact-agreement input[type="checkbox"] {
  width: auto;
  height: auto;
  margin-top: 6px;
}

/* バリデーションメッセージ */
.contact-form .wpcf7-not-valid-tip {
  display: block;
  margin-top: 6px;
  color: #d90000;
  font-size: 1.2rem;
  line-height: 1.5;
}

/* 送信後・エラー時のメッセージ */
.contact-form .wpcf7-response-output {
  margin: 20px 0 0;
  padding: 12px 16px;
  border-width: 1px;
  font-size: 1.4rem;
  line-height: 1.7;
}

/* CF7のローディングスピナー */
.contact-submit .wpcf7-spinner {
  display: block;
  margin: 12px auto 0;
}

@media screen and (max-width: 767px) {
  .contact-form .contact-form-row {
    grid-template-columns: 1fr;
  }

  .contact-form .contact-form-field {
    padding: 12px 0 16px;
  }

.contact-form .contact-form-field .wpcf7-text,
.contact-form .contact-form-field .wpcf7-email,
.contact-form .contact-form-field .wpcf7-tel,
.contact-form .contact-form-field .wpcf7-select {
  width: 100%;
}
}

/* =========================================
   reusable content components
========================================= */
.text-block p {
  margin: 0 0 24px;
  line-height: 2;
}

.text-block p:last-child {
  margin-bottom: 0;
}

.text-emphasis-red {
  margin: 16px 0 24px;
  color: #d90000;
  font-size: 1.5rem;
}

.content-subheading {
  margin: 0 0 22px;
  padding: 12px 24px;
  border-left: 6px solid var(--color-gold);
  background: #f5f5f5;
  font-family: var(--font-mincho);
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.5;
  box-sizing: border-box;
}

.content-list {
  margin: 0 0 24px;
  padding-left: 1.8em;
  list-style: disc;
}

.content-list li {
  margin-bottom: 8px;
  line-height: 1.8;
}

.content-list li::marker {
  font-size: 1.25em;
}

.table-scroll {
  width: 100%;
  margin: 0 0 20px;
  overflow-x: auto;
}

.content-table {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid #8e8e8e;
}

.content-table th,
.content-table td {
  padding: 16px 18px;
  border-right: 1px solid #8e8e8e;
  border-bottom: 1px solid #8e8e8e;
  font-weight: 400;
  line-height: 1.8;
  vertical-align: middle;
}

.content-table th:last-child,
.content-table td:last-child {
  border-right: none;
}

.content-table thead th {
  text-align: center;
  background: #ebebeb;
}

.content-table tbody th {
  text-align: center;
  white-space: nowrap;
}

.pdf-link {
  color: var(--color-blue);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.pdf-link::after {
  content: "";
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
  margin-left: 4px;
  vertical-align: -0.18em;
  background: url("../img/common/ico_pdf.png") center / contain no-repeat;
}

/* =========================================
   kouenkai page
========================================= */
.kouenkai-page .content-table {
  min-width: 720px;
}

.kouenkai-page .contact-notice {
  margin-top: 28px;
}

.kouenkai-submit-note {
  margin-top: 18px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .content-subheading {
    padding: 10px 18px;
    font-size: 2.1rem;
  }

  .content-table th,
  .content-table td {
    padding: 12px 14px;
  }

  .kouenkai-guide {
    text-align: left;
  }
}
/* =========================================
   kouenkai company page
========================================= */
.company-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 44px;
  max-width: 940px;
  margin: 0 auto;
}

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

.company-logo-link {
  display: block;
  transition: color 0.35s var(--ease);
}

.company-logo-link:hover {
  color: var(--color-gold);
}

.company-logo-box {
  display: grid;
  place-items: center;
  aspect-ratio: 1.42 / 1;
  border: 1px solid #cfcfcf;
  background: var(--color-white);
  box-sizing: border-box;
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}

.company-logo-link:hover .company-logo-box {
  transform: translateY(-4px);
  border-color: var(--color-gold);
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.08);
}

.company-logo-box img {
  display: block;
  width: auto;
  max-width: 90%;
  max-height: 78%;
  object-fit: contain;
}

.company-logo-box--dummy {
  background: #a8a8a8;
}

.company-logo-box--dummy img {
  display: none;
}

.company-name {
  display: inline-block;
  margin-top: 12px;
  line-height: 1.7;
}

@media screen and (max-width: 767px) {
  .company-section {
    padding: 42px 0 64px;
  }

  .company-heading {
    margin-bottom: 36px;
    font-size: 2.7rem;
    text-align: left;
  }

  .company-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: 320px;
  }
}

/* =========================================
   jQuery UI Datepicker
========================================= */
.ui-datepicker {
  position: absolute;
  display: none;
  z-index: 9999 !important;
  width: 280px;
  padding: 12px;
  background: #ffffff;
  border: 1px solid #cfcfcf;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
  font-family: var(--font-sans);
  font-size: 1.4rem;
  box-sizing: border-box;
}

.ui-datepicker-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  padding: 0 34px;
}

.ui-datepicker-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-weight: 700;
}

.ui-datepicker-title select {
  height: 30px;
  padding: 0 6px;
  border: 1px solid #cfcfcf;
  background: #fff;
  font-family: var(--font-sans);
  font-size: 1.3rem;
}

.ui-datepicker-prev,
.ui-datepicker-next {
  position: absolute;
  top: 0;
  width: 28px;
  height: 30px;
  cursor: pointer;
  text-indent: -9999px;
}

.ui-datepicker-prev {
  left: 0;
}

.ui-datepicker-next {
  right: 0;
}

.ui-datepicker-prev::before,
.ui-datepicker-next::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
}

.ui-datepicker-prev::before {
  transform: translate(-35%, -50%) rotate(-135deg);
}

.ui-datepicker-next::before {
  transform: translate(-65%, -50%) rotate(45deg);
}

.ui-datepicker-calendar {
  width: 100%;
  border-collapse: collapse;
}

.ui-datepicker-calendar th,
.ui-datepicker-calendar td {
  width: 14.285%;
  padding: 2px;
  text-align: center;
}

.ui-datepicker-calendar th {
  font-size: 1.2rem;
  font-weight: 700;
}

.ui-datepicker-calendar a {
  display: block;
  padding: 6px 0;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.ui-datepicker-calendar a:hover {
  background: #efebdf;
}

.ui-datepicker-current-day a {
  background: var(--color-gold);
  color: #ffffff;
}

.ui-datepicker-today a {
  outline: 1px solid var(--color-gold);
}