/* ===============================
   Modern CSS Reset (WP-friendly)
   =============================== */

/* Box sizing and margin reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
#heroVideo{
  width: 100%;
}
.mobile{
    display: none;
    color: black;

}
img{
    box-sizing: border-box;
}
/* Remove default list styles */
ul,
ol {
  list-style: none;
}

/* Remove default link styles */
a {
  text-decoration: none;
  color: inherit;
}

/* Set base font and smooth scrolling */
html {
  scroll-behavior: smooth;
  font-size: 62.5%; /* 1rem = 10px for easier calc */
}

body {
  font-family: 'Kozuka Gothic Pr6N', sans-serif;
  font-size: 1.6rem; /* Default 16px */
  background-color: white;
  color: #FFF;
  line-height: 1.5;
}

/* Make images and media responsive */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Remove default table spacing */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Form elements inherit font */
input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

/* Remove default button styles (if you end up using them) */
button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
.mobile{
    display: none!important;
}
/* Remove outline on focus for mouse, keep for keyboard */
a,
button {
  outline: none;
}
a:focus-visible,
button:focus-visible {
  outline: 2px solid #D6C17E;
  outline-offset: 2px;
}
/* ===============================
   HERO SECTION WITH HEADER STYLES
=============================== */

.siteHeader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 2rem 4rem;
  display: flex;
  align-items: center;
  z-index: 10;
}

.siteHeader__inner {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.siteHeader__logo img {
  height: 4rem; /* Responsive logo height */
}

.siteHeader__companyName {
  font-family: 'Acumin Pro', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: #FFF;
  letter-spacing: 0.08rem;
}

/* Hero section */
/* ===============================
   HERO SECTION
=============================== */
.hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  background-color: #000;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../img/mainVisual.jpg);
    background-size: cover;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.siteHeader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #000;
  z-index: 10;
  padding: 1rem 2rem;
}

.siteHeader__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-direction: column;
}

.siteHeader__logo img {
  height: 8rem;
}

.siteHeader__companyName {
  font-family: 'Acumin Pro', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  margin-top: -0.5vw;
  letter-spacing: 0.08rem;
  color: #FFF;
}
/* ===============================
   NAVIGATION DROPDOWN
=============================== */
.topHeader__nav .dropdown {
  position: relative;
  display: flex;
  /* margin: 0 3vw; */
  justify-content: space-around;
}

.topHeader__nav .hasDropdown {
  cursor: pointer;
  position: relative;
}

.topHeader__nav .dropdownMenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #000; /* Adjust as needed */
  border: 1px solid #9CC8E4;
  z-index: 999;
  min-width: 180px;
  padding: 0.5rem 0;
}

.topHeader__nav .dropdownMenu a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: #fff;
  text-decoration: none;
  font-size: 1.4rem;
}

.topHeader__nav .dropdownMenu a:hover {
  background: #355D7D;
}

.topHeader__nav .dropdown:hover .dropdownMenu {
  display: block;
}

.hero__overlay {
  position: relative;
  width: 100%;
  padding-left: 15vw;
  z-index: 2;
}

.hero__content {
  color: #FFF;
}

.hero__mainText {
  font-family: "kozuka-gothic-pr6n", sans-serif;
  font-size: 6vw;
  font-weight: 700;
  letter-spacing: 0.5rem;
  line-height: 1.2;
  margin-bottom: 2rem;
}

.hero__subText {
font-family: "kozuka-gothic-pr6n", sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  max-width: 90vw;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
   /* adjust for how tall black top bar should be beyond header */
  background-color: #000;
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10vh; /* adjust for black space at bottom */
  background-color: #000;
  z-index: 1;
}

/* ===============================
   SNS SUPPORT SECTION
=============================== */
.snsSupport {
  position: relative;
  background: linear-gradient(90deg, #103654 29.42%, rgba(36, 119, 186, 0.00) 100%);
  padding: 8rem 0vw 8rem 0vw;
  overflow: visible;
}

.snsSupport__title {
  position: relative;
  font-family: "kozuka-gothic-pr6n", sans-serif;
  font-size: 6vw;
  font-weight: 700;
  letter-spacing: 0.6rem;
  color: #9CC8E4;
  text-align: right;
  right: 3vw;
  top: -16rem; /* adjust for desired offset */
  overflow: visible;
  z-index: 999;
}
.snsSupport__inner{
    overflow: visible;
}
.snsSupport__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
  margin-bottom: 6vw;
}

.snsSupport__textBlock {
  flex: 1;
  min-width: 300px;
  max-width: 50vw;
}

.snsSupport__lead {
  margin-bottom: 2rem;
  color: #FFF;
  font-family: "Hiragino Mincho Pro";
  font-size: 30px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

.snsSupport__list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2rem;
  color: #FFF;
font-family: "kozuka-gothic-pr6n", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-left: 2vw;
}

.snsSupport__list li {
  font-family: 'Kozuka Gothic Pr6N', sans-serif;
  font-size: 1.8rem;
  color: #FFF;
  margin-bottom: 1rem;
}

.snsSupport__desc,
.snsSupport__note {
  font-family: "kozuka-gothic-pr6n", sans-serif;
  color: #a6a6a6;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 1.5rem;
  margin-left: 2vw;
}

.snsSupport__button {
  display: inline-block;
  border: 1px solid #D6C17E;
  color: #D6C17E;
  padding: 1rem 2rem;
  font-family: 'Kozuka Gothic Pr6N', sans-serif;
  font-size: 2rem;
  text-align: center;
  text-decoration: none;
  margin: 0 auto;
}

.snsSupport__textBlock {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* ensures button centers under text block */
  margin-left: 10vw;
}

.snsSupport__button {
  margin-top: 2rem;
}

.snsSupport__imageBlock {
  flex: 1;
  min-width: 300px;
}

.snsSupport__imageBlock img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
}


/* ===============================
   悩み SECTION STYLES
=============================== */

.nayami {
  background-color: #000;
  color: #FFF;
  width: 100vw;
  padding: 8rem 0rem;
}

.nayami__title {
  color: #9CC8E4;
 font-family: "kozuka-gothic-pr6n", sans-serif;
  font-size: 6rem; /* ~60px */
  font-weight: 700;
  letter-spacing: 0.6rem; /* ~6px */
  text-align: center;
  margin-bottom: 8rem;
}

.nayami__content {
  display: flex;
  align-items: flex-start;
  position: relative;
}

.nayami__textBox {
  background-color: #355D7D;
  padding: 10rem 4rem;
  width: 70vw;
  flex: 1 1 70%;
  margin-right: -10rem;
  padding-left: 13rem;
}

.nayami__list {
  font-family: 'Hiragino Mincho Pro', serif;
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 3.5;
}

.nayami__imageBox {
  flex: 1 1 70%;
  display: flex;
  justify-content: center;
  padding-top: 4vw; /* ~4% height lower than text box */
  width: 70vw;
}

.nayami__imageBox img {
  width: 100%;
  height: auto;
  display: block;
}

.nayami__footer {
  text-align: center;
  margin-top: 12rem;
 font-family: "kozuka-gothic-pr6n", sans-serif;
  font-size: 2rem;
  font-weight: 400;
}
/* ===============================
   YOZORAのSNS運用とは STYLES
=============================== */
/* ===============================
   SNS MANAGEMENT SECTION
=============================== */
.snsManagement {
  position: relative;
  background-color: #000;
  padding: 10rem 0;
  overflow: hidden;
}

.snsManagement__headingBox {
  position: relative;
  text-align: center;
  margin-bottom: 4rem;
  background: #355D7D;
  padding: 4rem;
}

.snsManagement__title {
font-family: "kozuka-gothic-pr6n", sans-serif;
  font-size: 3vw;
  font-weight: 700;
  letter-spacing: 0.6rem;
  color: white;
  position: relative;
  /* top: -3rem; */ /* adjust as needed */
}

.snsManagement__subtitle {
font-family: "kozuka-gothic-pr6n", sans-serif;
  font-size: 2rem;
  color: #FFF;
  margin-top: 1rem;
}

.snsManagement__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 4rem;
  /* max-width: 1200px; */
  margin: 0 auto;
}

.snsManagement__imageBox {
  flex: 1;
  min-width: 300px;
  max-width: 800px;
}

.snsManagement__imageBox img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-top-right-radius: 50px;
  aspect-ratio: 16/7;
}

.snsManagement__textBox {
  flex: 1;
  min-width: 20vw;
  max-width: 35vw;
  color: #FFF;
  display: flex;
  margin-right: auto;
  margin-left: 5rem;
  flex-direction: column;
  align-items: center;
  height: 20vw;
  justify-content: space-around;
}

.snsManagement__lead {
  font-family: 'Kozuka Gothic Pr6N', sans-serif;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.snsManagement__list {
  list-style: inside;
  padding-left: 0;
  background-color: #355D7D;
  padding: 2rem 4rem;
  padding-left: 6rem;
  border-radius: 3rem;
  max-width: 100%;
  width: 29vw;
  text-align: left;
}

.snsManagement__list li {
  font-family: 'Kozuka Gothic Pr6N', sans-serif;
  font-size: 1.8rem;
  color: #FFF;
  margin-bottom: 1rem;
}

/* ===============================
   WHY US SECTION
=============================== */
.whyUs {
  position: relative;
  background-color: #000;
  padding: 10rem 0vw;
  overflow: hidden;
}



.whyUs__title {
  font-family: "kozuka-gothic-pr6n", sans-serif;
  font-size: 3vw;
  font-weight: 700;
  letter-spacing: 0.5rem;
  color: #9CC8E4;
  text-align: left;
  margin-bottom: 7rem;
  position: relative;
  z-index: 2;
  padding-left: 15vw;
}

.whyUs__content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  /* gap: 4rem; */
  /* max-width: 1200px; */
  /* margin-left: 15vw; */
  margin: 0 auto;
  flex-wrap: wrap;
}

.whyUs__textBox {
  flex: 1;
  min-width: 300px;
  margin-left: 18vw;
  margin-top: 4vw;
  line-height: 3;
}

.whyUs__point {
  margin-bottom: 4rem;
}

.whyUs__pointTitle {
  font-family: "kozuka-gothic-pr6n", sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #FFF;
  margin-bottom: 0.5rem;
}

.whyUs__pointText {
  font-family: "kozuka-gothic-pr6n", sans-serif;
  font-size: 1.6rem;
  color: #FFF;
  line-height: 2;
  margin-left: 2vw;
}

.whyUs__imageBox {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  position: relative;
}

.whyUs__imageBox img {
  width: 100%;
  height: auto;
  aspect-ratio: 7 / 8;
  object-fit: cover;
  border-radius: 0.5rem;
}

.whyUs__imageBox::before {
 content: '';
 position: absolute;
 top: -1.5vw;
 right: 0;
 width: 130%;
 height: 2vw;
 background-color: #355D7D;
 z-index: 2;
 border: none;
}
/* ===============================
   5STEPメソッド STYLES
=============================== */

.fiveSteps {
  width: 100%;
  padding: 5vw 0vw;
  background: #000;
}

.fiveSteps__title {
  font-size: 3vw;
  font-weight: bold;
  color: #99c7e7;
  text-align: right;
  margin-bottom: 7vw;
  margin-right: 30rem;
}

