@charset "UTF-8";
:root {
  --color-main-red: #cc1637;
  --color-main-red-dark: #a11e31;
  --color-main-blue: #283776;
  --color-border: #dadada;
  --color-base: #ffffff;
  --box-shadow: 0 0 32px -16px rgba(1,1,1,.16);
}

/* ******************************
 *
 * RESPONSIVE MIXIN
 *
 * ****************************** */
/* ******************************
 *
 * FONT SETTINGS
 *
 * ****************************** */
@font-face {
  font-family: "tanpearl";
  src: url("../fonts/TAN-PEARL.otf") format("opentype"), url("../fonts/TAN-PEARL.ttf") format("truetype"), url("../fonts/TAN-PEARL.woff") format("woff"), url("../fonts/TAN-PEARL.woff2") format("woff2");
}
/* ******************************
 *
 * FONT SETTINGS
 *
 * ****************************** */
/* ******************************
 *
 * MIXIN
 *
 * ****************************** */
/* ******************************
 *
 * KEYFRAMES
 *
 * ****************************** */
@-webkit-keyframes loopCl {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes loopCl {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@-webkit-keyframes loopRotate {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes loopRotate {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
:root {
  --primary: #0f172a;
  --accent: #b4975a;
  --text-main: #1e293b;
  --text-sub: #475569;
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  --border: rgba(15, 23, 42, 0.08);
  --radius-lg: 16px;
  --radius-md: 12px;
  --max-width: 1100px;
  --content-width: 68ch;
  --shadow: 0 4px 20px -5px rgba(15, 23, 42, 0.05);
  --shadow-hover: 0 20px 40px -15px rgba(15, 23, 42, 0.1);
  --font-mincho: "shippori-mincho", serif;
  --font-gothic: "montserrat", "ryo-gothic-plusn", sans-serif;
}

/* --- Reset & Base --- */
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-gothic);
  font-weight: 400;
  font-style: normal;
  scroll-behavior: smooth;
}

body {
  line-height: 1.8;
  color: var(--text-main);
  background-color: var(--bg-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.header-inner {
  max-width: unset !important;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 320px) {
  .header-inner {
    padding: 0 5vw !important;
  }
}
@media screen and (min-width: 600px) {
  .header-inner {
    padding: 0 2.5vw !important;
  }
}

.logo img {
  display: block;
}
@media screen and (min-width: 320px) {
  .logo img {
    width: 84%;
    height: auto;
  }
}
@media screen and (min-width: 600px) {
  .logo img {
    width: auto;
    height: 64px;
  }
}

.section-title {
  margin-bottom: 60px;
}
.section-title h2 {
  font-weight: 900;
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
}
@media screen and (min-width: 320px) {
  .section-title h2 {
    font-size: 1em;
  }
}
@media screen and (min-width: 600px) {
  .section-title h2 {
    font-size: 1.6em;
  }
}
.section-title .en {
  display: block;
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.14;
}
@media screen and (min-width: 320px) {
  .section-title .en {
    font-size: 2.8em;
  }
}
@media screen and (min-width: 600px) {
  .section-title .en {
    font-size: 4.8em;
  }
}

.hero {
  position: relative;
  height: 100svh;
  width: 100vw;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  border-bottom: none;
}
@media screen and (min-width: 320px) {
  .hero {
    background-position: 65% center;
  }
}
@media screen and (min-width: 600px) {
  .hero {
    background-position: center;
  }
}

.hero__mv img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-mask-image: -webkit-gradient(linear, left top, left bottom, from(rgb(0, 0, 0)), color-stop(70%, rgb(0, 0, 0)), to(rgba(0, 0, 0, 0)));
  -webkit-mask-image: linear-gradient(to bottom, rgb(0, 0, 0) 0%, rgb(0, 0, 0) 70%, rgba(0, 0, 0, 0) 100%);
          mask-image: -webkit-gradient(linear, left top, left bottom, from(rgb(0, 0, 0)), color-stop(70%, rgb(0, 0, 0)), to(rgba(0, 0, 0, 0)));
          mask-image: linear-gradient(to bottom, rgb(0, 0, 0) 0%, rgb(0, 0, 0) 70%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
}
@media screen and (min-width: 320px) {
  .hero__mv img {
    -o-object-position: bottom;
       object-position: bottom;
  }
}
@media screen and (min-width: 600px) {
  .hero__mv img {
    -o-object-position: top;
       object-position: top;
  }
}

.hero .container {
  position: relative;
  z-index: 1;
  margin: 0;
  width: 100%;
  max-width: none;
  padding-left: 2.5vw; /* Adjust for left margin */
  position: relative;
  z-index: 5;
}
.hero .container .btn-outline {
  background: white;
  border-color: white;
}

.hero-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  margin: 0 auto;
}
.hero-content .hero-en {
  opacity: 0;
  font-family: var(--font-mincho);
  font-weight: 900;
  line-height: 0.88;
  color: white;
  letter-spacing: -0.1em;
}
@media screen and (min-width: 320px) {
  .hero-content .hero-en {
    font-size: 5rem;
    margin-top: 10.2rem;
  }
}
@media screen and (min-width: 600px) {
  .hero-content .hero-en {
    font-size: 12rem;
    margin-top: 7.2rem;
  }
}
.hero-content h1 {
  position: relative;
  z-index: 1;
  font-family: var(--font-mincho);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
@media screen and (min-width: 320px) {
  .hero-content h1 {
    margin-top: -16.2rem;
    font-size: 1.28rem;
  }
}
@media screen and (min-width: 600px) {
  .hero-content h1 {
    margin-top: -18.2rem;
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 320px) {
  .hero-content h1 br {
    display: block;
  }
}
@media screen and (min-width: 600px) {
  .hero-content h1 br {
    display: none;
  }
}
.hero-content p {
  font-size: 13px;
  line-height: 1.48;
  opacity: 0.8;
}
@media screen and (min-width: 320px) {
  .hero-content p {
    margin-bottom: 10rem;
  }
}
@media screen and (min-width: 600px) {
  .hero-content p {
    margin-bottom: 10rem;
  }
}

/* 事業内容 */
/* 幅を広めにして“余白入りすぎ”を避ける */
.wrap-wide {
  margin: 0 auto;
  padding: 0 5vw;
}

@media (max-width: 720px) {
  .wrap-wide {
    padding: 0 5vw;
  }
}
@media screen and (min-width: 320px) {
  .sBizW {
    margin-top: 3rem;
  }
}
@media screen and (min-width: 600px) {
  .sBizW {
    margin-top: 0;
  }
}

/* セクションヘッダー（流用前提） */
.sHeadW {
  margin-bottom: 22px;
}

.sHeadW__eyebrow {
  font-size: 12px;
  letter-spacing: 0.22em;
  font-weight: 700;
  color: rgba(15, 27, 46, 0.55);
}

.sHeadW__title {
  margin-top: 6px;
  font-size: clamp(22px, 2.1vw, 34px);
  line-height: 1.12;
  letter-spacing: 0.02em;
  color: #0f1b2e;
}

.sHeadW__rule {
  height: 1px;
  margin-top: 14px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(15, 27, 46, 0.38)), color-stop(60%, rgba(15, 27, 46, 0.1)), to(rgba(15, 27, 46, 0)));
  background: linear-gradient(90deg, rgba(15, 27, 46, 0.38), rgba(15, 27, 46, 0.1) 60%, rgba(15, 27, 46, 0));
}

/* 事業内容：白背景の“図面っぽさ” */
.sBizW {
  padding: 78px 0 92px;
  background: #fff;
  border-top: 1px solid rgba(15, 27, 46, 0.1);
}

@media (max-width: 720px) {
  .sBizW {
    padding: 56px 0 74px;
  }
}
.sBizW__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 28px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

@media (max-width: 980px) {
  .sBizW__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}
.sBizW__text {
  font-size: 1.2rem;
  line-height: 2;
  color: rgba(15, 27, 46, 0.8);
}

.sBizW__note {
  margin-top: 10px;
  font-weight: 800;
  color: rgba(15, 27, 46, 0.72);
  border-left: 2px solid rgba(180, 155, 95, 0.65);
  padding-left: 12px;
}

.sBizW__pills {
  margin-top: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
}

.pillW {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(15, 27, 46, 0.14);
  color: rgba(15, 27, 46, 0.72);
  font-weight: 800;
  font-size: 12px;
  background: rgba(255, 255, 255, 0.9);
}

/* 右の線画：テンプレ感を消す主役 */
.sBizW__diagram {
  inset: 0 0 auto auto;
}
@media screen and (min-width: 320px) {
  .sBizW__diagram {
    position: relative;
    width: 100%;
  }
}
@media screen and (min-width: 600px) {
  .sBizW__diagram {
    position: absolute;
    width: 50%;
  }
}

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

.sBizW__caption {
  text-align: center;
  margin-top: -4.6rem;
  font-size: 12.5px;
  line-height: 1.7;
  color: rgba(15, 27, 46, 0.62);
}

/* SVG styles */
.d-line {
  fill: none;
  stroke: rgba(15, 27, 46, 0.28);
  stroke-width: 1;
}

.d-dash {
  fill: none;
  stroke: rgba(180, 155, 95, 0.55);
  stroke-width: 1.2;
  stroke-dasharray: 4 6;
}

.d-big {
  font-size: 54px;
  letter-spacing: 0.12em;
  fill: rgba(15, 27, 46, 0.78);
  font-weight: 700;
}

.d-mid {
  font-size: 18px;
  letter-spacing: 0.2em;
  fill: rgba(15, 27, 46, 0.55);
  font-weight: 700;
}

.d-cap {
  font-size: 12px;
  letter-spacing: 0.26em;
  fill: rgba(15, 27, 46, 0.55);
  font-weight: 700;
}

/* 下のカード：影なし、線で渋く */
.sBizW__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media screen and (min-width: 320px) {
  .sBizW__cards {
    margin-top: 2rem;
  }
}
@media screen and (min-width: 600px) {
  .sBizW__cards {
    margin-top: 10rem;
  }
}

@media (max-width: 900px) {
  .sBizW__cards {
    grid-template-columns: 1fr;
  }
}
.bCardW {
  border-radius: 8px;
  background: rgba(15, 27, 46, 0.78);
  color: white;
  /* border: 1px solid rgba(15,27,46,.12);
  background: #fff; */
  padding: 16px 14px;
}

.bCardW__no {
  display: inline-block;
  padding: 6px 8px;
  font-size: 12px;
  letter-spacing: 0.18em;
  font-weight: 800;
  background: white;
  color: rgba(15, 27, 46, 0.78);
  border-radius: 4px;
}

.bCardW__title {
  margin-top: 6px;
  font-size: 18px;
  letter-spacing: 0.02em;
}

.bCardW__desc {
  margin-top: 6px;
  font-size: 13.5px;
  line-height: 1.75;
  opacity: 0.72;
}

/* =========================
  ASSETS（白背景 + 線 + 渋い）
========================= */
.sAssets {
  padding: 78px 0 92px;
  background: radial-gradient(900px 520px at 12% 18%, rgba(180, 155, 95, 0.06), transparent 62%), radial-gradient(900px 520px at 88% 80%, rgba(15, 27, 46, 0.05), transparent 62%), #fff;
  border-top: 1px solid rgba(15, 27, 46, 0.1);
}

@media (max-width: 720px) {
  .sAssets {
    padding: 56px 0 74px;
  }
}
/* Grid */
.aGrid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}
.aGrid__wrapper {
  display: grid;
}
@media screen and (min-width: 320px) {
  .aGrid__wrapper {
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
    padding: 0 2.5vw 32px;
  }
}
@media screen and (min-width: 600px) {
  .aGrid__wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px 24px;
    padding: 0 2.5vw 32px;
  }
}

.aCard {
  width: calc(33% - 6px);
  background: #fff;
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 320px) {
  .aCard {
    width: auto;
    border-radius: 8px;
  }
}
@media screen and (min-width: 600px) {
  .aCard {
    width: auto;
    border-radius: 16px;
  }
}

.aCard::after {
  /* うっすら“紙の気配” */
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(420px 220px at 30% 18%, rgba(15, 27, 46, 0.05), transparent 60%), radial-gradient(360px 220px at 80% 90%, rgba(180, 155, 95, 0.06), transparent 62%);
  pointer-events: none;
  opacity: 0.55;
}

.aCard__ph {
  position: relative;
}
@media screen and (min-width: 320px) {
  .aCard__ph {
    aspect-ratio: 4/3;
  }
}
@media screen and (min-width: 600px) {
  .aCard__ph {
    aspect-ratio: 5/3;
  }
}

.aCard__ph img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  -webkit-filter: saturate(0.92) contrast(1.02);
          filter: saturate(0.92) contrast(1.02);
}

