@charset "UTF-8";

/* ==================================================
  00. VARIABLES / RESET
================================================== */
:root {
  --main: #0c3b5f;
  --main-dark: #07283f;
  --accent: #d5a14a;
  --text: #1f2529;
  --sub: #6a737b;
  --bg: #f5f7f8;
  --white: #fff;
  --line: #dfe5e8;
  --font-ja: "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  --font-en: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: var(--font-ja);
  line-height: 1.8;
  background: var(--white);
}

body.is-menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font-family: inherit;
}

.pc-br {
  display: block;
}

.sp-br {
  display: none;
}

@media (max-width: 900px) {
  .pc-br {
    display: none;
  }

  .sp-br {
    display: block;
  }
}


/* ==================================================
  01. HEADER
================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 54px;
  color: #fff;
  transition: height .35s ease, background .35s ease, color .35s ease, box-shadow .35s ease;
}

.site-header.is-scrolled {
  height: 72px;
  color: var(--text);
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .08);
  backdrop-filter: blur(10px);
}

.header-logo {
  position: relative;
  z-index: 1002;
}

.header-logo a {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  padding: 14px;
  text-align: center;
}

.logo-main {
  display: block;
  font-family: var(--font-en);
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .12em;
  text-align: center;
}

.logo-sub {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .08em;
  text-align: center;
  opacity: .85;
}

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

.global-nav a {
  position: relative;
  display: block;
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: .12em;
  text-align: center;
}

.global-nav a span {
  display: block;
  margin-top: 6px;
  font-family: var(--font-ja);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .05em;
  opacity: .72;
}

.global-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -14px;
  width: 0;
  height: 2px;
  background: currentColor;
  transform: translateX(-50%);
  transition: width .3s ease;
}

.global-nav a:hover::after {
  width: 100%;
}

.menu-btn {
  display: none;
}

@media (max-width: 900px) {
  .site-header {
    height: 74px;
    padding: 0 20px;
  }

  .site-header.is-scrolled {
    height: 68px;
  }

  .header-logo a {
    min-width: 96px;
    padding: 10px;
  }

  .logo-main {
    font-size: 28px;
  }

  .logo-sub {
    margin-top: 6px;
    font-size: 10px;
  }

  .menu-btn {
    position: relative;
    z-index: 1002;
    display: block;
    width: 48px;
    height: 48px;
    padding: 0;
    border: none;
    color: inherit;
    background: rgba(255, 255, 255, .16);
    border-radius: 50%;
    cursor: pointer;
  }

  .site-header.is-scrolled .menu-btn {
    background: rgba(12, 59, 95, .08);
  }

  .menu-btn span {
    position: absolute;
    left: 14px;
    width: 20px;
    height: 2px;
    background: currentColor;
    transition: top .3s ease, transform .3s ease, opacity .3s ease;
  }

  .menu-btn span:nth-child(1) {
    top: 17px;
  }

  .menu-btn span:nth-child(2) {
    top: 24px;
  }

  .menu-btn span:nth-child(3) {
    top: 31px;
  }

  body.is-menu-open .menu-btn span:nth-child(1) {
    top: 24px;
    transform: rotate(45deg);
  }

  body.is-menu-open .menu-btn span:nth-child(2) {
    opacity: 0;
  }

  body.is-menu-open .menu-btn span:nth-child(3) {
    top: 24px;
    transform: rotate(-45deg);
  }

  .global-nav {
    position: fixed;
    inset: 0;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgba(7, 40, 63, .96);
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s ease, visibility .35s ease;
  }

  body.is-menu-open .global-nav {
    opacity: 1;
    visibility: visible;
  }

  .global-nav ul {
    display: block;
    width: 100%;
    padding: 0 36px;
  }

  .global-nav li + li {
    margin-top: 28px;
  }

  .global-nav a {
    font-size: 22px;
    text-align: left;
  }

  .global-nav a span {
    margin-top: 8px;
    font-size: 12px;
  }

  .global-nav a::after {
    display: none;
  }
}


/* ==================================================
  02. FV
================================================== */
.fv {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #111;
}