.fiveSteps__content {
  display: flex;
  align-items: center;
  /* gap: 4vw; */
  /* max-width: 1200px; */
  margin: 0 auto;
}

.fiveSteps__imageBox {
  position: relative;
  flex: 0 0 40%;
}





.fiveSteps__imageBox img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 7/8;
}

.fiveSteps__imageBox::before {
 content: "";
    position: absolute;
    top: -2vw;
    left: 0;
    width: 130%;
    height: 2vw;
    z-index: 1;
    pointer-events: none;
    background-color: #355D7D;
    z-index: 2;
}
.fiveSteps__list {
  flex: 1;
  list-style: none;
  padding: 0;
  margin: 0;
  line-height: 4vw;
}

.fiveSteps__list li {
  font-size: 1.3vw;
  line-height: 1.7;
  color: #fff;
  margin-bottom: 1vw;
  line-height: 4;
}

/* ===============================
   PORTFOLIO STYLES
=============================== */

.portfolio__grid {
  display: flex;
  flex-wrap: wrap;
  /* max-width: 1200px; */
  margin: 0 auto;
}

.portfolio__item {
  display: flex;
  flex: 1 1 100%;
  background: #000;
  color: #fff;
  border-radius: 0;
  overflow: hidden;
}

.portfolio__item:nth-child(even) {
  flex-direction: row-reverse;
}

.portfolio__item img {
  width: 50%;
  height: auto;
  object-fit: cover;
  display: block;
}

