@charset "UTF-8";

/* =========================================================
   CEBU BLUE | Corporate LP / Website
   Design system
   ========================================================= */

:root {
  --color-navy: #082f49;
  --color-blue: #0b7fab;
  --color-sky: #eaf8fc;
  --color-coral: #ffa07a;
  --color-yellow: #ffd166;
  --color-white: #fff;
  --color-ink: #17232c;
  --color-muted: #5f6f7b;
  --color-line: #dce7ec;
  --color-bg: #f7fafb;
  --shadow-sm: 0 8px 24px rgba(8, 47, 73, .08);
  --shadow-md: 0 18px 50px rgba(8, 47, 73, .12);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --container: 1180px;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

/* ========================================
   GROW MOVIE
======================================== */

.grow-video {
  padding: 68px clamp(20px, 5vw, 34px);
  background: linear-gradient(135deg, #eff6ff, #ffffff);
}

.grow-video-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(auto-fit,
      minmax(min(100%, 320px), 1fr));

  gap: 32px;
  align-items: center;
}



/* ----------------------------------------
   左側：テキスト
---------------------------------------- */

.grow-video-content {
  width: 100%;
}

.grow-video-label {
  color: #2563eb;
  font-weight: 900;
  letter-spacing: 0.12em;
  font-size: 13px;
  text-transform: uppercase;
}

  .grow-video-content h2 {
  font-size: 24px;
  line-height: 1.35;
  margin-bottom: 12px;

}

.grow-video-content p {
  font-size: 16px;
  line-height: 1.9;

  color: #334155;

  margin: 0 0 18px;
}


/* ----------------------------------------
   LINEボタン
---------------------------------------- */

.grow-line-button {
  display: inline-block;

  padding: 14px 22px;
  margin: 6px 8px 6px 0;

  border-radius: 999px;

  background: #06c755;
  color: #ffffff;

  font-weight: 800;
  text-decoration: none;

  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.grow-line-button:hover {
  transform: translateY(-2px);
  opacity: 0.85;
}


/* ----------------------------------------
   右側：動画ボックス
---------------------------------------- */

.grow-video-box {
  width: 100%;

  background: #ffffff;

  border: 1px solid #dbe3ee;
  border-radius: 28px;

  padding: 10px;

  box-shadow: 0 20px 54px rgba(15, 23, 42, 0.1);

  overflow: hidden;
}

.grow-video-box video {
  width: 100%;
  height: auto;

  display: block;

  border-radius: 20px;

  background: #0f172a;
}


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

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  color: var(--color-ink);
  background: var(--color-white);
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", Meiryo, sans-serif;
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
textarea,
select {
  font: inherit
}

button {
  cursor: pointer
}

:focus-visible {
  outline: 3px solid rgba(11, 127, 171, .35);
  outline-offset: 3px
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto
}

.section {
  padding: 110px 0
}

.section--soft {
  background: var(--color-bg)
}

.section--blue {
  background: var(--color-sky)
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-coral);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: currentColor
}

.section-heading {
  max-width: 720px;
  margin-bottom: 52px
}

.section-heading__en {
  display: block;
  margin-bottom: 6px;
  color: var(--color-blue);
  font-family: Georgia, serif;
  font-size: .95rem;
  font-style: italic;
  letter-spacing: .12em
}

.section-heading h2 {
  margin: 0;
  color: var(--color-navy);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.35;
  letter-spacing: .01em
}

.section-heading p {
  margin: 16px 0 0;
  color: var(--color-muted)
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  letter-spacing: .02em;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
}

.button:hover {
  transform: translateY(-2px)
}

.button--primary {
  color: #fff;
  background: var(--color-coral);
  box-shadow: 0 12px 30px rgba(255, 107, 74, .25)
}

.button--primary:hover {
  background: #ef5635
}

.button--secondary {
  color: var(--color-navy);
  background: #fff;
  border-color: rgba(8, 47, 73, .18)
}

.button--secondary:hover {
  border-color: var(--color-blue);
  color: var(--color-blue)
}

.button--line {
  color: #fff;
  background: #06c755;
  box-shadow: 0 10px 25px rgba(6, 199, 85, .2)
}

.button--block {
  width: 100%
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  background: linear-gradient(120deg,
      #dff7ff 0%,
      #c9f0ff 16%,
      #c8e5ff 32%,
      #d8d8ff 48%,
      #e5d2ff 64%,
      #e9c8f5 80%,
      #d8c8ff 100%);

  border-bottom: 1px solid rgba(8, 47, 73, .08);
  backdrop-filter: blur(16px)
}

.site-header__inner {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between
}

.brand {
  display: flex;
  flex-direction: column;
  color: var(--color-navy);
  font-weight: 900;
  line-height: 1
}

.brand__name {
  font-size: 1.35rem;
  letter-spacing: .12em
}

.brand__sub {
  margin-top: 7px;
  color: var(--color-blue);
  font-size: .57rem;
  letter-spacing: .2em
}

.global-nav__list {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none
}

.global-nav__link {
  position: relative;
  padding: 8px 0;
  color: #38505f;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .05em
}

.global-nav__link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--color-coral);
  transform: translateX(-50%);
  transition: width .25s var(--ease)
}

