@charset "utf-8";
/* ===================================================================
   FIT-EASY FC加盟募集LP - style.css (plain CSS / no preprocessor)
=================================================================== */

:root {
  --green: #a8cd3a;
  --green-dark: #9dc938;
  --dark: #1a1a1a;
  --gold: #e8c45a;
  --cream: #f7f9df;
  --font-base: "M PLUS 2", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;
  --font-num: "Oswald", "Montserrat", sans-serif;
  --w-inner: 750px;
}

/* ---------- reset ---------- */
* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-base);
  color: var(--dark);
  background: #fff;
  line-height: 2;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  @media (min-width: 769px) {
    line-height: 1.8;
  }
}

h1,
h2,
h3,
h4,
p,
ul,
ol,
li,
figure {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
}

.l-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

/* scroll offset for in-page anchors under fixed header */
[id] {
  scroll-margin-top: 64px;
}

br.sp-show {
  display: none;

  @media (max-width: 769px) {
    display: block;
  }
}

br.pc-show {
  display: block;

  @media (max-width: 769px) {
    display: none;
  }
}

/* ---------- header ---------- */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
}

.l-header__inner {
  max-width: var(--w-inner);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  min-height: 64px;
}

.l-header__logo {
  flex-shrink: 0;
}

.l-header__logo img {
  width: 150px;
  height: auto;
}

@media screen and (max-width: 768px) {
  .l-header__logo img {
    width: 100px;
  }
}

.l-header__catch {
  flex: 1;
  font-size: 10px;
  line-height: 1.5;
  color: #444;
}

.l-header__menu-btn {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border: 0;
  background: none;
  position: relative;
}

.l-header__menu-btn span {
  position: absolute;
  left: 6px;
  right: 6px;
  height: 2px;
  background: var(--dark);
  transition: transform .3s, opacity .3s;
}

.l-header__menu-btn span:nth-child(1) {
  top: 11px;
}

.l-header__menu-btn span:nth-child(2) {
  top: 18px;
}

.l-header__menu-btn span:nth-child(3) {
  top: 25px;
}

.l-header__menu-btn.is-active span:nth-child(1) {
  top: 18px;
  transform: rotate(45deg);
}

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

.l-header__menu-btn.is-active span:nth-child(3) {
  top: 18px;
  transform: rotate(-45deg);
}

.l-nav {
  position: fixed;
  top: 64px;
  right: 0;
  bottom: 0;
  width: min(80vw, 320px);
  background: var(--dark);
  transform: translateX(100%);
  transition: transform .3s ease;
  z-index: 190;
  padding: 24px 0;
}

.l-nav.is-open {
  transform: translateX(0);
}

.l-nav a {
  display: block;
  padding: 16px 24px;
  color: #fff;
  font-size: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.l-nav__cta {
  margin: 16px 24px 0;
  background: var(--green);
  color: #2d2d2d !important;
  text-align: center;
  border-radius: 4px;
  border-bottom: 0 !important;
}

.l-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .4);
  z-index: 180;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}

.l-nav-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

body {
  padding-top: 64px !important;
}

body.has-fixed-cta {
  padding-bottom: 116px;
}

/* ---------- FV ---------- */
.fv {
  position: relative;
  overflow: hidden;
  min-height: 110vw;
  background: #111;
}

.fv__slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.fv__slider .swiper-slide {
  background-size: cover;
  background-position: center;
}

.fv__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .55) 0%, rgba(0, 0, 0, .25) 35%, rgba(0, 0, 0, .55) 100%);
  z-index: 1;
}

