@charset "UTF-8";
/*===== style.scss =====*/
/*===== 変数・mixin =====*/
/* =====_variables.scss =====*/
/* ===== Colors ===== */
/* ===== Typography ===== */
/* ===== Layout ===== */
/* ===== Breakpoints ===== */
/*===== style.scss =====*/
/*===== 変数・mixin =====*/
/*===== _mixin.scss =====*/
/* =====Media Queries===== */
/*===== スマホ用（〜767px）=====*/
/*===== PC用（768px〜） =====*/
/* =====Layout===== */
/*===== セクションの上下余白 =====*/
/*===== 汎用フレックスレイアウト =====*/
/* =====Typography / Text===== */
/*===== 1行の…（三点リーダー） =====*/
/*===== 複数行を指定行数でカット =====*/
/* =====Components===== */
/*===== ベースCSS =====*/
/*===== style.scss =====*/
/*===== 変数・mixin =====*/
/*===== _base.scss =====*/
/*===== ルート =====*/
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: #ffffff;
  background-color: #020824;
  line-height: 1.6;
}

/*===== ベース =====*/
img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

/*===== セクション見出し =====*/
.section-head {
  text-align: center;
  margin-bottom: 4rem;
}

.section-head__title {
  font-size: 8rem;
  font-weight: 700;
  letter-spacing: 0;
}

.section-head__subtitle {
  font-size: 2rem;
  margin-top: 0.8rem;
  font-weight: 900;
}