.aCard__phFallback {
  position: absolute;
  inset: auto 10px 10px 10px;
  font-size: 12px;
  color: rgba(15, 27, 46, 0.55);
  border: 1px solid rgba(15, 27, 46, 0.12);
  background: rgba(255, 255, 255, 0.72);
  border-radius: 12px;
  padding: 8px 10px;
}

.aCard__tag {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: rgba(15, 27, 46, 0.7);
  border: 1px solid rgba(15, 27, 46, 0.14);
  background: rgba(255, 255, 255, 0.74);
  border-radius: 999px;
  padding: 6px 10px;
  backdrop-filter: blur(6px);
}

.aCard__bd {
  position: relative;
  padding: 14px 14px 16px;
  z-index: 1;
}

.aCard__title {
  letter-spacing: 0.02em;
  color: #0f1b2e;
  line-height: 1.25;
}
@media screen and (min-width: 320px) {
  .aCard__title {
    font-size: 1.2rem;
    margin-top: 12px;
  }
}
@media screen and (min-width: 600px) {
  .aCard__title {
    font-size: 1.6rem;
    margin-top: 24px;
  }
}

@media screen and (min-width: 320px) {
  .aCard__dl {
    font-size: 1rem;
  }
}
@media screen and (min-width: 600px) {
  .aCard__dl {
    font-size: 1.2rem;
  }
}
.aCard__dl dt {
  font-weight: 700;
  margin: 4px 0 12px;
}
.aCard__dl dd {
  font-size: 80%;
}

