/* =========================================================
   Pivot Travel
========================================================= */

:root {
  --pt-green: #006934;
  --pt-green-dark: #004b25;
  --pt-green-light: #e6f2ec;

  --pt-accent: #c89b5b;
  --pt-accent-dark: #a97837;
  --pt-accent-light: #f6eee2;

  --pt-beige: #f7f4ee;
  --pt-text: #1f2a24;
  --pt-muted: #66746b;
  --pt-border: #dfe8e2;
  --pt-white: #ffffff;
}

/* Reset / Base
--------------------------------------------------------- */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--pt-text);
  background: var(--pt-white);
  font-family: "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.7;
}

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

a {
  color: inherit;
}

.pt-site {
  overflow: hidden;
}

/* Anchor offset
--------------------------------------------------------- */

#about,
#business,
#hotels,
#contact,
#company {
  scroll-margin-top: 90px;
}

/* Header
--------------------------------------------------------- */

.pt-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: var(--pt-green);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.pt-header__inner {
  width: min(1120px, calc(100% - 40px));
  height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.pt-header__logo a {
  display: inline-flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1.2;
}

.pt-header__logo img {
  display: block;
  width: auto;
  max-height: 42px;
}

.pt-header__logo-main {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.pt-header__logo-sub {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.pt-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.pt-nav a {
  position: relative;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.pt-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: #fff;
  transition: width 0.25s ease;
}

.pt-nav a:hover::after {
  width: 100%;
}

.pt-menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.pt-menu-button span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 6px auto;
  background: #fff;
  transition: 0.25s ease;
}

body.pt-menu-open .pt-menu-button span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

body.pt-menu-open .pt-menu-button span:nth-child(2) {
  opacity: 0;
}

body.pt-menu-open .pt-menu-button span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Common
--------------------------------------------------------- */

.pt-container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.pt-section {
  padding: 96px 0;
}

.pt-label {
  margin: 0 0 14px;
  color: var(--pt-accent-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.pt-section h2,
.pt-intro h1 {
  margin: 0;
  color: var(--pt-green-dark);
  line-height: 1.35;
  letter-spacing: 0.04em;
}

.pt-section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.pt-section-head {
  /* max-width: 760px; */
  margin: 0 0 42px;
}

.pt-section-head p:last-child {
  margin: 18px 0 0;
  color: var(--pt-muted);
  font-size: 1.2rem;
  line-height: 1.9;
}

@media (max-width: 560px) {
  .pt-section h2 {
    font-size: 1.5rem;
  }
}

/* Hero
--------------------------------------------------------- */

.pt-hero {
  background: var(--pt-beige);
}

.pt-hero__image {
  width: 100%;
  height: 40vh;
  min-height: 320px;
  max-height: 440px;
  overflow: hidden;
  background: var(--pt-green-light);
  border-bottom: 4px solid var(--pt-accent);
}

.pt-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  vertical-align: bottom;
}

/* Intro
--------------------------------------------------------- */

.pt-intro {
  padding: 72px 0 88px;
  background:
    radial-gradient(circle at 90% 20%, rgba(0, 105, 52, 0.12), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #ffffff 58%, var(--pt-green-light) 100%);
}

.pt-intro h1 {
  font-size: clamp(1.8rem, 3.5vw, 3.4rem);
  font-weight: 800;
}

.pt-lead {
  /* max-width: 860px; */
  margin: 28px 0 0;
  color: var(--pt-muted);
  font-size: 1.2rem;
  line-height: 2;
}

/* Business
--------------------------------------------------------- */

.pt-business {
  background: var(--pt-white);
}

.pt-business-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.pt-business-card {
  overflow: hidden;
  background: var(--pt-white);
  border: 1px solid rgba(0, 105, 52, 0.12);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(0, 105, 52, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pt-business-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 58px rgba(0, 105, 52, 0.12);
}

.pt-business-card__image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--pt-green-light);
}

.pt-business-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: bottom;
  transition: transform 0.4s ease;
}

.pt-business-card:hover .pt-business-card__image img {
  transform: scale(1.05);
}

.pt-business-card__body {
  padding: 30px;
  background: var(--pt-accent-light);
}

.pt-business-card__body h3 {
  margin: 0 0 16px;
  color: var(--pt-green-dark);
  font-size: 1.45rem;
  line-height: 1.45;
}

.pt-business-card__body p {
  margin: 0;
  color: var(--pt-muted);
  line-height: 2;
}

/* Hotels
--------------------------------------------------------- */

.pt-hotels {
  background: var(--pt-beige);
}

.pt-hotel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.pt-hotel-card {
  overflow: hidden;
  background: var(--pt-white);
  border: 1px solid rgba(0, 105, 52, 0.12);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(0, 105, 52, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pt-hotel-card {
  display: flex;
  flex-direction: column;
}

.pt-hotel-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.pt-hotel-card__body > p:not(.pt-hotel-card__area) {
  min-height: 5.55em;
}

.pt-hotel-card__body .pt-text-link {
  margin-top: 24px;
}

.pt-hotel-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 58px rgba(0, 105, 52, 0.12);
}

.pt-hotel-card__image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--pt-green-light);
}

.pt-hotel-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: bottom;
  transition: transform 0.4s ease;
}