.global-nav__link:hover::after,
.global-nav__link[aria-current="page"]::after {
  width: 100%
}

.global-nav__cta {
  padding: 10px 18px;
  border-radius: 999px;
  color: #fff !important;
  background: var(--color-navy);
  transition: transform .25s var(--ease), background .25s var(--ease)
}

.global-nav__cta:hover {
  transform: translateY(-2px);
  background: var(--color-blue)
}

.global-nav__cta::after {
  display: none
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  background: transparent
}

.menu-toggle__line {
  display: block;
  width: 25px;
  height: 2px;
  margin: 5px auto;
  background: var(--color-navy);
  transition: transform .25s var(--ease), opacity .25s var(--ease)
}

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

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

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

.mobile-nav {
  display: none
}

/* Hero */
.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--color-navy)
}

.hero__title {
  font-size: clamp(48px, 6vw, 76px);
  line-height: 1.25;
}


.hero__title-small {
  display: block;
  margin-bottom: 10px;

  font-size: 0.35em;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.08em;

  color: #ffffff;
}

.hero__title em {
  display: block;

  font-size: 0.72em;
  font-style: normal;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: 0.02em;

  background: linear-gradient(90deg,
      #ffffff 0%,
      #d9f5ff 45%,
      #d9d0ff 100%);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__title small {
  display: block;
  margin-top: 14px;

  font-size: 0.32em;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.08em;

  color: #ffffff;
}

.hero__media,
.hero__overlay {
  position: absolute;
  inset: 0
}

.hero__media {
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity .8s ease, transform 6s linear
}

.hero__media.is-active {
  opacity: 1;
  transform: scale(1)
}

.hero__media--1 {
  background-image: url("../images/beach.jpg")
}

.hero__media--2 {
  background-image: url("../images/tatle.jpg");
}

.hero__media--3 {
  background-image: url("../images/students.jpg")
}

.hero__overlay {
  background: linear-gradient(90deg, rgba(4, 30, 47, .78) 0%, rgba(4, 30, 47, .52) 48%, rgba(4, 30, 47, .18) 100%)
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-top: 78px;
  color: #fff
}

.hero__title {
  max-width: 760px;
  margin: 20px 0 20px;
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  line-height: 1.17;
  letter-spacing: -.02em
}

.hero__title em {
  color: #aeeeff;
  font-style: normal
}

.hero__lead {
  max-width: 640px;
  margin: 0;
  color: rgba(255, 255, 255, .9);
  font-size: clamp(1rem, 2vw, 1.2rem)
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px
}

.hero__trust-item {
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 999px;
  color: rgba(255, 255, 255, .92);
  font-size: .78rem;
  background: rgba(255, 255, 255, .08)
}

.hero__dots {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 35px;
  display: flex;
  gap: 8px;
  transform: translateX(-50%)
}

.hero__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .45)
}

.hero__dot.is-active {
  width: 28px;
  border-radius: 999px;
  background: #fff
}

/* =========================================================
   FIXED CONSULT BAR
========================================================= */

.consult-bar {
  position: fixed;
  left: 50%;
  bottom: 16px;
  z-index: 1000;

  width: min(94%, 1000px);

  transform: translateX(-50%);

  background: rgba(255, 255, 255, 0.96);

  border: 1px solid rgba(220, 231, 236, 0.9);
  border-radius: 18px;

  box-shadow:
    0 10px 35px rgba(8, 47, 73, 0.16);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.consult-bar .container {
  width: 100%;
  max-width: none;
  padding: 0;
}

.consult-bar__inner {
  display: grid;

  /* 左：説明　右：ボタン */
  grid-template-columns: minmax(0, 1fr) auto;

  align-items: center;

  gap: 20px;

  padding: 12px 14px 12px 20px;
}

.consult-bar__copy {
  min-width: 0;
}

.consult-bar__copy strong {
  display: block;

  color: var(--color-navy);

  font-size: 13px;
  line-height: 1.4;

  white-space: nowrap;
}

.consult-bar__copy span {
  display: block;

  margin-top: 2px;

  color: var(--color-muted);

  font-size: 11px;
  line-height: 1.4;

  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ボタン */

.consult-bar__actions {
  display: grid;

  grid-template-columns: repeat(2, 130px);

  gap: 7px;

  flex-shrink: 0;
}

.consult-bar__actions .button {
  display: flex;

  align-items: center;
  justify-content: center;

  width: 130px;
  min-width: 130px;

  height: 38px;

  padding: 0 10px;

  font-size: 12px;
  line-height: 1;

  white-space: nowrap;

  border-radius: 9px;
}

/* Cards / grids */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

.card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease)
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md)
}