.fv-picture {
  display: block;
  width: 100%;
}

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

.fv-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .68) 0%, rgba(0, 0, 0, .36) 52%, rgba(0, 0, 0, .16) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, .1) 0%, rgba(0, 0, 0, .35) 100%);
}

.fv-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 980px;
  padding: 120px 8vw 90px;
}

.fv-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 30px;
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(34px);
}

.fv-label::before {
  content: "";
  width: 58px;
  height: 1px;
  background: #fff;
}

.fv-title {
  margin: 0;
  font-size: clamp(56px, 6vw, 96px);
  font-weight: 700;
  line-height: 1.24;
  letter-spacing: .04em;
  opacity: 0;
  transform: translateY(34px);
}

.fv-title span {
  display: block;
  white-space: nowrap;
}

.fv-text {
  margin: 34px 0 0;
  font-size: clamp(15px, 1.45vw, 18px);
  line-height: 2.1;
  letter-spacing: .08em;
  opacity: 0;
  transform: translateY(34px);
}

body.is-loaded .fv-label {
  animation: fvFadeUp .9s cubic-bezier(.22, 1, .36, 1) .25s forwards;
}

body.is-loaded .fv-title {
  animation: fvFadeUp 1s cubic-bezier(.22, 1, .36, 1) .48s forwards;
}

body.is-loaded .fv-text {
  animation: fvFadeUp 1s cubic-bezier(.22, 1, .36, 1) .72s forwards;
}

@keyframes fvFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.scroll-sign {
  position: absolute;
  right: 48px;
  bottom: 40px;
  z-index: 2;
  height: 120px;
  display: flex;
  justify-content: center;
  color: #fff;
}

.scroll-sign span {
  writing-mode: vertical-rl;
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
}

.scroll-sign::after {
  content: "";
  position: absolute;
  bottom: -38px;
  left: 50%;
  width: 1px;
  height: 80px;
  background: rgba(255, 255, 255, .45);
}

.scroll-sign::before {
  content: "";
  position: absolute;
  bottom: 26px;
  left: 50%;
  z-index: 1;
  width: 1px;
  height: 42px;
  background: #fff;
  animation: scrollLine 1.8s ease-in-out infinite;
}

@keyframes scrollLine {
  0% {
    transform: translateY(-26px);
    opacity: 0;
  }

  35% {
    opacity: 1;
  }

  100% {
    transform: translateY(44px);
    opacity: 0;
  }
}

@media (max-width: 900px) {
  .fv-content {
    padding: 92px 24px 80px;
  }

  .fv-label {
    gap: 12px;
    margin-bottom: 22px;
    font-size: 11px;
  }

  .fv-label::before {
    width: 36px;
  }

  .fv-title {
    font-size: clamp(38px, 9vw, 56px);
    line-height: 1.32;
  }

  .fv-title span {
    white-space: nowrap;
  }

  .fv-text {
    margin-top: 24px;
    font-size: 14px;
    line-height: 2;
  }

  .scroll-sign {
    right: 22px;
    bottom: 28px;
  }
}

@media (max-width: 480px) {
  .fv-title {
    font-size: clamp(30px, 9vw, 42px);
    line-height: 1.34;
  }

  .fv-text {
    font-size: 13px;
  }
}


/* ==================================================
  03. COMMON SECTION
================================================== */
.section {
  position: relative;
  padding: 120px 0;
}

.section-inner {
  width: min(1120px, calc(100% - 80px));
  margin: 0 auto;
}

.section-heading {
  margin-bottom: 56px;
}

.section-heading.center {
  text-align: center;
}

.section-en {
  margin: 0 0 12px;
  color: var(--accent);
  font-family: var(--font-en);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: .08em;
}

.heading-line {
  display: block;
  width: 74px;
  height: 1px;
  margin-bottom: 34px;
  background: var(--text);
}