.aCard__desc {
  margin-top: 6px;
  font-size: 13.5px;
  line-height: 1.7;
  color: rgba(15, 27, 46, 0.68);
}

/* Note */
.aNote {
  margin-top: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 12px 14px;
}

.aNote__mark {
  font-weight: 900;
  color: rgba(15, 27, 46, 0.6);
}

.aNote__text {
  font-weight: 700;
  color: rgba(15, 27, 46, 0.62);
  line-height: 1.7;
  margin: 0;
}

.sFeatures {
  padding: 78px 0 92px;
  background: radial-gradient(900px 520px at 18% 10%, rgba(180, 155, 95, 0.05), transparent 62%), radial-gradient(900px 520px at 82% 90%, rgba(15, 27, 46, 0.04), transparent 60%), #fff;
  border-top: 1px solid rgba(15, 27, 46, 0.1);
}
@media (max-width: 720px) {
  .sFeatures {
    padding: 56px 0 74px;
  }
}

.featureList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 22px;
}

.featureBlock {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 20px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  padding: 18px;
  border-radius: 20px;
  background: white;
  -webkit-box-shadow: 0 0 32px -12px rgba(0, 0, 0, 0.16);
          box-shadow: 0 0 32px -12px rgba(0, 0, 0, 0.16);
  overflow: hidden;
}
@media (max-width: 900px) {
  .featureBlock {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 14px;
  }
}
.featureBlock--reverse .featureBlock__media {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media (max-width: 900px) {
  .featureBlock--reverse .featureBlock__media {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.featureBlock--reverse .featureBlock__body {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media (max-width: 900px) {
  .featureBlock--reverse .featureBlock__body {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.featureBlock__media {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16/10;
}
.featureBlock__media img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.featureBlock__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 6px 6px 6px 2px;
}
@media (max-width: 900px) {
  .featureBlock__body {
    padding: 2px 2px 4px;
  }
}

.featureBlock__no {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: rgba(15, 27, 46, 0.45);
}

.featureBlock__title {
  margin-top: 8px;
  font-size: clamp(20px, 1.9vw, 30px);
  line-height: 1.25;
  letter-spacing: 0.02em;
  color: #0f1b2e;
}

.featureBlock__text {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.9;
  color: rgba(15, 27, 46, 0.72);
  max-width: 42em;
}

.sCompliance {
  padding: 78px 0 92px;
  background: radial-gradient(900px 520px at 15% 15%, rgba(180, 155, 95, 0.05), transparent 62%), radial-gradient(900px 520px at 85% 85%, rgba(15, 27, 46, 0.05), transparent 62%), #fff;
  border-top: 1px solid rgba(15, 27, 46, 0.1);
}
@media (max-width: 720px) {
  .sCompliance {
    padding: 56px 0 74px;
  }
}

.sCompliance__grid {
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  gap: 20px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media (max-width: 900px) {
  .sCompliance__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

.sCompliance__media {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(15, 27, 46, 0.12);
  background: linear-gradient(135deg, rgba(15, 27, 46, 0.06), rgba(180, 155, 95, 0.08));
  aspect-ratio: 16/10;
}
.sCompliance__media img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.sCompliance__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 8px 2px;
}

.sCompliance__lead {
  font-size: 15px;
  line-height: 1.95;
}
@media screen and (min-width: 320px) {
  .sCompliance__lead {
    padding-right: 0%;
  }
}
@media screen and (min-width: 600px) {
  .sCompliance__lead {
    padding-right: 20%;
  }
}

.lawList {
  margin-top: 18px;
  display: grid;
}
@media screen and (min-width: 320px) {
  .lawList {
    gap: 16px;
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (min-width: 600px) {
  .lawList {
    gap: 16px;
    grid-template-columns: repeat(2, 1fr);
  }
}

.lawList__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: white;
}
@media screen and (min-width: 320px) {
  .lawList__item {
    height: 10em;
    padding: 24px;
    border-radius: 12px;
  }
}
@media screen and (min-width: 600px) {
  .lawList__item {
    height: 16em;
    padding: 32px;
    border-radius: 24px;
  }
}

.lawList__mark {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  font-weight: 800;
  color: white;
  background: var(--primary);
}
@media screen and (min-width: 320px) {
  .lawList__mark {
    width: 2em;
    height: 2em;
    font-size: 0.8em;
  }
}
@media screen and (min-width: 600px) {
  .lawList__mark {
    width: 2.4em;
    height: 2.4em;
    font-size: 0.8em;
  }
}

.lawList__text {
  line-height: 1.75;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.24;
}
@media screen and (min-width: 320px) {
  .lawList__text {
    font-size: 1.2em;
    margin-top: 1em;
  }
}
@media screen and (min-width: 600px) {
  .lawList__text {
    font-size: 1.4em;
    margin-top: 1em;
  }
}

.sCompliance__note {
  margin-top: 16px;
  padding: 16px 18px;
  border: 1px dashed rgba(15, 27, 46, 0.18);
  border-radius: 16px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.96)), to(rgba(248, 248, 246, 0.94)));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 248, 246, 0.94));
}
@media (max-width: 720px) {
  .sCompliance__note {
    padding: 14px 14px;
  }
}

.sCompliance__noteHead {
  margin-bottom: 8px;
}

.sCompliance__noteLabel {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: rgba(15, 27, 46, 0.58);
}

.sCompliance__noteText {
  font-size: 14px;
  line-height: 1.9;
  color: rgba(15, 27, 46, 0.74);
}

.profile__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}
@media screen and (min-width: 320px) {
  .profile__company {
    width: 100%;
  }
}
@media screen and (min-width: 600px) {
  .profile__company {
    width: 50%;
  }
}
@media screen and (min-width: 320px) {
  .profile__map {
    width: 100%;
    margin-top: 24px;
  }
}
@media screen and (min-width: 600px) {
  .profile__map {
    width: 47.5%;
    margin-top: 0;
  }
}
.profile__map iframe {
  display: block;
}
@media screen and (min-width: 320px) {
  .profile__map iframe {
    height: 20em;
  }
}
@media screen and (min-width: 600px) {
  .profile__map iframe {
    height: 30em;
  }
}

#features .wrap-wide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 320px) {
  #features .titlearea {
    width: 100%;
  }
}
@media screen and (min-width: 600px) {
  #features .titlearea {
    width: 40%;
  }
}
#features .section-title {
  position: sticky;
  top: 10em;
}
@media screen and (min-width: 320px) {
  #features .featureList {
    width: 100%;
  }
}
@media screen and (min-width: 600px) {
  #features .featureList {
    width: 55%;
  }
}