.card__image {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover
}

.card__body {
  padding: 25px
}

.card__label {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--color-coral);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .14em
}

.card h3 {
  margin: 0 0 8px;
  color: var(--color-navy);
  font-size: 1.3rem
}

.card p {
  margin: 0;
  color: var(--color-muted);
  font-size: .92rem
}

.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center
}

.feature__media {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md)
}

.feature__media img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover
}

.feature__body h2 {
  margin: 14px 0;
  color: var(--color-navy);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.4
}

.feature__body p {
  color: var(--color-muted)
}

.check-list {
  margin: 24px 0;
  padding: 0;
  list-style: none
}

.check-list li {
  position: relative;
  padding: 7px 0 7px 30px
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 7px;
  color: var(--color-coral);
  font-weight: 900
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px
}

.step {
  position: relative;
  padding: 30px 24px;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md)
}

.step__number {
  display: flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--color-navy);
  color: #fff;
  font-weight: 900
}

.step h3 {
  margin: 0 0 8px;
  color: var(--color-navy)
}

.step p {
  margin: 0;
  color: var(--color-muted);
  font-size: .9rem
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--color-line);
  border: 1px solid var(--color-line);
  border-radius: 24px;
  overflow: hidden
}

.stat {
  padding: 34px;
  background: #fff;
  text-align: center
}

.stat strong {
  display: block;
  color: var(--color-navy);
  font-size: 2.2rem;
  line-height: 1
}

.stat span {
  display: block;
  margin-top: 9px;
  color: var(--color-muted);
  font-size: .82rem
}

.faq {
  max-width: 900px;
  margin: auto
}

.faq__item {
  border-bottom: 1px solid var(--color-line)
}

.faq__question {
  width: 100%;
  padding: 22px 44px 22px 0;
  border: 0;
  background: transparent;
  color: var(--color-navy);
  font-weight: 800;
  text-align: left;
  position: relative
}

.faq__question::after {
  content: "+";
  position: absolute;
  right: 8px;
  font-size: 1.4rem;
  color: var(--color-blue);
  transition: transform .2s
}

.faq__question[aria-expanded="true"]::after {
  transform: rotate(45deg)
}

.faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .25s ease
}

.faq__answer-inner {
  overflow: hidden
}

.faq__answer p {
  margin: 0 0 20px;
  color: var(--color-muted)
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px
}

.destination {
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow-sm)
}

.destination__image {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover
}

.destination__body {
  padding: 24px
}

.destination__meta {
  color: var(--color-coral);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .12em
}

.destination h3 {
  margin: 7px 0;
  color: var(--color-navy);
  font-size: 1.45rem
}

.destination p {
  margin: 0;
  color: var(--color-muted)
}

.activity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px
}

.activity {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: 20px
}

.activity__icon {
  font-size: 1.8rem
}

.activity h3 {
  margin: 12px 0 6px;
  color: var(--color-navy)
}

.activity p {
  margin: 0;
  color: var(--color-muted);
  font-size: .9rem
}

.course-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px
}

.course {
  position: relative;
  padding: 32px;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: 24px;
  box-shadow: var(--shadow-sm)
}

.course--recommended {
  border: 2px solid var(--color-blue)
}

.course__badge {
  position: absolute;
  right: 18px;
  top: 18px;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--color-sky);
  color: var(--color-blue);
  font-size: .68rem;
  font-weight: 900
}

.course__type {
  color: var(--color-blue);
  font-family: Georgia, serif;
  font-size: .8rem;
  letter-spacing: .12em
}

.course h3 {
  margin: 8px 0;
  color: var(--color-navy);
  font-size: 1.5rem
}

.course p {
  color: var(--color-muted)
}

.course ul {
  margin: 18px 0 0;
  padding-left: 1.1em;
  color: var(--color-muted)
}

.course li {
  padding: 4px 0
}

.consult-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px
}

.consult-option {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: 22px;
  transition: .25s var(--ease)
}

.consult-option:hover {
  transform: translateY(-3px);
  border-color: var(--color-blue);
  box-shadow: var(--shadow-sm)
}

.consult-option__icon {
  font-size: 2rem
}

.consult-option h3 {
  margin: 0;
  color: var(--color-navy)
}

.consult-option p {
  margin: 2px 0 0;
  color: var(--color-muted);
  font-size: .85rem
}