@media (max-width: 900px) {
  .section {
    padding: 82px 0;
  }

  .section-inner {
    width: min(100% - 40px, 640px);
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .section-en {
    margin-bottom: 8px;
    font-size: 13px;
  }

  .section-heading h2 {
    font-size: 30px;
  }
}

@media (max-width: 480px) {
  .section-inner {
    width: calc(100% - 32px);
  }

  .section-heading h2 {
    font-size: 28px;
  }
}


/* ==================================================
  04. ABOUT
================================================== */
.about {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(12, 59, 95, .06) 1px, transparent 1px) 0 0 / 25% 100%,
    var(--white);
  min-height: 560px;
  padding: 0;
  display: flex;
  align-items: center;
}

.about-marquee {
  position: absolute;
  top: 78px;
  left: 0;
  z-index: 1;
  width: 100%;
  overflow: hidden;
  pointer-events: none;
}

.about-marquee__track {
  display: flex;
  width: max-content;
  animation: aboutMarquee 32s linear infinite;
}

.about-marquee__track span {
  padding-right: 90px;
  color: rgba(12, 59, 95, .10);
  font-family: var(--font-en);
  font-size: clamp(92px, 10vw, 150px);
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  -webkit-text-stroke: 0;
}

@keyframes aboutMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-25%);
  }
}

.about-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 28% 1fr;
  gap: 90px;
  align-items: start;
  padding-top: 110px;
}

.about .section-heading {
  margin: 0;
}

.about .section-heading h2 {
  font-size: 30px;
  letter-spacing: .06em;
}

.about-content {
  display: block;
  padding-top: 10px;
}

.about-text {
  max-width: 740px;
}

.about-text p {
  margin: 0;
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
  line-height: 2.2;
  letter-spacing: .04em;
}

.about-text p + p {
  margin-top: 18px;
}

@media (max-width: 900px) {
  .about {
    min-height: auto;
    padding: 110px 0 82px;
    display: block;
    background:
      linear-gradient(90deg, rgba(12, 59, 95, .06) 1px, transparent 1px) 0 0 / 50% 100%,
      var(--white);
  }

  .about-marquee {
    top: 38px;
  }

  .about-marquee__track span {
    padding-right: 46px;
    color: rgba(12, 59, 95, .10);
    font-size: 58px;
    -webkit-text-stroke: 0;
  }

  .about-inner {
    display: block;
    padding-top: 0;
  }

  .about .section-heading {
    margin-bottom: 34px;
  }

  .about .section-heading h2 {
    font-size: 28px;
  }

  .heading-line {
    width: 58px;
    margin-bottom: 24px;
  }

  .about-content {
    padding-top: 0;
  }

  .about-text {
    max-width: none;
  }

  .about-text p {
    font-size: 14px;
    line-height: 2.15;
  }
}

@media (max-width: 480px) {
  .about-marquee__track span {
    font-size: 50px;
  }

  .about .section-heading h2 {
    font-size: 26px;
  }
}


/* ==================================================
  05. BUSINESS
================================================== */
.business {
  --content-width: min(1120px, calc(100vw - 80px));
  --content-left: calc((100vw - var(--content-width)) / 2);
  --bg-left: max(32px, calc(var(--content-left) - 110px));
  position: relative;
  overflow: hidden;
  background: #fff;
  padding: 0 0 120px;
}

.business__bg {
  position: relative;
  overflow: hidden;
  margin-left: var(--bg-left);
  background: var(--bg);
  padding: 112px 0 260px;
}

.business__head {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100vw - var(--content-left) - 80px));
  margin-left: calc(var(--content-left) - var(--bg-left));
}

.business__line {
  display: block;
  width: 74px;
  height: 1px;
  margin-bottom: 34px;
  background: var(--text);
}

