@charset "UTF-8";

/* =========================================
   1. Base & Reset
   ========================================= */
:root {
  --c-navy: #113255;
  --c-blue: #005bac;
  --c-green: #8cc63f;
  --c-orange: #f39800;
  --c-red: #e60012;
  --c-gray-bg: #f9f9f9;
  --c-white: #ffffff;
  --c-text: #333333;
  --w-content: 1200px;
  --header-top-height: 80px;
  --header-nav-height: 50px;
  --f-base: "Noto Sans JP", sans-serif;
  --f-en: "Oswald", sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
span.inline {
  display: inline-block;
}
html {
  scroll-behavior: smooth;
  /* PC用スクロール位置調整（ヘッダー被り防止） */
  scroll-padding-top: calc(var(--header-top-height) + var(--header-nav-height));
}

body {
  font-family: var(--f-base);
  color: var(--c-text);
  line-height: 1.6;
  background-color: var(--c-white);
  -webkit-font-smoothing: antialiased;
  padding-top: calc(var(--header-top-height) + var(--header-nav-height));
}

@media (max-width: 1024px) {
  html {
    /* SP用スクロール位置調整 */
    scroll-padding-top: 70px;
  }
  body {
    padding-top: 70px;
  }
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.8;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
ul {
  list-style: none;
}

.container {
  width: 92%;
  max-width: var(--w-content);
  margin: 0 auto;
}

.u-pc-only {
  display: block !important;
}
.u-sp-only {
  display: none !important;
}
@media (max-width: 1024px) {
  .u-pc-only {
    display: none !important;
  }
  .u-sp-only {
    display: block !important;
  }
}

/* =========================================
   2. Header
   ========================================= */
.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  background: #fff;
}
.header__top {
  height: var(--header-top-height);
  background: #fff;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
}
.header__container {
  width: 92%;
  max-width: var(--w-content);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
.header__logo img {
  height: 50px;
  width: auto;
}

.header__info {
  display: flex;
  align-items: center;
  gap: 30px;
}
.header__tel {
  text-align: right;
}
.tel-label {
  font-size: 0.7rem;
  color: var(--c-green);
  font-weight: bold;
  display: block;
  line-height: 1;
  margin-bottom: 4px;
  text-align: right;
}
.tel-num {
  font-size: 1.8rem;
  font-family: var(--f-en);
  font-weight: bold;
  color: var(--c-navy);
  line-height: 1;
  display: block;
}
.header__btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: var(--c-red);
  color: #fff !important;
  padding: 0 30px;
  height: 50px;
  border-radius: 5px;
  font-weight: bold;
  font-size: 1.1rem;
  box-shadow: 0 3px 0 #b3000e;
  transition: 0.2s;
  white-space: nowrap;
}
.header__btn:active {
  transform: translateY(3px);
  box-shadow: none;
}

.header__bottom {
  height: var(--header-nav-height);
  background: var(--c-navy);
  display: flex;
  align-items: center;
}
.header__nav {
  display: flex;
  justify-content: center;
  gap: 0;
  width: 100%;
  flex-wrap: nowrap;
}
.header__nav a,
.nav-dropdown-title {
  color: #fff;
  font-weight: bold;
  font-size: 0.9rem;
  padding: 0 25px;
  height: 50px;
  display: flex;
  align-items: center;
  position: relative;
  white-space: nowrap;
  cursor: pointer;
}
.header__nav a:hover,
.nav-dropdown:hover .nav-dropdown-title {
  color: var(--c-green);
  background: rgba(255, 255, 255, 0.05);
}
.header__nav a:not(:last-child)::after,
.nav-dropdown:not(:last-child)::after {
  content: "|";
  position: absolute;
  right: 0;
  color: rgba(255, 255, 255, 0.2);
  font-weight: normal;
}
.nav-arrow {
  font-size: 0.6em;
  margin-left: 8px;
  position: relative;
  top: -1px;
  opacity: 0.7;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}
.nav-dropdown-list {
  display: none;
  position: absolute;
  top: 50px;
  left: 0;
  min-width: 200px;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-top: 3px solid var(--c-green);
  z-index: 1001;
}
.nav-dropdown:hover .nav-dropdown-list {
  display: block;
}
.nav-dropdown-list a {
  color: var(--c-navy);
  padding: 15px 20px;
  height: auto;
  border-bottom: 1px solid #eee;
  display: block;
}
.nav-dropdown-list a:hover {
  background: #f9f9f9;
  color: var(--c-green);
}
.nav-dropdown-list a::after {
  display: none;
}

@media (max-width: 1024px) {
  .header__top {
    height: 70px;
    border-bottom: none;
  }
  .header__logo img {
    height: 40px;
  }
  .header__info,
  .header__bottom {
    display: none !important;
  }
}

/* Hamburger */
.hamburger {
  display: none;
  position: fixed;
  top: 15px;
  right: 15px;
  z-index: 2000;
  width: 44px;
  height: 44px;
  background: var(--c-navy);
  border-radius: 4px;
  border: none;
  cursor: pointer;
}
@media (max-width: 1024px) {
  .hamburger {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.hamburger span {
  position: absolute;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: 0.3s;
}
.hamburger span:nth-child(1) {
  transform: translateY(-8px);
}
.hamburger span:nth-child(2) {
  transform: translateY(0);
}
.hamburger span:nth-child(3) {
  transform: translateY(8px);
}
.hamburger.is-active span:nth-child(1) {
  transform: rotate(45deg);
  top: 50%;
  margin-top: -1px;
}
.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.hamburger.is-active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 50%;
  margin-top: -1px;
}

/* SP Menu */
.sp-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 320px;
  height: 100vh;
  background: #fff;
  z-index: 1050;
  transition: 0.4s;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  padding-top: 20px;
  overflow-y: auto;
  visibility: hidden;
}
.sp-menu.is-active {
  right: 0;
  visibility: visible;
}
.sp-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
}
.sp-overlay.is-active {
  opacity: 1;
  visibility: visible;
}
.sp-menu__head {
  text-align: center;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}