.page-hero {
  padding: 170px 0 80px;
  background: linear-gradient(135deg, #eaf8fc, #fff)
}

.page-hero h1 {
  max-width: 850px;
  margin: 18px 0 12px;
  color: var(--color-navy);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.25
}

.page-hero p {
  max-width: 680px;
  color: var(--color-muted);
  font-size: 1.05rem
}

.story {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 70px;
  align-items: center
}

.story__portrait {
  min-height: 500px;
  display: grid;
  place-items: center;
}

.story__portrait img {
  width: 100%;
  max-width: 400px;
  height: 500px;
  object-fit: cover;
  border-radius: 30px;
  display: block;
}

.story__body h2 {
  margin: 12px 0;
  color: var(--color-navy);
  font-size: clamp(2rem, 4vw, 3rem)
}

.story__body p {
  color: var(--color-muted)
}

.quote {
  margin: 30px 0;
  padding: 26px 30px;
  border-left: 4px solid var(--color-coral);
  background: var(--color-bg);
  color: var(--color-navy);
  font-size: 1.15rem;
  font-weight: 700
}

.contact-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 30px;
  align-items: start
}

.contact-panel,
.contact-form {
  padding: 34px;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: 24px;
  box-shadow: var(--shadow-sm)
}

.contact-panel h2,
.contact-form h2 {
  margin: 0;
  color: var(--color-navy)
}

.contact-panel p {
  color: var(--color-muted)
}

.contact-points {
  margin: 24px 0;
  padding: 0;
  list-style: none
}

.contact-points li {
  padding: 9px 0;
  border-bottom: 1px solid var(--color-line);
  color: var(--color-muted)
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}

.form-field {
  margin-bottom: 16px
}

.form-field--full {
  grid-column: 1/-1
}

.form-field label {
  display: block;
  margin-bottom: 6px;
  color: var(--color-navy);
  font-size: .82rem;
  font-weight: 800
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #cbd9df;
  border-radius: 12px;
  background: #fff;
  color: var(--color-ink)
}

.form-field textarea {
  min-height: 150px;
  resize: vertical
}

.form-note {
  margin-top: 12px;
  color: var(--color-muted);
  font-size: .75rem
}

.site-footer {
  padding: 55px 0 25px;
  background: linear-gradient(120deg,
      #dff7ff 0%,
      #c9f0ff 16%,
      #c8e5ff 32%,
      #d8d8ff 48%,
      #e5d2ff 64%,
      #e9c8f5 80%,
      #d8c8ff 100%);

  color: var(--color-navy)
}

.site-footer__top {
  display: flex;
  justify-content: space-between;
  gap: 30px
}

.site-footer__brand {
  font-weight: 900;
  letter-spacing: .12em
}

.site-footer__brand span {
  display: block;
  margin-top: 5px;
  color: #0b7fab;
  ;
  font-size: .65rem;
  letter-spacing: .18em
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--color-navy);
  font-size: .82rem
}

.site-footer__bottom {
  margin-top: 35px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .15);
  color: var(--color-navy);
  font-size: .72rem
}

/* フォーム */

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

.form-honeypot label,
.form-honeypot input {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}


@media(max-width:900px) {
  .global-nav {
    display: none
  }

  .menu-toggle {
    display: block
  }

  .mobile-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 78px;
    display: grid;
    max-height: 0;
    overflow: hidden;
    background: #fff;
    border-bottom: 1px solid var(--color-line);
    transition: max-height .35s var(--ease)
  }

  .mobile-nav.is-open {
    max-height: 520px
  }

  .mobile-nav a {
    padding: 17px 20px;
    border-top: 1px solid #edf2f4;
    color: var(--color-navy);
    font-weight: 800
  }

  .mobile-nav a:hover {
    background: var(--color-sky);
    padding-left: 28px
  }

  .mobile-nav a:last-child {
    display: block;
    width: calc(100% - 40px);
    margin: 12px 20px 28px;
    padding: 14px 20px;
    min-height: 50px;
    border: 0;
    border-radius: 999px;
    background: var(--color-coral);
    color: #fff;
    text-align: center;
    line-height: 1.5;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
  }

  .consult-bar__inner,
  .feature,
  .story,
  .contact-layout {
    grid-template-columns: 1fr
  }

  .consult-bar__actions {
    justify-content: flex-start
  }

  .card-grid,
  .activity-grid,
  .course-grid {
    grid-template-columns: 1fr 1fr
  }

  .step-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:640px) {
  .container {
    width: min(calc(100% - 28px), var(--container))
  }

  .section {
    padding: 78px 0
  }

  .hero {
    min-height: 700px
  }

  .hero__actions,
  .consult-bar__actions {
    flex-direction: column;
    align-items: stretch
  }

  .hero__actions .button,
  .consult-bar__actions .button {
    width: 100%
  }

  .card-grid,
  .destination-grid,
  .activity-grid,
  .course-grid,
  .consult-options,
  .step-grid,
  .stats,
  .form-grid {
    grid-template-columns: 1fr
  }

  .form-field--full {
    grid-column: auto
  }

  .feature {
    gap: 35px
  }

  .story__portrait {
    min-height: 380px
  }

  .site-footer__top {
    flex-direction: column
  }
}

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

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important
  }
}