.portfolio__caption {
  width: 50%;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.portfolio__client {
  font-weight: bold;
  font-size: 2rem;
  /* margin-bottom: 8px; */
  line-height: 4;
}

.portfolio__result {
  font-size: 2rem;
  line-height: 4;
}
.portfolio__headingBox {
  background-color: #2e5f7d; /* or your design blue */
  padding: 40px 20px;
  text-align: center;
}

.portfolio__title {
  color: #fff;
  font-size: 3vw;
  font-weight: bold;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.portfolio__subtitle {
  color: #fff;
  font-size: 2rem;
}
/* ===============================
   料金プラン STYLES
=============================== */

.pricing {
  background: linear-gradient(180deg, #0A2D49 0%, #196CAF 100%);
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pricing__title {
  color: #fff;
  font-size: 3vw;
  margin-bottom: 40px;
  text-align: center;
}

.pricing__tableWrap {
  width: 70vw;
  max-width: 900px;
}

.pricing__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 10px;
  /* background: #D9D9D9; */
}

.pricing__table thead th {
  background: #B29C4B;
  color: #000;
  font-weight: bold;
  padding: 12px 15px;
}

.pricing__table tbody td {
  background: #D9D9D9;
  padding: 18px 18px;
  color: #396C95;
  font-weight: 700;
}

.pricing__note {
  color: #fff;
  font-size: 1vw;
  margin-top: 20px;
  text-align: left;
  margin-left: 1vw;
}

/* ===============================
   HOW TO STYLES
=============================== */

.howTo {
  background-color: #000;
  color: #FFF;
  padding: 8rem 0rem;
  width: 100vw;
  text-align: center;
}

.howTo__title {
  color: #9CC8E4;
font-family: "kozuka-gothic-pr6n", sans-serif;
  font-size: 3vw;
  font-weight: 700;
  letter-spacing: 0.6rem;
  margin-bottom: 4rem;
}

.howTo__subtitle {
  background-color: #355D7D;
  display: inline-block;
  padding: 1rem 12rem;
font-family: "kozuka-gothic-pr6n", sans-serif;
  font-size: 2rem;
  margin-bottom: 4rem;
}

.howTo__flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2vw;
}

.howTo__step {
  background-color: #706542;
  padding: 2rem 3rem;
  border-radius: 1rem;
  font-family: "kozuka-gothic-pr6n", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  width: 100%;
  max-width: 55rem;
}

.howTo__arrow {
  font-size: 3rem;
  color: #FFF;
}
/* ===============================
   FAQ STYLES
=============================== */

.faq {
  background-color: #000;
  color: #FFF;
  padding: 8rem 0rem;
  width: 100vw;
}
.faq__item{
    margin-bottom: 8rem;
}

.faq__headingBox {
  background-color: #355D7D;
  padding: 4rem 2rem;
  text-align: center;
  margin-bottom: 4rem;
}

.faq__title {
 font-family: "kozuka-gothic-pr6n", sans-serif;
  font-size: 3vw;
  font-weight: 700;
  letter-spacing: 0.6rem;
  color: #FFF;
}

.faq__subtitle {
font-family: "kozuka-gothic-pr6n", sans-serif;
  font-size: 2rem;
  margin-top: 1rem;
}

.faq__list {
  padding: 4vw 0vw 4vw 15vw;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  text-align: left;
  margin: auto;
  align-content: space-around;
  align-items: flex-start;
}

.faq__question {
font-family: "kozuka-gothic-pr6n", sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
}

.faq__answer {
font-family: "kozuka-gothic-pr6n", sans-serif;
  font-weight: 400;
  font-size: 1.8rem;
  margin-top: 3rem;
  margin-left: 6vw;
}
/* ===============================
   ASSESSMENT STYLES
=============================== */


.assessment__title {position: absolute;font-size: clamp(2.5rem, 5vw, 4vw); /* scales nicely */font-weight: 700;color: #B6D9F2; /* your memorized color for section titles */text-align: center;top: 0;left: 50%;transform: translate(-50%, -50%);z-index: 2;line-height: 1.2;margin-bottom: 1rem;text-align: center;white-space: nowrap; /* prevents awkward wrapping */}
 
.assessment {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  /* padding: 6vw 0vw; */
  overflow: visible;
  background: #355D7D;
}



.assessment__content {
  display: flex;
  /* max-width: 1200px; */
  width: 100%;
  gap: 2rem;
  flex-direction: row;
  align-items: center;
}

.assessment__textBox {
  flex: 1;
  margin-left: 10vw;
  color: #fff;
  margin-right: 12vw;
}

.assessment__textBox h3 {
  font-size: 1.5vw;
  font-weight: bold;
  margin-bottom: 1rem;
  line-height: 4;
}

.assessment__desc {
  font-size: 1vw;
  line-height: 1.8;
  margin-bottom: 9rem;
}

.assessment__button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: 1px solid #C4A94C;
  color: #C4A94C;
  text-decoration: none;
  text-align: center;
  margin-top: 1rem;
}

.assessment__imageBox {
  /* flex: 1; */
  position: relative;
  background: linear-gradient(90deg, #355D7D 0%, rgba(0, 0, 0, 0.00) 51.92%, rgba(255, 255, 255, 0.00) 85.58%), lightgray -8.638px -202.54px / 126.872% 154.907% no-repeat;
}
 

.assessment__imageBox img {
  width: 40vw;
  height: 49vw;
  object-fit: cover;
  aspect-ratio: 9/16;
  /* border-radius: 8px; */
  background: linear-gradient(90deg, #355D7D 0%, rgba(0, 0, 0, 0.00) 51.92%, rgba(255, 255, 255, 0.00) 85.58%), lightgray -8.638px -202.54px / 126.872% 154.907% no-repeat;
}
.section {
  position: relative;
  padding-top: 6rem; /* space to make room for the title */
}

.section__title {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.5rem; /* adjust as needed */
  font-weight: bold;
  color: #B9D9EB; /* or your preferred title color */
  text-align: center;
  white-space: nowrap; /* optional: prevents wrapping */
}

/* ===============================
   ACT NOW STYLES
=============================== */

.actNow {
  position: relative;
  background: #000;
  padding-top: 120px; /* creates space so the title doesn’t get cut */
  padding-bottom: 10vw;
}

.actNow__title {
  position: relative;
  top: -60px; /* position the title overlapping the section top */
  text-align: center;
  font-size: 4vw; /* refer to your style guide for the exact size */
  color: #b3d7ee;
  z-index: 2;
}

.actNow__content {
  display: flex;
  align-items: flex-start;
  justify-content: space-evenly;
  /* max-width: 1200px; */
  margin: 0 auto;
  background: linear-gradient(90deg, #103654 39.42%, rgba(36, 119, 186, 0) 100%);
  padding-top: 6vw;
}

.actNow__textBox {
  /* background: linear-gradient(90deg, #103654 39.42%, rgba(36, 119, 186, 0) 100%); */
  color: #fff;
  padding: 2rem;
  display: flex;
  flex: 1;
  height: 45vw;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.actNow__lead{
    margin-bottom: 2rem;
    color: #FFF;
    font-family: "Hiragino Mincho Pro";
    font-size: 30px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    margin-left: 4vw;
}
.actNow__list li{
font-family: "kozuka-gothic-pr6n", sans-serif;
    font-size: 1.8rem;
    color: #FFF;
    margin-bottom: 1rem;
}
.actNow__list{
    margin-left: 8vw;
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
    color: #FFF;
    font-family: "Kozuka Gothic Pr6N";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-left: 8vw;
}
.actNow__imageBox {
  flex: 1;
}
.actNow__desc, .actNow__note{
font-family: "kozuka-gothic-pr6n", sans-serif;
    color: #a6a6a6;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 1.5rem;
    margin-left: 2vw;
}

.actNow__imageBox img {
  width: 100%;
  height: 35vw;
  object-fit: cover;
}

.actNow__button {
  display: block;
  margin: 2rem auto 0 auto; /* center under text */
}
.actNow__button,
.snsSupport__button,
.assessment__button {
  padding: 1rem 5rem;
  border: 1px solid #b49a56; /* or your gold color */
  text-decoration: none;
   /* adjust to your style guide */
  margin: 4rem auto 0 auto;
  color: #D6C17E;
  text-align: center;
  font-family: "kozuka-gothic-pr6n", sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.actNow__button,
.snsSupport__button,
.assessment__button {
  display: block;
  max-width: fit-content;
}
/* ===============================
   FOOTER STYLES
=============================== */
.footer__contact {
  position: relative;
  /* background-color: black; */
  color: white;
  display: flex;
  height: 45vw;
  flex-direction: column;
}

.footer__contactTitle {
  font-size: 5.5vw; /* Adjust as per your font guide */
  color: #549cd6;
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 2rem 0;
  top: 5vw;
  margin-bottom: -3vw;
}

.footer__contactInner {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding: 2rem 5%;
  margin: auto;
  width: 70vw;
  align-items: center;
  flex-direction: column;
}
.footer__contactLead{color: #ffffff;text-align: center;font-family: "Hiragino Mincho Pro";font-size: 1.8vw;margin-top: 2vw;margin-bottom: 0vw;font-style: normal;font-weight: 700;line-height: normal;line-height: 3;text-shadow: 1px 2px 1px #000000a1;}
.footer__contactText{
    line-height: 2;
    margin-bottom: 1vw;
    margin-top: 0vw;
    text-shadow: 2px 2px 3px #000000;
    font-size: 1.2vw;
}
.footer__contactContent {
  max-width: 50%;
}

.footer__contactButton {
  padding: 1rem 5rem;
  border: 1px solid #b49a56;
  text-decoration: none;
  margin: 4rem auto 0 auto;
  color: #D6C17E;
  text-align: center;
font-family: "kozuka-gothic-pr6n", sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.footer__contactImage {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.footer__contactImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9; /* or use overlay on black to darken */
}

.footer__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer__navRow {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.footer__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 120px;
  margin: 0 auto;
}

.footer__logo img {
  width: 100%;
  height: auto;
}

.footer__logo p {
  font-size: 0.875rem;
  color: white;
  margin-top: 0.5rem;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin: 1rem 0;
}

.footer__navRow {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer__copyright {
  font-size: 0.75rem;
  color: #c2a85c;
  text-align: center;
  margin-top: 1rem;
}

.footer__backToTop {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  background: #196caf;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.5rem;
}
.footer__bottom {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 1rem 2rem;
}

.footer__logoBlock {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer__logo img {
  width: 8vw;
  height: auto;
  margin-left: 10vw;
  margin-top: 3vw;
}

.footer__logo p {
  font-size: 0.875rem;
  color: white;
  margin: 0;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: auto;
  padding-top: 3vw;
  align-items: stretch;
  flex-wrap: wrap;
  min-width: 40vw;
}

.footer__navRow {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  /* padding: 2vw 0; */
  justify-content: space-between;
}

.footer__nav a {
  color: #232323;
  text-decoration: none;
  font-size: 1.875rem;
  padding-bottom: 2vw;
}

.footer__copyright {
  text-align: center;
  color: #c2a85c;
  font-size: 1.9rem;
  display: block;
  margin-top: 1rem;
  margin-right: auto;
  margin-left: auto;
    padding-right: 8vw;
}
.footer__backToTop {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  width: 4vw;
  height: 4vw;
  background: #196caf;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.5rem;
}















/* INDEX page */

/* HEADER */
.topHeader {
  background: white;
  padding: 1rem 2rem;
  color: black;
  z-index: 999;
  position: relative;
}

.topHeader__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: black;
}

.topHeader__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-direction: column;
}

.topHeader__logo img {
  height: 6vw;
  position: relative;
  z-index: 999;
}

.topHeader__logo p {
  color: #fff;
  font-size: 1rem;
  white-space: nowrap;
  margin-top: -0.5vw;
}

.topHeader__nav {
  display: flex;
  gap: 0.2rem;
  /* margin-left: auto; */
  /* margin-right: 3vw; */
  color: black;
  flex-direction: row;
  justify-content: space-around;
}

.topHeader__nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: black;
  text-decoration: none;
  font-size: 1.5rem;
  margin: 0 3vw;
  z-index: 999;
  line-height: 2;
  align-content: space-around;
  flex-wrap: wrap;
}

.topHeader__nav a span {
  font-size: 12px;
  line-height: 2;
}

.topHeader__hamburger {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 4px;
}

.topHeader__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
}

.topHeader__mobileMenu {
  display: none;
  flex-direction: column;
  background: #355D7D;
  padding: 2rem 1rem;
  color: black;
}

.topHeader__mobileMenu a {
  color: #fff;
  text-decoration: none;
  font-size: 1.5rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}




/* HERO */
.topPagehero {
  background: url(../YOZORA_Video.mp4) center/cover no-repeat;
  width: 100%;
  /* height: 80vh; */
  background-size: cover;
  z-index: 999;
  position: relative;
}



/* ================================
   BUSINESS SECTION LAYOUT
================================ */

.businessSection {
  /* background: url('../img/COMPANY.png') center/ cover repeat; */
  padding: 8rem 0rem;
  position: relative;
  /* background: white; */
  z-index: 999;
}
.subheading{color: #103654;font-family: "Noto Sans";font-size: 16px;font-style: normal;font-weight: 700;line-height: normal;text-align: left;align-self: flex-start;margin-bottom: 1vw;}
.businessSectionTitle {
  color: #9CC8E4;
  font-size: 8rem;
  margin-bottom: 15rem;
  margin-left: 15vw;
}

/* Wrapper for the two cards in a row */
.businessCards {
  gap: 0;
  flex-wrap: nowrap;
  flex-direction: row;
  margin-top: 8vw;
  /* max-width: 80vw; */
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  margin: auto;
}

/* Each business card as a row */
.businessCard {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 65vw;
  min-width: 200px;
  min-height: 10vw;
  max-height: 70vw;
  background: #C4E8F3;
  position: relative;
  box-shadow: 7px 9px 11px -3px #00000070;
  /* flex: 1; */
  /* margin-left: 5%; */
}

/* Background block that is taller/wider than the image */
.businessCardBackground {
  /* position: absolute; */
  /* top: 50%; */
  /* left: 0; */
  /* width: 100%; */
  /* height: 60%; */
  /* transform: translateY(-50%); */
  /* z-index: 0; */
}
.businessCardRight{
    background: #add6ef;
    position: relative;
    top: -8vw;
    margin-left: -5%;
}
.leftBackground {
  /* background: #103654; */
}

.rightBackground {
  background: #355D7D;
}

/* The image sits above the background */
.businessCardImage {
  position: relative;
  z-index: 1;
  width: 60%;
  height: auto;
  top: -5vw;
  box-shadow: 7px 9px 11px -3px #00000070;
}

/* The text content block */
.businessCardContent {
  position: relative;
  z-index: 1;
  padding: 2rem;
  color: #fff;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 45%;
}

.businessCardHeading {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #3B7CAF;
  text-align: center;
  font-family: "Noto Sans CKJ Black";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  margin-bottom: 2vw;
}

.businessCardText {
  font-size: 12px;
  color: #103652;
  line-height: 2vw;
  text-align: left;
}

.businessCardButton {
  display: inline-block;
  padding: 2.5rem 7rem;
  border: 1px solid white;
  color: white;
  text-decoration: none;
  margin-top: 3vw;
  margin-bottom: 5vw;
  background-color: #D6C17E;
  border-radius: 27vw;
}
.businessCardButtonUp{
    margin-top: 2vw;
}
/* ================================
   COMPANY SECTION
================================ */
.flex{
  display: flex;
  flex-direction: column;
  align-content: stretch;
  justify-content: space-evenly;
  align-items: stretch;
  flex-wrap: wrap;
  margin-right: 3vw;
}
.companySection {
  background: url('../img/COMPANY.png') center top / cover repeat;
  width: 100vw;
  padding: 8rem 0rem 6rem;
  position: relative;
  overflow-y: visible;
  height: 88vw;
  margin-top: -20vw;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-position: bottom;
}
h5{
  
color: black;
  
font-size: 24px;
  
font-style: normal;
  
font-weight: 700;
  
line-height: normal;
  
text-align: left;
  
margin-bottom: 0.5vw;
}
.companySection::before {
  content: "";
  position: absolute;
  inset: 0; /* full cover */
  background: #ffffffbf; /* overlay = 100% - 16% = 84% */
  pointer-events: none;
}
.companySectionTitle {
  color: #9CC8E4;
  font-size: 8rem;
  position: absolute;
  top: 45rem; /* offset upwards */
}

.companySectionInner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  max-width: 100vw;
  margin: 0;
  width: 100vw;
  position: relative;
  margin-top: 39vw;
}

/* Text content block */
.companyTextBlock {
  color: #fff;
  flex: 1;
  max-width: 40%;
  margin-left: auto;
  width: 40vw;
  margin-right: auto;
  text-align: center;
  margin-left: 6vw;
  margin-right: 3vw;
}

.companyHeading {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #3B7CAF;
  text-align: center;
  font-family: "Hiragino Sans";
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  margin-bottom: 2vw;
}

.companyText {
  font-size: 1.5rem;
  line-height: 2;
  margin-bottom: 1.5rem;
  color: black;
  /* width: 35vw; */
  text-align: justify;
}

.companyButton {
  display: inline-block;
  padding: 2.5rem 7rem;
  border: 1px solid #BEAE7A;
  color: #BEAE7A;
  text-decoration: none;
  margin-top: 5vw;
}

/* Image block */
.companyImages {
  position: relative;
  flex: 1;
  max-width: 50%;
}

.companyImage {
  width: 100%;
  height: auto;
  display: block;
}

.companyImageTop {
  position: relative;
  z-index: 2;
  margin-left: auto; /* pushes image to right of container */
  display: block;
  width: 55vw;
}

.companyImageBottom {
  position: absolute;
  top: 15vw;
  right: 60px;
  z-index: 1;
  width: 90%;
}
/* ===============================
   WORKS SECTION
=============================== */

.worksSection {
  color: white;
  text-align: center;
  padding-bottom: 10rem;
}

/* --- Intro block --- */
.worksIntro {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background: #ADD6EF;
}

.worksTitle {
  color: white;
  font-size: 8rem;
  margin-bottom: 5rem;
}

.worksSubtitle {
  font-size: 30px;
  margin-bottom: 3rem;
}

.worksText {
  font-size: 1.4rem;
  color: #ccc;
  line-height: 1.8;
  margin-bottom: 4vw;
}

/* --- Slider block --- */
.worksSliderBlock {
  /* max-width: 1200px; */
  margin: 0 auto;
  padding: 2rem;
  margin-right: 0;
  padding-right: 3vw;
  background: #ADD6EF;
  padding-top: 1vw;
  padding-bottom: 0;
}

/* Slider wrapper */
.worksSliderWrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 5vw;
}

/* Slider track */
.worksSlider {
  display: flex;
  gap: 2rem;
  transition: transform 0.6s ease;
  will-change: transform;
}

/* Individual slide */
.worksSlide {
  flex: 0 0 33.333%;
  transform: scale(0.9);
  opacity: 0.6;
  transition: transform 0.5s ease, opacity 0.5s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.worksSlide.active {
  transform: scale(1.1);
  opacity: 1;
}

.worksSlide img {
  width: 100%;
  border-radius: 4px;
  display: block;
}

.worksSlide span {
  margin-top: 2rem;
  font-size: 2rem;
}

/* --- Arrows & dots --- */
.worksControls {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
  gap: 2rem;
  display: none;
}

.worksArrow {
  background: none;
  border: none;
  font-size: 4rem;
  color: #D6C17E;
  cursor: pointer;
}

/* Dots */
.worksDots {
  display: flex;
  gap: 1rem;
}

.worksDots .dot {
  width: 12px;
  height: 12px;
  background: #61A8D3;
  border-radius: 50%;
  opacity: 0.5;
  border: none;
  cursor: pointer;
}

.worksDots .dot.active {
  opacity: 1;
}

/* --- Button --- */
.worksButton {
  display: inline-block;
  border: 1px solid #D6C17E;
  color: #D6C17E;
  padding: 2.5rem 7rem;
  margin-top: 3rem;
  text-decoration: none;
  transition: background 0.3s;
  display: none;
}
#topPage > section.newsSection > div > article:nth-child(3){
    /* border: none; */
}
/* ===============================
   NEWS SECTION STYLES
   =============================== */
.news_columns{
	display:flex;
}
.newsSection__more{
	    align-self: center;
}
.newsSection {
  width: 100vw;
  padding: 4rem 0rem;
  background: white;
  margin-bottom: 6vw;
}
.newsContent{
	display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}
.newsTitle {
  font-size: 8rem;
  color: #61A8D3;
  margin-bottom: 2rem;
  position: relative;
  top: 6vw;
  left: 10vw;
  width: fit-content;
}

.newsWrapper {
  background: #bfdef163;
  padding: 10rem;
  max-width: 1200px;
  margin: auto;
  display: flex;
  border-radius: 5vw;
  flex-direction: column;
}

.newsItem {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #79BFEE;
  padding-bottom: 1rem;
  justify-content: flex-start;
}

.newsItem:last-child {
  border-bottom: none;
}

.newsItem img {
  width: 15vw;
  height: auto;
  margin-right: 5rem;
}

.newsContent time {
  display: block;
  font-size: 1.2rem;
  color: #3B7CAF;
  margin-bottom: 1rem;
}

.newsContent p {
  color: black;
  font-size: 1.4rem;

  font-style: normal;
  font-weight: 700;
}

.newsButton {
  display: inline-block;
  margin: 2rem auto 0;
  padding: 1rem 5rem;
  border: 1px solid #D6C17E;
  color: #D6C17E;
  text-decoration: none;
  border-radius: 999px;
  text-align: center;
  margin-bottom: -1vw;
}
/* Front-page NEWS block */
.newsSection .newsWrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.news_columns {
  display: grid;
  grid-template-columns: 220px 1fr; /* adjust to match design */
  gap: 24px;
  align-items: center;
}

.newsItem__thumb {
  width: 100%;
  max-width: 220px; /* same as grid col */
  overflow: hidden;
  border-radius: 4px;
}

.newsItem__thumb img {
  display: block;
  width: 100%;
  height: 150px;         /* unified height */
  object-fit: cover;     /* crop nicely */
}

/* "ニュース一覧へ" button */
.newsSection__more {
  margin-top: 40px;
  text-align: center;
}

.newsMoreButton {
  display: inline-block;
  padding: 18px 60px;
  border-radius: 999px;
  background-color: #d8bf6b;  /* tweak to match design */
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
}

.newsMoreButton:hover {
  opacity: 0.9;
}
#newsPage{

}
#newsPage.news_columns{

}
#newsPage.newsSection__more{
	
}
#newsPage.newsSection {
max-width: 70vw;
}
#newsPage.newsContent{

}
#newsPage.newsTitle {

}