.sp-menu__list a,
.sp-accordion summary {
  display: block;
  padding: 12px 20px;
  border-bottom: 1px solid #eee;
  font-weight: 700;
  color: var(--c-navy);
  font-size: 1rem;
  cursor: pointer;
  list-style: none;
}
.sp-menu__cta {
  margin: 20px;
  padding: 0 20px;
}
.sp-tel-btn {
  display: block;
  background: var(--c-navy);
  color: #fff;
  padding: 15px;
  border-radius: 5px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}
.sp-mail-btn {
  display: block;
  background: var(--c-green);
  color: #fff;
  padding: 15px;
  border-radius: 5px;
  font-weight: bold;
  text-align: center;
}
.sp-accordion summary::-webkit-details-marker {
  display: none;
}
.sp-accordion-content {
  background: #f9f9f9;
}
.sp-accordion-content a {
  padding-left: 40px;
  font-weight: normal;
  font-size: 0.95rem;
}

/* =========================================
   3. Top Page Components
   ========================================= */
/* MV */
.mv {
  display: flex;
  width: 100%;
  min-height: 600px;
  background: #fff;
  position: relative;
  overflow: hidden;
}
.mv__left {
  width: 50%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  background: #fff;
  z-index: 2;
}
.mv__content {
  width: 100%;
  max-width: 650px;
  padding: 60px 40px 60px 20px;
}
.mv__right {
  width: 50%;
  position: relative;
  z-index: 1;
}
.mv__right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-bottom-left-radius: 30px;
}
.mv__badges {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}
.badge {
  background: #fff;
  border: 3px solid var(--c-orange);
  color: var(--c-orange);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-weight: bold;
  line-height: 1.2;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.badge__sub {
  font-size: 0.75rem;
  display: block;
  margin-bottom: 2px;
}
.badge__main {
  font-size: 1.3rem;
  font-family: var(--f-en);
  display: block;
}
.badge__text {
  font-size: 0.8rem;
  display: block;
}
.badge.green {
  border-color: var(--c-green);
  color: var(--c-green);
}
.badge.navy {
  border-color: var(--c-navy);
  color: var(--c-navy);
}

/* Clamp化: SP(2rem) ~ PC(3.5rem) */
.mv__catch {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.4;
  color: var(--c-navy);
  margin-bottom: 20px;
  text-shadow: 2px 2px 0 #fff;
  letter-spacing: 0.05em;
}
.mv__catch span {
  background: linear-gradient(transparent 65%, #ffeb3b 65%);
  padding: 0 5px;
}
.mv__lead {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 35px;
  font-weight: 500;
}
.mv__lead strong {
  color: var(--c-red);
  border-bottom: 2px solid var(--c-red);
}
.mv__cta {
  display: flex;
  gap: 15px;
}
.btn-cta {
  flex: 1;
  padding: 18px;
  text-align: center;
  border-radius: 50px;
  font-weight: bold;
  color: #fff;
  font-size: 1.1rem;
  box-shadow: 0 5px 0 rgba(0, 0, 0, 0.2);
  transition: 0.3s;
}
.btn-cta:hover {
  transform: translateY(3px);
  box-shadow: none;
}
.btn-cta.tel {
  background: var(--c-navy);
}
.btn-cta.mail {
  background: var(--c-red);
}

@media (max-width: 1024px) {
  .mv {
    flex-direction: column-reverse;
    min-height: auto;
  }
  .mv__left {
    width: 100%;
    justify-content: center;
  }
  .mv__content {
    padding: 40px 20px;
    text-align: center;
  }
  .mv__right {
    width: 100%;
    height: 300px;
  }
  .mv__right img {
    border-radius: 0;
  }
  .mv__badges {
    justify-content: center;
    gap: 10px;
  }
  .badge {
    width: 95px;
    height: 95px;
    border-width: 2px;
  }
  .badge__main {
    font-size: 1.2rem;
  }
  .mv__cta {
    flex-direction: column;
  }
}

/* Sections */
.section {
  padding: 80px 0;
}
.section-gray {
  background: var(--c-gray-bg);
}
/* clampでサイズ調整 */
.section-title {
  text-align: center;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--c-navy);
  font-weight: 900;
  margin-bottom: 10px;
  font-family: var(--f-en);
  letter-spacing: 0.05em;
}
.section-sub {
  text-align: center;
  display: block;
  margin-bottom: 50px;
  color: var(--c-green);
  font-weight: bold;
  font-size: 1.1rem;
}

/* Trouble Grid */
.trouble-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.trouble-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  transition: 0.3s;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.05);
}
.trouble-card:hover {
  transform: translateY(-5px);
  border-color: var(--c-orange);
}
.trouble-head {
  padding: 10px;
  text-align: center;
  font-weight: bold;
  color: #fff;
  background: var(--c-blue);
}
.trouble-head.green {
  background: var(--c-green);
}
.trouble-img {
  height: 160px;
  overflow: hidden;
  position: relative;
}
.trouble-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}
.trouble-card:hover .trouble-img img {
  transform: scale(1.1);
}
.trouble-body {
  padding: 15px;
  text-align: center;
}
.trouble-body p {
  font-size: 0.9rem;
  font-weight: bold;
  color: var(--c-navy);
  margin-bottom: 5px;
}
.trouble-tag {
  display: inline-block;
  font-size: 0.8rem;
  background: #eee;
  padding: 2px 8px;
  border-radius: 3px;
}
@media (max-width: 768px) {
  .trouble-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .trouble-img {
    height: 120px;
  }
}

