:root {
  --ink: #163a46;
  --ink-deep: #0e2b35;
  --blue: #1aa5b8;
  --blue-deep: #087b91;
  --aqua: #71d9dc;
  --sky: #dff8f7;
  --mint: #e9f8ef;
  --sand: #fff8ea;
  --sand-deep: #f0dfb9;
  --coral: #ef795f;
  --yellow: #f5cf55;
  --white: #fff;
  --line: #cadfe1;
  --muted: #627980;
  --header-height: 72px;
  --shadow: 0 16px 38px rgba(12,73,84,.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: "Noto Sans JP","Hiragino Kaku Gothic ProN","Yu Gothic",Meiryo,sans-serif;
  font-size: 16px;
  line-height: 1.8;
text-align: justify;
  overflow-wrap: anywhere;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

button {
  font: inherit;
}

p,h1,h2,h3,ol,ul,dl,dd,figure {
  margin-top: 0;
}

.container {
  width: min(calc(100% - 48px),1120px);
  margin-inline: auto;
}

.small {
  font-size: .84em;
line-height: 1.5;
}

.mt-8 {
  margin-top: 8px;
}

.mt-12 {
  margin-top: 12px;
}

.mt-16 {
  margin-top: 16px;
}

.mt-32 {
  margin-top: 32px;
}

.mt-40 {
  margin-top: 40px;
}

.pending {
  display: inline;
  color: inherit;
  font-weight: 800;
  letter-spacing: .02em;
}

.pending-line {
  margin-top: 12px;
  color: #725c31;
}

.emphasis {
  color: var(--blue-deep);
  font-size: 1.08em;
}

.attention {
 color: coral;
  font-weight: 800;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid rgba(8,123,145,.12);
  backdrop-filter: blur(12px);
}

.global-nav,.global-nav__inner {
  height: 100%;
}

.global-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 40px),1240px);
  margin-inline: auto;
}

.global-nav__brand {
  display: grid;
  text-decoration: none;
  line-height: 1.12;
}

.global-nav__brand-main {
  color: var(--blue-deep);
  font-size: .88rem;
  font-weight: 900;
  letter-spacing: .18em;
}

.global-nav__brand-sub {
  margin-top: 4px;
  color: var(--muted);
  font-size: .54rem;
  letter-spacing: .2em;
}

.global-menu {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.global-menu a {
  position: relative;
  display: block;
  padding: 8px 0;
  font-size: .76rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.global-menu a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  border-radius: 3px;
  background: var(--coral);
  content: "";
  transform: scaleX(0);
  transition: .2s;
}

.global-menu a:hover::after,.global-menu a:focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  border: 0;
  background: none;
  color: var(--ink);
  cursor: pointer;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 650px;
  overflow: hidden;
  background: linear-gradient(125deg,#edfdf9 0%,#d9f6f4 45%,#fef3d4 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -3;
  background: radial-gradient(circle at 8% 18%,rgba(255,255,255,.9) 0 5%,transparent 5.3%),radial-gradient(circle at 90% 10%,rgba(255,255,255,.8) 0 7%,transparent 7.3%),linear-gradient(90deg,rgba(255,255,255,.28) 1px,transparent 1px),linear-gradient(rgba(255,255,255,.28) 1px,transparent 1px);
  background-size: auto,auto,48px 48px,48px 48px;
  content: "";
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0,1.1fr) minmax(360px,.9fr);
  align-items: center;
  gap: 56px;
  min-height: 650px;
  padding-block: 76px 92px;
}

.hero__content {
  position: relative;
  z-index: 2;
}

.hero__eyebrow {
  margin-bottom: 18px;
  color: var(--blue-deep);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .22em;
}

.hero__title {
  display: grid;
  margin-bottom: 24px;
  line-height: 1.2;
  text-wrap: balance;
text-align: left;
}

.hero__title:not(.hero__title--compact) > span {
  font-size: clamp(1.55rem,3vw,2.4rem);
  font-weight: 900;
  letter-spacing: .08em;
}

.hero__title:not(.hero__title--compact) > strong {
  margin-top: 8px;
  color: var(--ink-deep);
  font-family: Georgia,"Times New Roman",serif;
  font-size: clamp(2.7rem,4.5vw,4.9rem);
  font-weight: 500;
  letter-spacing: -.025em;
}

.hero__title:not(.hero__title--compact) small {
  margin-top: 12px;
  font-size: clamp(1.3rem,2.4vw,2rem);
  font-weight: 500;
}

.hero__title:not(.hero__title--compact) em {
  font-size: .58em;
  font-style: normal;
  letter-spacing: .04em;
}

.hero__title:not(.hero__title--compact) > .hero__title-sub {
  display: block;
  margin-top: 12px;
  color: var(--coral);
  font-family: Georgia,"Times New Roman",serif;
  font-size: clamp(1.08rem,1.75vw,1.45rem);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .025em;
}

.hero__lead {
  max-width: 580px;
  margin-bottom: 28px;
  font-size: 1.05rem;
  font-weight: 700;
}

.hero-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.hero-summary span {
  padding: 8px 13px;
  border: 1px solid rgba(8,123,145,.24);
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .08em;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  border-radius: 999px;
  background: var(--coral);
  box-shadow: 0 10px 24px rgba(239,121,95,.22);
  color: #fff;
  font-weight: 900;
  text-decoration: none;

}

.hero__cta::after {
  content: "↓";
}

.hero__visual {
  position: relative;
  z-index: 1;
}