#newsPage.newsWrapper {


}

#newsPage.newsItem {

}

#newsPage.newsItem:last-child {

}

#newsPage.newsItem img {

}

#newsPage.newsContent time {

}

#newsPage.newsContent p {
 
}

#newsPage.newsButton {

}
/* Front-page NEWS block */
#newsPage.newsSection .newsWrapper {

}

#newsPage.news_columns {

}

#newsPage.newsItem__thumb {

}

#newsPage.newsItem__thumb img {

}

/* "ニュース一覧へ" button */
#newsPage.newsSection__more {

}

#newsPage.newsMoreButton {

}

#newsPage.newsMoreButton:hover {

}
/* ===============================
   END NEWS SECTION STYLES
   =============================== */
/* ===============================
   BLOG SECTION STYLES
   =============================== */
.blogSection::before{
  content: "";
  position: absolute;
  inset: 0;
  background: #c4e8f3b3;
  pointer-events: none;
  /* z-index: 999; */
}
.blogSection {
  background: url(../img/COMPANY.png) center top / cover repeat;
  width: 100vw;
  padding-bottom: 5vw;
  display: flex;
  flex-direction: column;
  position: relative;
  /* z-index: 2; */
}

.blogTitle {
  font-size: 8rem;
  color: #ffffff;
  margin-bottom: 3rem;
  position: relative;
  top: 6rem; /* Offset title above the section as requested */
  text-align: center;
}

.blogGrid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4rem;
  margin-bottom: 5vw;
  margin-top: 8vw;
  z-index: 999;
}

.blogCard {
  border-radius: 8px;
  overflow: hidden;
  width: 25vw;
  display: flex;
  flex-direction: column;
}

.blogCard img {
  width: 100%;
  height: auto;
  display: block;
}

.blogCardContent {
  padding: 6rem;
  color: #fff;
  height: 15vw;
  background: #355d7d8f;
}

.blogCardContent time {
  font-size: 1.2rem;
  color: #103654;
  display: block;
  margin-bottom: 1.5rem;
}

.blogCardContent p {
  font-size: 1.4rem;
  margin-bottom: 2.5rem;
}

.blogTag {
  display: inline-block;
  border: 1px solid #ffcb26;
  border-radius: 999px;
  padding: 1rem 4rem;
  font-size: 1.2rem;
  color: white;
}

.blogMoreButton {
  display: inline-block;
  margin: 5rem auto 0;
  padding: 2rem 7rem;
  border: 1px solid #D6C17E;
  color: #D6C17E;
  text-decoration: none;
  border-radius: 999px;
  text-align: center;
  z-index: 999;
  display: inline-block;
  padding: 2.5rem 7rem;
  border: 1px solid white;
  color: white;
  text-decoration: none;
  margin-top: 3vw;
  margin-bottom: 2vw;
  background-color: #D6C17E;
  border-radius: 27vw;
  font-size: 18px;
}

/* ===============================
   END BLOG SECTION STYLES
   =============================== */
/* ===============================
   RECRUIT SECTION STYLES
   =============================== */

.recruitSection {
  background: #103654;
  padding: 6rem 2rem;
  width: 100vw;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.recruitTitle {
  position: relative;
   /* offset right as requested */
  flex-basis: 100%;
}

.recruitContent {
  display: flex;
  flex-wrap: wrap;
  max-width: 1000px;
  gap: 2rem;
}

.recruitImage {
  flex: 1 1 50%;
}

.recruitImage img {
  width: 100%;
  height: auto;
  display: block;
}

.recruitText {
  flex: 1 1 45%;
  color: white;
}

.recruitText h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.recruitText p {
  font-size: 1rem;
  line-height: 1.6;
}

.recruitButton {
  display: inline-block;
  border: 1px solid #D6C17E;
  color: #D6C17E;
  padding: 0.5rem 2rem;
  border-radius: 999px;
  text-decoration: none;
  margin-top: 2rem;
}

/* ===============================
   END RECRUIT SECTION STYLES
   =============================== */
/* ===============================
   RECRUIT SECTION STYLES
   =============================== */

.recruitSection {
  background: #050505;
  padding: 6rem 0rem;
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 8vw;
}

.recruitTitle {
  font-size: 10rem;
  color: #61A8D3;
  text-align: right;
  align-self: flex-end;
  margin-bottom: 2rem;
  top: 6vw;
  right: 4vw;
}

.recruitCard {
  background: linear-gradient(90deg, #103654 39.42%, rgba(36, 119, 186, 0.00) 100%);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  /* gap: 2rem; */
  padding: 0;
  height: 65vw;
  padding-bottom: 1vw;
  padding-top: 5vw;
}

.recruitImage {
  flex: 1 1 60%;
}

.recruitImage img {
  width: 100%;
  height: auto;
  display: block;
}

.recruitText {
  flex: 1 1 40%;
  color: white;
  padding: 6vw;
}

.recruitText h3 {
  margin-bottom: 4rem;
  text-align: center;
  font-family: "Hiragino Mincho Pro";
  font-size: 30px;
  font-style: normal;
  font-weight: 300;
}

.recruitText p {
  font-size: 1.5rem;
  line-height: 1.6;
}

.recruitButtonWrapper {
  margin-top: 2rem;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.recruitButton {
  display: inline-block;
  border: 1px solid #D6C17E;
  color: #D6C17E;
  padding: 2.5rem 7rem;
  border-radius: 0;
  text-decoration: none;
  margin-left: auto;
  font-size: 1.2vw;
}

/* ===============================
   END RECRUIT SECTION STYLES
   =============================== */
  
    /* border: red solid 1px; */

/* ================================
   COMPANY PAGE HERO SECTION
================================ */

.companyPageHero {
  position: relative;
  background: url('../img/companyHero.png') center center / cover no-repeat;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2rem;
  text-align: center;
  color: white;
  overflow: hidden;
}

.companyPageHero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7); /* Dim overlay */
  z-index: 0;
}

.companyPageHero__content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  text-align: left;
}

.companyPageHero__content h1 {
  font-size: 10rem;
  margin-bottom: 2rem;
}

.companyPageHero__content p {
  font-size: 1.6rem;
  line-height: 1.8;
}
/* ================================
   VISION SECTION (企業理念)
================================ */

.visionSection {
  background: url('../img/COMPANY.png') center center / cover no-repeat;
  color: white;
  text-align: center;
  padding: 10rem 2rem;
  width: 100vw;
  background-attachment: scroll;
  margin-top: 6vw;
  margin-bottom: 6vw;
  height: 45vw;
  background-size: cover;
  display: flex;
  background-position: bottom center;
  flex-direction: column;
  justify-content: center;
}

.visionInner {
  max-width: 50vw;
  margin: 0 auto;
}

.visionTitle {
  font-size: 8rem;
  color: #9CC8E4;
  margin-bottom: 3rem;
  font-weight: bold;
  position: relative;
  top: -9vw;
}

.visionSubtitle {
  margin-bottom: 8rem;
  margin-top: -5vw;
  font-family: "Hiragino Mincho Pro";
  font-size: 30px;
  font-style: normal;
  font-weight: 300;
}

.visionText {
  font-size: 1.5rem;
  line-height: 2.2;
  text-align: left;
  color: #FFF;
}

.visionText p {
  margin-bottom: 3rem;
}
/* ===============================
   DAIHYO SECTION
=============================== */
.daihyoSection {
  background: #000;
  color: #fff;
  padding: 10rem 2rem;
  width: 100vw;
  padding-bottom: 12vw;
}

.daihyoTitle {
  font-size: 6rem;
  color: #9CC8E4;
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
  top: -8vw;
}

.daihyoInner {
  max-width: 1200px;
  margin: 0 auto;
}

/* Flex row with text and image */
.daihyoSideBySide {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
  margin-bottom: 4rem;
  margin-top: -4vw;
}

.daihyoTextBlock {
  flex: 1;
}

.daihyoTextBlock h3 {
  font-size: 1.6rem;
  font-weight: 400;
  text-align: center;
  margin-bottom: 2rem;
  font-family: "Hiragino Mincho Pro", serif;
}

.daihyoTextBlock p {
  font-size: 1.4rem;
  line-height: 2;
  margin-bottom: 1.5rem;
}

.daihyoImageBlock {
  flex: 1;
  max-width: 400px;
}

.daihyoImageBlock img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}

/* Full-width continuation */
.daihyoExtraText {
  margin-top: 2rem;
}

.daihyoExtraText p {
  font-size: 1.4rem;
  line-height: 2;
  margin-bottom: 1.5rem;
}

/* ===============================
   END DAIHYO SECTION
=============================== */

/* ===============================
   PLANNER (スタッフ紹介) SECTION
=============================== */
.plannerSection {
  background: #355D7D;
  color: #fff;
  padding: 8rem 2rem;
  width: 100vw;
}

.plannerTitle {
  font-size: 8rem;
  color: #9CC8E4;
  margin-bottom: 4rem;
  text-align: center;
  position: relative;
  top: -8vw;
}

.plannerInner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: -4vw;
}

.plannerImageBlock {
  flex: 1 1 40%;
  max-width: 400px;
  text-align: center;
}

.plannerImageBlock img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.plannerTextBlock {
  flex: 1 1 50%;
  max-width: 700px;
}