.business__en {
  margin: 0 0 12px;
  color: var(--accent);
  font-family: var(--font-en);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.business__title {
  margin: 0;
  color: var(--text);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: .06em;
}

.business__lead {
  margin: 46px 0 0;
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
  line-height: 2.1;
  letter-spacing: .04em;
}

.business__cards {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: calc(100vw - var(--content-left));
  margin-top: -160px;
  margin-left: var(--content-left);
}

.business-card {
  position: relative;
  display: block;
  height: 520px;
  overflow: hidden;
  color: #fff;
  background: #000;
}

.business-card + .business-card {
  border-left: 1px solid rgba(255, 255, 255, .32);
}

.business-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.01);
  transition: transform .75s cubic-bezier(.22, 1, .36, 1);
}

.business-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, .02) 0%,
    rgba(0, 0, 0, .18) 48%,
    rgba(0, 0, 0, .68) 100%
  );
}

.business-card:hover img {
  transform: scale(1.08);
}

.business-card__text {
  position: absolute;
  right: 28px;
  bottom: 30px;
  left: 28px;
  z-index: 2;
}

.business-card__text h3 {
  margin: 0;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: .05em;
}

@media (max-width: 900px) {
  .business {
    --content-left: 34px;
    --bg-left: 18px;
    padding: 0 0 82px;
  }

  .business__bg {
    margin-left: var(--bg-left);
    background: var(--bg);
    padding: 82px 0 150px;
  }

  .business__head {
    width: calc(100vw - var(--content-left) - 16px);
    margin-left: calc(var(--content-left) - var(--bg-left));
  }

  .business__line {
    width: 58px;
    margin-bottom: 24px;
  }

  .business__en {
    margin-bottom: 8px;
    font-size: 13px;
  }

  .business__title {
    font-size: 28px;
  }

  .business__lead {
    margin-top: 30px;
    font-size: 14px;
    line-height: 2;
  }

  .business__cards {
    grid-template-columns: 1fr;
    width: calc(100vw - var(--content-left));
    margin-top: -72px;
    margin-left: var(--content-left);
  }

  .business-card {
    height: 380px;
  }

  .business-card + .business-card {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, .32);
  }

  .business-card__text {
    right: 22px;
    bottom: 24px;
    left: 22px;
  }

  .business-card__text h3 {
    font-size: 20px;
  }
}


/* ==================================================
  06. COMPANY
================================================== */
.company {
  background: #fff;
}

.company-inner {
  display: grid;
  grid-template-columns: 30% 1fr;
  gap: 76px;
  align-items: start;
}

.company-box {
  border-top: 1px solid var(--line);
}

.company-box dl {
  margin: 0;
}

.company-box dl > div {
  display: grid;
  grid-template-columns: 190px 1fr;
  border-bottom: 1px solid var(--line);
}

.company-box dt,
.company-box dd {
  margin: 0;
  padding: 25px 0;
  font-size: 15px;
  letter-spacing: .04em;
}

.company-box dt {
  color: var(--main);
  font-weight: 700;
}

.company-box dd {
  color: var(--sub);
}

.company .section-heading h2 {
  font-size: 30px;
  letter-spacing: .06em;
}

@media (max-width: 900px) {
  .company-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .company-box dl > div {
    display: block;
    padding: 22px 0;
  }

  .company-box dt,
  .company-box dd {
    padding: 0;
    font-size: 14px;
  }

  .company-box dt {
    margin-bottom: 8px;
  }

  .company .section-heading h2 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .company .section-heading h2 {
    font-size: 26px;
  }
}


/* ==================================================
  07. CONTACT
================================================== */
.contact {
  color: #fff;
  background:
    linear-gradient(rgba(7, 40, 63, .9), rgba(7, 40, 63, .9)),
    url("../images/fv02.jpg") center / cover no-repeat;
}

.contact .section-en {
  color: var(--accent);
}

.contact-lead {
  margin: -22px 0 48px;
  text-align: center;
  font-size: 15px;
  letter-spacing: .06em;
}

.contact-form {
  width: min(760px, 100%);
  margin: 0 auto;
  padding: 48px;
  color: var(--text);
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 22px 60px rgba(0, 0, 0, .16);
}

.form-row {
  margin-bottom: 24px;
}