.fv__content {
  position: relative;
  z-index: 2;
  padding: 58px 20px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.fv__headline {
  width: 100%;
  max-width: 900px;
}

/* ---------- CTA button ---------- */
.cta-block {
  padding: 15px 20px 28px;
  text-align: center;
  background: #fff;
}

.cta-block.is-fixed {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 150;
  padding: 12px 20px;
  background: transparent;
}

.cta-btn {
  position: relative;
  display: inline-block;
  overflow: hidden;
  width: 100%;
  max-width: 560px;
  transition: opacity .2s;
}

.cta-btn:hover {
  opacity: .8;
}

.cta-btn img {
  width: 100%;
  height: auto;
}

/* clipping frame kept inside the button artwork's solid pill area,
   so the shine below never paints over its transparent margins */
.cta-btn__shine {
  position: absolute;
  top: 13%;
  bottom: 4%;
  left: 0%;
  right: 0%;
  overflow: hidden;
  border-radius: 999px;
  pointer-events: none;
}

.cta-btn__shine::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -75%;
  width: 40%;
  height: 200%;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .9) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-20deg);
  animation: cta-shine 2.6s ease-in-out infinite;
}

@keyframes cta-shine {
  0% {
    left: -75%;
  }

  40% {
    left: 125%;
  }

  100% {
    left: 125%;
  }
}

/* ---------- side fixed button ---------- */
.fixed-side-btn {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 160;
  width: 257px;
  transition: opacity .5s;
  opacity: 0;
  visibility: hidden;
}

.fixed-side-btn .cta-btn__shine {
  top: 10%;
  bottom: 8%;
  left: 5%;
  right: 8%;
}

.fixed-side-btn.is-show {
  opacity: 1;
  visibility: visible;
}

.fixed-side-btn:hover {
  opacity: .8;
}

.fixed-side-btn img {
  width: 100%;
  height: auto;
  display: block;
}

@media screen and (max-width: 768px) {
  .fixed-side-btn {
    display: none;
  }
}

/* ---------- lead section ---------- */
.sec-lead {
  padding: 10px 0 50px;
  text-align: center;
  background: #fff;
}

.sec-lead__heading {
  width: 100%;
  max-width: 700px;
  height: auto;
  margin: 0 auto 28px;
}

.sec-lead__txt {
  max-width: 620px;
  margin: 0 auto 24px;
  font-size: 15px;
  text-align: left;
  text-align: center;
}
@media (min-width: 769px) {
  .sec-lead__txt {
    font-size: 1.5em;
  }
}

.sec-lead__txt .hl {
  background: #a8cd3a;
  padding: .0em .25em;
  display: inline-block;
}

.sec-lead__badge {
  width: 100%;
  /* max-width: 480px; */
  height: auto;
  margin: 24px auto 0;
}

/* ---------- strengths ---------- */
.sec-strengths {
  background: var(--green) url("../img/top/ph_bg_strengths.png") no-repeat left top;
  padding: 44px 0 56px;
  position: relative;
  overflow: hidden;

  @media (max-width: 769px) {
    background-size: 65%;
  }
}

.sec-strengths__heading {
  width: 100%;
  max-width: var(--w-inner);
  height: auto;
  margin: 0 auto 28px;
  padding: 0 40px;
}

.point-card {
  background: #fff;
  width: calc(100% - 60px);
  max-width: 1492px;
  margin: 0 auto 30px;
  border-radius: 6px;
  padding: 20px 30px 30px;
  text-align: center;
  @media (min-width: 769px) {
    display: flex;
  }
  @media (max-width: 769px) {
    width: calc(100% - 30px);
  }
}

.point-card:nth-of-type(even) .point-card__num {
  order: 3;
}
.point-card:nth-of-type(even) .point-card__cont {
  order: 2;
}
.point-card:nth-of-type(even) .point-card__slider-wrap {
  order: 1;
}

.point-card:last-child {
  margin-bottom: 0;
}

.point-card__num {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  margin: 0 auto 4px;
  color: var(--green);
  font-family: var(--font-num);
  font-weight: 700;
}

.point-card__num-figure {
  font-size: clamp(63px, 6.636vw, 103px);
}

.point-card__num-label {
  font-size: clamp(21px, 2.255vw, 35px);
  letter-spacing: .05em;
  margin-top: 4px;

  @media (max-width: 769px) {
    font-size: 21px;
  }
}

.point-card__cont {
  @media (min-width: 769px) {
    flex: 1;
    align-self: center;
    padding: 0 2vw;
  }
}