.hero__entry-start {
  display: inline-block;
  margin: 4px 0 18px;
  padding: 7px 14px;
  border-left: 4px solid var(--coral);
  background: rgba(255, 255, 255, .72);
  color:var(--blue-deep);
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1.5;
}


.artist-placeholder {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  padding: 5px;
  border: 0;
  border-radius: 18px;
  background: linear-gradient(135deg,#ffb14a 0%,#ff7a59 48%,#f5c85b 100%);
  box-shadow: var(--shadow);
}

.artist-placeholder::before {
  display: none;
  content: none;
}

.artist-placeholder img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 13px;
  object-fit: cover;
}

.hero__decor {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  opacity: .8;
}

.hero__decor--one {
  top: 85px;
  right: 5%;
  width: 180px;
  height: 180px;
  background: rgba(245,207,85,.36);
}

.hero__decor--two {
  right: 31%;
  bottom: 65px;
  width: 92px;
  height: 92px;
  background: rgba(239,121,95,.2);
}

.hero__wave {
  position: absolute;
  right: -4%;
  bottom: -95px;
  left: -4%;
  height: 160px;
  border-radius: 50% 50% 0 0/100% 100% 0 0;
  background: #fff;
  transform: rotate(-1.4deg);
}

.section {
  padding: 96px 0;
}

.section--white {
  background: #fff;
}

.section--sand {
  background: var(--sand);
}

.section-heading {
  margin-bottom: 42px;
  text-align: center;
}

.section-heading__en {
  margin-bottom: 6px;
  color: var(--coral);
  font-family: Georgia,"Times New Roman",serif;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .24em;
}

.section-heading h2 {
  margin-bottom: 12px;
  color: var(--ink-deep);
  font-size: clamp(1.8rem,3vw,2.65rem);
  line-height: 1.3;
  letter-spacing: .05em;
}

.section-heading p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.section-heading--light .section-heading__en {
  color: #ffc995;
}

.section-heading--light h2,.section-heading--light p:last-child {
  color: #fff;
}

.point-grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.point-card {
  position: relative;
  display: grid;
  grid-template-columns: 78px 1fr;
  align-items: center;
  gap: 18px;
  min-height: 158px;
  overflow: hidden;
  padding: 26px 28px;
  border: 1px solid #f3d7ae;
  border-radius: 24px;
  background: linear-gradient(135deg,#fffdf7 0%,#fff6db 58%,#ffe8d9 100%);
  box-shadow: 0 12px 30px rgba(178,104,43,.10);
}

.point-card::after {
  position: absolute;
  right: -28px;
  bottom: -36px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255,158,91,.13);
  content: "";
}