.business__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 320px) {
  .business__headTitle {
    width: 100%;
  }
}
@media screen and (min-width: 600px) {
  .business__headTitle {
    width: 40%;
  }
}
@media screen and (min-width: 320px) {
  .business__headCopy {
    width: 100%;
  }
}
@media screen and (min-width: 600px) {
  .business__headCopy {
    width: 50%;
  }
}
.business__headCopy h3 {
  font-weight: 800;
}
@media screen and (min-width: 320px) {
  .business__headCopy h3 {
    font-size: 1.5em;
    margin: 8px 0 16px;
    line-height: 1.64;
  }
}
@media screen and (min-width: 600px) {
  .business__headCopy h3 {
    font-size: 2.4em;
    margin: 8px 0 16px;
    line-height: unset;
  }
}
@media screen and (min-width: 320px) {
  .business__headCopy h3 .sp {
    display: block;
  }
}
@media screen and (min-width: 600px) {
  .business__headCopy h3 .sp {
    display: none;
  }
}
@media screen and (min-width: 320px) {
  .business__headCopy p {
    font-size: 0.9em;
  }
}
@media screen and (min-width: 600px) {
  .business__headCopy p {
    font-size: 1em;
  }
}

.business__list {
  position: relative;
  color: white;
}
@media screen and (min-width: 320px) {
  .business__list {
    width: calc(100% + 5vw);
    left: -2.5vw;
    margin-top: 24px;
  }
}
@media screen and (min-width: 600px) {
  .business__list {
    width: calc(100% + 5vw);
    left: -2.5vw;
    margin-top: 2.4em;
  }
}
.business__listBg {
  position: absolute;
  inset: 0;
}
.business__listBg img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 320px) {
  .business__listBg img {
    border-radius: 16px;
  }
}
@media screen and (min-width: 600px) {
  .business__listBg img {
    border-radius: 32px;
  }
}
.business__listWrapper {
  position: relative;
  z-index: 1;
  mix-blend-mode: difference;
}
@media screen and (min-width: 320px) {
  .business__listWrapper {
    padding: 32px 2.5vw;
  }
}
@media screen and (min-width: 600px) {
  .business__listWrapper {
    padding: 64px 2.5vw 32px;
  }
}
.business__list ul {
  display: grid;
}
@media screen and (min-width: 320px) {
  .business__list ul {
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
  }
}
@media screen and (min-width: 600px) {
  .business__list ul {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}
.business__list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-top: solid 1px rgba(255, 255, 255, 0.64);
}
@media screen and (min-width: 320px) {
  .business__list li {
    padding: 16px 0 0;
  }
}
@media screen and (min-width: 600px) {
  .business__list li {
    padding: 16px 0 4em;
  }
}
@media screen and (min-width: 320px) {
  .business__list .num {
    width: 20%;
    font-size: 0.8em;
  }
}
@media screen and (min-width: 600px) {
  .business__list .num {
    width: 15%;
    font-size: 1em;
  }
}
.business__list .title {
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 320px) {
  .business__list .title {
    width: 80%;
    font-size: 1.4em;
  }
}
@media screen and (min-width: 600px) {
  .business__list .title {
    width: 35%;
    font-size: 2em;
  }
}
.business__list .desc {
  width: 100%;
  opacity: 0.72;
}
@media screen and (min-width: 320px) {
  .business__list .desc {
    font-size: 1em;
    padding: 16px 0 0 20%;
  }
}
@media screen and (min-width: 600px) {
  .business__list .desc {
    font-size: 1.2em;
    padding: 24px 0 0 4rem;
  }
}

.compliance__inner {
  position: relative;
  color: white;
  margin: 0 auto;
}
@media screen and (min-width: 320px) {
  .compliance__inner {
    width: 95%;
  }
}
@media screen and (min-width: 600px) {
  .compliance__inner {
    width: 95%;
  }
}
.compliance__bg {
  position: absolute;
  inset: 0;
}
.compliance__bg img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 320px) {
  .compliance__bg img {
    border-radius: 16px;
  }
}
@media screen and (min-width: 600px) {
  .compliance__bg img {
    border-radius: 32px;
  }
}
.compliance__main {
  position: relative;
  display: grid;
}
@media screen and (min-width: 320px) {
  .compliance__main {
    padding: 64px 2.5vw;
  }
}
@media screen and (min-width: 600px) {
  .compliance__main {
    padding: 96px 2.5vw;
  }
}
.compliance__body {
  display: grid;
}
@media screen and (min-width: 320px) {
  .compliance__body {
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
  }
}
@media screen and (min-width: 600px) {
  .compliance__body {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}/*# sourceMappingURL=style.css.map */