/* Ranking */
.rank-wrap {
  display: flex;
  gap: 30px;
  margin-top: 40px;
}
.rank-box {
  flex: 1;
  background: #fff;
  padding: 45px 25px;
  border: 4px solid var(--c-orange);
  border-radius: 15px;
  position: relative;
  text-align: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}
.rank-crown {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--c-orange);
  color: #fff;
  padding: 8px 30px;
  font-weight: bold;
  font-family: var(--f-en);
  border-radius: 30px;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.15);
  font-size: 1.3rem;
  border: 3px solid #fff;
}
.rank-box h3 {
  font-size: 1.4rem;
  color: var(--c-navy);
  margin: 20px 0 15px;
  border-bottom: 2px dotted #eee;
  padding-bottom: 10px;
  font-weight: 900;
}
.rank-box p {
  font-size: 0.95rem;
  text-align: left;
  line-height: 1.8;
  color: #444;
}
@media (max-width: 768px) {
  .rank-wrap {
    flex-direction: column;
    gap: 60px;
    margin-top: 60px;
  }
}

/* Mission (Top Page) */
.section-mission-modern {
  background: #fdfdfd;
  padding: 100px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.mission-card {
  background: #fff;
  padding: 50px 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  border: 1px solid #f0f0f0;
  text-align: left;
  transition: 0.3s;
}
.mission-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}
.mission-card-left {
  border-left: 5px solid var(--c-blue);
}
.mission-card-right {
  border-left: 5px solid var(--c-green);
}
.mission-label {
  display: inline-block;
  font-family: var(--f-en);
  font-size: 1.5rem;
  font-weight: bold;
  color: #ccc;
  margin-bottom: 15px;
  letter-spacing: 0.1em;
}
.mission-card-left .mission-label {
  color: var(--c-blue);
}
.mission-card-right .mission-label {
  color: var(--c-green);
}
/* Clamp化 */
.mission-catch {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 900;
  color: var(--c-navy);
  margin-bottom: 20px;
  line-height: 1.4;
}
.mission-text {
  font-size: 1rem;
  line-height: 2;
  color: #555;
}
@media (max-width: 900px) {
  .mission-grid {
    grid-template-columns: 1fr;
  }
}