.point-card__ttl {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.3;
  margin: 10px 0 20px;
  position: relative;
  display: inline-block;
  padding-bottom: 20px;
  font-style: italic;
  @media (min-width: 769px) {
    text-align: left;
    font-size: clamp(0px, 2.4vw, 36px);
    padding-bottom: 0;
    display: block;
  }
}

.point-card__ttl::after {
  @media (max-width: 768px) {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 3px;
    background: var(--green);
  }
}

.point-card__txt {
  font-size: 15px;
  margin-bottom: 20px;
  line-height: 2;
  @media (min-width: 769px) {
    text-align: left;
    margin-bottom: 0;
    font-size: clamp(12px, 1.16vw, 18px);
  }
}

.point-card__txt+.point-card__txt {
  margin-top: -10px;
}

.point-card__slider-wrap {
  margin-top: 20px;
  @media (min-width: 769px) {
    margin-top: 0;
    /* flex: 1; */
    width: 37%;
  }
}

.point-card__slider {
  /* border-radius: 20px; */
  overflow: hidden;
}

.point-card__slider img {
  width: 100%;
  height: auto;
  /* aspect-ratio: 10 / 7; */
  object-fit: cover;
  /* border-radius: 20px; */
}

.point-card .swiper-pagination {
  position: relative;
  margin-top: 12px;
}

.point-card .swiper-pagination-bullet {
  background: #ccc;
  opacity: 1;
  margin: 0 4px;
}

.point-card .swiper-pagination-bullet-active {
  background: var(--green);
}

.point-card__photo {
  width: 100%;
  height: auto;
  aspect-ratio: 10 / 7;
  object-fit: cover;
  margin-top: 20px;
}

.point-card__medals {
  width: 100%;
  height: auto;
  margin: 0 auto;
  /* border-radius: 20px; */
  @media (min-width: 769px) {
    width: 37%;
  }
}

.point-card__medals.sm img {
  width: 54%;
  @media (max-width: 768px) {
    width: 100%;
  }
}

.point-card__medals img {
  /* width: 80%; */
  margin: 0 auto;
  @media (max-width: 768px) {
    width: 100%;
  }
}

.point-card__note {
  font-size: clamp(10px, 0.9vw, 14px);
  margin-top: 1em;
  color: #4d4d4d;
  text-align: center;
}

/* ---------- vision ---------- */
.sec-vision {
  padding: 100px 20px 50px;
  text-align: center;
  background: #fff url("../img/top/ph_bg_vision.png") no-repeat left top;
  position: relative;
  overflow: hidden;

  @media (max-width: 769px) {
    background-size: 40%;
    padding: 40px 20px 50px;
  }
}

.sec-vision__heading {
  width: 100%;
  max-width: 560px;
  height: auto;
  margin: 0 auto 24px;
}

.sec-vision__txt {
  max-width: 700px;
  margin: 0 auto 32px;
  font-size: 15px;
  font-size: clamp(10px, 3.4666666vw, 15px);
  text-align: center;
}

@media (min-width: 769px) {
  .sec-vision__txt {
    font-size: 1.5em;
  }
}

.sec-vision__txt > span {
  display: none;
  @media (min-width: 769px) {
    display: inline-block;
    padding: 2px 22px;
    background: var(--green);
    color: #fff;
    font-size: 1.1em;
    font-weight: 700;
    clip-path: polygon(16px 0, 100% 0, calc(100% - 16px) 100%, 0 100%);
  }
}

.sec-vision__txt > img {
  display: none;
  @media (max-width: 768px) {
    display: block;
    margin: 2% auto;
    max-width: 300px;
    width: 80%;
  }
}


.sec-vision__cont {
  @media (min-width: 769px) {
    display: flex;
    justify-content: center;
    width: 80%;
    margin: 0 auto;
    .sec-vision__exec {
      margin-left: 20px;
      margin-right: 20px;
      max-width: 480px;
    }
  }
}
.sec-vision__exec {
  max-width: 580px;
  margin: 0 auto 40px;
}