/* ========================================
   PROGRAM DROPDOWN MENU
======================================== */

.global-nav__item--dropdown {
  position: relative;
}

.global-nav__item--dropdown>.global-nav__link {
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-arrow {
  font-size: 14px;
  line-height: 1;
  transition: transform 0.3s ease;
}


/* プルダウン */

.global-nav__dropdown {
  position: absolute;

  top: calc(100% + 10px);
  left: 50%;

  transform: translateX(-50%) translateY(-10px);

  width: 210px;

  margin: 0;
  padding: 8px;

  list-style: none;

  background: #ffffff;

  border: 1px solid #e2e8f0;
  border-radius: 14px;

  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.12);

  opacity: 0;
  visibility: hidden;

  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    visibility 0.25s ease;

  z-index: 1000;
}


/* マウスを乗せたとき */

.global-nav__item--dropdown:hover .global-nav__dropdown {
  opacity: 1;
  visibility: visible;

  transform: translateX(-50%) translateY(0);
}


/* 矢印も回転 */

.global-nav__item--dropdown:hover .nav-arrow {
  transform: rotate(180deg);
}


/* プルダウン内リンク */

.global-nav__dropdown li {
  margin: 0;
  padding: 0;
}

.global-nav__dropdown a {
  display: block;

  padding: 12px 14px;

  color: #0f172a;

  font-size: 14px;
  font-weight: 700;

  text-decoration: none;

  border-radius: 9px;

  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.global-nav__dropdown a:hover {
  background: #eff6ff;
  color: #2563eb;
}


/* ========================================
   PARTNER SCHOOL
======================================== */

.school-grid {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 28px;
}


.school-card {
  overflow: hidden;

  background: #ffffff;

  border: 1px solid #e2e8f0;

  border-radius: 22px;

  box-shadow:
    0 10px 35px rgba(15, 23, 42, 0.06);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}


.school-card:hover {
  transform: translateY(-6px);

  box-shadow:
    0 18px 45px rgba(15, 23, 42, 0.12);
}


/* 学校画像 */

.school-card__image {
  width: 100%;

  aspect-ratio: 16 / 10;

  overflow: hidden;

  background: #e2e8f0;
}


.school-card__image img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition: transform 0.5s ease;
}


.school-card:hover .school-card__image img {
  transform: scale(1.04);
}


/* 学校情報 */

.school-card__body {
  padding: 28px;
}


.school-card__label {
  display: block;

  margin-bottom: 8px;

  color: #2563eb;

  font-size: 12px;
  font-weight: 900;

  letter-spacing: 0.12em;
}


.school-card__body h3 {
  margin: 0 0 12px;

  color: #082f49;

  font-size: 25px;
  font-weight: 900;
}


.school-card__body p {
  margin: 0 0 18px;

  color: #5f6f7b;

  font-size: 15px;

  line-height: 1.8;
}


/* タグ */

.school-card__tags {
  display: flex;

  flex-wrap: wrap;

  gap: 7px;

  margin-bottom: 22px;
}


.school-card__tags span {
  display: inline-block;

  padding: 6px 10px;

  background: #eff6ff;

  border-radius: 999px;

  color: #2563eb;

  font-size: 12px;
  font-weight: 700;
}


/* ========================================
   レスポンシブルウェブデザイン
======================================== */

@media (max-width: 1000px) {

  .school-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

  .cost-price-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .cost-item-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}



/* =========================================================
   COST
========================================================= */

.cost-section {
  padding: clamp(80px, 10vw, 140px) 20px;
  background: #f7fafb;
}

.cost-container {
  width: min(100%, 1180px);
  margin: 0 auto;
}

/* -------------------------
   Heading
------------------------- */

.cost-heading {
  margin-bottom: 70px;
  text-align: center;
}

.cost-label {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--color-blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .18em;
}

.cost-heading h2 {
  margin: 0;
  color: var(--color-navy);
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.2;
  letter-spacing: .02em;
}

.cost-heading p {
  max-width: 620px;
  margin: 20px auto 0;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.9;
}


/* -------------------------
   Block
------------------------- */

.cost-block {
  margin-top: 70px;
}

.cost-block-heading {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 28px;
}

.cost-block-heading>span {
  flex-shrink: 0;
  color: var(--color-blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
}

.cost-block-heading h3 {
  margin: 0;
  color: var(--color-navy);
  font-size: clamp(23px, 3vw, 32px);
  line-height: 1.3;
}

.cost-block-heading p {
  margin: 8px 0 0;
  color: var(--color-muted);
  font-size: 14px;
}


/* -------------------------
   Price Cards
------------------------- */

.cost-price-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.cost-price-card {
  display: flex;
  min-height: 150px;
  padding: 24px 16px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;

  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);

  transition:
    transform .3s var(--ease),
    box-shadow .3s var(--ease);
}