.plannerTextBlock h3 {
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 1rem;
  text-align: center;
  font-family: "Hiragino Mincho Pro", serif;
}

.plannerTextBlock p {
  font-size: 1.4rem;
  line-height: 2;
  margin-bottom: 2rem;
}

/* ===============================
   END PLANNER SECTION STYLES
=============================== */
/* ===============================
   ABOUT (会社概要) SECTION
=============================== */
.aboutSection {
  background: url('../img/gaiyo.png') center center / cover no-repeat;
  position: relative;
  padding: 10vw 5vw;
  color: white;
  margin-bottom: 10vw;
}

.aboutOverlay {
  /* background-color: rgba(0, 0, 0, 0.6); */ /* dim overlay */
  padding: 5vw;
  max-width: 1000px;
  margin: 0 auto;
}

.aboutTitle {
  margin-bottom: 3rem;
  color: #FFF;
  text-align: center;
  font-family: "Hiragino Mincho Pro";
  font-size: 60px;
  font-style: normal;
  font-weight: 300;
}

.aboutList {
  list-style: none;
  padding: 0;
  font-size: 1.6rem;
  line-height: 2.4;
}

.aboutList li {
  margin-bottom: 1.5rem;
}
strong{
    font-weight: 700;
    margin-top: 3vw;
}
body > section.aboutSection > div > div > ul > li:nth-child(9){
    padding-top: 3vw;
}
.footerflex{
    display: flex;
    flex-direction: row;
    width: 100vw;
}

/* ===============================
   Jisseki SECTION
=============================== */
.jissekiHero {
 position: relative;
  width: 100%;
  height: 60vh;
  background-image: url(../img/jissekiHero.png); /* Jisseki-specific image */
}

.jissekiHero::before {
 content: "";
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 background: rgba(0, 0, 0, 0.7); /* black overlay */
 background-repeat: no-repeat;
 background-position: top;
}

.jissekiHeroText {
  position: absolute;
  top: 50%;
  left: 20%;
  transform: translateY(-50%);
  color: white;
}
.jissekiHeroText h1{
    font-size: 10rem;
    margin-bottom: 2rem;
}
.jissekiHeroText p{
    font-size: 2rem;
    line-height: 1.8;
}


/* ===============================
   NUMBERS SECTION STYLES
   =============================== */
.numbersSection {
  background: #000;
  padding: 6rem 0rem;
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.numbersTitle {
  font-size: 5vw;
  color: #9CC8E4;
  text-align: center;
  margin-bottom: 2rem;
}

.numbersCard {
  background: linear-gradient(90deg, #103654 39.42%, rgba(36, 119, 186, 0.00) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding-top: 5vw;
  padding-bottom: 5vw;
  gap: 2rem;
}

.numbersImage {
  flex: 1 1 60%;
}

.numbersImage img {
  width: 100%;
  height: auto;
  display: block;
}

.numbersText {
  flex: 1 1 40%;
  color: white;
  padding: 4vw;
  font-family: "Hiragino Mincho Pro", serif;
  font-size: 1.5rem;
}

.numbersText h3 {
  font-size: 30px;
  margin-bottom: 2rem;
  font-weight: 300;
  margin-left: 4vw;
}

.numbersText ul {
  font-size: 1.5rem;
  line-height: 2;
  padding-left: 0;
  list-style: none;
}
.numbersText li{
    font-size: 1.5rem;
    line-height: 3;
}
/* ===============================
   SAMPLE WORKS SECTION
=============================== */
.sampleWorks {
  background: #000;
  padding: 6rem 0rem;
}

.sampleWorksTitle {
  color: #C4E4FF;
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 5rem;
  background: #355D7D;
  padding: 4rem 0;
}

.sampleArticle {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
  margin-bottom: 6rem;
}
.sampleArticle h3{
    font-size: 3rem;
    color: #9CC8E4;
    margin-bottom: 1.5rem;
}
.sampleArticle.reverse {
  flex-direction: column;
  display: flex;
}

.sampleTextBlock {
  width: 50%;
  color: #fff;
  font-size: 1.5rem;
  margin-left: 10vw;
  margin-right: auto;
  line-height: 3;
}

.sampleTextBlock h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #9CC8E4;
}

.sampleTextBlock h3 span {
  color: #fff;
}

.sampleImageBlock {
  width: 50%;
  position: relative;
}

.sampleImageBlock img {
  width: 100%;
  height: auto;
  display: block;
}

.sampleLabelBar {
  height: 8px;
  width: 100px;
  background: #61A8D3;
  margin-bottom: 1rem;
  content: '';
  position: absolute;
  top: -1.5vw;
  right: 0;
  width: 110%;
  height: 2vw;
  background-color: #355D7D;
  z-index: 2;
  border: none;
}
.sampleWorksCard{
    display: flex;
    width: 100vw;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-around;
    align-items: center;
}
.sampleWorksCardReverse{
    display: flex;
    flex-direction: row-reverse;
    width: 100vw;
    align-items: center;
}
.sampleVideos {
  display: flex;
  gap: 5rem;
  margin-top: 2rem;
  justify-content: center;
}

.sampleVideos a img {
  width: 20vw;
  border: 24px solid #355D7D;
}
/* ===============================
   SERVICES LINEUP SECTION
=============================== */
.servicesLineup {
  background: #000;
  padding: 6rem 0rem;
}

.servicesLineupTitle {
  background: #355D7D;
  color: #fff;
  font-size: 2.8rem;
  text-align: center;
  padding: 4rem;
  margin-bottom: 4rem;
}

.servicesCard {
  display: flex;
  margin-bottom: 5rem;
  width: 100vw;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
}

.servicesCard.reverseCard {
  justify-content: flex-end;
  background: #0D385A;
  height: 45vw;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.servicesCardImg {
  position: relative;
  width: 90%;
  max-width: 1000px;
}

.servicesCardImg img {
  width: 100%;
  height: auto;
  display: block;
}

.servicesOverlay {
  position: relative;
  left: 5%;
  height: 20vw;
  padding: 2rem;
  color: #fff;
  width: 40%;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.servicesOverlay h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.servicesOverlay p {
  font-size: 1.4rem;
  line-height: 1.6;
}

.blueOverlay {
  background: #355D7D;
}

.blackOverlay {
  background: #000;
  right: 5%;
  left: auto;
}
.howTo__subtitle.worksPage{

width: 100vw;

font-size: 3rem;

padding: 3rem;
}
/* ===============================
   CUSTOMERS' VOICES SECTION
=============================== */
.customersVoicesSection {
  background: #103654;
  padding: 6vw 10vw;
  color: white;
}

.customersVoicesTitle {
  font-size: 4rem;
  text-align: center;
  margin-bottom: 0.5rem;
}

.customersVoicesSubtitle {
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 5rem;
}

.customersVoicesInner {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.voiceCard {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.voiceCard.reversed {
  flex-direction: row-reverse;
}

.voicePortraitBlock {
  flex: 0 0 180px;
  text-align: center;
}

.voicePortraitBlock img {
  width: 100%;
  height: auto;
  filter: grayscale(100%);
  transform: scaleX(-1);
}

.voiceCard.reversed .voicePortraitBlock img {
  transform: scaleX(1);
}

.voicePortraitBlock p {
  margin-top: 1rem;
  font-size: 1.4rem;
  font-weight: bold;
  color: white;
}

.voiceTextBubble {
  background: url("../img/speachBubbleReversed.png") no-repeat top left;
  background-size: contain;
  padding: 8rem 8rem 4rem 10rem;
  flex: 1;
  font-size: 1.5rem;
  line-height: 2.2rem;
  color: white;
  min-height: 250px;
  height: 25vw;
  max-width: 40vw;
}

.voiceCard.reversed .voiceTextBubble {
  background: url("../img/speachBubble.png") no-repeat top right;
  background-size: contain;
  padding: 8rem 10rem 4rem 8rem;
  text-align: left;
}

.customersVoicesSummary {
  font-size: 1.8rem;
  margin-top: 6rem;
  text-align: center;
  line-height: 2.8rem;
  color: white;
}
#aboutPage{
  background: url(../img/COMPANY.png) #ffffff 50%
50%
 / cover no-repeat;
}
#aboutPage::before{
    content: "";
    position: absolute;
    inset: 0;
    background: #ffffffbf;
    height: 100vw;
    pointer-events: none;
}
#contactPage::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #ffffffbf;
    height: 151vw;
    pointer-events: none;
}
.page-template-page-contact .footer__contact {
    display: none!important;
}
/* ================================
   Company Profile Section
   ================================ */
.companyProfile {
  /* padding: 5vw 8vw; */
  z-index: 999;
  position: relative;
  height: max-content;
  margin-bottom: 0;
}
footer{
	position: relative;
    z-index: 999 !important;
}
.companyProfile__title {
  text-align: left;
  color: #93C9EF;
  font-size: 5rem;
  margin-bottom: 2.5vw;
  margin-top: -4vw;
}

.companyProfile__title span {
  display: block;
  font-size: 25px;
  font-weight: bold;
}

.companyProfile__title small {
  display: block;
  font-size: 18px;
  color: #aaa;
}

.companyProfile__wrapper {
  width: 100vw;
  display: flex;
  justify-content: space-between;
  gap: 8vw;
  align-items: flex-start;
  flex-wrap: wrap;
  padding-top: 10vw;
}

.companyProfile__left {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  flex-direction: column;
  margin-left: 10vw;
}

.companyProfile__snsIcons {
  display: flex;
  margin-top: 10vw;
  gap: 1vw;
}

.companyProfile__snsIcons img {
  width: 60px;
  height: 60px;
  transition: opacity 0.3s ease;
}

.companyProfile__snsIcons img:hover {
  opacity: 0.7;
}

.companyProfile__right {
  flex: 2;
  min-width: 280px;
  margin-left: 1vw;
  padding-bottom: 10vw;
}

.companyProfile__info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 30vw;
}

.companyProfile__info div {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #ccc;
  padding-bottom: 0.8rem;
}

.companyProfile__info dt {
  font-weight: bold;
  color: #93C9EF;
  margin-bottom: 0.3rem;
}

.companyProfile__info dd {
  margin: 0;
  color: #333;
  line-height: 1.6;
  white-space: pre-line;
}
/* ============================================================
   SERVICES PAGE – YOZORA
   Structure:
   1. Services Top (#servicesTop)
   2. Service Cards (#servicesCards)
   3. Works Showcase (#servicesWorks)
   4. Price Section (#servicesPrice)
   5. Flow Section (#servicesFlow)
============================================================ */

/* -------------------------------
   1. SERVICES TOP SECTION
-------------------------------- */
#servicesTop {
  /* background: url(../img/BrightGeometricStars2.png) #ffffff73 -413px 0px / 150.055% 100% repeat; */
  padding: 10vw 3vw 0 8vw;
}
#servicesBg{
   background: url(../img/BrightGeometricStars2.png) #ffffff73 -413px 0px / 50.055% 50% repeat;
}
   .servicesTopImage img{
    width: 55vw;
    margin-right: 4vw;
   }
.servicesTopInner {
  width: 100%;
  max-width: 90vw;
  margin: 0 auto;
  display: flex;
  align-items: center;
  /* gap: 4vw; */
  justify-content: space-evenly;
  flex-direction: row;
}