.sec-vision__exec img {
  width: 100%;
  height: auto;
  /* aspect-ratio: 9 / 11;
  object-fit: cover; */
  border-radius: 4px;
  margin-bottom: 14px;
}

.sec-vision__exec figcaption {
  line-height: 1.5;
  font-size: clamp(12px, 1.538vw, 16px);
  @media (min-width: 769px) {
  }
}

.sec-vision__exec figcaption strong {
  display: block;
  margin-top: 2px;
  font-size: 1.6em;
  font-weight: 400;
  @media (min-width: 769px) {
  }
}

.sec-vision__cta-heading {
  width: 100%;
  max-width: 560px;
  height: auto;
  margin: 0 auto 24px;
}

.checklist {
  width: -webkit-fit-content;
  width: fit-content;
  max-width: 700px;
  margin: 24px auto 0;
  text-align: left;
  /* @media (min-width: 769px) {
    text-align: center;
  } */
}

.checklist li {
  position: relative;
  padding: 0.5em 6px 0.5em 1.5em;
  /* border-bottom: 1px solid #eee; */
  font-size: clamp(16px, 1.53vw, 20px);
  font-weight: 700;
  line-height: 1.6;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.8em;
  /* top: 50%; */
  /* transform: translateY(-50%); */
  width: 1.2em;
  height: 1.05em;
  background: url("../img/top/ph_check.png") no-repeat center / contain;
  /* @media (min-width: 769px) {
    display: inline-block;
    position: static;
    margin-right: 0.25em;
    vertical-align: middle;
  } */
}

/* ---------- voice ---------- */
.sec-voice {
  background: var(--green) url("../img/top/ph_bg_voice.png") no-repeat left top;
  padding: 120px 0 60px;
  position: relative;
  overflow: hidden;
  @media (max-width: 769px) {
    background-size: 40%;
    padding: 40px 0 50px;
  }
}

.sec-voice__heading {
  width: 100%;
  max-width: 560px;
  height: auto;
  margin: 0 auto 30px;
  padding: 0 20px;
}