.cost-price-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.cost-period {
  margin-bottom: 12px;
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 700;
}

.cost-price-card strong {
  color: var(--color-navy);
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.2;
}

.cost-price-card--long {
  background: linear-gradient(145deg,
      #eef9ff,
      #f1edff);
  border-color: #cfe2ed;
}

.cost-price-card--long strong {
  color: var(--color-blue);
}


/* -------------------------
   Note
------------------------- */

.cost-note {
  margin-top: 18px;
  padding-left: 10px;
}

.cost-note p {
  margin: 4px 0;
  color: var(--color-muted);
  font-size: 12px;
  line-height: 1.7;
}


/* -------------------------
   Included Items
------------------------- */

.cost-item-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.cost-item {
  display: flex;
  gap: 18px;
  min-height: 145px;
  padding: 25px;

  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);

  transition:
    transform .3s var(--ease),
    box-shadow .3s var(--ease);
}

.cost-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.cost-item-number {
  display: flex;
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: var(--color-sky);
  color: var(--color-blue);
  font-size: 12px;
  font-weight: 800;
}

.cost-item h4 {
  margin: 3px 0 8px;
  color: var(--color-navy);
  font-size: 17px;
}

.cost-item p {
  margin: 0;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.7;
}

.cost-included {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding: 18px 22px;

  border-radius: var(--radius-sm);
  background: #eef9f5;
  color: #26715c;
}

.cost-included span {
  display: flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: #fff;
  font-weight: 800;
}

.cost-included p {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
}


/* -------------------------
   Extra Cost
------------------------- */

.cost-extra-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.cost-extra-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;

  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
}

.cost-extra-item>span {
  display: flex;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: #fff2ef;
  color: var(--color-coral);
  font-size: 12px;
  font-weight: 800;
}

.cost-extra-item h4 {
  margin: 3px 0 8px;
  color: var(--color-navy);
  font-size: 16px;
}

.cost-extra-item p {
  margin: 0;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.7;
}


/* -------------------------
   Details / Note
------------------------- */

.cost-details {
  margin-top: 70px;
  padding: clamp(28px, 5vw, 48px);

  border-radius: var(--radius-lg);
  background: linear-gradient(145deg,
      #eef9fc,
      #f4f0ff);
  border: 1px solid #dce7ec;
}

.cost-details-heading {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 24px;
}

.cost-details-heading span {
  color: var(--color-blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .15em;
}

.cost-details-heading h3 {
  margin: 0;
  color: var(--color-navy);
  font-size: 24px;
}

.cost-details-lead {
  margin: 0 0 28px;
  color: var(--color-ink);
  font-size: 14px;
  line-height: 1.9;
}

.cost-conditions {
  display: grid;
  gap: 12px;
}

.cost-condition {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 14px 0;
  border-top: 1px solid rgba(8, 47, 73, .1);
}

.cost-condition:last-child {
  border-bottom: 1px solid rgba(8, 47, 73, .1);
}

.cost-condition span {
  flex-shrink: 0;
  color: var(--color-blue);
  font-size: 12px;
  font-weight: 800;
}

.cost-condition p {
  margin: 0;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.7;
}

/* =========================================================
   固定相談ボタン：ページを開いたときだけキラーン
========================================================= */

.consult-bar__actions .button {
  position: relative;
  overflow: hidden;
}

/* 光の帯 */
.consult-bar__actions .button::after {
  content: "";

  position: absolute;
  top: 0;
  left: -120%;

  width: 55%;
  height: 100%;

  background: linear-gradient(100deg,
      transparent 0%,
      rgba(255, 255, 255, 0.15) 35%,
      rgba(255, 255, 255, 0.85) 50%,
      rgba(255, 255, 255, 0.15) 65%,
      transparent 100%);

  transform: skewX(-20deg);

  animation: buttonShine 1.2s ease-out 1;
}

/* キラーンの動き */
@keyframes buttonShine {

  0% {
    left: -120%;
  }

  100% {
    left: 120%;
  }

}

/* 2つ目のボタンは少し遅れてキラーン */
.consult-bar__actions .button:nth-child(2)::after {
  animation-delay: 0.25s;
}

/* ソーシャルメディアボタン */
.snsbtn {
  display: inline-block;
  font-size: smaller;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  width: 48%;
  text-align: center;
  margin-bottom: 1rem;
  padding: 5px;
  border: 1ox solid #305662;
  border-radius: 5px;
  transition-duration: 0.4s;
}

.snsbtn:hover {
  border: 1px solid #ffffff;
}

.instabtn {
  background: linear-gradient(45deg, #c15129 35%, #5524af 100%);
}

/* ページ先頭へ戻る */
#pagetop {
  border-radius: 50%;
  height: 55px;
  width: 55px;
  background-color: #ffffff;
  border: 2px solid #113c4a;
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 100;
  opacity: 0.9;
  display: flex;
  justify-content: center;
  align-items: center;
}


#pagetop_inner {
  height: 15px;
  width: 15px;
  border-top: 3px solid #305662;
  border-right: 3px solid #305662;
  transform: translate(0, 20%) rotate(-45deg);
}

#pagetop:hover {
  background-color: #cde2f0;
}