.form-row label {
  display: block;
  margin-bottom: 10px;
  color: var(--main);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .06em;
}

.form-row input,
.form-row textarea {
  width: 100%;
  border: 1px solid #d8e0e4;
  border-radius: 0;
  padding: 15px 16px;
  font-size: 15px;
  background: #fff;
  outline: none;
  transition: border-color .3s ease, box-shadow .3s ease;
}

.form-row input {
  height: 54px;
}

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

.form-row input:focus,
.form-row textarea:focus {
  border-color: var(--main);
  box-shadow: 0 0 0 3px rgba(12, 59, 95, .12);
}

.form-submit {
  margin-top: 34px;
  text-align: center;
}

.form-submit button {
  position: relative;
  overflow: hidden;
  min-width: 220px;
  height: 58px;
  border: none;
  color: #fff;
  background: var(--main);
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .18em;
  cursor: pointer;
  transition: background .3s ease, transform .3s ease;
}

.form-submit button:hover {
  background: var(--main-dark);
  transform: translateY(-4px);
}

.contact .section-heading h2 {
  font-size: 30px;
  letter-spacing: .06em;
}

@media (max-width: 900px) {
  .contact-lead {
    margin-top: -12px;
    margin-bottom: 34px;
    font-size: 14px;
    line-height: 2;
  }

  .contact-form {
    padding: 30px 20px;
  }

  .form-row {
    margin-bottom: 22px;
  }

  .form-row input {
    height: 52px;
  }

  .form-row textarea {
    min-height: 160px;
  }

  .form-submit button {
    width: 100%;
  }

  .contact .section-heading h2 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .contact .section-heading h2 {
    font-size: 26px;
  }
}


/* ==================================================
  08. FOOTER
================================================== */
.site-footer {
  padding: 58px 40px 34px;
  color: #fff;
  text-align: center;
  background: var(--main-dark);
}

.footer-logo {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  margin-bottom: 28px;
  padding: 14px;
  text-align: center;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.footer-nav a {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  opacity: .82;
  transition: opacity .3s ease;
}

.footer-nav a:hover {
  opacity: 1;
}

.copyright {
  margin: 0;
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: .12em;
  opacity: .58;
}

@media (max-width: 900px) {
  .footer-logo {
    min-width: 96px;
    padding: 10px;
  }

  .footer-nav {
    flex-wrap: wrap;
    gap: 18px 24px;
  }
}


/* ==================================================
  09. ANIMATION
================================================== */
.js-fade {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .8s ease, transform .8s ease;
}

.js-fade.is-show {
  opacity: 1;
  transform: translateY(0);
}


/* ==================================================
  10. SERVICE DETAIL
================================================== */
.service-fv {
  position: relative;
  height: 68svh;
  min-height: 560px;
  overflow: hidden;
  color: #fff;
  background: #111;
}

.service-fv__bg {
  position: absolute;
  inset: 0;
}

.service-fv__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-fv__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, .46) 0%,
      rgba(0, 0, 0, .20) 52%,
      rgba(0, 0, 0, .06) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, .08) 0%,
      rgba(0, 0, 0, .18) 100%
    );
}

.service-fv__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(1120px, calc(100% - 80px));
  margin: 0 auto;
  padding-top: 80px;
}

.service-fv__en {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 28px;
  color: #fff;
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .22em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .24);
}

.service-fv__en::before {
  content: "";
  width: 58px;
  height: 1px;
  background: #fff;
}

.service-fv h1 {
  margin: 0;
  font-size: clamp(44px, 5vw, 76px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: .06em;
  text-shadow: 0 3px 14px rgba(0, 0, 0, .26);
}

.service-fv__content > p:last-child {
  margin: 34px 0 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 2.1;
  letter-spacing: .06em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .24);
}


/* ==================================================
  SERVICE COMMON
================================================== */
.service-section {
  position: relative;
  padding: 120px 0;
}

.service-inner {
  width: min(1120px, calc(100% - 80px));
  margin: 0 auto;
}