.servicesTopText {
  flex: 1;
  width: 15vw;
  margin-left: 15vw;
}

.servicesTopTitle {
  font-family: "Noto Sans CJK JP", "Noto Sans", sans-serif;
  font-size: 45px;
  font-weight: 700;
  color: #9CC8E4;
  margin-bottom: 0.5rem;
}

.servicesTopSubtitle {
  font-family: "Noto Sans CJK JP", "Noto Sans", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #9CC8E4;
  margin-bottom: 3rem;
}

.servicesTopMotto {
  font-family: "Noto Sans CJK JP";
  font-size: 35px;
  font-weight: 700;
  line-height: 1.4;
  color: #515151;
  margin-bottom: 2.5rem;
}

.servicesTopSmallText {
  font-family: "Noto Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #000;
}

.servicesTopVector {
  flex: 1;
  display: flex;
  justify-content: center;
}

.servicesTopVector img {
  width: 90%;
  height: auto;
}

/* ===============================
   SERVICES CARDS SECTION
=============================== */
#servicesCards {
  /* background: url("../img/BrightGeometricStars21.png")
              lightgray -327px -336px / 124.812% 332% no-repeat; */
  padding: 8vw 0;
}

.servicesCardsInner {
  width: 100vw;
  /* max-width: 1200px; */
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* --- Card layout --- */
.serviceCard {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 0;
  padding: 5vw;
  background: url(../img/snsGradientBg.png);
  width: 100%;                /* ✅ Ensures full width of parent/viewport */
  background-size: cover;     /* ✅ Makes sure background image fills */
  background-repeat: no-repeat;
  background-position: center;
}

.serviceCard.reverseCard {
  flex-direction: row-reverse;
  background: url(../img/rmGradientBg.png);
  width: 100%;                /* ✅ Ensures full width of parent/viewport */
  background-size: cover;     /* ✅ Makes sure background image fills */
  background-repeat: no-repeat;
  background-position: center;
}

/* --- Text area --- */
.serviceCardText {
  flex: 1;
  max-width: 600px;
}

.serviceCardNumber {
  font-family: "Noto Sans CJK JP", "Noto Sans", sans-serif;
  font-size: 45px;
  font-weight: 700;
  color: #9CC8E4;
  margin-bottom: 1rem;
}

.serviceCardTitle {
  font-family: "Noto Sans CJK JP";
  font-size: 26px;
  font-weight: 700;
  color: #515151;
  margin-bottom: 1.5rem;
}

.serviceCardLead {
  font-family: "Noto Sans CJK JP";
  font-size: 16px;
  font-weight: 700;
  color: #000;
  margin-bottom: 1.5rem;
}

.serviceCardText p {
  font-family: "Noto Sans", sans-serif;
  font-size: 15px;
  line-height: 1.9;
  color: #000;
}

/* --- Image area --- */
.serviceCardImage {
  position: relative;
  flex: 1;
  max-width: 400px;
}

.serviceCardImage img {
  position: relative;
  width: 100%;
  height: auto;
  display: block;
  z-index: 2;
}

/* Blue square behind image */
.serviceCardImage::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 30px;
  width: 100%;
  height: 100%;
  background: #CDE9EF;
  z-index: 1;
}

/* For reversed card, move blue square to opposite side */
.reverseCard .serviceCardImage::before {
  left: auto;
  right: 30px;
}
/* -------------------------------
   3. WORKS SECTION
-------------------------------- */
#servicesWorks {
  width: 100%;
  padding: 3vw 0;
  display: flex;
  justify-content: center;
  padding-top: 0;
  align-items: center;
}

.servicesWorksInner {
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* --- Header layout --- */
.servicesWorksHeader {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6vw;
}

.servicesWorksTitle {
  color: #9CC8E4;
  font-family: "Noto Sans CJK JP";
  font-size: 45px;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 0.5rem;
}

.servicesWorksSubtitle {
  color: #9CC8E4;
  font-family: "Noto Sans CJK JP";
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
}

/* --- CTA area --- */
.servicesWorksCta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.servicesWorksNote {
  font-family: "Noto Sans";
  font-size: 20px;
  font-weight: 700;
  color: #000;
  white-space: nowrap;
}

.servicesWorksButton {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background-color: #355D7D;
  color: #fff;
  font-family: "Noto Sans CJK JP";
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  transition: 0.3s ease;
}

.servicesWorksButton:hover {
  opacity: 0.85;
}

.servicesWorksButton img {
  width: 20px;
  height: auto;
}

/* --- Center phone image --- */
.servicesWorksPhone {
  display: flex;
  justify-content: center;
  align-items: center;
}

.servicesWorksPhone img {
  max-width: 400px;
  width: 100%;
  height: auto;
  display: block;
}

/* -------------------------------
   4. PRICE SECTION
-------------------------------- */
#servicesPrice {
  padding: 6vw 0 8vw;
}

.servicesPriceInner {
  width: 82%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Headings */
.servicesPriceTitle {
  color: #9CC8E4;
  font-family: "Noto Sans CJK JP";
  font-size: 45px;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.servicesPriceSubtitle {
  color: #9CC8E4;
  font-family: "Noto Sans CJK JP";
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 3rem;
}

/* Cards layout */
.priceCards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

/* Card base */
.priceCard {
  border-radius: 0;
  overflow: hidden;
  padding: 2.5rem 2rem 2rem;
}

/* Per-card background colors */
.priceCard.leftCard  {background: #C4E8F3;box-shadow: 7px 9px 11px -3px rgb(0 0 0 / 46%);}
.priceCard.rightCard {background: #ADD6EF;box-shadow: 7px 9px 11px -3px rgb(0 0 0 / 46%);}

/* Dark header bar inside card */
.priceCardHead {
  background: #606060;
  color: #fff;
  text-align: center;
  font-family: "Noto Sans CJK JP";
  font-size: 20px;
  font-weight: 700;
  padding: 1.2rem 1rem;
  margin: 0 0 2rem;
}

/* White body block */
.priceCardBody {
  background: #fff;
  border-radius: 18px;
  padding: 5rem 5rem 5rem;
  margin: 0 1rem 2rem;
}

.priceCardImage {
  display: flex;
  justify-content: center;
  margin-bottom: 1.6rem;
}

.priceCardImage img {
  width: 140px;
  height: auto;
  display: block;
  margin-top: 1vw;
  margin-bottom: 2vw;
}

.priceCardListTitle {
  font-family: "Noto Sans CJK JP";
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 0.8rem;
  color: #000;
}

.priceCardBody ul {
  margin-left: 1rem;
  padding-left: 1rem;
  list-style: disc;
}

.priceCardBody li {
  font-family: "Noto Sans";
  font-size: 14px;
  line-height: 1.9;
  color: #000;
}

/* Price bar */
.priceCardPrice {
  background: #eecb59;
  text-align: center;
  padding: 1.4rem 1rem;
  font-family: "Noto Sans CJK JP";
  font-size: 18px;
  font-weight: 700;
  color: #433c3c;
  margin: 0 1rem;
}

.priceCardPrice strong {
  font-size: 22px;
}

/* -------------------------------
   5. FLOW SECTION
-------------------------------- */
#servicesFlow {
  background: url("../img/BrightGeometricStars2.png") #C4E8F3 -337.451px -198.55px / 125.458% 117.174% no-repeat;
  padding: 8vw 0;
}

.servicesFlowInner {
  width: 100vw;
  max-width: 100vw;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}

/* --- Section heading --- */
.servicesFlowHead {
  margin-bottom: 5vw;
  width: 25vw;
  margin-left: 22vw;
}

.servicesFlowTitle {
  font-family: "Noto Sans CJK JP";
  font-size: 28px;
  font-weight: 700;
  color: #000;
  margin-bottom: 1rem;
}

.servicesFlowText {
  font-family: "Noto Sans";
  font-size: 16px;
  line-height: 1.8;
  color: #000;
}

/* --- Steps vertical timeline --- */
.servicesFlowSteps {
  position: relative;
  margin-left: 5vw;
  /* border-left: 3px solid #355D7D; */
  padding-left: 4vw;
  display: flex;
  flex-direction: column;
  gap: 5vw;
  margin-top: 7vw;
  width: 60vw;
}

.flowStep {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
  position: relative;
}

.flowStepCircle {
  position: absolute;
  left: -6.3vw;
  top: 0;
}

.flowStepCircle img {
  width: 80px;
  height: auto;
}

/* --- Step content --- */
.flowStepContent {
  max-width: 700px;
}

.flowStepTitle {
  font-family: "Noto Sans CJK JP";
  font-size: 23px;
  font-weight: 700;
  color: #000;
  margin-bottom: 0.5rem;
}

.flowStepDesc {
  font-family: "Noto Sans";
  font-size: 18px;
  line-height: 1.8;
  color: #000;
  margin-bottom: 1.2rem;
}

/* --- CTA button for Step 1 --- */
.flowStepButton {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: #355D7D;
  color: #fff;
  font-family: "Noto Sans CJK JP";
  font-size: 15px;
  font-weight: 700;
  padding: 2rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  transition: opacity 0.3s ease;
  width: 17vw;
  display: flex;
  text-align: center;
  justify-content: center;
  margin-top: 1vw;
}

.flowStepButton:hover {
  opacity: 0.85;
}

.flowStepButton img {
  width: 18px;
  height: auto;
  display: inline-block;
}
/* ========== Base tokens for this page ========== */
:root{
  --title-blue: #9CC8E4;
  --text-dark: #000;
  --text-gray: #515151;
}

/* Shared section shell */
.visionBlock{
  position: relative;
  width: 100%;
  min-height: 48vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-dark);
  overflow: hidden;
}

.visionBlock__inner{
  width: min(1040px, 90vw);
  padding: 6rem 2rem;
}

/* Eyebrow title (MISSION / VISION / VALUE) */
.visionBlock__eyebrow{
  font-family: "Noto Sans", sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 4vw, 48px);
  letter-spacing: .08em;
  color: var(--title-blue);
  margin-bottom: 2.2rem;
}

/* Mission lead */
.visionBlock__lead{
  font-family: "Noto Sans CJK JP", "Noto Sans", sans-serif;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  color: var(--text-dark);
}

/* Vision text */
.visionBlock__desc{
  font-family: "Noto Sans CJK JP", "Noto Sans", sans-serif;
  font-size: clamp(16px, 1.7vw, 18px);
  font-weight: 700;
  color: var(--text-gray);
  line-height: 1.9;
}

/* ========== Backgrounds ========== */

/* Mission: plain background image */
#mission{
  background: linear-gradient(
    rgba(255, 255, 255, 0.7),
    rgba(255, 255, 255, 0.7)
  ),
  url(../img/BrightGeometricStars1.png) center / cover no-repeat;
  /* background: url(../img/BrightGeometricStars1.png) #ffffff73 center / cover no-repeat; */
}

/* Vision: image with transparent bluish gradient overlay */
#vision{
  background: linear-gradient(to right, rgb(91 146 181 / 44%) 0%, rgba(255, 255, 255, 0.0) 55%, rgba(255, 255, 255, 0.0) 100%), url(../img/gradientBg.png) center / cover no-repeat;
}