.pt-hotel-card:hover .pt-hotel-card__image img {
  transform: scale(1.05);
}

.pt-hotel-card__body {
  padding: 28px;
}

.pt-hotel-card__area {
  margin: 0 0 8px;
  color: var(--pt-green);
  font-size: 0.85rem;
  font-weight: 700;
}

.pt-hotel-card h3 {
  margin: 0 0 14px;
  color: var(--pt-green-dark);
  font-size: 1.35rem;
  line-height: 1.45;
}

.pt-hotel-card p {
  margin: 0;
  color: var(--pt-muted);
  line-height: 1.85;
}

.pt-text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 190px;
  min-height: 50px;
  margin-top: 24px;
  padding: 0 24px;
  color: #fff;
  background: var(--pt-green);
  border: 1px solid var(--pt-green);
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.25s ease;
}

.pt-text-link::after {
  content: "→";
  color: var(--pt-accent-light);
  transition: transform 0.2s ease;
}

.pt-text-link:hover {
  color: var(--pt-green-dark);
  background: #fff;
  border-color: var(--pt-green);
}

.pt-text-link:hover::after {
  color: var(--pt-accent-dark);
  transform: translateX(4px);
}

/* Contact
--------------------------------------------------------- */

.pt-contact {
  background:
    radial-gradient(circle at 85% 10%, rgba(255, 255, 255, 0.18), transparent 24%),
    linear-gradient(135deg, var(--pt-green) 0%, var(--pt-green) 100%);
  color: #fff;
}

.pt-contact .pt-label,
.pt-contact h2 {
  color: #fff;
}

.pt-contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
}

.pt-contact-text h2 {
  margin: 0 0 24px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.35;
}

.pt-contact-text p {
  margin: 0 0 18px;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.86);
  line-height: 2;
}

.pt-contact-form {
  padding: 36px;
  background: #fff;
  color: var(--pt-text);
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

@media (max-width: 560px) {
  .pt-contact-text h2 {
    font-size: 1.5rem;
  }
}

/* Contact Form 7
--------------------------------------------------------- */

.pt-contact-form p {
  margin: 0 0 18px;
}

.pt-contact-form label {
  display: block;
  color: var(--pt-green-dark);
  font-weight: 700;
  line-height: 1.7;
}

.pt-contact-form input[type="text"],
.pt-contact-form input[type="email"],
.pt-contact-form input[type="tel"],
.pt-contact-form textarea,
.pt-contact-form select {
  width: 100%;
  margin-top: 8px;
  padding: 13px 14px;
  border: 1px solid var(--pt-border);
  border-radius: 8px;
  background: #fff;
  color: var(--pt-text);
  font-size: 1rem;
  font-family: inherit;
  box-shadow: none;
  appearance: none;
}

.pt-contact-form input[type="text"]:focus,
.pt-contact-form input[type="email"]:focus,
.pt-contact-form input[type="tel"]:focus,
.pt-contact-form textarea:focus,
.pt-contact-form select:focus {
  outline: none;
  border-color: var(--pt-green);
  box-shadow: 0 0 0 3px rgba(0, 105, 52, 0.12);
}

.pt-contact-form textarea {
  min-height: 160px;
  resize: vertical;
}

.pt-contact-form input[type="submit"] {
  width: 100%;
  min-height: 54px;
  border: none;
  border-radius: 8px;
  background: var(--pt-accent);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: 0.25s ease;
}

.pt-contact-form input[type="submit"]:hover {
  background: var(--pt-accent-dark);
}

.pt-contact-form .wpcf7-spinner {
  display: block;
  margin: 12px auto 0;
}

.pt-contact-form .wpcf7-not-valid-tip {
  margin-top: 6px;
  color: #c62828;
  font-size: 0.85rem;
  font-weight: 500;
}

.pt-contact-form .wpcf7-response-output {
  margin: 20px 0 0;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
}

.pt-contact-form .cf-turnstile {
  margin-bottom: 32px;
}

/* Company
--------------------------------------------------------- */

.pt-company {
  background: var(--pt-white);
}

.pt-company-table {
  border-top: 1px solid var(--pt-border);
}

.pt-company-table dl {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  margin: 0;
  padding: 24px 0;
  border-bottom: 1px solid var(--pt-border);
}

.pt-company-table dt {
  color: var(--pt-green-dark);
  font-weight: 700;
}

.pt-company-table dd {
  margin: 0;
  color: var(--pt-muted);
  line-height: 1.8;
}

/* Footer
--------------------------------------------------------- */

.pt-footer {
  padding: 48px 0 28px;
  background: var(--pt-green);
  color: #fff;
}

.pt-footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}