.service-heading {
  margin-bottom: 52px;
}

.service-heading.center {
  text-align: center;
}

.service-heading h2 {
  margin: 0;
  color: var(--text);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: .06em;
}


/* ==================================================
  SERVICE INTRO
================================================== */
.service-intro {
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(12, 59, 95, .06) 1px, transparent 1px) 0 0 / 25% 100%,
    #fff;
  padding-bottom: 70px;
}

.service-intro .service-inner {
  display: grid;
  grid-template-columns: 32% 1fr;
  gap: 80px;
  align-items: start;
}

.service-intro__text p {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 2.25;
  letter-spacing: .04em;
}

.service-intro__text p + p {
  margin-top: 20px;
}


/* ==================================================
  SERVICE VISUAL
================================================== */
.service-visual {
  width: min(1120px, calc(100% - 80px));
  margin: -35px auto 80px;
}

.service-visual--single {
  overflow: hidden;
  background: #ddd;
}

.service-visual--single img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center center;
}


/* ==================================================
  SERVICE POINT
================================================== */
.service-point {
  background: var(--bg);
  padding-top: 120px;
}

.service-point__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.service-point__item {
  min-height: 300px;
  padding: 38px 32px;
  background: #fff;
}

.service-point__item span {
  display: block;
  margin-bottom: 22px;
  color: var(--accent);
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .16em;
}

.service-point__item h3 {
  margin: 0 0 18px;
  color: var(--main);
  font-size: 21px;
  line-height: 1.55;
  letter-spacing: .05em;
}

.service-point__item p {
  margin: 0;
  color: var(--sub);
  font-size: 14px;
  line-height: 2;
  letter-spacing: .03em;
}


/* ==================================================
  SERVICE MESSAGE
================================================== */
.service-message {
  padding: 120px 0;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(7, 40, 63, .98) 0%, rgba(12, 59, 95, .94) 55%, rgba(7, 40, 63, .98) 100%);
}

.service-message__inner {
  width: min(860px, calc(100% - 80px));
  margin: 0 auto;
  text-align: center;
}

.service-message h2 {
  margin: 0;
  font-size: 30px;
  line-height: 1.7;
  letter-spacing: .06em;
}

.service-message__inner > p:last-child {
  margin: 34px 0 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 2.25;
  letter-spacing: .04em;
  text-align: left;
}


/* ==================================================
  SERVICE OTHER
================================================== */
.service-other {
  background: #fff;
}

.service-other__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.service-other__item {
  position: relative;
  display: block;
  height: 340px;
  overflow: hidden;
  color: #fff;
  background: #000;
}

.service-other__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .75s cubic-bezier(.22, 1, .36, 1);
}

.service-other__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .05) 0%, rgba(0, 0, 0, .66) 100%);
}

.service-other__item:hover img {
  transform: scale(1.08);
}

.service-other__item div {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 28px;
  z-index: 2;
}

.service-other__item p {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, .8);
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .16em;
}

.service-other__item h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.45;
  letter-spacing: .05em;
}


/* ==================================================
  SERVICE CTA
================================================== */
.service-cta {
  padding: 100px 0;
  text-align: center;
  background: var(--bg);
}

.service-cta__inner {
  width: min(900px, calc(100% - 80px));
  margin: 0 auto;
}

.service-cta h2 {
  margin: 0;
  font-size: 30px;
  line-height: 1.7;
  letter-spacing: .06em;
}

.service-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  height: 58px;
  margin-top: 38px;
  color: #fff;
  background: var(--main);
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .16em;
  transition: background .3s ease, transform .3s ease;
}

.service-cta__btn:hover {
  background: var(--main-dark);
  transform: translateY(-4px);
}