/*===== style.scss =====*/
/*===== 変数・mixin =====*/
/*===== _layout.scss =====*/
/*=====セクション共通レイアウト===== */
/*===== 全セクションの基本余白 =====*/
.hero,
.about,
.service,
.company,
.contact {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (max-width: 767px) {
  .hero,
  .about,
  .service,
  .company,
  .contact {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}

/*===== インナー幅（中央寄せ） =====*/
.hero__inner,
.about__inner,
.service__inner,
.company__inner,
.contact__inner {
  width: 100%;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

/*===== style.scss =====*/
/*===== 変数・mixin =====*/
/*===== Header =====*/
.header {
  width: 100%;
  height: 88px;
  background-color: transparent;
  color: #ffffff;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  transition: all .3s;
}
.header.fixed {
  position: fixed;
  /* background: rgba(2, 19, 93,.2); */
  background: linear-gradient(
    to bottom,
    rgba(2, 19, 93, 0.2) 0%,
    rgba(2, 19, 93, 0.2) 50%,
    rgba(2, 19, 93, 0) 100%
  );
  backdrop-filter: blur(4px);
}

/*=====内側レイアウト=====*/
.header__inner {
  width: 100%;
  max-width: none;
  margin: auto;
  padding: 2.4rem 4rem;
  display: flex;
  align-items: center;
  height: 100%;
}

/*=====ロゴ=====*/
.header__logo img {
  height: 1.659rem;
  width: auto;
  padding-left: 40px;
  transform: translateY(1px);
}

/*=====Main-nav=====*/
.header__nav {
  margin-left: auto;
}

.header__menu {
  display: flex;
  gap: 3.2rem;
}

.header__item a {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1.6rem;
  font-weight: bold;
  color: #ffffff;
  transition: opacity 0.3s;
}

.header__item a:hover {
  opacity: 0.7;
}

/* 共通：PCでは sp-nav を完全に消す */
.sp-nav {
  display: none;
}

/*=====言語切替（JP | EN）=====*/
.header__lang {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-left: 3.2rem;
  padding-right: 40px;
  padding-left: 6.4rem;
}

.header__lang-link {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1.6rem;
  font-weight: bold;
  color: #ffffff;
  text-decoration: none;
  padding: 0.2rem 0.4rem;
  border: 1px solid transparent;
}

.header__lang-link:hover {
  opacity: 0.7;
}

.header__lang-link.is-current {
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}

.header__lang-divider {
  color: #ffffff;
}

/* =====SP Header + SP Menu (〜767px)===== */
@media (max-width: 767px) {
  .header {
    height: 6.4rem;
  }
  .header__inner {
    padding: 1.6rem 1.6rem;
    justify-content: space-between;
  }
  .header__logo img {
    height: 1.36rem;
    padding-left: 0.4rem;
  }
  .header__nav,
  .header__lang {
    display: none;
  }
  /* =====ハンバーガー===== */
  .header__toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.4rem;
    width: 3.2rem;
    height: 3.2rem;
    padding: 0;
    border: none;
    background: none;
    margin-right: -2px;
  }
  .header__toggle-line {
    display: block;
    width: 2rem;
    height: 2px;
    margin: 0 auto;
    background-color: #ffffff;
  }
  /* =====SP full-screen menu (menu_sp)===== */
  .sp-nav {
    position: fixed;
    inset: 0;
    background-color: #06217d;
    display: block;
    opacity: 0;
    z-index: 200;
    transition: all .3s;
    pointer-events: none;
  }
  .sp-nav.is-open {
    opacity: 1;
    pointer-events: auto;
  }
  .sp-nav__inner {
    min-height: 100vh;
    padding: 1.6rem 2.4rem 3.2rem;
    display: flex;
    flex-direction: column;
  }
  .sp-nav__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .sp-nav__logo img {
    height: 1.7rem;
    width: auto;
  }
  .sp-nav__close {
    position: relative;
    width: 2.4rem;
    height: 2.4rem;
    border: none;
    background: none;
    padding: 0;
  }
  .sp-nav__close span {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 2px;
    background-color: #fff;
    transform-origin: center;
  }
  .sp-nav__close span:first-child {
    transform: translateY(-50%) rotate(45deg);
  }
  .sp-nav__close span:last-child {
    transform: translateY(-50%) rotate(-45deg);
  }
  /* =====中央メニュー===== */
  .sp-nav__menu {
    list-style: none;
    margin: 4.8rem 0 0;
    padding: 0;
    text-align: center;
  }
  .sp-nav__item + .sp-nav__item {
    margin-top: 2.4rem;
  }
  .sp-nav__item a {
    display: inline-block;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
  }
  /* =====下部 JP | EN===== */
  .sp-nav__item a:hover {
    opacity: 0.7;
  }
  .sp-nav__lang {
    margin-top: 4rem;
    margin-bottom: 4.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
    text-align: center;
  }
  .sp-nav__lang-link {
    font-family: "Roboto Condensed", sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
  }
  .sp-nav__lang-link.is-current {
    text-decoration: underline;
    text-underline-offset: 0.2rem;
  }
  .sp-nav__lang-divider {
    color: #fff;
  }
}
/*===== style.scss =====*/
/*===== 変数・mixin =====*/
/* =====Hero===== */
.hero {
  position: relative;
  width: 100%;
  padding-left: 0;
  height: 80rem;
  color: #ffffff;
  /* =====Hero背景(PC)===== */
  background-color: #0050c8;
  background-image: url("../img/hero-main-pc.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

/* =====内側のレイアウト：左にテキストを配置===== */
.hero__inner {
  height: 100%;
  display: flex;
  padding: 96px 10px 48px;
}

.hero__mainvisual {
  display: none;
}

/* =====Text===== */
.hero__content {
  position: absolute;
  left: 7%;
  max-width: 65.2rem;
}

.hero__title {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 6.4rem;
  line-height: 1.25;
  font-weight: 700;
  margin-bottom: 3.2rem;
  max-width: 65.2rem;
}

.hero__text {
  font-family: "Noto Sans JP";
  font-size: 2rem;
  line-height: 180%;
  letter-spacing: 0.02em;
  color: #ffffff;
  font-weight: bold;
}

/* =====SPレイアウト（〜767px）===== */
@media (max-width: 767px) {
  .hero {
    height: auto;
    min-height: 100vh;
    color: #ffffff;
    background-image: url("../img/hero-main-sp.png");
    background-size: cover;
    background-position: center top;
  }
  .hero__inner {
    display: block;
    padding-top: 96px;
    padding-bottom: 48px;
    padding-left: 0;
    padding-right: 0;
  }
  .hero__content {
    max-width: none;
    padding: 120px 5% 48px;
    position: inherit;
  }
  .hero__title {
    font-family: "Roboto Condensed";
    font-size: 3.4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 32px;
    width: 100%;
    max-width: none;
  }
  .hero__text {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.8;
    letter-spacing: 0.01em;
  }
}
/*===== style.scss =====*/
/*===== 変数・mixin =====*/
/* =====About===== */
.about {
  position: relative;
  color: #ffffff;
  background-image: linear-gradient(180deg, #002282 0%, #2C53A5 33%,#7896D2 100%);
  /* background-image: linear-gradient(180deg, #001A57 0%, #003185 40%, #1458B0 70%, #4F8ED7 100%), url("../img/about-bg-pc.png"); */
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  overflow: hidden;
  padding-top: 160px;
  padding-bottom: 200px;
}
@media (max-width: 767px) {
  .about {
    padding-top: 96px;
    padding-bottom: 96px;
   background-image: linear-gradient(180deg, #002282 0%, #2C53A5 33%,#7896D2 100%);
    
    /* background-image: linear-gradient(180deg, #001A57 0%, #003185 40%, #1458B0 70%, #4F8ED7 100%), url("../img/about-bg-sp.png"); */
    background-position: center top;
    background-size: cover;
  }
}
/* .about::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 260px;
  background: linear-gradient(180deg, rgba(0, 26, 87, 0) 0%, rgba(79, 142, 215, 0.12) 35%, rgba(79, 142, 215, 0.25) 65%, rgba(79, 142, 215, 0.35) 100%);
  pointer-events: none;
} */

/* =====Inner Layout===== */
.about__inner {
  width: 100%;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
  position: relative;
  z-index: 1;
  text-align: center;
}
@media (min-width: 768px) {
  .about__inner {
    max-width: 1080px;
    display: grid;
    grid-template-columns: 340px 1fr;
    grid-template-rows: auto auto;
    column-gap: 72px;
    row-gap: 120px;
    text-align: left;
    /* align-items: ; */
  }
}

/* =====Section Head===== */
.about .section-head {
  margin-bottom: 48px;
}
@media (min-width: 768px) {
  .about .section-head {
    grid-column: 1/-1;
    margin-bottom: 0;
    text-align: center;
  }
}

/* =====Logo===== */
.about__logo {
  margin: 0 auto 32px;
  padding: 0;
  background: none;
  border-radius: 0;
  box-shadow: none;
}
.about__logo img {
  display: block;
  width: 100%;
  height: auto;
}
@media (min-width: 768px) {
  .about__logo {
    margin: 0;
    justify-self: center;
  }
}

/* =====Content===== */
.about__content {
  max-width: 520px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .about__content {
    margin: 0;
  }
}

.about__heading {
  margin-bottom: 24px;
  font-size: 4rem;
  line-height: 1.6;
  font-weight: 700;
  display: flex;
  flex-direction: column;
}
.about__heading span{
  font-size: 2.8rem;
}
@media (max-width: 767px) {
  .about__heading {
    font-size: 3.2rem;
  }
  .about__heading span{
  font-size: 2.4rem;
}
}

.about__text {
  font-size: 1.6rem;
  color: #ffffff;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .about__text {
    font-size: 1.4rem;
    line-height: 1.9;
  }
}
.about__blocks{
  display: flex;
  flex-direction: column;
  margin-top: 56px;
}
.abou__block{
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: solid 1px #fff;
}
.abou__block h4{
  display: flex;
  align-items: center;
  font-size: 28px;
}
.abou__block h4 span{
    border: solid 1px #fff;
    font-size: 20px;
    padding: 1px 5px;
    margin-right: 1em;
}
.abou__block p{
  font-size: 16px;
  line-height: 1.6;
}
/* =====SP===== */
@media (max-width: 767px) {
  .about {
    padding-top: 96px;
    padding-bottom: 96px;
  }
  .section-head__title {
    font-size: 3.2rem;
    line-height: 1.2;
  }
  .section-head__subtitle {
    font-size: 1rem;
  }
  .about__inner {
    max-width: 360px;
    text-align: center;
  }
  .about .section-head {
    margin-bottom: 40px;
  }
  .about__logo {
    margin: 0 auto 32px;
  }
  .about__content {
    text-align: left;
  }
  .about__heading {
    font-size: 3.2rem;
    line-height: 1.8;
  }
  .about__text {
    font-size: 1.4rem;
    line-height: 1.9;
  }
  .abou__block h4{
    font-size: 20px;
  }
  .abou__block h4 span{
    margin-right: 0.4em;
  }
  .abou__block p {
    font-size: 14px;
  }
}
/*===== style.scss =====*/
/*===== 変数・mixin =====*/
/* =====Service===== */
.service {
  position: relative;
  width: 100%;
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #fff;
  overflow: hidden;
  /* background: url("../img/service-bg.jpg") no-repeat center top / cover; */
}
.service .service-bg{
  position: absolute;
  width: 100%;
  height: 0;
  padding-top: 64%;
  background: url(../img/service-bg.jpg) no-repeat center top / cover;
  position: absolute;
  top: 0;
  left: 0;
}
.service .service-bg::before{
  content: "";
  display: block;
  width: 100%;
  height: 33%;
  background: linear-gradient(180deg,#6A93D3 0%,rgba(150,120,150,0));
}
.service::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 520px;
  /* background-image: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.85) 72%, rgb(255, 255, 255) 100%), url("../img/service-bg.jpg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto, 100% auto; */
  z-index: 0;
}

/* .service::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: auto;
  top: 480px;
  height: 200px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  pointer-events: none;
  z-index: 0;
} */

.service__inner {
  width: 100%;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
  max-width: 1200px;
  position: relative;
  z-index: 1;
}

.service .section-head {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 16px;
  text-align: left;
  color: #06217D;
}

.service__inner .section-head__subtitle {
  position: relative;
}

.service .section-head__title {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 8rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.service .section-head__subtitle {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  color: #06217D;
  position: relative;
  top: -50px;
  margin-left: 4px;
}

.service__grid {
  max-width: 1040px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 140px;
  margin: 60px auto 64px;
}

.service__grid > .service-card:nth-child(2),
.service__grid > .service-card:nth-child(4),
.service__grid > .service-card:nth-child(6) {
  position: relative;
  top: 100px;
}

/* ===== service card ===== */
.service-card {
  position: relative;
  background: none;
  border-radius: 0;
  padding: 75px 24px 40px;
  overflow: hidden;
  width: 47%;
}
/* .service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
  pointer-events: none;
} */

.service-card__num {
  position: absolute;
  top: 24px;
  left: 24px;
  font-family: "Roboto Condensed";
  font-size: 12.2rem;
  font-weight: 500;
  font-style: italic;
  line-height: 1;
  letter-spacing: 0;
  color: #06217D;
}

.service-card__category {
  position: absolute;
  top: 85px;
  right: 24px;
  font-family: "Roboto Condensed";
  font-size: 1.8rem;
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0;
  color: #06217D;
  white-space: nowrap;
}

.service-card__category-text {
  position: absolute;
  top: 85px;
  right: 24px;
  font-family: "Roboto Condensed";
  font-size: 1.4rem;
  font-weight: 500;
  font-style: italic;
  color: #06217D;
  white-space: nowrap;
}

.service-card__img {
  margin-top: 40px;
  margin-bottom: 16px;
  overflow: hidden;
}

.service-card__img img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.service-card__title,
.service-card__list {
  width: 100%;
  box-sizing: border-box;
}

.service-card__title {
  font-size: 2.4rem;
  font-family: "Noto Sans JP";
  font-weight: 700;
  line-height: 1.3;
  color: #000;
  margin-top: 24px;
  margin-bottom: 12px;
  padding-right: 2.4rem;
}

.service-card__list {
  margin: 0;
  padding-left: 1.6rem;
  list-style: decimal;
  list-style-position: outside;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.7;
  color: #000;
}

.service-card__item + .service-card__item {
  margin-top: 4px;
}

/* ===== SDGs（PC） ===== */
.service__sdgs {
  margin: 0;
  padding: 64px 0 72px;
  background-image: url("../img/sdgs-bg-pc.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.service__sdgs-inner {
  max-width: 1040px;
  padding: 48px 80px 56px;
  margin: 0 auto;
  background: none;
}

.service__sdgs-caption {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 700;
  color: #06217D;
  margin: 0 0 32px;
}

.service__sdgs-image {
  display: block;
  width: 100%;
  height: auto;
}

/* ======SP（〜768px）===== */
@media (max-width: 768px) {
  .service {
    padding-top: 60px;
    padding-bottom: 24px;
  }
  .service::before {
    height: 380px;
    background-image: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.85) 70%, rgb(255, 255, 255) 100%), url("../img/service-bg-sp.png");
    background-repeat: no-repeat, no-repeat;
    background-position: center top, center top;
    background-size: 100% auto, 100% auto;
  }
  .service::after {
    top: 220px;
    height: 160px;
  }
  .service .section-head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .service .section-head__title {
    font-size: 4.8rem;
    margin: 0 auto;
  }
  .service .section-head__subtitle {
    font-size: 1.8rem;
    margin: 0 auto;
    top: 0;
  }
  .service__grid {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 32px;
    row-gap: 32px;
  }
  .service__grid > .service-card {
    margin: 0;
    padding: 0 16px 32px;
    top: 0;
    width: 100%;
  }
  .service__grid > .service-card:nth-child(2),
  .service__grid > .service-card:nth-child(4),
  .service__grid > .service-card:nth-child(6) {
    top: 0;
  }
  .service-card__num {
    font-size: 6.6rem;
    top: 8px;
    left: 8px;
  }
  .service-card__category {
    font-size: 1.2rem;
    top: 36px;
  }
  .service-card__category-text {
    font-size: 1.2rem;
    top: 36px;
    right: 1px;
  }
  .service-card__title {
    font-size: 1.6rem;
    padding-left: 0;
    margin-top: 12px;
    margin-bottom: 10px;
  }
  .service-card__list {
    font-size: 1.4rem;
    line-height: 1.7;
    padding-left: 16px;
  }
  .service-card__img img {
    width: 100%;
    height: auto;
    margin-top: 20px;
  }
  /* SDGs - SP */
  .service__sdgs {
    margin: 0;
    padding: 40px 0 48px;
    background-image: url("../img/sdgs-bg-sp.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
  }
  .service__sdgs-inner {
    max-width: 320px;
    margin: 0 auto;
    padding: 24px 16px 28px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.9);
  }
  .service__sdgs-caption {
    font-size: 1.4rem;
    margin: 0 0 20px;
    color: #06217D;
  }
  .service__sdgs-image {
    display: block;
    width: 100%;
    height: auto;
    /* ★ここでPC用からSP用画像に差し替え */
    content: url("../img/sdgs-sp.png");
  }
  .service__sdgs-image.-en {
    display: block;
    width: 100%;
    height: auto;
    /* ★ここでPC用からSP用画像に差し替え */
    content: url("../img/sdgs-en-sp.png");
  }
}
/*===== style.scss =====*/
/*===== 変数・mixin =====*/
/* =====Company===== */
.company {
  position: relative;
  width: 100%;
  background-color: #02135D;
  color: #ffffff;
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (max-width: 767px) {
  .company {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}

.company__inner {
  width: 100%;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
  display: flex;
  justify-content: flex-start;
  gap: 140px;
}
@media (max-width: 767px) {
  .company__inner {
    display: block;
    gap: 0;
  }
}

.company .section-head {
  width: 332px;
  flex-shrink: 0;
  text-align: left;
}
@media (max-width: 767px) {
  .company .section-head {
    width: 100%;
    margin-bottom: 32px;
  }
}

.company .section-head__title {
  font-size: 8rem;
  font-family: "Roboto Condensed";
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 16px;
}

.company .section-head__subtitle {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
  color: #ffffff;
}

.company__table {
  flex: 1 1 auto;
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.company__row {
  border-bottom: 3px solid #FFFFFF;
}

.company__head {
  width: 120px;
  padding: 22px 32px 22px 0;
  font-size: 1.4rem;
  line-height: 1.9;
  font-weight: 400;
  color: #ffffff;
  vertical-align: top;
  white-space: nowrap;
  text-align: left;
}

.company__data {
  padding: 22px 0;
  font-size: 1.4rem;
  font-family: "Noto Sans JP";
  font-weight: 400;
  color: #ffffff;
  line-height: 1.9;
  vertical-align: top;
}

.company__list {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 700;
  padding-left: 1.8rem;
  list-style-type: decimal;
}

.company__item {
  margin-bottom: 4px;
}

/* .company__row:last-child {
  border-bottom: none;
} */

/* =====company(SP)===== */
@media (max-width: 767px) {
  .company {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .company__inner {
    display: block;
    gap: 0;
  }
  .company .section-head {
    width: 100%;
    margin-bottom: 24px;
    text-align: left;
  }
  .company .section-head__title {
    font-family: "Roboto Condensed";
    font-size: 3.2rem;
    text-align: center;
    margin-bottom: 8px;
  }
  .company .section-head__subtitle {
    text-align: center;
  }
  .company__table {
    width: 100%;
  }
  .company__head {
    padding: 12px 16px 12px 0;
    width: 32%;
    font-weight: 400;
    font-size: 1.4rem;
    white-space: nowrap;
    line-height: 1.4;
    white-space: normal;
  }
  .company__data {
    padding: 12px 0;
    font-weight: 400;
    font-family: "Noto Sans JP";
    font-size: 1.2rem;
    line-height: 1.7;
  }
  .company__list {
    padding-left: 1.4rem;
    font-size: 1.2rem;
  }
}
/*===== style.scss =====*/
/*===== 変数・mixin =====*/
/* =====Contact===== */
.contact {
  position: relative;
  z-index: 1;
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  top: 0;
  background-image: url("../img/contact-bg-pc.png");
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  z-index: -1;
}

.contact,
.contact-form {
  background-color: #001b57;
  color: #ffffff;
  padding-top: 120px;
  padding-bottom: 260px;
}

.contact__form {
  position: relative;
  z-index: 2;
}

.contact__inner {
  width: 100%;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

/* =====タイトル===== */
.section-head {
  text-align: center;
  margin-bottom: 48px;
}

.section-head__title {
  font-size: 8rem;
}

.section-head__subtitle {
  font-size: 1.3rem;
  margin-top: 8px;
  opacity: 0.9;
}

/* =====Form===== */
.contact__form {
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 0;
  padding: 80px 80px 64px;
  display: flex;
  flex-direction: column;
}

.contact__row {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 40px;
}

.contact__label-wrap {
  width: 200px;
}
.contact__label-wrap label {
  font-size: 1.4rem;
  line-height: 1.4;
  color: #ffffff;
}

.contact__required {
  margin-left: 4px;
  font-size: 1.2rem;
  color: #ff4fa3;
}

.contact__input,
.contact__textarea {
  width: 100%;
  padding: 16px;
  background: #ffffff;
  border: 1px solid #062381;
  border-radius: 4px;
  font-size: 1.4rem;
  color: #000000;
}
.contact__input::placeholder,
.contact__textarea::placeholder {
  color: #888888;
}

.contact__input {
  height: 56px;
}

.contact__textarea {
  height: 200px;
  resize: vertical;
}

/* =====プライバシーポリシー===== */
.contact__policy-heading {
  margin: 32px auto 12px;
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
}

.contact__policy-box {
  margin: 0 auto;
}

.contact__policy {
  width: 100%;
  height: 320px;
  background: #ffffff;
  color: #1a1a1a;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 20px 24px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  overflow-y: auto;
  /* =====Firefox===== */
  scrollbar-width: thin;
  scrollbar-color: #062381 #e5e5e5;
}

/* =====Chrome / Edge / Safari===== */
.contact__policy::-webkit-scrollbar {
  width: 4px;
}

.contact__policy::-webkit-scrollbar-track {
  background-color: #062381;
  border-radius: 0;
}

.contact__policy-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.contact__policy p {
  font-size: 1.4rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.contact__policy-list {
  padding-left: 20px;
  margin-bottom: 24px;
}

.contact__policy-list li {
  margin-bottom: 12px;
  line-height: 1.7;
}

.contact__policy-contact a {
  color: #0050c8;
  text-decoration: underline;
}

.contact__agree-wrap {
  width: 100%;
  text-align: center;
  margin-top: 16px;
}

.contact__agree {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  background: transparent;
  border-radius: 0;
  font-size: 1.3rem;
  color: #ffffff;
}

.contact__agree input[type=checkbox] {
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 2px;
  border: 1px solid #ffffff;
  background: transparent;
  position: relative;
  cursor: pointer;
}

.contact__agree input[type=checkbox]:checked {
  background: #02135D;
  border-color: #02135D;
}

.contact__agree input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 6px;
  height: 12px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(40deg);
}

.wpcf7-form-control-wrap {
  width: 100%;
}

/* =====送信ボタン===== */
.contact__submit {
  display: block;
  width: 260px;
  padding: 16px 0;
  margin: 40px auto 0;
  background: #000000;
  color: #ffffff;
  border-radius: 0;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  transition: opacity 0.2s ease, transform 0.2s ease;
  border: 0;
  cursor: pointer;
  pointer-events: none;
  opacity: 0.5;
}
.contact__submit:hover {
  opacity: 0.85;
  transform: translateY(2px);
}
.contact__submit.is-active {
  pointer-events: auto;
  opacity: 1;
}

/* =====SP レイアウト（〜767px）===== */
@media (max-width: 767px) {
  .contact,
  .contact-form {
    padding-top: 80px;
    padding-bottom: 96px;
  }
  .section-head__title {
    font-size: 4rem;
  }
  .section-head__subtitle {
    font-size: 1.2rem;
  }
  .contact__form {
    width: 100%;
    height: auto;
    padding: 32px 16px 40px;
    background: #02135d;
  }
  .contact__row {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    margin-bottom: 24px;
  }
  .contact__label-wrap {
    width: 100%;
  }
  .contact__label-wrap label {
    font-size: 1.3rem;
    line-height: 1.5;
  }
  .contact__input,
  .contact__textarea {
    width: 100%;
    padding: 12px 14px;
    font-size: 1.3rem;
  }
  .contact__textarea {
    height: 180px;
  }
  .contact__policy-heading,
  .contact__policy-box {
    width: 100%;
  }
  .contact__policy-heading {
    margin: 24px auto 10px;
    font-size: 1.2rem;
  }
  .contact__policy {
    height: 240px;
    padding: 16px;
  }
  .contact__agree-wrap {
    margin-top: 12px;
  }
  .contact__agree {
    font-size: 1.2rem;
  }
  .contact__submit {
    width: 100%;
    max-width: 260px;
    margin: 32px auto 0;
    padding: 14px 0;
    font-size: 1.3rem;
  }
}
/*===== style.scss =====*/
/*===== 変数・mixin =====*/
/* ===== Footer ===== */
.footer {
  width: 100%;
  text-align: center;
  font-size: 1.2rem;
  color: #fff;
  /* background-color: #003067;
  background: linear-gradient(180deg, #02135D 0%, #051B78 50%, #0A288F 100%); */
  margin-top: -80px;
  position: relative;
  z-index: 2;
  padding: 24px 0 32px;
}
@media (max-width: 767px) {
  .footer {
    font-size: 1rem;
    padding-top: 24px;
    padding-bottom: 24px;
  }
}

/* ===== Animation ===== */
.fade-in {
  opacity: 0;
  -webkit-transition: opacity 1.5s ease-out 0.3s;
  transition: opacity 1.5s ease-out 0.3s;
}
.fade-in.active {
  opacity: 1;
}
@media (max-width: 767px) {
  .fade-in {
    -webkit-transition: opacity 1.2s ease-out 0.3s;
    transition: opacity 1.2s ease-out 0.3s;
  }
}