/* Value: image with transparent white gradient overlay */
#value{
  background:
    linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.75) 0%,
      rgba(255, 255, 255, 0.35) 40%,
      rgba(255, 255, 255, 0.75) 100%
    ),
    url("../img/BrightGeometricStars21.png")
    center / cover no-repeat;
}

/* ========== VALUE list ========== */
.valueBlock{
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 6rem;
  padding-top: 3rem;
  padding-bottom: 5rem;
}

.valueItem{
  display: grid;
  justify-items: center;
  row-gap: 1rem;
}

.valueItem__num{
  font-family: "Noto Sans", sans-serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 900;
  color: var(--title-blue);
  letter-spacing: .08em;
  margin-bottom: .2rem;
}

.valueItem__title{
  font-family: "Noto Sans CJK JP", "Noto Sans", sans-serif;
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 700;
  color: var(--text-dark);
}

.valueItem__caption{
  font-family: "Noto Sans CJK JP", "Noto Sans", sans-serif;
  font-size: clamp(12px, 1.4vw, 14px);
  color: #666;
}

/* Thin rule under each value item */
.valueItem__rule{
  width: min(420px, 70%);
  height: 1px;
  background: rgba(0,0,0,.2);
  margin-top: 1.2rem;
}

/* Spacing tuning to resemble your screenshot */
.missionBlock{ padding: 10rem 0 6rem; }
#vision{ padding: 10rem 0; }
#value{ padding: 8rem 0 10rem; }
/* ===============================
   PHILOSOPHY SECTION
=============================== */
.philosophySection {
  background: url("../img/rainbowBg.png") center / cover no-repeat;
  text-align: center;
  padding: 20rem 2rem;
  color: #000;
}

.philosophySection__inner {
  width: min(960px, 90vw);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.philosophySection__title {
  font-family: "Noto Sans", sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  color: #9CC8E4;
  letter-spacing: 0.08em;
  margin-bottom: 8rem;
}

.philosophySection__text {
  font-family: "Noto Sans CJK JP", "Noto Sans", sans-serif;
  font-size: clamp(15px, 1.8vw, 18px);
  font-weight: 500;
  line-height: 2;
  text-align: left;
  margin: auto;
}

/* ===============================
   AISATSU SECTION (代表挨拶)
=============================== */
.aisatsuSection {
  padding: 10rem 2rem;
  color: #000;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.75) 10%, rgba(255, 255, 255, 0.35) 40%, rgba(255, 255, 255, 0.75) 100%), url(../img/BrightGeometricStars21.png) center / cover no-repeat;
}
.aisatsuSection__imageBlock::before {
    content: "";
    position: absolute;
    top: -30px;
    left: 30px;
    width: 100%;
    height: 100%;
    background: #CDE9EF;
    z-index: 1;
}
.aisatsuSection__inner {
  width: min(1040px, 90vw);
  margin: 0 auto;
}

.aisatsuSection__title {
  font-family: "Noto Sans", sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  color: #9CC8E4;
  letter-spacing: 0.08em;
  text-align: center;
  margin-bottom: 6rem;
}

.aisatsuSection__content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 5rem;
}

.aisatsuSection__textBlock {
  flex: 1;
  font-family: "Noto Sans CJK JP", "Noto Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
}

.aisatsuSection__sign {
  margin-top: 4rem;
  font-weight: 700;
  font-size: 22px;
  text-align: right;
}

.aisatsuSection__imageBlock {
  flex: 0 0 280px;
  position: relative;
}

.aisatsuSection__imageBlock img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  background: #CDE9EF;
  /* padding: 0.6rem; */
  position: relative;
  z-index: 22;
}
/* =========================
   RECRUIT: Top / Hero
========================= */
.recruitTop {
  background: url(../img/recruitPageBg.png) center top / cover no-repeat;
  padding: 6vw 0 5vw;
  position: relative;
  color: #000;
  display: flex;
  height: 50vw;
  flex-direction: column;
  justify-content: center;
}
.recruitTop__inner {
  width: min(1200px, 90vw);
  margin: 0 auto;
}
.recruitTop__head {
  display: flex;
  align-items: baseline;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
  flex-direction: column;
}
.recruitTop__title {
  font-size: 4rem;
  letter-spacing: 0.08em;
  color: #9CC8E4;
  font-weight: 700;
}
.recruitTop__subtitle {
  font-size: 1.4rem;
  color: #9CC8E4;
  font-weight: 700;
}
.recruitTop__copy {
  width: min(900px, 90vw);
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.recruitTop__lead {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.8;
  margin-bottom: 1.8rem;
}
.recruitTop__text {
  font-size: 1.6rem;
  line-height: 2;
}

/* =========================
   RECRUIT: CEO Message
========================= */
.recruitMessage {
  /* gradient band with geometric bg */
  background: url(../img/gradientBg.png) center / cover no-repeat;
  padding: 10vw 0;
  position: relative;
}
.recruitMessage__inner {
  width: min(1200px, 90vw);
  margin: 0 auto;
}
.recruitMessage__title {
  text-align: center;
  color: #9CC8E4;
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 15rem;
}
.recruitMessage__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5rem;
}
.recruitMessage__textBlock {
  flex: 1 1 55%;
  font-size: 1.6rem;
  line-height: 2;
  color: #000;
}
.recruitMessage__textBlock p:not(:last-child) {
  margin-bottom: 1.6rem;
}

.recruitMessage__imageBlock {
  position: relative;
  flex: 1 1 40%;
  max-width: 380px;
  margin: 0;
}
.recImgBox::before {
  /* light blue square behind the photo */
  content: "";
  position: absolute;
  inset: -80px -74px auto auto;
  width: 100%;
  height: 100%;
  background: #CDE9EF;
  z-index: 0;
}
.recruitMessage__imageBlock img {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  z-index: 1;
}
.recruitMessage__caption {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  color: #000;
  margin-top: 1.2rem;
  padding-top: 1vw;
}
/* =========================
   RECRUIT: Positions
========================= */
.recruitPositions {
  background: none;
  padding: 10vw 0 10vw;
  color: #000;
}
.recruitPositions__inner {
  width: min(1200px, 90vw);
  margin: 0 auto;
}
.recruitPositions__title {
  text-align: center;
  color: #9CC8E4;
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: .08em;
  margin-bottom: 10rem;
}

.recruitPositions__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.jobCard {
  display: block;
  /* height: 50vw; */
}
.jobCard__frame {
  border: 10px solid #ADD6EF;        /* outer frame color */
  padding: 3rem 3rem 2.5rem;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,.03);
  height: 45vw;
}
.jobCard__number {
  font-size: 3.2rem;
  font-weight: 800;
  color: #3B6EA5;                     /* deep blue number */
  letter-spacing: .04em;
  margin-bottom: .4rem;
}
.jobCard__name {
  font-size: 1.8rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 1.8rem;
  letter-spacing: .03em;
}

.jobCard__image {
  margin: 0 0 1.8rem;
}
.jobCard__image img {
  width: 50vw;
  display: block;
}

.jobCard__text p {
  font-size: 1.5rem;
  line-height: 1.9;
  color: #333;
}
.jobCard__text p + p {
  margin-top: 1rem;
}

/* =========================
   RECRUIT: Apply Information
   (geometric bg with soft white overlay)
========================= */
.recruitApplyInfo {
  position: relative;
  padding: 10vw 0;
  margin-top: -1.5vw;
  background: url(../img/BrightGeometricStars2.png) center / cover no-repeat;
}
.recruitApplyInfo__inner {
  width: min(1100px, 90vw);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.recruitApplyInfo__title {
  text-align: center;
  color: #9CC8E4;
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: .08em;
  margin-bottom: 7rem;
}

/* rows */
/* unified pill rows */
.applyRows {
  display: grid;
  gap: 50px;
  width: min(960px, 90vw);
  margin: 0 auto;
}

.applyRow {
  display: grid;
  grid-template-columns: 28px 160px 1fr;     /* icon | label | content */
  align-items: center;
  gap: 18px;
  background: #fff;
  border: 1px solid #E5E9ED;
  border-radius: 4px;
  padding: 18px 22px;
  box-shadow: 0 2px 10px rgba(0,0,0,.03);
}

.applyRow__icon {
  width: 0; height: 0;
  border-left: 16px solid #9CC8E4;          /* small blue triangle */
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  justify-self: center;
}

.applyRow__label {
  font-size: 1.6rem;
  font-weight: 700;
  color: #22323D;
  letter-spacing: .02em;
}

.applyRow__content {
  font-size: 1.6rem;
  color: #222;
  font-weight: 700;
  line-height: 1.9;
}
#recruitPositions > div > div > article:nth-child(2) > div{
      border: 10px solid #9CC8E4;
}
/* --- Section layout --- */
.contactPage {
  /* background: url(../img/COMPANY.png) #ffffff 50%50% / cover no-repeat; */
  padding: 6rem 0 8rem;
  color: #222;
  background: linear-gradient(rgba(255,255,255,0.7), rgba(255,255,255,0.7)),  url(../img/COMPANY.png) #ffffff 50% 50% / cover no-repeat;
}
.contactPage__inner {
  width: min(1100px, 92vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 320px 1fr; /* left info | right form */
  gap: 6rem;
}

/* --- Left column --- */
.contactInfo__title {
  font-size: 3.2rem;
  letter-spacing: .08em;
  color: #93C9EF;
  margin: 0;
}
.contactInfo__subtitle {
  margin-top: .3rem;
  color: #9CC8E4;
  font-weight: 700;
}
.contactInfo__note {
  margin: 3rem 0 1rem;
  line-height: 1.9;
}
.contactInfo__required {
  color: #d35b5b;
  font-size: 1.3rem;
  margin-bottom: 2rem;
}
.contactInfo__sns {
  display: flex;
  gap: 1.6rem;
  margin-top: 2rem;
}
.contactInfo__sns img {
  width: 44px; height: 44px; display: block;
}

/* --- Form --- */
.contactFormWrap { align-self: start; }
.contactForm { width: 100%; }

.formRow {margin-bottom: 2.6rem;border: none;color: black;font-weight: 600;line-height: 2;}
.formLabel {
  display: block;
  font-weight: 700;
  color: #93C9EF;
  margin-bottom: .6rem;
}
.req {
  color: #d35b5b;
  font-weight: 700;
  font-size: 1.2rem;
  vertical-align: middle;
}

.formInput,
.formTextarea {
  width: 100%;
  border: none;
  border: 2px solid #cfd9df;
  padding: 1.2rem 1rem;
  background: transparent;
  font-size: 1.6rem;
  outline: none;
}
.formInput:focus,
.formTextarea:focus {
  border-bottom-color: #9CC8E4;
}
.formInput.hasError,
.formTextarea.hasError {
  border-bottom-color: #d35b5b;
}

.formError {
  min-height: 1.4em;
  margin-top: .4rem;
  font-size: 1.3rem;
  color: #d35b5b;
}

/* radios */
.radioGroup {
  display: grid;
  gap: 1.2rem;
  padding-top: .4rem;
}
.radioItem {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: 1.6rem;
}
.radioItem input {
  width: 18px; height: 18px;
}

/* submit */
.formActions { margin-top: 3.6rem; }
.formSubmit {
  display: inline-block;
  padding: 1.2rem 3.6rem;
  border: 1px solid #b49a56;
  color: #103654;
  background: transparent;
  font-size: 1.8rem;
  letter-spacing: .06em;
  cursor: pointer;
}
.formSubmit:hover { opacity: .9; }
.imgcont img{
  margin-bottom: 6vw;
}

/* ===========================
   Vertical rail between steps
   =========================== */

/* 1) EDIT THESE THREE SELECTORS to match your markup */
.servicesFlowSteps { /* the whole section that contains the steps */
  position: relative;
}
.servicesFlowSteps { /* the element that wraps ALL steps (ul/div) */
  position: relative;
  /* --- rail geometry (tweak these 3 vars only) --- */
  --badge-size: 96px;           /* circle diameter */
  --rail-x: 120px;              /* x-position of the rail from the left edge of this wrapper */
  --rail-width: 6px;            /* rail thickness */
  --gap-to-circle: 8px;         /* tiny visual gap before touching the circle */
  padding-top: calc(var(--badge-size) / 2 + var(--gap-to-circle));
  padding-bottom: calc(var(--badge-size) / 2 + var(--gap-to-circle));
}

/* 2) The vertical rail itself */
.servicesFlowSteps::before {
  content: "";
  position: absolute;
  left: 0vw;
  top: 6vw;                      /* starts after the top padding set above */
  bottom: 9vw;                   /* ends before the bottom padding set above */
  width: 4px;
  background: #2a6b84;        /* rail color */
}

/* 3) Keep circles above the rail so it looks like the rail stops short */
#servicesFlow .flowBadge {     /* your circle element (img/div for STEP 1/2/3…) */
  position: relative;
  z-index: 1;
  width: var(--badge-size);
  height: var(--badge-size);
  border-radius: 50%;
  /* make sure its center sits on the rail: */
  left: calc(var(--rail-x) - var(--badge-size) / 2);
}