/* ==================================================
  SERVICE DETAIL SP
================================================== */
@media (max-width: 900px) {
  .service-fv {
    height: 62svh;
    min-height: 520px;
  }

  .service-fv__content {
    width: calc(100% - 40px);
    padding-top: 70px;
  }

  .service-fv__en {
    gap: 12px;
    margin-bottom: 22px;
    font-size: 11px;
  }

  .service-fv__en::before {
    width: 36px;
  }

  .service-fv h1 {
    font-size: 38px;
  }

  .service-fv__content > p:last-child {
    margin-top: 26px;
    font-size: 14px;
    line-height: 2;
  }

  .service-section {
    padding: 82px 0;
  }

  .service-inner {
    width: calc(100% - 40px);
  }

  .service-heading {
    margin-bottom: 36px;
  }

  .service-heading h2,
  .service-message h2 {
    font-size: 28px;
  }

  .service-cta h2 {
    font-size: 18px;
  }

  .service-intro {
    background:
      linear-gradient(90deg, rgba(12, 59, 95, .06) 1px, transparent 1px) 0 0 / 50% 100%,
      #fff;
    padding-bottom: 48px;
  }

  .service-intro .service-inner {
    display: block;
  }

  .service-intro__text {
    margin-top: 34px;
  }

  .service-intro__text p {
    font-size: 14px;
    line-height: 2.15;
  }

  .service-visual {
    width: calc(100% - 40px);
    margin: -24px auto 56px;
  }

  .service-visual--single img {
    height: 320px;
  }

  .service-point {
    padding-top: 82px;
  }

  .service-point__list {
    grid-template-columns: 1fr;
  }

  .service-point__item {
    min-height: auto;
    padding: 30px 24px;
  }

  .service-message {
    padding: 82px 0;
  }

  .service-message__inner {
    width: calc(100% - 40px);
  }

  .service-message__inner > p:last-child {
    font-size: 14px;
    line-height: 2.1;
  }

  .service-other__list {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .service-other__item {
    height: 280px;
  }

  .service-other__item div {
    left: 24px;
    right: 24px;
    bottom: 24px;
  }

  .service-other__item h3 {
    font-size: 21px;
  }

  .service-cta {
    padding: 82px 0;
  }

  .service-cta__inner {
    width: calc(100% - 40px);
  }

  .service-cta__btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .service-fv h1 {
    font-size: 32px;
  }

  .service-heading h2,
  .service-message h2 {
    font-size: 26px;
  }

  .service-cta h2 {
    font-size: 18px;
  }

  .service-visual {
    width: calc(100% - 32px);
    margin: -20px auto 48px;
  }

  .service-visual--single img {
    height: 260px;
  }
}



/* ==================================================
  11. THANKS PAGE
================================================== */
.thanks-page {
  min-height: 100vh;
  padding: 80px 0;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(12, 59, 95, .06) 1px, transparent 1px) 0 0 / 25% 100%,
    var(--white);
}

.thanks-page__inner {
  width: min(900px, calc(100% - 80px));
  margin: 0 auto;
  text-align: center;
}

.thanks-page h1 {
  margin: 0;
  color: var(--text);
  font-size: 34px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: .08em;
}

.thanks-page__text {
  margin: 28px 0 0;
  color: var(--sub);
  font-size: 15px;
  font-weight: 700;
  line-height: 2.1;
  letter-spacing: .04em;
}

.thanks-page__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  height: 58px;
  margin-top: 44px;
  color: #fff;
  background: var(--main);
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .16em;
  transition: background .3s ease, transform .3s ease;
}

.thanks-page__btn:hover {
  background: var(--main-dark);
  transform: translateY(-4px);
}

@media (max-width: 900px) {
  .thanks-page {
    padding: 64px 0;
    background:
      linear-gradient(90deg, rgba(12, 59, 95, .06) 1px, transparent 1px) 0 0 / 50% 100%,
      var(--white);
  }

  .thanks-page__inner {
    width: calc(100% - 40px);
  }

  .thanks-page h1 {
    font-size: 28px;
  }

  .thanks-page__text {
    font-size: 14px;
    line-height: 2;
  }

  .thanks-page__btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .thanks-page__inner {
    width: calc(100% - 32px);
  }

  .thanks-page h1 {
    font-size: 26px;
  }
}