.voice-card {
  width: 100%;
  max-width: 1300px;
  padding: 0 20px 40px;
  border-bottom: #999 2px solid;
  margin: 0 auto 50px;
  @media (min-width: 769px) {
    padding: 0 30px 40px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}

.voice-card:nth-of-type(even) .voice-card__photo {
  order: 2;
}
.voice-card:nth-of-type(even) .voice-card__cont {
  order: 1;
}
.voice-card:nth-of-type(even) .voice-card__collapse {
  order: 3;
}
.voice-card:nth-of-type(even) .voice-card__toggle {
  order: 4;
}

.voice-card__photo {
  width: 100%;
  @media (min-width: 769px) {
    width: 50%;
  }
}

.voice-card__cont {
  @media (min-width: 769px) {
    width: 47%;
    align-self: center;
  }
}

.voice-card__company {
  position: relative;
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-size: clamp(20px, 2.4vw, 32px);
  padding: 18px 0 16px;
  margin-top: 0;
}

.voice-card__company::after {
  content: "";
  display: block;
  width: 52%;
  height: 2px;
  margin: 14px auto 0;
  background: #fff;
}

.voice-card__meta {
  text-align: center;
  color: #fff;
  font-size: clamp(13px, 1.5vw, 20px);
  margin-bottom: 5px;
}

.voice-card__quote {
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-size: clamp(20px, 1.68vw, 22px);
  line-height: 1.7;
  margin-bottom: 20px;
}

.voice-card__data {
  background: #fff;
  border-radius: 6px;
  padding: 20px;
  /* margin-bottom: 50px; */
  @media (min-width: 769px) {
    padding: 28px;
  }
}

.voice-card__data>p:first-child {
  font-size: clamp(18px, 1.84vw, 22px);
  font-weight: 700;
  margin-bottom: 10px;
}

.data-label {
  display: inline-block;
  background: #0d97a9;
  color: #fff;
  /* font-size: 24px; */
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 2px;
  margin-right: 8px;
  line-height: 1.4;
}

.voice-card__data ul {
  font-size: clamp(14px, 1.22vw, 16px);
}

.voice-card__data ul li {
  position: relative;
  padding-left: 1em;
  margin-top: 6px;
}

.voice-card__data ul li::before {
  content: "・";
  position: absolute;
  left: 0;
}

.voice-card__qa {
  color: #222;
}

.qa {
  margin-bottom: 2em;
}

.qa__q {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 44px;
  padding-left: 72px;
  margin-bottom: 22px;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  color: #50504b;
}

.qa__q .mark {
  position: absolute;
  left: -4px;
  top: 50%;
  transform: translateY(-50%);
  font-family: "M PLUS Rounded 1c", var(--font-base);
  font-weight: 800;
  font-size: 80px;
  line-height: 1;
  color: #e2edbd;
  z-index: 0;
  pointer-events: none;
}

.qa__q-text {
  position: relative;
  z-index: 1;
}

.qa__a {
  font-size: 15px;
  color: #4d4d4d;
}

.voice-card__toggle {
  display: block;
  margin: 1.5em auto 0;
  max-width: 220px;
  width: 100%;
  background: #b3b3b3;
  border: none;
  outline: 1px solid #fff;
  outline-offset: -8px;
  color: #fff;
  font-size: clamp(14px, 1.53vw, 20px);
  /* font-weight: 700; */
  padding: 12px 28px 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color .2s;
}

.voice-card__toggle.is-closed {
  background: #4495a6;
}

.voice-card__collapse {
  margin-top: 3em;
  width: 100%;
}
.voice-card__collapse[hidden] {
  display: none;
}

.voice-card__body {
  @media (min-width: 769px) {
    width: 80%;
    margin: 0 auto;
  }  
}

/* ---------- missions ---------- */
.sec-missions {
  background: var(--cream);
  padding: 50px 20px;
  text-align: center;
}

.sec-missions__eyebrow {
  max-width: var(--w-inner);
  margin: 0 auto 10px;
  color: #9dc938;
  font-family: var(--font-num);
  letter-spacing: .15em;
  font-size: 20px;
  font-weight: 700;
}

.sec-missions__ttl {
  max-width: var(--w-inner);
  margin: 0 auto 26px;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.6;
  color: #50504b;

  span {
    font-size: 26px;
  }
}

.sec-missions__video {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  background: #000;
}

.sec-missions__video-el {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.sec-missions__video::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 64px;
  height: 64px;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, .55);
  border-radius: 50%;
  transition: opacity .2s;
}

.sec-missions__video::before {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(50% + 4px);
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 12px 0 12px 20px;
  border-color: transparent transparent transparent #fff;
  z-index: 1;
  transition: opacity .2s;
}

.sec-missions__video.is-playing {
  cursor: default;
}

.sec-missions__video.is-playing::before,
.sec-missions__video.is-playing::after {
  opacity: 0;
  pointer-events: none;
}

/* ---------- flow ---------- */
.sec-flow {
  padding: 50px 20px 56px;
  background: #fff;
  text-align: center;
}

.sec-flow__eyebrow {
  max-width: var(--w-inner);
  margin: 0 auto 10px;
  color: var(--green-dark);
  font-family: var(--font-num);
  letter-spacing: .15em;
  font-size: 20px;
  font-weight: 700;
}

.sec-flow__ttl {
  max-width: var(--w-inner);
  margin: 0 auto 28px;
  font-size: 26px;
  font-weight: 700;
  color: #50504b;
}

.step-flow-pc {
  max-width: 1520px;
  width: 96%;
  margin: 0 auto;
  @media (max-width: 768px) {
    display: none;
  }
}
.step-flow {
  max-width: 600px;
  margin: 0 auto;
  @media (min-width: 769px) {
    display: none;
  }
}

.step-flow__toggle {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}

.step-flow__toggle img {
  display: block;
  width: 100%;
  height: auto;
}

.step-flow__badge {
  position: absolute;
  top: 50%;
  right: 0;
  width: 32px;
  height: 32px;
  transform: translate(50%, -50%);
  border-radius: 50%;
  background: var(--green);
  pointer-events: none;
}