/* Voice */
.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 30px;
}
.voice-card {
  background: #fff;
  padding: 25px;
  border: 1px solid #eee;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}
.voice-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--c-green);
}
.voice-icon {
  font-size: 1.5rem;
}
.voice-name {
  font-weight: bold;
  color: var(--c-navy);
  font-size: 1rem;
}
.voice-text {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}
@media (max-width: 900px) {
  .voice-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .voice-grid {
    grid-template-columns: 1fr;
  }
}

/* Flow */
.flow-wrap-full {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-top: 30px;
}
.flow-step-item {
  flex: 1;
  background: #fff;
  padding: 30px 20px;
  text-align: center;
  border-radius: 10px;
  border: 2px solid #eef;
  position: relative;
}
.flow-step-num {
  display: inline-block;
  background: var(--c-blue);
  color: #fff;
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: bold;
  font-family: var(--f-en);
  margin-bottom: 15px;
}
.flow-step-title {
  color: var(--c-navy);
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.flow-step-desc {
  font-size: 0.9rem;
  color: #666;
  text-align: left;
}
.flow-step-arrow {
  align-self: center;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 15px;
  border-color: transparent transparent transparent var(--c-blue);
}
@media (max-width: 900px) {
  .flow-wrap-full {
    flex-direction: column;
    align-items: center;
  }
  .flow-step-arrow {
    transform: rotate(90deg);
    margin: 10px 0;
  }
  .flow-step-item {
    width: 100%;
  }
}

/* Split Grid */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.split-box {
  padding: 40px;
  border-radius: 10px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.area-box-style {
  background: #eef6ff;
  border: 2px solid #d0e0f0;
}
.recruit-box-style {
  background: #fff;
  border: 2px dashed var(--c-blue);
}
.split-title {
  font-family: var(--f-en);
  font-size: 2rem;
  color: var(--c-navy);
  letter-spacing: 0.05em;
  line-height: 1;
}
.split-sub {
  font-size: 0.9rem;
  color: var(--c-green);
  font-weight: bold;
  margin-bottom: 20px;
}
.area-lead {
  font-size: 1.2rem;
  color: var(--c-navy);
  margin-bottom: 15px;
}
.area-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}
.area-tags span {
  background: #fff;
  padding: 8px 15px;
  border-radius: 20px;
  font-weight: bold;
  color: var(--c-navy);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
.recruit-lead {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.recruit-txt {
  font-size: 0.9rem;
  margin-bottom: 20px;
}
.split-btn {
  margin-top: auto;
}
.btn-text-link {
  color: var(--c-blue);
  text-decoration: underline;
  font-weight: bold;
  font-size: 1.1rem;
}
.btn-more-small {
  display: inline-block;
  background: var(--c-navy);
  color: #fff;
  padding: 10px 30px;
  border-radius: 30px;
  font-weight: bold;
  transition: 0.3s;
}
.btn-more-small:hover {
  opacity: 0.8;
}
@media (max-width: 768px) {
  .split-grid {
    grid-template-columns: 1fr;
  }
}

/* CTA Bottom */
.cta-bottom {
  background: #f0f8ff;
  padding: 80px 0;
  border-top: 3px solid var(--c-blue);
  position: relative;
  overflow: hidden;
}
.cta-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.cta-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cta-text-area {
  flex: 1;
}
.cta-img-area {
  flex: 0 0 550px;
  position: relative;
}
@media (max-width: 1300px) {
  .cta-img-area {
    flex: 0 0 450px;
  }
}
@media (max-width: 1120px) {
  .cta-img-area {
    flex: 0 0 350px;
  }
}
.cta-person-img {
  width: 100%;
  height: auto;

  transform: scale(1.1) translateY(10px);
  border-bottom: none;
  filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.1));
}
/* Clamp化: SP(1.6rem) ~ PC(2.2rem) */
.cta-title {
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--c-navy);
  line-height: 1.4;
}
.cta-desc {
  font-size: 1.1rem;
  margin-bottom: 40px;
  color: #555;
}
.cta-buttons {
  display: flex;
  gap: 20px;
}
.cta-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 280px;
  height: 90px;
  border-radius: 10px;
  text-decoration: none;
  transition: 0.3s;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.cta-btn:hover {
  transform: translateY(-5px);
  opacity: 0.9;
}
.cta-btn.tel {
  background: #fff;
  border: 2px solid var(--c-navy);
  color: var(--c-navy);
}
.cta-btn.tel .cta-sub {
  color: var(--c-green);
}
.cta-btn.mail-orange {
  background: var(--c-orange);
  color: #fff;
  border: 2px solid var(--c-orange);
}
.cta-sub {
  font-size: 0.8rem;
  font-weight: bold;
  margin-bottom: 3px;
  display: block;
}
.cta-main {
  font-size: 1.6rem;
  font-weight: bold;
  font-family: var(--f-en);
  display: block;
  line-height: 1;
}
@media (max-width: 1050px) {
  .cta-layout {
    flex-direction: column-reverse;
    text-align: center;
  }
  .cta-img-area {
    flex: auto;
  }
  .cta-person-img {
    width: 100%;
    max-width: 600px;
    height: auto;
    transform: scale(1) translateY(10px);
    border-bottom: none;
    filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.1));
  }
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .cta-btn {
    width: 100%;
    max-width: 320px;
  }
}