.hero-cost {
  display: none;
}
/* ========================================
   Contact Form
   ======================================== */

.form-required-note {
  margin: 0 0 24px;
  font-size: 0.875rem;
  color: #64748b;
}

.form-required-note span,
.contact-form label span {
  color: #dc2626;
}

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

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

.contact-form button {
  cursor: pointer;
}

/* ========================================
   Founder Name - Final
======================================== */

.story__portrait .story__founder {
  display: block;
  width: 100%;
  margin-top: 18px;
  padding-left: 16px;
  border-left: 3px solid #ff9a7a;
  box-sizing: border-box;
}

.story__portrait .story__founder-role {
  display: block;
  margin: 0 0 7px;
  padding: 0;
  font-size: 11px;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #8a97a5;
}

.story__portrait .story__founder-name {
  display: inline;
  margin: 0;
  padding: 0;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 800;
  color: #082f49;
}

.story__portrait .story__founder-name-en {
  display: inline;
  margin-left: 10px;
  padding: 0;
  font-size: 12px;
  line-height: 1.5;
  font-weight: 500;
  color: #8a97a5;
}

@media (max-width: 768px) {
  .story__portrait .story__founder {
    margin-top: 14px;
  }

  .story__portrait .story__founder-name {
    font-size: 18px;
  }

  .story__portrait .story__founder-name-en {
    font-size: 11px;
  }
}

.story__portrait .story__founder {
  max-width: 320px;
}

.story__portrait .story__founder-name-en {
  margin-left: 12px;
  font-size: 11px;
  color: #94a3b8;
}


/* =========================================================
   スマホ
========================================================= */