.step-flow__badge::before,
.step-flow__badge::after {
  content: "";
  position: absolute;
  background: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.step-flow__badge::before {
  width: 14px;
  height: 2px;
}

.step-flow__badge::after {
  width: 2px;
  height: 14px;
  transition: transform .25s;
}

.step-flow__toggle.is-open .step-flow__badge::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.step-flow__rest[hidden] {
  display: none;
}

.step-flow__rest img {
  display: block;
  width: 100%;
  height: auto;
}

.step-flow__rest .step-flow__border {
  width: 48px;
  margin: 6px auto;
}

/* ---------- contact ---------- */
.sec-contact {
  padding: 0 0 0;
  background: #fff;
  text-align: center;
}

.sec-contact__head {
  background: #0d97a9;
  padding: 32px 10px 26px;
  /* line-height: 1.4; */
}

.sec-contact__lead {
  max-width: var(--w-inner);
  margin: 0 auto 0;
  padding: 0 20px;
  font-size: 25px;
  font-weight: 700;
  color: #ffffff;
}

.sec-contact__badge {
  display: inline-block;
  background: #ffff38;
  color: #0d97a9;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 4px;
  margin: 0 4px;
}

.sec-contact__ttl {
  max-width: var(--w-inner);
  margin: 0 auto;
  /* padding: 0 10px; */
  font-size: 40px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-top: 0.25em;
}

@media (max-width: 768px) {
  .sec-contact__ttl {
    margin-top: 0.5em;
    font-size: 33px;
  }
}

.sec-contact__note {
  background: #ccfbff;
  color: #0d97a9;
  font-size: 20px;
  line-height: 1.8;
  padding: 22px 10px 0;
  margin: 0;
  text-align: left;
}

@media (max-width: 768px) {
  .sec-contact__note {
    font-size: 16px;
  }
}

.sec-contact__note-text {
  display: block;
  max-width: 800px;
  margin: 0 auto;
}

/* ---------- footer ---------- */
.site-footer {
  background: var(--dark);
  padding: 40px 20px 80px;
  text-align: center;
}

.site-footer .footer-logo {
  max-width: 200px;
  margin: 0 auto 20px;
}

.site-footer .footer-logo img {
  width: 100%;
}

.site-footer p {
  max-width: var(--w-inner);
  margin: 0 auto;
  color: #ccc;
  font-size: 11px;
  line-height: 1.8;
}

.site-footer .copyright {
  margin-top: 10px;
  color: #888;
  font-size: 10px;
}

/* ---------- desktop tweak ---------- */
@media (min-width: 769px) {
  .l-header__catch {
    font-size: 13px;
  }

  .fv {
    min-height: 570px;
  }

  .fv__content {
    align-items: flex-start;
    padding-left: 15%;
  }

  .sec-missions__video {
    max-width: 800px;
  }

  .cta-block.is-fixed {
    position: static;
    padding: 28px 20px;
    background: ;
  }

  body.has-fixed-cta {
    padding-bottom: 0;
  }
}

/* ---------- global nav: text-link header (hamburger below 1080px) ---------- */
@media (min-width: 1081px) {
  .l-header__inner {
    max-width: 100%;
    padding: 12px 40px;
  }

  .l-header__menu-btn {
    display: none;
  }

  .l-nav {
    position: static;
    top: auto;
    right: auto;
    bottom: auto;
    width: auto;
    background: none;
    transform: none;
    transition: none;
    z-index: auto;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0;
    margin-left: auto;
  }

  .l-nav a {
    display: inline-block;
    padding: 8px 14px;
    color: var(--dark);
    font-size: 14px;
    font-weight: 700;
    border-bottom: 0;
    white-space: nowrap;
    transition: color .2s;
  }

  .l-nav a:hover {
    color: var(--green-dark);
  }

  .l-nav__cta {
    margin: 0 0 0 8px;
    padding: 10px 20px;
    background: var(--green);
    color: #2d2d2d !important;
    border-radius: 4px;
  }

  .l-nav__cta:hover {
    opacity: .85;
  }

  .l-nav-overlay {
    display: none;
  }
}