/* Footer */
.footer {
  background: var(--c-navy);
  color: #fff;
  padding: 60px 0 20px;
}
.footer__logo img {
  filter: brightness(0) invert(1);
  width: 180px;
  margin-bottom: 20px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
}
.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.footer__links a {
  width: 30%;
  color: #ccc;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 5px;
}
.btn-center {
  text-align: center;
  margin-top: 40px;
}
.btn-more {
  display: inline-block;
  padding: 15px 50px;
  border: 2px solid var(--c-navy);
  border-radius: 50px;
  color: var(--c-navy);
  font-weight: bold;
  transition: 0.3s;
}
.btn-more:hover {
  background: var(--c-navy);
  color: #fff;
}
@media (max-width: 768px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }
  .footer__links a {
    width: 45%;
  }
}

/* =========================================
   7. Sub Page Common & Company Page
   ========================================= */
.sub-mv {
  background: url("../img/mv.png") no-repeat center/cover;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.sub-mv::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(17, 50, 85, 0.7);
}
.sub-mv__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}
/* clampでサイズ調整 */
.sub-mv__title {
  font-family: var(--f-en);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  margin-bottom: 5px;
  letter-spacing: 0.1em;
}
.sub-mv__sub {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--c-green);
}

/* Creative Mission/Vision (Both Left Aligned) */
.concept-row {
  display: flex;
  align-items: center;
  margin-bottom: 80px;
  position: relative;
  padding: 40px;
  border-radius: 20px;
  overflow: hidden;
}
.concept-row:last-child {
  margin-bottom: 0;
}
.concept-mission {
  background: linear-gradient(135deg, #fdfdfd 0%, #f0f8ff 100%);
  border-left: 10px solid var(--c-blue);
}
.concept-vision {
  background: linear-gradient(135deg, #fdfdfd 0%, #f0fff4 100%);
  border-left: 10px solid var(--c-green);
}

.concept-bg-text {
  position: absolute;
  font-family: var(--f-en);
  /* 背景文字もClamp化 */
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 900;
  color: rgba(0, 0, 0, 0.03);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  white-space: nowrap;
  pointer-events: none;
}
.concept-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}
.concept-label {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: bold;
  color: var(--c-navy);
  margin-bottom: 10px;
  border-bottom: 2px solid var(--c-orange);
}
.concept-mission .concept-label {
  border-color: var(--c-blue);
}
.concept-vision .concept-label {
  border-color: var(--c-green);
}

/* Clamp化: SP(1.8rem) ~ PC(2.5rem) */
.concept-catch {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 900;
  color: var(--c-navy);
  margin-bottom: 25px;
  line-height: 1.4;
}
.concept-desc {
  font-size: 1.1rem;
  line-height: 2;
  color: #444;
}

@media (max-width: 768px) {
  .concept-row {
    padding: 30px 20px;
    display: block;
  }
  .concept-vision {
    border-left: 10px solid var(--c-green);
  }
}

/* Guidelines */
.guideline-box {
  background: #fff;
  padding: 60px;
  border-radius: 15px;
  border: 1px solid #eee;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
  max-width: 900px;
  margin: 0 auto;
}
.guideline-title {
  text-align: center;
  font-size: 1.6rem;
  color: var(--c-navy);
  margin-bottom: 40px;
}
.guideline-list {
  list-style: none;
}
.guideline-list li {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px dashed #ddd;
}
.guideline-list li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.guideline-num {
  font-family: var(--f-en);
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--c-green);
  line-height: 1;
}
.guideline-list p {
  font-size: 1.1rem;
  font-weight: bold;
  color: #444;
  margin: 0;
}
@media (max-width: 768px) {
  .guideline-box {
    padding: 30px;
  }
}