@media (max-width: 700px) {

  /* ========================================
     スマホ版ファーストビュー
  ======================================== */

  
  .hero {
  height: 330px;
  min-height: 330px;
  padding: 0;
}

  .hero__media {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    background-size: cover;
    background-position: center;
  }


  /* ========================================
     留学費用
  ======================================== */

  .hero-cost {
    display: block;

    padding: 20px 14px 24px;

    background:
      linear-gradient(
        135deg,
        #f1fbff 0%,
        #f5f2ff 100%
      );
  }

  .hero-cost__inner {
    width: 100%;

    padding: 20px 16px 15px;

    background: rgba(255, 255, 255, 0.92);

    border: 1px solid rgba(11, 127, 171, 0.15);

    border-radius: 20px;

    box-shadow:
      0 8px 25px rgba(8, 47, 73, 0.08);
  }


  /* ========================================
     費用タイトル
  ======================================== */

  .hero-cost__heading {
    text-align: center;
    margin-bottom: 14px;
  }

  .hero-cost__heading span {
    display: block;

    margin-bottom: 3px;

    color: var(--color-blue);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 0.15em;
  }

  .hero-cost__heading h2 {
    margin: 0;

    color: var(--color-navy);

    font-size: 20px;
    font-weight: 800;
  }


  /* ========================================
     1週間・85,000円
  ======================================== */

  .hero-cost__main {
    display: grid;

    grid-template-columns: 1fr 1.2fr;

    align-items: center;

    gap: 10px;

    padding: 12px 10px;

    background:
      linear-gradient(
        135deg,
        #eaf8fc,
        #f2edff
      );

    border-radius: 14px;
  }

  .hero-cost__short {
    text-align: center;

    border-right: 1px solid rgba(8, 47, 73, 0.12);
  }

  .hero-cost__short small,
  .hero-cost__price small {
    display: block;

    margin-bottom: 2px;

    color: var(--color-muted);

    font-size: 10px;
  }

  .hero-cost__short strong {
    color: var(--color-navy);

    font-size: 22px;
    font-weight: 900;
  }

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

  .hero-cost__price strong {
    color: var(--color-blue);

    font-size: 27px;
    font-weight: 900;

    letter-spacing: -0.03em;
  }

  .hero-cost__price strong span {
    font-size: 17px;
  }


  /* ========================================
     2週間・3週間
  ======================================== */

  .hero-cost__list {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    margin-top: 8px;

    border: 1px solid var(--color-line);

    border-radius: 12px;

    overflow: hidden;
  }

  .hero-cost__list div {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 8px;

    padding: 9px 10px;

    background: #fff;
  }

  .hero-cost__list div + div {
    border-left: 1px solid var(--color-line);
  }

  .hero-cost__list span {
    color: var(--color-muted);

    font-size: 10px;
    font-weight: 700;
  }

  .hero-cost__list strong {
    color: var(--color-navy);

    font-size: 12px;
    font-weight: 800;
  }


  /* ========================================
     注意書き
  ======================================== */

  .hero-cost__note {
    margin: 9px 2px 0;

    color: var(--color-muted);

    font-size: 9px;
    line-height: 1.5;
  }


  /* ========================================
     GROW MOVIE
  ======================================== */

  .grow-video {
    padding: 50px 20px;
  }

  .grow-video-inner {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .grow-video-content h2 {
    font-size: clamp(30px, 9vw, 42px);
  }

  .grow-video-content p {
    font-size: 15px;
    line-height: 1.8;
  }

  .grow-video-box {
    border-radius: 20px;
    padding: 7px;
  }

  .grow-video-box video {
    border-radius: 15px;
  }


  /* ========================================
     SNSボタン
  ======================================== */

  .snsbtn {
    width: 100%;
    font-size: medium;
    padding: 10px;
  }


  /* ========================================
     画面下部の固定相談バー
  ======================================== */

  .consult-bar {
    bottom: 10px;

    width: calc(100% - 20px);

    border-radius: 15px;
  }

  .consult-bar__inner {
    display: block;

    padding: 8px;
  }

  /* スマホでは説明文を非表示 */

  .consult-bar__copy {
    display: none;
  }

  /* ボタン2個を横並び */

  .consult-bar__actions {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 6px;

    width: 100%;
  }

  .consult-bar__actions .button {
    width: 100%;
    min-width: 0;

    height: 36px;

    padding: 0 6px;

    font-size: 11px;

    border-radius: 8px;
  }


  /* ========================================
     その他
  ======================================== */

  .global-nav__dropdown {
    display: none;
  }

  .school-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .school-card__body {
    padding: 24px;
  }

  .school-card__body h3 {
    font-size: 23px;
  }

  /* Utility component */
  .cta-box {
    padding: 55px 35px;



    background: linear-gradient(120deg,
        #dff7ff 0%,
        #c9f0ff 16%,
        #c8e5ff 32%,
        #d8d8ff 48%,
        #e5d2ff 64%,
        #e9c8f5 80%,
        #d8c8ff 100%);


    border-radius: 32px;
    color: #fff;
    text-align: center
  }

  .cta-box h2 {
    margin: 14px 0 8px;
    font-size: clamp(2rem, 4vw, 3.2rem)
  }

  .cta-box p {
    color: rgba(255, 255, 255, .8)
  }

  .cta-box .hero__actions {
    justify-content: center
  }


.cost-section {
    padding: 70px 16px;
  }

  .cost-heading {
    margin-bottom: 50px;
  }

  .cost-block {
    margin-top: 55px;
  }

  .cost-block-heading {
    gap: 12px;
  }

  .cost-price-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .cost-price-card {
    min-height: 125px;
    padding: 20px 10px;
  }

  .cost-price-card strong {
    font-size: 20px;
  }

  .cost-item-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .cost-item {
    min-height: auto;
    padding: 20px;
  }

  .cost-extra-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .cost-extra-item {
    padding: 20px;
  }

  .cost-details {
    margin-top: 55px;
    padding: 28px 20px;
    border-radius: 24px;
  }

    /* ファーストビューのボタンを非表示 */
    .hero__actions {
      display: none;
    }

    /* ファーストビュー下部の3つの特徴を非表示 */
    .hero__trust {
      display: none;
    }
#pagetop {
  border-radius: 50%;
  height: 55px;
  width: 55px;
  background-color: #ffffff;
  border: 2px solid #113c4a;
  position: fixed;
  right: 15px;
  bottom: 85px;
  z-index: 100;
  opacity: 0.9;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__title {
  margin: 10px 0 12px;
  line-height: 1.15;
}

.hero__title-small {
  display: block;
  margin-bottom: 5px;
  font-size: 16px;
  font-weight: 800;
}

.hero__title em {
  display: block;
  font-size: 27px;
  font-style: normal;
  font-weight: 900;
  line-height: 1.2;
}

.hero__title small {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}

 }


/* =========================================================
   SMALL SMARTPHONE
========================================================= */

@media (max-width: 400px) {

  .consult-bar {
    bottom: 8px;

    width: calc(100% - 16px);
  }

  .consult-bar__inner {
    padding: 7px;
  }

  .consult-bar__actions {
    gap: 5px;
  }

  .consult-bar__actions .button {
    height: 34px;

    font-size: 10px;
  }
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand__logo {
  display: block;
  width: 150px;
  height: auto;
}

@media (max-width: 700px) {
  .brand__logo {
    width: 125px;
  }
}