.pt-footer__logo {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.pt-footer__logo-main {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.pt-footer__logo-sub {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.75rem;
  font-weight: 700;
}

.pt-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 24px;
}

.pt-footer__links a {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
  text-decoration: none;
}

.pt-footer__links a:hover {
  color: #fff;
  text-decoration: underline;
}

.pt-footer__copy {
  margin: 36px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.8rem;
}

/* Responsive
--------------------------------------------------------- */

@media (max-width: 900px) {
  .pt-header__inner {
    height: 68px;
  }

  .pt-menu-button {
    display: block;
    position: relative;
    z-index: 1002;
  }

  .pt-nav {
    position: fixed;
    top: 68px;
    left: 0;
    width: 100%;
    padding: 24px 28px 32px;
    background: var(--pt-green);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 18px 40px rgba(0, 105, 52, 0.2);
    display: grid;
    gap: 18px;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: 0.25s ease;
  }

  body.pt-menu-open .pt-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .pt-nav a {
    color: #fff;
    font-size: 1rem;
  }

  .pt-section {
    padding: 72px 0;
  }

  .pt-hero__image {
    height: 30vh;
    min-height: 220px;
    max-height: 280px;
  }

  .pt-intro {
    padding: 56px 0 68px;
  }

  .pt-business-grid {
    grid-template-columns: 1fr;
  }

  .pt-hotel-grid {
    grid-template-columns: 1fr;
  }

  .pt-contact-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .pt-contact-form {
    padding: 28px;
  }

  .pt-company-table dl {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .pt-footer__inner {
    flex-direction: column;
  }

  .pt-footer__links {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .pt-container,
  .pt-header__inner {
    width: min(100% - 28px, 1120px);
  }

  .pt-header__logo-main {
    font-size: 1rem;
  }

  .pt-header__logo-sub {
    font-size: 0.68rem;
  }

  .pt-section {
    padding: 60px 0;
  }

  .pt-hero__image {
    height: 28vh;
    min-height: 200px;
    max-height: 240px;
  }

  .pt-intro {
    padding: 48px 0 60px;
  }

  .pt-intro h1 {
    font-size: 1.5rem;
  }

  .pt-lead {
    font-size: 0.98rem;
    line-height: 1.9;
  }

  .pt-section-head {
    margin-bottom: 32px;
  }

  .pt-business-card {
    border-radius: 8px;
  }

  .pt-business-card__body {
    padding: 24px;
  }

  .pt-hotel-card {
    border-radius: 8px;
  }

  .pt-hotel-card__body {
    padding: 24px;
  }

  .pt-contact-form {
    padding: 22px;
    border-radius: 8px;
  }
}

.pc-br {
  display: inline;
}

.sp-br {
  display: none;
}

@media screen and (max-width: 767px) {
  .pc-br {
    display: none;
  }

  .sp-br {
    display: inline;
  }
}