/* Profile Table */
.profile-wrap {
  max-width: 800px;
  margin: 0 auto;
}
.profile-list {
  border-top: 1px solid #ddd;
}
.profile-row {
  display: flex;
  border-bottom: 1px solid #ddd;
}
.profile-row dt {
  width: 30%;
  background: #f0f4f8;
  padding: 20px;
  font-weight: bold;
  color: var(--c-navy);
  display: flex;
  align-items: center;
}
.profile-row dd {
  width: 70%;
  padding: 20px;
  background: #fff;
}
@media (max-width: 768px) {
  .profile-row {
    flex-direction: column;
  }
  .profile-row dt {
    width: 100%;
    padding: 10px 15px;
  }
  .profile-row dd {
    width: 100%;
    padding: 15px;
  }
}

/* =========================================
   8. Recruit & FAQ Page
   ========================================= */
.recruit-intro {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
/* ご要望のClamp管理: SP(1.5rem) ~ PC(2.2rem) */
.mission-catch-light {
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  font-weight: 900;
  color: var(--c-navy);
  margin-bottom: 20px;
  line-height: 1.4;
}
.mission-desc-light {
  font-size: 1rem;
  line-height: 2;
  color: #555;
  margin-bottom: 30px;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}
.faq-category {
  font-size: 1.5rem;
  color: var(--c-navy);
  border-left: 5px solid var(--c-green);
  padding-left: 15px;
  margin: 50px 0 20px;
  font-weight: 900;
}
.faq-category:first-child {
  margin-top: 0;
}
.faq-item {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 5px;
  margin-bottom: 15px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
  transition: 0.3s;
}
.faq-item[open] {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.faq-q {
  padding: 20px;
  font-weight: bold;
  font-size: 1.1rem;
  color: var(--c-navy);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 50px;
}
.faq-q::-webkit-details-marker {
  display: none;
}
.faq-q::before {
  content: "Q.";
  color: var(--c-green);
  font-family: var(--f-en);
  font-weight: 900;
  font-size: 1.3rem;
  margin-right: 10px;
}
.faq-icon {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: #ccc;
  transition: 0.3s;
}
.faq-item[open] .faq-icon {
  transform: translateY(-50%) rotate(45deg);
  color: var(--c-orange);
}
.faq-a {
  padding: 0 20px 25px 20px;
  color: #555;
  line-height: 1.8;
  border-top: 1px dashed #eee;
  margin-top: 5px;
  padding-top: 15px;
}
.faq-a::before {
  content: "A.";
  color: var(--c-orange);
  font-family: var(--f-en);
  font-weight: 900;
  font-size: 1.3rem;
  margin-right: 10px;
}
.faq-a p {
  display: inline;
}

/* =========================================
   9. Area Page
   ========================================= */
.area-list-wrap {
  max-width: 900px;
  margin: 0 auto;
}
.area-block {
  background: #fff;
  border-radius: 10px;
  margin-bottom: 40px;
  border: 1px solid #ddd;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
}
.area-block:last-child {
  margin-bottom: 0;
}
.area-pref {
  background: var(--c-navy);
  color: #fff;
  padding: 15px 20px;
  font-size: 1.3rem;
  font-weight: bold;
}
.area-detail {
  padding: 20px;
}
.area-detail dl {
  margin-bottom: 20px;
  border-bottom: 1px dashed #eee;
  padding-bottom: 20px;
}
.area-detail dl:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}
.area-detail dt {
  font-weight: bold;
  color: var(--c-green);
  margin-bottom: 5px;
  display: block;
  font-size: 1.1rem;
}
.area-detail dd {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #444;
}
@media (max-width: 768px) {
  .area-pref {
    font-size: 1.1rem;
    padding: 10px 15px;
  }
  .area-detail {
    padding: 15px;
  }
}

/* =========================================
   10. New Pages Styles (Contact & Service)
   ========================================= */
/* Contact Page */
.contact-intro {
  max-width: 900px;
  margin: 0 auto 50px;
  text-align: center;
}
.contact-head {
  font-size: clamp(1.3rem, 4vw, 2rem);
  color: var(--c-navy);
  margin-bottom: 15px;
  font-weight: bold;
}
.contact-sub {
  font-size: 1rem;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.8;
}
.contact-tel-box {
  background: #f0f8ff;
  border: 2px solid var(--c-blue);
  border-radius: 10px;
  padding: 30px;
  display: inline-block;
  width: 100%;
  max-width: 600px;
}
.contact-tel-label {
  font-size: 0.9rem;
  font-weight: bold;
  color: var(--c-navy);
  margin-bottom: 10px;
}
.contact-tel-link {
  font-size: 2.5rem;
  font-family: var(--f-en);
  font-weight: bold;
  color: var(--c-blue);
  line-height: 1;
  display: block;
  margin-bottom: 5px;
}
.tel-icon {
  font-size: 2rem;
  margin-right: 10px;
}
.contact-tel-time {
  font-size: 0.85rem;
  color: #555;
}

.contact-form-wrap {
  max-width: 700px;
  margin: 0 auto;
  background: #fff;
  padding: 50px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}
.form-header {
  text-align: center;
  margin-bottom: 40px;
}
.form-header h3 {
  font-size: 1.5rem;
  color: var(--c-navy);
  margin-bottom: 10px;
}
.form-header p {
  font-size: 0.9rem;
  color: #666;
}

.form-item {
  margin-bottom: 25px;
}
.form-item label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: var(--c-navy);
  font-size: 0.95rem;
}
.form-item .required {
  background: var(--c-red);
  color: #fff;
  font-size: 0.7rem;
  padding: 2px 6px;
  border-radius: 3px;
  margin-left: 8px;
  vertical-align: middle;
}
.form-item .any {
  background: #ccc;
  color: #fff;
  font-size: 0.7rem;
  padding: 2px 6px;
  border-radius: 3px;
  margin-left: 8px;
  vertical-align: middle;
}
.form-item input,
.form-item select,
.form-item textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  background: #fdfdfd;
  transition: 0.3s;
}
.form-item input:focus,
.form-item select:focus,
.form-item textarea:focus {
  border-color: var(--c-blue);
  outline: none;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0, 91, 172, 0.1);
}
.select-wrap {
  position: relative;
}