/* (Optional) if each step row needs a bit more separation from the rail */
#servicesFlow .flowItem {      /* each step row container */
  position: relative;
  padding-left: calc(var(--rail-x) + var(--badge-size) / 2 + 24px);
}
/* ===== Wantedly CTA ===== */
#recruitWantedly {
  position: relative;
  z-index: 1;
  padding: 6rem 0;
}

/* soft panel to separate from the busy bg */
#recruitWantedly::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.86) 0%, rgba(255,255,255,0.82) 100%);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-top: 1px solid rgba(16,54,84,0.06);
  border-bottom: 1px solid rgba(16,54,84,0.06);
  z-index: -1;
}

/* Section container */
.recruitCta {
  /* padding: 6rem 0 5rem; */           /* room to breathe */
  text-align: center;
  padding-top: 10vw;
  padding-bottom: 10vw;
}

/* Clickable area (the whole banner) */
.recruitCta__link {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: inherit;
  outline: none;
}

/* The banner itself (no rounded corners) */
.recruitCta__banner {
  display: block;
  width: min(1100px, 92vw);       /* responsive max size */
  height: auto;
  border-radius: 0;               /* <- sharp corners */
  box-shadow: 0 14px 28px rgba(16, 54, 84, 0.25);
  transition:
    transform .18s ease,
    box-shadow .18s ease,
    filter .18s ease;
  will-change: transform, box-shadow, filter;
}

/* Lift on hover */
.recruitCta__link:hover .recruitCta__banner {
  transform: translateY(-3px);
  box-shadow: 0 22px 46px rgba(16, 54, 84, 0.35);
  filter: saturate(1.04) brightness(1.02);
  cursor: pointer;
}

/* Press on active (physical button feel) */
.recruitCta__link:active .recruitCta__banner {
  transform: translateY(0); /* back down a bit */
  box-shadow: 0 10px 24px rgba(16, 54, 84, 0.25);
}

/* Keyboard focus ring */
.recruitCta__link:focus-visible {
  outline: 3px solid #9CC8E4;
  outline-offset: 6px;
}

/* Small label chip (optional; remove if you want the banner alone) */
.recruitCta__caption {
  position: absolute;
  left: 0rem;
  top: -5rem;
  background: rgb(16 54 84 / 51%);
  color: #fff;
  font-weight: 700;
  font-size: clamp(12px, 1.4vw, 20px);
  letter-spacing: .04em;
  padding: 1rem 2rem;
  line-height: 1;
  pointer-events: none;           /* banner stays clickable */
  user-select: none;
  z-index: 999;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  .recruitCta__banner { transition: none; }
  .recruitCta__link:hover .recruitCta__banner { transform: none; }
}
/* --- Reusable "lift on hover" button effect --- */
.businessCardButton,
.button,
.actNow__button,
.snsSupport__button,
.assessment__button {
  transition:
    transform .18s ease,
    box-shadow .18s ease,
    filter .18s ease;
  box-shadow: 0 10px 20px rgba(16, 54, 84, 0.18);
  will-change: transform, box-shadow, filter;
}

/* Hover: lift slightly + increase shadow + slightly brighten */
.businessCardButton:hover,
.button:hover,
.actNow__button:hover,
.snsSupport__button:hover,
.assessment__button:hover {
  filter: brightness(0.95);
transform: translateY(1px);
  box-shadow: 0 18px 32px rgba(16, 54, 84, 0.25);
  filter: brightness(1.05);
  cursor: pointer;
}

/* Press (click): return down softly */
.businessCardButton:active,
.button:active,
.actNow__button:active,
.snsSupport__button:active,
.assessment__button:active {
  transform: translateY(0);
  box-shadow: 0 10px 20px rgba(16, 54, 84, 0.18);
  filter: brightness(1);
}

/* Optional focus ring for keyboard users */
.businessCardButton:focus-visible,
.button:focus-visible,
.actNow__button:focus-visible,
.snsSupport__button:focus-visible,
.assessment__button:focus-visible {
  outline: 3px solid #9CC8E4;
  outline-offset: 4px;
}
/* ===== CONTACT PAGE (scoped) ===== */
#contactPage {
 background: no-repeat;
    background: url(../img/COMPANY.png) #ffffff 50%50% / cover repeat;
    padding-bottom: 10vw;
	    z-index: 1;
    position: relative;
}

.contactHero { padding: 48px 0 24px; background: #e7f1f7; }
.contactHeroInner {
  max-width: 1040px; margin: 0 auto; padding: 0 20px;
  display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: end;
}
.contactHead {}
.contactTitle { margin: 0; letter-spacing: .06em; font-size: clamp(32px,6vw,80px); }
.contactSubtitle { margin: 6px 0 12px; color: #6b7b88; }
.contactNote { margin: 0; color: #6b7b88; }
.contactReq { color: #c53737; }
.contactSocial a { display: inline-block; margin-left: 12px; }
.contactSocial img { width: 40px; height: 40px; display: block; }

.contactSection {padding: 24px 0 20px;width: 55vw;margin-top: -6vw;max-width: 100vw;overflow-x: hidden;}
.contactInner {max-width: 1040px;margin: 0 auto;padding: 0 20px;}

.contactForm {
  max-width: 60vw;
  width: 55vw;
  margin-left: 3vw;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.formRow label, .formRow legend {display: block;font-weight: 600;margin: 0 0 6px;color: #93C9EF;font-size: 16px;}
.radioCol {display: grid;gap: 10px;color: black;}
.agreeRow { margin-top: 8px; }
.agreeLabel { display: inline-flex; align-items: center; gap: 8px; }

.contactForm input[type="text"],
.contactForm input[type="email"],
.contactForm input[type="tel"],
.contactForm input[type="url"],
.contactForm textarea {
  width: 80%;
  border: none;
  border-bottom: 1px solid black;
  padding: 12px 14px;
  border-radius: 4px;
  background: none;
  font-size: 16px;
}
.contactForm textarea {min-height: 240px;resize: vertical;background: white;border: 1px solid #355d7d;margin-top: 2vw;}
.contactForm input:focus,
.contactForm textarea:focus { outline: none; border-color: #355D7D; box-shadow: 0 0 0 3px rgba(53,93,125,.15); }

.formActions { display: flex; flex-direction: column; gap: 8px; }
.btnPrimary {background: #355D7D;color: #fff;border: none;border-radius: 999px;padding: 12px 22px;font-weight: 700;cursor: pointer;margin: auto;text-align: center;width: 19vw;}
.btnPrimary[disabled] { opacity: .55; cursor: not-allowed; }
.smallNote { color: #6b7b88; font-size: 13px; }

.formAlert { min-height: 1em; }
.formAlert.ok { color: #176b42; }
.formAlert.err { color: #c53737; }

/* hide honeypot field but keep in DOM */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.newsArchive {
  position: relative;
  min-height: 100vh;
  padding: 10vh 0;
}

.newsArchive__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/COMPANY.png") center/cover no-repeat;
  opacity: 0.25;
  pointer-events: none;
}

.newsArchive__bg {
  position: relative;
}


.newsArchive__header {
  margin-bottom: 32px;
}

.newsArchive__title {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.newsArchive__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.newsArchive__itemTitle {
  font-size: 1.1rem;
}

.newsArchive {
  position: relative;
  min-height: 100vh;
  padding: 10vh 0;
}

.newsArchive__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/COMPANY.png") center/cover no-repeat;
  opacity: 0.25;
  pointer-events: none;
}

.newsArchive__bg {
  position: relative;
}

.newsArchive__inner {
    overflow-x: hidden;
  
}

.newsArchive__header {
  margin-bottom: 32px;
}

.newsArchive__title {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.newsArchive__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.newsArchive__itemTitle {
  font-size: 1.1rem;
}
/* ===== Single News ===== */

.newsSingle {
  min-height: 100vh;
}

/* full-width bg with image + overlay */
.newsSingle__bg {
  width: 100%;
  min-height: 100vh;
  padding: 10vh 15vw;
  background:
    rgba(255, 255, 255, 0.9)
    url("../img/BrightGeometricStars2.png") center/cover no-repeat;
}

.newsSingle__inner {
  max-width: 960px;
  margin: 0 auto;

  padding: 40px 50px 60px;

}

/* meta line */
.newsSingle__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 12px;
}

.newsSingle__date {
  color: #999;
}

.newsSingle__label {
  display: inline-block;
  padding: 4px 16px;
  border-radius: 999px;
  background: #60b4e6;
  color: #fff;
  font-size: 11px;
  letter-spacing: .1em;
}

/* title */
.newsSingle__title {
  font-size: 20px;
  line-height: 1.6;
  font-weight: 700;
  margin: 0 0 24px;
}

/* hero image */
.newsSingle__hero {
  margin: 0 0 32px;
}

.newsSingle__heroImg {
  width: 100%;
  display: block;
  border-radius: 2px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* body */
.newsSingle__body {
  font-size: 14px;
  line-height: 2;
  color: #333;
}

/* pager area */
.newsSingle__pager {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.newsSingle__pagerItem {
  font-size: 13px;
}

.newsSingle__pagerItem a {
  color: #555;
  text-decoration: none;
}

.newsSingle__pagerItem a:hover {
  text-decoration: underline;
}

/* big middle button */
.newsSingle__pagerItem--list a {
  display: inline-block;
  padding: 18px 120px;
  background: #d9bf6d;
  color: #fff;
  border-radius: 999px;
  font-size: 14px;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
}

.newsSingle__pagerItem--list a:hover {
  opacity: 0.9;
}