.point-card:nth-child(2n) {
  border-color: #f1cfb6;
  background: linear-gradient(135deg,#fffdf9 0%,#fff0df 56%,#ffe1d8 100%);
}

.point-card:nth-child(3) {
  background: linear-gradient(135deg,#fffdf7 0%,#fff4cf 55%,#ffe0c5 100%);
}

.point-card:nth-child(4) {
  background: linear-gradient(135deg,#fffdf8 0%,#ffead8 58%,#ffdcd2 100%);
}

.point-card--wide {
  grid-column: 1/-1;
  background: linear-gradient(110deg,#fff9de 0%,#ffe9c9 50%,#ffdcd3 100%);
}

.point-card__number {
  position: relative;
  z-index: 1;
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  border: 5px solid rgba(255,255,255,.68);
  border-radius: 50%;
  background: linear-gradient(145deg,#ffb347,#ef795f);
  box-shadow: 0 7px 18px rgba(220,103,58,.20);
  color: #fff;
  font-family: Georgia,serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.point-card strong {
  display: block;
  margin-bottom: 5px;
  color: #d45e43;
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .12em;
}

.point-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #4c382f;
  font-size: 1.16rem;
  font-weight: 900;
  line-height: 1.6;
}

.point-card__sub {
  font-size: .78em;
  font-weight: 800;
}

.point-card p.point-card__note {
  margin-top: 8px;
  color: #725c4b;
  font-size: .78rem;
  font-weight: 700;
  line-height: 1.55;
}

.gangala {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg,#0d5d58 0%,#0e7073 58%,#0a4b55 100%);
  color: #fff;
}

.gangala::before {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 0%,rgba(157,232,186,.23),transparent 32%),radial-gradient(circle at 92% 75%,rgba(245,207,85,.17),transparent 34%);
  content: "";
}

.gangala .container {
  position: relative;
}

.gangala__intro {
  display: block;
}

.gangala__copy {
  max-width: 920px;
  margin: 0 auto 34px;
  padding: 28px 30px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 20px;
  background: rgba(255,255,255,.08);
}

.gangala__copy p {
  margin-bottom: 14px;
}

.gangala__copy p:last-child {
  margin-bottom: 0;
}

.gangala__catch {
  color: #fff1b8;
  font-size: 1.28rem;
  font-weight: 900;
  line-height: 1.5;
}

.gangala__photos {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 20px;
}

.gangala-photo {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 5px solid rgba(255,255,255,.95);
  border-radius: 16px;
  box-shadow: 0 16px 34px rgba(0,0,0,.20);
  aspect-ratio: 906/582;
}

.gangala-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gangala-photo--one,.gangala-photo--two {
  width: auto;
  height: auto;
  transform: none;
}

.recruit-card {
  margin-bottom: 28px;
  padding: 30px;
  border: 1px solid #efdcae;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(91,69,30,.06);
}

.recruit-card__label {
  margin-bottom: 12px;
  color: var(--coral);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .12em;
}

.recruit-card__periods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 18px;
}

.recruit-card__periods div {
  padding: 16px 18px;
  border-radius: 14px;
  background: #fff8dd;
}

.recruit-card__periods span {
  display: block;
  margin-bottom: 4px;
  color: #8a6a16;
  font-size: .74rem;
  font-weight: 900;
}

.recruit-card__periods strong {
  font-size: 1.04rem;
}

.info-list {
  display: grid;
  grid-template-columns: 210px minmax(0,1fr);
  overflow: hidden;
  margin: 0 0 28px;
  border: 1px solid #e7d9bc;
  border-radius: 22px;
  background: #fff;
}

.info-list dt,.info-list dd {
  margin: 0;
  padding: 20px 24px;
  border-bottom: 1px solid #eee2ca;
}

.info-list dt {
  background: #f9f0dc;
  font-weight: 900;
}

.info-list dd {
  border-left: 1px solid #eee2ca;
}

.info-list dt:last-of-type,.info-list dd:last-of-type {
  border-bottom: 0;
}

.info-list p {
  margin-bottom: 0;
}

.note-list {
  margin: 0;
  padding-left: 1.6em;
}

.note-list li+li {
  margin-top: 7px;
}

.subnote {
  margin-top: 16px;
  padding: 16px 18px;
  border-left: 4px solid var(--yellow);
  background: #fffaf0;
}

.subnote p {
  margin: 6px 0 0;
}

.data-table,.schedule-table,.cancel-table {
  width: 100%;
  border-collapse: collapse;
}

.data-table th,.data-table td {
  border: 1px solid #cbdfe1;
  padding: 16px 14px;
  vertical-align: middle;
}

.data-table thead th {
  background: var(--blue-deep);
  color: #fff;
  text-align: center;
}

.data-table tbody th {
  background: #edf8f7;
  text-align: left;
}

.price-table {
  table-layout: fixed;
}

.price-table th:first-child {
  width: 25%;
}

.price-table th {
  text-align: center !important;
}

.price-table td {
  text-align: center;
}

.price {
  color: #b5482f;
  font-size: 1rem;
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
}

.number-list {
  margin: 0;
  padding-left: 1.4em;
}

.number-list li+li {
  margin-top: 5px;
}

.accordion-list {
  display: grid;
  gap: 14px;
}

.accordion {
  overflow: hidden;
  border: 1px solid #d8e4e4;
  border-radius: 18px;
  background: #fff;
}

.accordion summary {
  position: relative;
  padding: 18px 54px 18px 22px;
  color: var(--ink-deep);
  font-size: 1rem;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary::after {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #e7f6f4;
  color: var(--blue-deep);
  content: "＋";
  font-size: 1.05rem;
  line-height: 25px;
  text-align: center;
  transform: translateY(-50%);
}

.accordion[open] summary::after {
  content: "−";
}

.accordion__body {
  padding: 2px 22px 22px;
  border-top: 1px solid #edf1f1;
}

.accordion__body>p:first-child {
  margin-top: 16px;
}

.mini-heading {
  margin: 20px 0 8px;
  color: var(--blue-deep);
  font-size: 1rem;
}

.schedule-section {
  background: linear-gradient(135deg,#123e49 0%,#0d5b66 55%,#08768a 100%);
  color: #fff;
}

.schedule-block {
  padding: 28px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 24px;
  background: rgba(255,255,255,.98);
  box-shadow: 0 18px 46px rgba(3,37,42,.18);
  color: var(--ink);
}

.schedule-block__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 18px;
}

.schedule-block__label {
  margin-bottom: 2px;
  color: var(--coral);
  font-family: Georgia,serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
}

.schedule-block h3 {
  margin-bottom: 0;
  font-size: 1.45rem;
}

.course-tabs {
  display: flex;
  gap: 8px;
  padding: 5px;
  border-radius: 999px;
  background: #eaf5f4;
}

.course-tab {
  min-width: 150px;
  padding: 10px 16px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}

.course-tab.is-active {
  background: var(--blue-deep);
  color: #fff;
  box-shadow: 0 6px 16px rgba(8,123,145,.18);
}

.course-tab-panel[hidden] {
  display: none;
}

.table-scroll {
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  -webkit-overflow-scrolling: touch;
}

.table-scroll--schedule {
  border: 1px solid #c9dde0;
  border-radius: 12px;
}

.table-scroll-note {
  display: none;
  margin: 0 0 7px;
  color: #557d83;
  font-size: .75rem;
  font-weight: 800;
  text-align: right;
}

.schedule-table {
  min-width: 760px;
  table-layout: fixed;
  background: #fff;
}

.schedule-table .col-date {
  width: 82px;
}

.schedule-table .col-place {
  width: 160px;
}

.schedule-table .col-time {
  width: 78px;
}

.schedule-table .col-transport {
  width: 100px;
}

.schedule-table .col-detail {
  width: auto;
}

.schedule-table .col-food {
  width: 92px;
}

.schedule-table th,.schedule-table td {
  padding: 12px 11px;
  border-right: 1px solid #c9dde0;
  border-bottom: 1px solid #d9e7e8;
  vertical-align: top;
  font-size: .88rem;
}

.schedule-table tr>*:last-child {
  border-right: 0;
}

.schedule-table tbody tr:last-child>* {
  border-bottom: 0;
}

.schedule-table thead th {
  background: #43a9bb;
  color: #fff;
  text-align: center;
}

.schedule-table tbody>tr>th {
  background: #e7f5f5;
  color: var(--ink-deep);
  text-align: center;
}

.schedule-table tbody td {
  text-align: center;
}

.schedule-table tbody td.schedule-detail {
  text-align: left;
}

.schedule-table .schedule-food {
  vertical-align: middle;
  background: #fffaf0;
  color: #66533d;
  font-weight: 800;
  line-height: 1.7;
  text-align: center;
border-left: 1px solid rgb(217, 231, 232);
}

.schedule-table tbody>tr>th small {
  display: block;
  margin-top: 7px;
  color: #59777d;
  font-size: .7rem;
  font-weight: 700;
  line-height: 1.5;
}

.schedule-table .day-start>* {
  border-top: 3px solid #63bdc8;
}

.schedule-highlight {
  color: #b24731;
}

.schedule-notes {
  margin: 18px 0 0;
  padding-left: 1.3em;
  color: rgba(255,255,255,.9);
  font-size: .86rem;
}

.schedule-notes li+li {
  margin-top: 4px;
}

.cancel-table {
  table-layout: fixed;
}

.cancel-table th,.cancel-table td {
  padding: 13px 14px;
  border: 1px solid #d7e1e1;
  vertical-align: middle;
}

.cancel-table th {
  width: 72%;
  background: #f2f8f7;
  text-align: left;
  font-weight: 700;
}

.cancel-table td {
  background: #fff;
  color: #b24731;
  font-weight: 900;
  text-align: center;
}

.flow-list {
  display: grid;
  gap: 20px;
}

.flow-card {
  display: grid;
  grid-template-columns: 112px 1fr;
  overflow: hidden;
  border: 1px solid #d5e4e4;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(12,73,84,.06);
}

.flow-card__step {
  display: grid;
  align-content: start;
  justify-items: center;
  padding: 26px 14px;
  background: linear-gradient(160deg,var(--blue-deep),var(--blue));
  color: #fff;
}

.flow-card__step span {
  font-family: Georgia,serif;
  font-size: .7rem;
  letter-spacing: .15em;
}

.flow-card__step strong {
  font-family: Georgia,serif;
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1.1;
}

.flow-card__body {
  padding: 26px 28px;
}

.flow-card__body h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.flow-card__headline {
  color: var(--blue-deep);
  font-size: 1.05rem;
  font-weight: 900;
}

.bank-box {
  margin: 16px 0;
  padding: 16px 18px;
  border-radius: 12px;
  background: #f2f8f7;
}

.bank-box p {
  margin: 0;
}

.apply-button {
  display: grid;
  max-width: 430px;
  margin: 22px auto 0;
  padding: 15px 24px;
  border-radius: 999px;
  background: var(--coral);
  color: #fff;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(239,121,95,.18);
font-size: 130%;
}

.apply-button span {
  margin-top: 2px;
  font-size: .68rem;
  font-weight: 700;
  opacity: .86;
}

.inquiry {
  background: linear-gradient(140deg,#0f4d59,#0b3340);
  color: #fff;
}

.inquiry-box {
  padding: 30px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 22px;
  background: rgba(255,255,255,.08);
}

.inquiry-box h3 {
  margin-bottom: 8px;
}

.inquiry-box p {
  margin-bottom: 12px;
}

.inquiry-box p:last-child {
  margin-bottom: 0;
}

.inquiry-box__contact {
  font-size: 1.05rem;
}

.inquiry .pending {
  color: inherit;
}


.company-card,.privacy-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 20px;
  padding: 24px;
  border-radius: 20px;
  background: #fff;
  color: var(--ink);
}

.company-card__text h3,.privacy-card h3 {
  margin-bottom: 8px;
}

.company-card__text p,.privacy-card p {
  margin-bottom: 0;
}

.company-card__logo {
  width: 220px;
}

.privacy-card img {
  width: 70px;
}

.management-data {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 18px;
  color: rgba(255,255,255,.78);
  font-size: .82rem;
}

.management-data p {
  margin: 0;
}

.site-footer {
  padding: 24px 0;
  background: #072530;
  color: #d8e9ec;
}

.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.site-footer a {
  font-size: .72rem;
  text-decoration: none;
}

.site-footer p {
  margin: 0;
  color: #8fb0b6;
  font-size: .74rem;
}

.page-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 10px 22px rgba(0,0,0,.15);
  color: #fff;
  font-weight: 900;
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: .2s;
}

.page-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.pre-hero {
  padding: 72px 0 54px;
  background: linear-gradient(125deg,#edfdf9 0%,#dff7f5 48%,#fff1d4 100%);
  text-align: center;
}

.pre-hero__eyebrow {
  margin-bottom: 10px;
  color: var(--blue-deep);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .18em;
}

.pre-hero h1 {
  margin: 0 0 14px;
  color: var(--ink-deep);
  font-size: clamp(2rem,4vw,3.2rem);
  line-height: 1.25;
}

.pre-hero__tour {
  margin: 0;
  font-weight: 800;
}

.confirmation-card {
  max-width: 920px;
  margin: 0 auto;
  padding: 30px;
  border: 1px solid #d7e5e4;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(12,73,84,.07);
}

.confirmation-list {
  margin: 0;
  padding-left: 1.6em;
}

.confirmation-list li+li {
  margin-top: 12px;
}

.confirmation-check {
  margin: 26px 0 0;
  padding: 18px;
  border-radius: 14px;
  background: #f5fbfa;
  font-weight: 900;
  text-align: center;
}

.confirmation-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 680px;
  margin: 20px auto 0;
}

.confirmation-actions .apply-button {
  max-width: none;
  margin: 0;
}

.apply-button--outline {
  border: 2px solid var(--blue-deep);
  background: #fff;
  box-shadow: none;
  color: var(--blue-deep);
}

.pre-contact {
  background: linear-gradient(140deg,#0f4d59,#0b3340);
  color: #fff;
}

@media (max-width:980px) {
  :root {
    --header-height: 64px;
  }

  .global-nav__inner {
    width: calc(100% - 28px);
  }

  .menu-toggle {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 8px 0;
  }

  .menu-toggle__label {
    font-family: Georgia,serif;
    font-size: .68rem;
    letter-spacing: .14em;
  }

  .menu-toggle__icon {
    display: grid;
    width: 26px;
    gap: 5px;
  }

  .menu-toggle__icon i {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--ink);
    transition: .2s;
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__icon i:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__icon i:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__icon i:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .global-menu {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: grid;
    max-height: calc(100vh - var(--header-height));
    gap: 0;
    overflow-y: auto;
    padding: 8px 20px 22px;
    background: rgba(255,255,255,.985);
    border-top: 1px solid #e1eeee;
    box-shadow: 0 16px 30px rgba(12,73,84,.12);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: .2s;
  }

  .global-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .global-menu li {
    border-bottom: 1px solid #e7efef;
  }

  .global-menu a {
    padding: 14px 4px;
    font-size: .9rem;
  }

  .global-menu a::after {
    display: none;
  }

  .hero__inner {
    grid-template-columns: 1fr 340px;
    gap: 32px;
  }

  .artist-placeholder {
    min-height: 430px;
  }

  .gangala__photos {
    gap: 16px;
  }

  .two-column {
    grid-template-columns: 1fr;
  }
}

@media (max-width:760px) {
  body {
    font-size: 14px;
  }

  .container {
    width: min(calc(100% - 30px),1120px);
  }

  .section {
    padding: 70px 0;
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .pre-hero {
    padding: 52px 0 42px;
  }

  .confirmation-card {
    padding: 22px 18px;
  }

  .confirmation-actions {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    padding-block: 42px 88px;
  }

  .hero__visual {
    order: -1;
    max-width: 520px;
    width: 100%;
    margin: 0 auto 8px;
  }

  .hero__content {
    text-align: center;
  }

  .hero__lead {
    margin-inline: auto;
  }

  .hero-summary {
    justify-content: center;
  }

  .artist-placeholder {
    min-height: auto;
    aspect-ratio: 4/5;
    border-radius: 14px;
  }

  .hero__wave {
    bottom: -110px;
  }
.hero__title:not(.hero__title--compact) > strong,
.hero__title:not(.hero__title--compact) > span {
text-align: center;
}
	
	
  .point-grid {
    grid-template-columns: 1fr;
  }

  .point-card--wide {
    grid-column: auto;
  }

  .point-card {
    grid-template-columns: 58px 1fr;
    min-height: 126px;
    padding: 20px;
  }

  .point-card__number {
    width: 52px;
    height: 52px;
    border-width: 4px;
    font-size: 1rem;
  }

  .point-card p {
    font-size: 1rem;
  }

  .point-card p.point-card__note {
    font-size: .76rem;
  }

  .gangala__copy {
    margin-bottom: 24px;
    padding: 22px;
  }

  .gangala__photos {
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 10px;
  }

  .gangala-photo {
    border-width: 3px;
    border-radius: 10px;
  }

  .recruit-card {
    padding: 22px;
  }

  .recruit-card__periods {
    grid-template-columns: 1fr;
  }

  .info-list {
    grid-template-columns: 1fr;
  }

  .info-list dt,.info-list dd {
    padding: 15px 18px;
  }

  .info-list dt {
    border-bottom: 0;
  }

  .info-list dd {
    border-left: 0;
  }

  .info-list dt:last-of-type {
    border-bottom: 0;
  }

  .info-list dd:last-of-type {
    border-bottom: 0;
  }

  .data-table th,.data-table td {
    padding: 12px 8px;
  }

  .price-table th:first-child {
    width: 28%;
  }

  .price-table thead th {
    font-size: .76rem;
  }

  .price-table tbody th,.price-table td {
    font-size: .8rem;
  }

  .price {
    font-size: .9rem;
    line-height: 1.5;
  }

  .schedule-block {
    padding: 20px 14px;
  }

  .schedule-block__head {
    display: block;
  }

  .course-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 14px;
    border-radius: 14px;
  }

  .course-tab {
    min-width: 0;
    border-radius: 10px;
    padding: 10px 8px;
    font-size: .82rem;
  }

  .table-scroll-note {
    display: block;
  }

  .table-scroll--schedule {
    margin-inline: -2px;
  }

  .schedule-table {
    min-width: 720px;
  }

  .schedule-table .col-date {
    width: 72px;
  }

  .schedule-table .col-place {
    width: 112px;
  }

  .schedule-table .col-time {
    width: 72px;
  }

  .schedule-table .col-transport {
    width: 82px;
  }

  .schedule-table .col-food {
    width: 78px;
  }

  .schedule-table th,.schedule-table td {
    padding: 10px 7px;
    font-size: .8rem;
  }

  .cancel-table th {
    width: 68%;
  }

  .cancel-table th,.cancel-table td {
    padding: 11px 9px;
    font-size: .78rem;
  }

  .flow-card {
    grid-template-columns: 1fr;
  }

  .flow-card__step {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    padding: 13px 20px;
  }

  .flow-card__step strong {
    font-size: 1.8rem;
  }

  .flow-card__body {
    padding: 22px 20px;
  }

  .company-card,.privacy-card {
    align-items: flex-start;
  }

  .company-card__logo {
    width: 150px;
  }

  .site-footer__inner {
    display: grid;
  }

  .site-footer nav {
    gap: 8px 14px;
  }
}

@media (max-width:520px) {
  .global-nav__brand-main {
    font-size: .75rem;
  }

  .global-nav__brand-sub {
    font-size: .48rem;
  }

  .hero__title:not(.hero__title--compact) > strong {
    font-size: 2.18rem;
  }

  .hero__title:not(.hero__title--compact) > span {
    font-size: 1.22rem;
  }

  .hero__title:not(.hero__title--compact) > .hero__title-sub {
    margin-top: 9px;
    font-size: 1rem;
  }

  .hero__lead {
    font-size: .96rem;
  }

  .hero__visual {
    width: 92%;
  }

  .gangala__photos {
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 8px;
  }

  .gangala-photo {
    border-width: 2px;
    border-radius: 8px;
  }

  .price-table thead th {
    font-size: .68rem;
    line-height: 1.45;
  }

  .price-table tbody th {
    padding: 10px 5px;
    font-size: .72rem;
  }

  .price-table td {
    padding: 10px 4px;
    font-size: .8rem;
  }

  .price {
    font-size: .86rem;
    line-height: 1.45;
  }

  .price-table small {
    font-size: .8em;
  }

  .company-card,.privacy-card {
    display: grid;
  }

  .company-card__logo {
    width: 180px;
  }

  .privacy-card img {
    width: 65px;
  }

  .page-top {
    right: 14px;
    bottom: 14px;
    width: 44px;
    height: 44px;
  }
}
.fs-110{
	font-size: 110%!important;
}
.fs-120{
	font-size: 120%!important;
}
.fs-130{
	font-size: 130%!important;
}
.fs-140{
	font-size: 140%!important;
}
.fs-150{
	font-size: 150%!important;
}
.fs-80{
	font-size: 80%!important;
}.fs-90{
	font-size: 90%!important;
}

/* =========================================================
   Course color coding / price table responsive enhancement
   ========================================================= */
.course-theme--haneda {
  --course-color: #3c9fd0;
  --course-color-deep: #246d94;
  --course-color-soft: #eaf6fc;
}

.course-theme--itami {
  --course-color: #ed8d55;
  --course-color-deep: #a65327;
  --course-color-soft: #fff0e7;
}

.course-theme--naha {
  --course-color: #52ad8d;
  --course-color-deep: #28745e;
  --course-color-soft: #e9f7f1;
}

.course-tab--haneda {
  border-color: #9fd5ed;
  background: #eef8fd;
  color: #246d94;
}

.course-tab--itami {
  border-color: #f4c3a5;
  background: #fff4ed;
  color: #a65327;
}

.course-tab--haneda.is-active {
  border-color: #3c9fd0;
  background: #3c9fd0;
  color: #fff;
  box-shadow: 0 8px 18px rgba(60,159,208,.22);
}

.course-tab--itami.is-active {
  border-color: #ed8d55;
  background: #ed8d55;
  color: #fff;
  box-shadow: 0 8px 18px rgba(237,141,85,.22);
}

.course-theme .schedule-table thead th {
  background: var(--course-color);
}

.course-theme .schedule-table tbody > tr > th {
  background: var(--course-color-soft);
  color: var(--course-color-deep);
}

.course-theme .schedule-table .day-start > * {
  border-top-color: var(--course-color);
}

.schedule-block--naha {
  border-top: 5px solid #52ad8d;
}

.schedule-block--naha .schedule-block__label,
.schedule-block--naha h3 {
  color: #28745e;
}


/* =========================================================
   Contact / organizer area (clean card layout)
   ========================================================= */
.contact-section {
  background: #f5faf9;
}

.contact-box {
  padding: 38px;
  border: 1px solid #d6e4e3;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(12,73,84,.07);
}

.contact-box__company {
  margin-bottom: 10px;
  color: var(--ink-deep);
  font-size: 1.2rem;
  line-height: 1.55;
  text-align: center;
}

.contact-box__tour {
  margin: 0 0 18px;
  color: var(--blue-deep);
  font-weight: 800;
  text-align: center;
}

.contact-box address {
  font-style: normal;
  text-align: center;
}

.contact-list {
  max-width: 780px;
  margin: 26px auto 0;
  border-top: 1px solid #d6e4e3;
}

.contact-list > div {
  display: grid;
  grid-template-columns: 150px 1fr;
  border-bottom: 1px solid #d6e4e3;
}

.contact-list dt {
  padding: 13px 18px;
  background: #edf6f4;
  font-weight: 800;
  text-align: center;
}

.contact-list dd {
  margin: 0;
  padding: 13px 18px;
}

.contact-list small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: .8rem;
}

.contact-box__attention {
  max-width: 780px;
  margin: 20px auto 0;
  padding: 12px 16px;
  border-radius: 10px;
  background: #fff7e2;
  color: #8b5d1d;
  font-weight: 800;
  text-align: center;
}

.contact-box__note {
  max-width: 900px;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: .84rem;
  line-height: 1.7;
}

.manager-box {
  max-width: 900px;
  margin: 22px auto 0;
  padding-top: 20px;
  border-top: 1px solid #d6e4e3;
}

.manager-box p {
  margin-bottom: 6px;
}

.manager-box p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: .84rem;
}

.organizer-box {
  display: grid;
  grid-template-columns: minmax(0,2fr) minmax(260px,1fr);
  gap: 20px;
  margin-top: 22px;
}

.organizer-box > div {
  padding: 28px;
  border: 1px solid #d6e4e3;
  border-radius: 18px;
  background: #fff;
}

.organizer-box h3,.contact-box h3 {
  margin-bottom: 10px;
  color: var(--blue-deep);
  font-size: 1.05rem;
text-align: center;
}

.organizer-box h4,.contact-box h4 {
  margin-bottom: 10px;
  color: var(--ink-deep);
  font-size: 1.15rem;
  line-height: 1.5;
text-align: center;
}

.knt-logo {
  width: 220px;
  margin-top: 18px;
}

.pmark-logo {
  width: 70px;
  margin-top: 16px;
}

.management-data--contact {
  justify-content: flex-end;
  margin-top: 18px;
  color: var(--muted);
}

/* The application contact company and the tour organizer company must be
   equal in prominence or the organizer must be larger. */
.contact-box__company {
  font-size: 1.2rem;
}

.organizer-box h4 {
  font-size: 1.28rem;
}

/* =========================================================
   pre.html YES / NO buttons
   ========================================================= */
.confirmation-actions .apply-button {
  min-height: 86px;
  align-content: center;
  padding: 14px 22px;
}

.confirmation-actions .apply-button > span {
  margin: 0;
  font-size: 1.38rem;
  font-weight: 900;
  line-height: 1.25;
  opacity: 1;
}

.confirmation-actions .apply-button > span small {
  display: block;
  margin-top: 6px;
  font-size: .76rem;
  font-weight: 700;
  line-height: 1.45;
  opacity: .88;
}

@media (max-width: 760px) {
  .organizer-box {
    grid-template-columns: 1fr;
  }

  .contact-box {
    padding: 28px 18px;
  }

  .contact-list > div {
    grid-template-columns: 105px 1fr;
  }

  .contact-list dt,
  .contact-list dd {
    padding: 12px;
  }

  .management-data--contact {
    display: block;
    text-align: right;
  }

  .management-data--contact p + p {
    margin-top: 4px;
  }
}

@media (max-width: 520px) {
  .contact-box__company {
    font-size: 1.08rem;
  }

  .organizer-box h4 {
    font-size: 1.18rem;
  }

  .contact-list > div {
    display: block;
  }

  .contact-list dt {
    text-align: left;
  }

  .confirmation-actions .apply-button > span {
    font-size: 1.3rem;
  }
}

.sp{
	display: block!important;
}
.pc{
	display: block!important;
}
@media (max-width: 768px) {
	.sp{
		display: block!important;
	}
	.pc{
		display: none!important;
	}
}

.t-c{
	text-align: center!important;
}


/* =========================================================
   PRICE TABLE
   ・2名1室利用／1名1室利用は同じ強さで表示
   ・罫線はグレー2pxで統一
   ・両料金行の境界だけ1px
   ・SPは各コースを1つの長方形ブロックとして表示
   ========================================================= */
.price-table {
  width: 100%;
  table-layout: fixed;
  border: 2px solid #9eafb3 !important;
  border-collapse: separate !important;
  border-spacing: 0 !important;
}

.price-table th,
.price-table td {
  border: 0 !important;
  vertical-align: middle;
  text-align: center;
}

/* 縦罫線は各セルの右側だけに持たせる */
.price-table thead th:not(:last-child),
.price-table tbody tr > *:not(:last-child) {
  border-right: 2px solid #9eafb3 !important;
}

.price-table thead th {
  border-bottom: 2px solid #9eafb3 !important;
  background: var(--blue-deep);
  color: #fff;
}

/* 各コース1行目（2名1室）と2行目（1名1室）の境界だけ細線 */
.price-table tbody > tr:nth-child(odd) > td {
  border-bottom: 1px solid #cbd5d7 !important;
}

/* 各コースの下端 */
.price-table tbody > tr:nth-child(odd) > th,
.price-table tbody > tr:nth-child(even) > td {
  border-bottom: 2px solid #9eafb3 !important;
}

/* 最終コース下端はテーブル外枠を使用 */
@media (min-width: 761px) {
  .price-table tbody > tr:nth-last-child(2) > th,
  .price-table tbody > tr:last-child > td {
    border-bottom: 0 !important;
  }
}

/* コース色は背景だけ */
.price-row--haneda {
  --price-course-deep: #246d94;
  --price-course-soft: #eaf6fc;
  --price-cell-soft: #f7fcff;
}

.price-row--itami {
  --price-course-deep: #a65327;
  --price-course-soft: #fff0e7;
  --price-cell-soft: #fffaf7;
}

.price-row--naha {
  --price-course-deep: #28745e;
  --price-course-soft: #e9f7f1;
  --price-cell-soft: #f7fcfa;
}

.price-table tbody > tr:nth-child(odd) > th {
  background: var(--price-course-soft) !important;
  color: var(--price-course-deep);
}

.price-table .price-row > td {
  background: var(--price-cell-soft) !important;
}

/* 2名1室／1名1室は同一サイズ・同一ウェイト */
.price-table .price-row td b {
  color: var(--ink-deep);
  font-size: 1.02rem;
  font-weight: 900;
  line-height: 1.55;
}

.price-table .price-row .price {
  display: inline-block;
  margin-top: 7px;
  color: #b5482f;
  font-size: 1.28rem;
  font-weight: 900;
  line-height: 1.3;
}

@media (max-width: 760px) {
  .price-table-wrap {
    overflow: visible;
  }

  .price-table {
    display: block;
    width: 100%;
    border: 0 !important;
  }

  .price-table thead {
    display: none;
  }

  .price-table tbody {
    display: block;
  }

  .price-table .price-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    margin: 0;
    border-radius: 0 !important;
    background: #fff;
    box-shadow: none;
  }

  /* PC側のセル罫線を解除し、SP側で一本化 */
  .price-table .price-row > th,
  .price-table .price-row > td,
  .price-table tbody tr > *:not(:last-child) {
    border: 0 !important;
  }

  /* 各コースの上段 */
  .price-table tbody > tr:nth-child(odd) {
    margin-top: 20px;
    border-top: 2px solid #9eafb3 !important;
    border-right: 2px solid #9eafb3 !important;
    border-left: 2px solid #9eafb3 !important;
  }

  /* 各コースの下段 */
  .price-table tbody > tr:nth-child(even) {
    margin-bottom: 4px;
    border-right: 2px solid #9eafb3 !important;
    border-bottom: 2px solid #9eafb3 !important;
    border-left: 2px solid #9eafb3 !important;
  }

  /* コース名 */
  .price-table tbody > tr:nth-child(odd) > th {
    grid-column: 1 / -1;
    width: auto !important;
    padding: 12px 10px;
    border-bottom: 2px solid #9eafb3 !important;
    background: var(--price-course-soft) !important;
    color: var(--price-course-deep);
    font-size: .98rem;
    line-height: 1.5;
    text-align: center !important;
  }

  .price-table .price-row > td {
    position: relative;
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 18px 8px;
    background: var(--price-cell-soft) !important;
    text-align: center;
  }

  /* 中央縦線は左セルの右側に1本だけ */
  .price-table .price-row > td:first-of-type {
    border-right: 2px solid #9eafb3 !important;
  }

  /* 上段と下段の境界だけ細線 */
  .price-table tbody > tr:nth-child(odd) > td {
    padding-top: 50px;
    border-bottom: 1px solid #cbd5d7 !important;
  }

  /* ホテル名は各コース先頭行だけ表示 */
  .price-table tbody > tr:nth-child(odd) > td::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    box-sizing: border-box;
    padding: 7px 4px;
    border-bottom: 2px solid #9eafb3;
    background: #f1f7f8;
    color: var(--ink-deep);
    font-size: .74rem;
    font-weight: 900;
    line-height: 1.3;
    text-align: center;
  }

  .price-table tbody > tr:nth-child(odd) > td:nth-of-type(1)::before {
    content: "リゾートホテル";
  }

  .price-table tbody > tr:nth-child(odd) > td:nth-of-type(2)::before {
    content: "シティホテル";
  }

  /* 2名1室／1名1室とも同じ文字サイズ */
  .price-table .price-row td b {
    font-size: .92rem;
  }

  .price-table .price-row .price {
    margin-top: 6px;
    font-size: clamp(1.08rem, 4.8vw, 1.22rem);
    line-height: 1.25;
    white-space: nowrap;
  }
}