.privacy-check {
  text-align: center;
  margin: 30px 0;
}
.check-text {
  margin-left: 5px;
  font-weight: bold;
  color: #444;
}

.form-btn {
  text-align: center;
  margin-top: 40px;
}
.form-btn p{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.btn-submit {
  background: var(--c-orange);
  color: #fff;
  border: none;
  padding: 18px 80px;
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 50px;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 5px 0 #c47b00;
}
.btn-submit:hover {
  transform: translateY(3px);
  box-shadow: none;
  opacity: 0.9;
}

@media (max-width: 600px) {
  .contact-tel-link {
    font-size: 1.8rem;
  }
  .contact-form-wrap {
    padding: 30px 20px;
  }
  .btn-submit {
    width: 100%;
    padding: 15px;
  }
}

/* Service Card Grid */
.service-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}
.service-card-item {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  transition: 0.3s;
  height: 100%;
}
.service-card-item:hover {
  transform: translateY(-5px);
  border-color: var(--c-orange);
}
.service-card-head {
  background: var(--c-navy);
  padding: 20px;
  text-align: center;
  color: #fff;
}
.service-icon {
  display: block;
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.service-card-head h3 {
  font-size: 1.2rem;
  font-weight: bold;
  margin: 0;
}
.service-card-body {
  padding: 25px;
}
.service-card-desc {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
}
.service-check-list {
  list-style: none;
  padding: 0;
}
.service-check-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font-weight: bold;
  color: var(--c-navy);
  font-size: 0.95rem;
  border-bottom: 1px dashed #eee;
  padding-bottom: 8px;
}
.service-check-list li::before {
  content: "✔";
  color: var(--c-green);
  position: absolute;
  left: 0;
  top: 0;
}

@media (max-width: 900px) {
  .service-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .service-card-grid {
    grid-template-columns: 1fr;
  }
}