@media (max-width: 520px) {
  .price-table tbody > tr:nth-child(odd) > th {
    font-size: .94rem;
  }

  .price-table .price-row > td {
    padding-right: 6px;
    padding-left: 6px;
  }

  .price-table tbody > tr:nth-child(odd) > td {
    padding-top: 48px;
  }

  .price-table .price-row td b {
    font-size: .86rem;
  }

  .price-table .price-row .price {
    font-size: clamp(1.02rem, 5vw, 1.14rem);
  }
}

/* =========================================================
   HERO / OFFICIAL TOUR LOGO
   公式ツアーロゴ＋補助テキストタイトル
   ========================================================= */
.hero__tour-logo {
  display: block;
  width: min(88%, 470px);
  height: auto;
  margin: 0 0 14px;
}

/*
 * ロゴの下に置く補助タイトル。
 * 既存の .hero__title span / strong の影響を受けないよう、
 * 専用クラスで完結させる。
 */
.hero__title--compact {
  display: block;
  margin: 0 0 18px;
  line-height: 1.45;
  text-align: left;
  text-wrap: initial;
}

.hero__title--compact .hero__title-sub {
  display: block;
  width: 100%;
  margin: 0;
  color: var(--coral);
  font-family: "Noto Sans JP","Hiragino Kaku Gothic ProN","Yu Gothic",Meiryo,sans-serif;
  font-size: clamp(.86rem, 1.25vw, 1rem);
  font-weight: 800;
  line-height: 1.55;
  letter-spacing: .035em;
}

/* Christmas in OKINAWA 2026 のみ緑 */
.hero__title--compact .hero__title-main {
  display: inline;
  color: #78ad20;
  font-size: 1.28em;
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: .02em;
}

@media (max-width: 980px) and (min-width: 761px) {
  .hero__inner {
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 36px;
  }

  .hero__tour-logo {
    width: min(94%, 420px);
    margin-bottom: 13px;
  }

  .hero__title--compact {
    margin-bottom: 16px;
  }
}

@media (max-width: 760px) {
  .hero__tour-logo {
    width: min(94%, 470px);
    margin: 0 auto 13px;
  }

  .hero__title--compact {
    margin-bottom: 16px;
    text-align: center;
  }

  .hero__title--compact .hero__title-sub {
    text-align: center;
  }
}

@media (max-width: 520px) {
  .hero__tour-logo {
    width: 96%;
    margin-bottom: 11px;
  }

  .hero__title--compact .hero__title-sub {
    font-size: .84rem;
    line-height: 1.5;
  }

  .hero__title--compact .hero__title-main {
    font-size: 1.22em;
  }
}