/* Detail Flow */
.detail-flow-wrap {
  max-width: 800px;
  margin: 0 auto;
}
.detail-flow-item {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
  position: relative;
}
.detail-flow-item:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 70px;
  bottom: -40px;
  width: 2px;
  background: #ddd;
}
.detail-flow-num {
  flex: 0 0 60px;
  width: 60px;
  height: 60px;
  background: var(--c-green);
  color: #fff;
  border-radius: 50%;
  font-family: var(--f-en);
  font-size: 1.5rem;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  border: 3px solid #fff;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
}
.detail-flow-content {
  flex: 1;
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  border: 1px solid #eee;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
  position: relative;
}
.detail-flow-content::after {
  content: "";
  position: absolute;
  left: -10px;
  top: 20px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 10px solid #fff;
}
.detail-flow-content h3 {
  color: var(--c-navy);
  font-size: 1.3rem;
  margin-bottom: 15px;
  border-bottom: 2px solid #eee;
  padding-bottom: 10px;
}
.detail-flow-content p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #555;
}
@media (max-width: 600px) {
  .detail-flow-item {
    flex-direction: column;
    gap: 15px;
  }
  .detail-flow-item:not(:last-child)::before {
    display: none;
  }
  .detail-flow-content::after {
    display: none;
  }
}

/* Feature Detail Rows */
.feature-row {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 80px;
}
.feature-row:last-child {
  margin-bottom: 0;
}
.feature-row.reverse {
  flex-direction: row-reverse;
}
.feature-img {
  flex: 1;
}
.feature-img img {
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  width: 100%;
  height: auto;
}
.feature-content {
  flex: 1;
}
.feature-num {
  font-family: var(--f-en);
  font-size: 4rem;
  color: rgba(243, 152, 0, 0.2);
  font-weight: 900;
  line-height: 1;
  display: block;
  margin-bottom: -20px;
  margin-left: -5px;
}
/* Clamp化: SP(1.5rem) ~ PC(1.8rem) */
.feature-title {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: bold;
  color: var(--c-navy);
  margin-bottom: 20px;
  line-height: 1.4;
  position: relative;
  z-index: 1;
}
.feature-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
}
@media (max-width: 768px) {
  .feature-row,
  .feature-row.reverse {
    flex-direction: column;
    gap: 20px;
  }
  .feature-num {
    font-size: 3rem;
  }
}

@media (max-width: 480px) {
  .guideline-title {
    font-size: 1.4rem;
  }
  .guideline-box {
    padding: 20px 15px;
  }
  .sub-mv {
    height: 300px;
  }
  .faq-category {
    font-size: 1.35rem;
  }
  .btn-more {
    padding: 15px 20px;
  }
  .mv__badges {
    gap: 5px;
  }
  .mission-card {
    padding: 30px 30px;
  }
  .flow-wrap-full {
    gap: 10px;
  }
  .split-box {
    padding: 20px;
  }
}

.copyright {
  margin-top: 2rem;
  font-size: 0.8rem;
  text-align: center;
}

/* =========================================
   Price Guide (Service Page)
   ========================================= */
.price-guide {
  background: #fdfdfd;
  border: 2px solid #eee;
  border-radius: 10px;
  padding: 30px;
  margin-top: 50px;
  text-align: center;
}
.price-guide__title {
  color: var(--c-navy);
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--c-green);
  display: inline-block;
  padding-bottom: 5px;
}
.price-guide__main {
  margin-bottom: 20px;
}
.price-guide__basic {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--c-text);
  margin-bottom: 10px;
}
.price-guide__amount {
  font-size: 2rem;
  color: var(--c-red);
  font-family: var(--f-en);
}
.price-guide__note {
  font-size: 0.9rem;
  color: #666;
}
.price-guide__note .text-bold {
  font-weight: bold;
  color: var(--c-text);
}
.price-guide__night {
  background: #f0f8ff;
  padding: 15px;
  border-radius: 5px;
  display: inline-block;
  width: 100%;
  max-width: 500px;
}
.price-guide__night-label {
  font-weight: bold;
  color: var(--c-navy);
  margin: 0;
}
.price-guide__night-amount {
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--c-red);
  margin: 5px 0 0;
}
.price-guide__night-amount .unit {
  font-size: 1rem;
  color: var(--c-text);
}

.tel .emoji,
.sp-tel-btn .emoji{
	 filter: brightness(0) invert(1);
}
