@charset "UTF-8";
/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

ul, li {
  list-style: none;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  outline: 0;
}

:root {
  --vw: 1vw;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #1a1a1a;
}
.logo:hover {
  opacity: 1;
}
.logo__mark {
  width: 108px;
  height: auto;
  color: #1a1a1a;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ffe100;
}
.header__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .header__inner {
    padding: 8px 18px;
  }
}

.gnav__list {
  display: flex;
  align-items: center;
  gap: 30px;
  font-family: "Dosis", sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 1px;
}
.gnav__list li:not(.gnav__cta) a {
  position: relative;
}
.gnav__list li:not(.gnav__cta) a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  width: 20px;
  height: 2px;
  border-radius: 4px;
  background: #1a1a1a;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}
.gnav__list li:not(.gnav__cta) a:hover {
  opacity: 1;
}
.gnav__list li:not(.gnav__cta) a:hover::after {
  transform: translateX(-50%) scaleX(1);
}
.gnav__cta a {
  display: inline-block;
  padding: 9px 20px;
  background: linear-gradient(to top, #ffffff 50%, #1a1a1a 50%);
  background-size: 100% 200%;
  background-position: top;
  color: #ffffff;
  border-radius: 40px;
  font-size: 14px;
  transition: background-position 0.4s cubic-bezier(0.4, 0, 0.2, 1), color 0.4s ease;
}
.gnav__cta a:hover {
  opacity: 1;
  background-position: bottom;
  color: #1a1a1a;
}

.hamburger {
  display: none;
  position: relative;
  width: 34px;
  height: 23px;
  z-index: 120;
}
.hamburger span {
  position: absolute;
  right: 0;
  height: 3px;
  background: #1a1a1a;
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease;
}
.hamburger span:nth-child(1) {
  width: 100%;
  top: 0;
}
.hamburger span:nth-child(2) {
  width: 55%;
  top: 10px;
  right: auto;
  left: 0;
}
.hamburger span:nth-child(3) {
  width: 100%;
  top: 20px;
}
.hamburger.is-active span:nth-child(1) {
  top: 10px;
  transform: rotate(45deg);
}
.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.hamburger.is-active span:nth-child(3) {
  top: 10px;
  transform: rotate(-45deg);
}

@media screen and (max-width: 768px) {
  .hamburger {
    display: block;
  }
  .gnav {
    position: fixed;
    inset: 0;
    background: #ffe100;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s, visibility 0.35s;
    z-index: 110;
  }
  .gnav.is-active {
    opacity: 1;
    visibility: visible;
  }
  .gnav__list {
    flex-direction: column;
    gap: 26px;
    font-size: 22px;
  }
  .gnav__cta a {
    padding: 12px 28px;
    font-size: 18px;
  }
}
.footer {
  background: #ffe100;
  padding: 60px 24px 40px;
}
.footer__inner {
  max-width: 1240px;
  margin: 0 auto;
  text-align: center;
}
.footer .logo--footer {
  justify-content: center;
}
.footer .logo--footer .logo__mark {
  width: 178px;
}
@media screen and (max-width: 768px) {
  .footer .logo--footer .logo__mark {
    width: 30vw;
  }
}
.footer .logo--footer .logo__text {
  font-size: 38px;
}
.footer__nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 40px;
  margin-top: 34px;
  font-family: "Dosis", sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
}
.footer__sub {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 40px;
  margin-top: 26px;
  font-size: 14px;
}
.footer__sub a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer__sub .ic {
  width: 14px;
  height: 14px;
  stroke: #1a1a1a;
}
.footer__copy {
  margin-top: 30px;
  font-family: "Dosis", sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
}
@media screen and (max-width: 768px) {
  .footer {
    margin-top: 50px;
    padding: 44px 18px 30px;
  }
  .footer__nav ul {
    gap: 14px 24px;
    font-size: 14px;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
  background-color: #ffffff;
  color: #1a1a1a;
  font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
  font-weight: 500;
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
}
@media screen and (min-width: 768.01px) {
  body {
    min-width: 1200px;
  }
}
@media screen and (max-width: 768px) {
  body {
    overflow-x: hidden;
  }
}

main {
  flex: 1;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.65;
}

ul, li {
  list-style: none;
}

.sp-only {
  display: none;
}

@media screen and (max-width: 768px) {
  .sp-only {
    display: inline;
  }
}
.pc-only {
  display: inline;
}

@media screen and (max-width: 768px) {
  .pc-only {
    display: none;
  }
}
.l-inner {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}
@media screen and (max-width: 768px) {
  .l-inner {
    padding: 0 18px;
  }
}

.ic {
  width: 1em;
  height: 1em;
  fill: none;
  vertical-align: -0.12em;
  flex-shrink: 0;
}

.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-width: 230px;
  padding: 8px 32px;
  background: linear-gradient(to top, #1a1a1a 50%, #ffe100 50%);
  background-size: 100% 200%;
  background-position: top;
  background-origin: border-box;
  color: #1a1a1a;
  border: 2px solid #1a1a1a;
  border-radius: 50px;
  font-family: "Dosis", sans-serif;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 1px;
  transition: background-position 0.4s cubic-bezier(0.4, 0, 0.2, 1), color 0.4s ease;
}
@media screen and (max-width: 768px) {
  .btn-pill {
    min-width: 40vw;
    padding: 1vw 3vw;
  }
}
.btn-pill:hover {
  opacity: 1;
  background-position: bottom;
  color: #ffe100;
}

.btn-site {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  background: linear-gradient(to top, #1a1a1a 50%, #ffe100 50%);
  background-size: 100% 200%;
  background-position: top;
  background-origin: border-box;
  color: #1a1a1a;
  border: 1.5px solid #1a1a1a;
  border-radius: 50px;
  font-family: "Dosis", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  transition: background-position 0.4s cubic-bezier(0.4, 0, 0.2, 1), color 0.4s ease;
}
.btn-site .ic {
  width: 14px;
  height: 14px;
  stroke: currentColor;
}
.btn-site:hover {
  opacity: 1;
  background-position: bottom;
  color: #ffe100;
}

/* =========================================================
   セクション共通（縦ラベル + ブラケットの装飾）
   ========================================================= */
.section {
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  .section {
    padding: 16vw 0;
  }
}
.section__inner {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 36px;
  width: 1200px;
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .section__inner {
    gap: 14px;
    width: 100%;
    max-width: 100%;
  }
}
.section__line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  pointer-events: none;
  overflow: visible;
}
@media screen and (max-width: 768px) {
  .section__line {
    left: 18px;
    width: calc(100% - 36px);
  }
}
.section__line path {
  fill: none;
  stroke: #1a1a1a;
  stroke-miterlimit: 10;
  stroke-width: 2px;
}
.section__aside {
  position: relative;
  flex-shrink: 0;
  width: 130px;
  padding-top: 24px;
}
@media screen and (max-width: 768px) {
  .section__aside {
    width: 58px;
    padding-left: 0;
  }
}
.section__title {
  font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 5vw, 30px);
  letter-spacing: 2px;
  line-height: 1.2;
  white-space: nowrap;
  padding-left: 4px;
}
@media screen and (max-width: 768px) {
  .section__title {
    padding-left: 16px;
    font-size: 15px;
    font-size: 5vw;
  }
}
.section__label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 42px;
  margin-top: 22px;
}
@media screen and (max-width: 768px) {
  .section__label {
    width: 48px;
    gap: 3vw;
    margin-top: 3vw;
  }
}
.section__dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #ffe100;
}
@media screen and (max-width: 768px) {
  .section__dot {
    width: 10px;
    height: 10px;
  }
}
.section__en {
  writing-mode: vertical-rl;
  font-family: "Dosis", sans-serif;
  font-weight: 300;
  font-size: clamp(24px, 5vw, 48px);
  letter-spacing: 3px;
  white-space: nowrap;
}
.section__body {
  flex: 1;
  min-width: 0;
  margin-top: 100px;
}
.section__body.news {
  max-width: 716px;
  margin: 100px auto 0;
}
.section__body.corp {
  max-width: 900px;
  padding: 56px 60px;
  background: #ffffff;
}
@media screen and (max-width: 768px) {
  .section__body.corp {
    padding: 32px 24px;
  }
}
.section__body.access {
  max-width: 900px;
  background-image: url("../img/sec5-bg.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  padding: 20px;
}
@media screen and (max-width: 768px) {
  .section__body.access {
    background-image: url("../img/sec5-bg-sp.png");
  }
}
.section__body.contact {
  max-width: 680px;
  margin: 100px auto 0;
  background-image: url("../img/sec6-bg.png");
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .section__body.contact {
    background-image: url("../img/sec6-bg-sp.png");
  }
}
.section__body.privacy {
  max-width: 900px;
  padding: 56px 60px;
  background: #ffffff;
}
@media screen and (max-width: 768px) {
  .section__body.privacy {
    padding: 32px 24px;
  }
}

.section--solution,
#corporate,
#contact,
#privacy {
  background-image: url("../img/bg.png");
  background-repeat: repeat;
  background-size: 12px 12px;
}

#privacy .section__title {
  line-height: 1.45;
}
@media screen and (max-width: 768px) {
  #privacy .section__title {
    font-size: 4.2vw;
  }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  --hero-t: 1;
  position: relative;
  padding: 28px 24px 10px;
}
@media screen and (min-width: 768.01px) {
  .hero {
    min-width: 1200px;
  }
}
@media screen and (max-width: 768px) {
  .hero {
    padding: 18px 16px 0;
  }
}
.hero__panel {
  position: relative;
  box-sizing: border-box;
  max-width: 1320px;
  margin: 0 auto;
  background: #ffe100;
  border-radius: 40px;
  overflow: hidden;
  min-height: 650px;
}
@media screen and (max-width: 768px) {
  .hero__panel {
    border-radius: 28px;
    padding: 0 2vw 18vw;
    padding-top: min(92vw, 460px);
    min-height: 0;
  }
}
.hero__frame {
  position: absolute;
  inset: 28px 24px 10px;
  max-width: 1320px;
  margin-inline: auto;
  box-sizing: border-box;
  border: 8px solid #1a1a1a;
  border-radius: 40px;
  pointer-events: none;
  z-index: 4;
}
@media screen and (max-width: 768px) {
  .hero__frame {
    inset: 18px 16px 0;
    border-radius: 28px;
    border-width: 4px;
  }
}
.hero__bg {
  position: absolute;
  top: 14px;
  right: 40px;
  text-align: right;
  font-family: "Dosis", sans-serif;
  font-weight: 100;
  font-size: clamp(34px, 13vw, 120px);
  line-height: 1.24;
  letter-spacing: 5px;
  color: rgba(255, 255, 255, 0.5);
  z-index: 1;
  pointer-events: none;
}
.hero__bg span {
  display: block;
  white-space: nowrap;
}
.hero__bg span:last-child {
  margin-right: -25px;
}
@media screen and (max-width: 768px) {
  .hero__bg span:last-child {
    margin-right: -4%;
  }
}
@media screen and (max-width: 768px) {
  .hero__bg {
    right: 18px;
    -webkit-text-stroke-width: 1px;
    line-height: 1.4;
  }
}
.is-ipad-mini .hero__bg {
  font-size: 9.4vw;
  line-height: 1.26;
}
.hero__bubble {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  width: clamp(460px, 56vw, 720px);
  aspect-ratio: 1;
}
@media screen and (max-width: 768px) {
  .hero__bubble {
    width: min(102vw, 460px);
  }
}
.hero__bubble-bg, .hero__bubble-line {
  position: absolute;
  top: -24%;
  left: -8%;
  width: 100%;
  height: 100%;
  display: block;
}
@media screen and (max-width: 768px) {
  .hero__bubble-bg, .hero__bubble-line {
    top: -11%;
    left: -18%;
  }
}
.hero__bubble-line {
  z-index: 1;
  overflow: visible;
}
.hero__bubble-line path {
  fill: none;
  stroke: #1a1a1a;
  stroke-width: 8px;
  stroke-linejoin: round;
}
.hero__bubble-inner {
  position: absolute;
  top: 4%;
  left: 19%;
  width: 40vw;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .hero__bubble-inner {
    top: 9%;
    left: 10%;
    width: 88%;
  }
}
.hero__heading {
  font-family: "WDXL Lubrifont JP N", "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: clamp(40px, 6vw, 69px);
  line-height: 1.6;
  letter-spacing: 2px;
}
.hero__en {
  margin-top: 10px;
  font-family: "Dosis", sans-serif;
  font-weight: 600;
  font-size: clamp(13px, 2.5vw, 24px);
  line-height: 1.6;
  letter-spacing: 2px;
}
.hero__logo {
  position: absolute;
  top: 50%;
  right: 14%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 46px;
}
.hero__logo img {
  display: block;
  height: clamp(96px, 16vw, 134px);
  width: auto;
}
@media screen and (max-width: 768px) {
  .hero__logo {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    justify-content: center;
    margin-top: 12vw;
    gap: 5vw;
  }
  .hero__logo img {
    height: clamp(70px, 15vw, 80px);
  }
}
.hero {
  /* ===== 登場アニメーション：トランジション定義（常時）===== */
}
.hero__panel {
  transition: background calc(0.6s * var(--hero-t)) ease;
}
.hero__frame {
  transform-origin: center;
  transition: opacity calc(0.7s * var(--hero-t)) ease, transform calc(0.8s * var(--hero-t)) cubic-bezier(0.2, 0.7, 0.3, 1), border-color calc(0.5s * var(--hero-t)) ease;
}
.hero__bg {
  transition: color calc(0.6s * var(--hero-t)) ease;
}
.hero__bg span {
  transition: opacity calc(1.05s * var(--hero-t)) ease, transform calc(1.05s * var(--hero-t)) ease;
}
.hero__bg span:nth-child(2) {
  transition-delay: calc(0.225s * var(--hero-t));
}
.hero__bg span:nth-child(3) {
  transition-delay: calc(0.45s * var(--hero-t));
}
.hero__bg span:nth-child(4) {
  transition-delay: calc(0.675s * var(--hero-t));
}
.hero__bubble-bg {
  transition: opacity calc(0.5s * var(--hero-t)) ease;
}
.hero__bubble-line path {
  transition: stroke-dashoffset calc(1.65s * var(--hero-t)) ease;
}
.hero__heading .char, .hero__en .char {
  display: inline-block;
  white-space: pre;
  transition: opacity calc(0.75s * var(--hero-t)) ease, transform calc(0.75s * var(--hero-t)) cubic-bezier(0.2, 0.7, 0.3, 1);
  transition-delay: calc(var(--i, 0) * 0.0525s * var(--hero-t));
}
.hero__logo img {
  transition: opacity calc(0.6s * var(--hero-t)) ease, transform calc(0.6s * var(--hero-t)) cubic-bezier(0.2, 0.7, 0.3, 1);
}
.hero__logo img:nth-child(2) {
  transition-delay: calc(0.12s * var(--hero-t));
}
.hero__logo img:nth-child(3) {
  transition-delay: calc(0.24s * var(--hero-t));
}

.hero--8s {
  --hero-t: 1.1653;
}

.hero--10s {
  --hero-t: 1.4566;
}

/* ===== HERO 登場アニメーション：初期(非表示)状態 =====
   html.js（<head>のインラインscriptで付与）がある時だけ初期状態を適用。
   JS無効時は通常表示のまま（プログレッシブエンハンスメント）。 */
.js .hero .hero__panel {
  background: #fff;
}
.js .hero .hero__frame {
  opacity: 0;
  transform: scale(1.045);
  border-color: #ffe100;
}
.js .hero .hero__bg {
  color: #ffe100;
}
.js .hero .hero__bg span {
  opacity: 0;
  transform: translateY(40px);
}
.js .hero .hero__bubble-bg {
  opacity: 0;
}
.js .hero .hero__bubble-line path {
  stroke-dasharray: var(--line-len, 2600);
  stroke-dashoffset: var(--line-len, 2600);
}
.js .hero .hero__heading,
.js .hero .hero__en {
  opacity: 0;
}
.js .hero .hero__heading .char,
.js .hero .hero__en .char {
  opacity: 0;
  transform: translateY(0.7em);
}
.js .hero .hero__logo img {
  opacity: 0;
  transform: translateY(46px);
}

/* ===== ステージ到達で表示（JSが時間差で is-s1〜is-s5 を付与）===== */
.hero.is-s1 .hero__bg span {
  opacity: 1;
  transform: none;
}

.hero.is-s2 .hero__frame {
  opacity: 1;
  transform: scale(1);
}

.hero.is-s3 .hero__panel {
  background: #ffe100;
}

.hero.is-s3 .hero__frame {
  border-color: #1a1a1a;
}

.hero.is-s3 .hero__bg {
  color: rgba(255, 255, 255, 0.5);
}

.hero.is-s4 .hero__bubble-line path {
  stroke-dashoffset: 0;
}

.hero.is-s5 .hero__bubble-bg {
  opacity: 1;
}

.hero.is-s5 .hero__heading .char,
.hero.is-s5 .hero__en .char {
  opacity: 1;
  transform: none;
}

.hero.is-s6 .hero__logo img {
  opacity: 1;
  transform: none;
}

/* モーション抑制設定では即時表示 */
@media (prefers-reduced-motion: reduce) {
  .js .hero .hero__panel {
    background: #ffe100;
  }
  .js .hero .hero__frame {
    opacity: 1;
    transform: none;
    border-color: #1a1a1a;
  }
  .js .hero .hero__bg {
    color: rgba(255, 255, 255, 0.2);
  }
  .js .hero .hero__bg span,
  .js .hero .hero__bubble-bg,
  .js .hero .hero__heading,
  .js .hero .hero__en,
  .js .hero .hero__heading .char,
  .js .hero .hero__en .char,
  .js .hero .hero__logo img {
    opacity: 1;
    transform: none;
  }
  .js .hero .hero__bubble-line path {
    stroke-dashoffset: 0;
  }
}
/* =========================================================
   ABOUT US
   ========================================================= */
.about {
  position: relative;
  aspect-ratio: 1300/656;
  background-image: url("../img/sec-1-bg.png");
  background-size: contain;
  background-position: top center;
  background-repeat: no-repeat;
}
.about__lead {
  position: absolute;
  top: -20px;
  left: 40px;
  width: 42%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.about__lead span {
  background: #ffe100;
  padding: 0 7px;
  font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
  font-weight: 700;
  font-size: clamp(19px, 2.6vw, 36px);
  line-height: 1.2;
}
.about__text {
  position: absolute;
  top: 250px;
  left: 400px;
  width: 52%;
  font-size: 18px;
  line-height: 2.1;
}
@media screen and (max-width: 768px) {
  .about {
    background-image: none;
    aspect-ratio: auto;
    min-height: auto;
    padding-top: 40%;
    margin-top: 20vw;
  }
  .about::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding-top: 82%;
    background-image: url("../img/sec-1-bg-sp.png");
    background-size: 100% auto;
    background-position: top left;
    background-repeat: no-repeat;
    clip-path: polygon(0 0, 100% 0, 100% 65%, 0 85%);
    pointer-events: none;
  }
  .about__lead {
    position: absolute;
    top: 4%;
    left: 7%;
    width: 78%;
    z-index: 2;
    gap: 10px;
  }
  .about__text {
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    margin-top: -9.5vw;
    padding: 24vw 5vw 7vw;
    font-size: 3.6vw;
    line-height: 1.85;
    z-index: 1;
  }
  .about__text::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpolygon points='0,30 100,0 100,100 0,100' fill='white' stroke='%231a1a1a' stroke-width='1.5' vector-effect='non-scaling-stroke'/%3E%3C/svg%3E") 0 0/100% 100% no-repeat;
    z-index: -1;
  }
}

/* =========================================================
   SOLUTION（事業ブロック + カード）
   ========================================================= */
.biz {
  display: flex;
  align-items: flex-start;
  gap: 130px;
}
@media screen and (max-width: 768px) {
  .biz {
    flex-direction: column;
    gap: 26px;
  }
}
.biz__head {
  width: 264px;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .biz__head {
    width: 100%;
    margin-bottom: 6vw;
  }
}
.biz__ja {
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 700;
  letter-spacing: 2px;
  padding-bottom: 0;
  border-bottom: 1.5px solid #1a1a1a;
}
@media screen and (min-width: 1024.01px) {
  .biz__ja {
    font-size: 30px;
  }
}
.biz__en {
  margin-top: 4px;
  font-family: "Dosis", sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 2.2px;
  color: #555555;
}
.biz__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 26px;
}
.biz__tags li {
  min-width: 189px;
  text-align: center;
  padding: 7px 20px;
  background: #ffe100;
  border: 1.5px solid #1a1a1a;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .biz__tags li {
    min-width: 120px;
    padding: 4px 16px;
    font-size: 11px;
  }
}
.biz__cards {
  flex: 1;
  min-width: 0;
  max-width: 540px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}
@media screen and (max-width: 768px) {
  .biz__cards {
    max-width: none;
    width: 100%;
  }
}
.biz .solution__heads {
  width: 264px;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .biz .solution__heads {
    display: none;
  }
}
.biz .solution__panels {
  flex: 1;
  min-width: 0;
}
.biz .note {
  font-size: 12px;
  color: #555555;
}

@media screen and (min-width: 768.01px) {
  #solution .section__aside {
    position: sticky;
    top: 110px;
    align-self: flex-start;
  }
  #solution .solution__heads {
    position: sticky;
    top: 190px;
    align-self: flex-start;
  }
  #solution .section__body.biz {
    position: relative;
    z-index: 1;
  }
}
.solution__heads {
  position: relative;
}

@keyframes sol-head-enter {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes sol-head-leave {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(20px);
  }
}
.solution__head {
  opacity: 0;
  pointer-events: none;
}
.solution__head.is-leaving {
  animation: sol-head-leave 0.4s ease forwards;
}
.solution__head.is-active {
  animation: sol-head-enter 0.4s ease forwards;
  pointer-events: auto;
}
.solution__head:not(:first-child) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

@media screen and (min-width: 768.01px) {
  .solution__sp-head {
    display: none;
  }
}

.solution__panel:not(:first-child) {
  padding-top: 160px;
}
@media screen and (max-width: 768px) {
  .solution__panel:not(:first-child) {
    padding-top: 12vw;
  }
}

@media screen and (max-width: 768px) {
  .section__aside .section__line {
    left: 0;
    width: auto;
  }
}

.card {
  display: flex;
  gap: 22px;
  padding: 26px 28px;
  background: #ffffff;
  border: 2px solid #1a1a1a;
}
.card__logo {
  flex-shrink: 0;
}
.card__logo img {
  width: 84px;
  height: 84px;
}
.card__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.card__body > .btn-site {
  align-self: flex-end;
  margin-top: 14px;
}
@media screen and (max-width: 768px) {
  .card__body > .btn-site {
    margin-left: 0;
    padding: 4px 16px;
    font-size: 11px;
  }
}
.card__tags .tag {
  display: inline-block;
  background: #1a1a1a;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 3px 12px;
}
.card__title {
  font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 3vw, 30px);
  line-height: 1.3;
  margin-top: 10px;
}
.card__desc {
  font-size: 14px;
  line-height: 1.7;
  margin-top: 6px;
}
.card__desc small {
  font-size: 12px;
  color: #555555;
}
.card__client {
  font-size: 12px;
  color: #555555;
  margin-top: 8px;
}
.card__stores {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
}
.card__stores .btn-site {
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .card__stores {
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
  }
  .card__stores .btn-site {
    margin-left: 0;
    padding: 4px 16px;
    font-size: 11px;
  }
}
.card__badges {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 10px;
}
.card__badges img {
  height: 36px;
  width: auto;
}
@media screen and (max-width: 768px) {
  .card {
    gap: 14px;
    padding: 18px 18px;
  }
  .card__logo img {
    width: 62px;
    height: 62px;
    border-radius: 14px;
  }
  .card__title {
    margin-top: 8px;
  }
}

/* =========================================================
   NEWS
   ========================================================= */
.news__list li {
  border-bottom: 1px solid #d9d9d9;
}
.news__list li:last-child {
  border-bottom: 0;
}
.news__list li.news__item {
  display: flex;
  align-items: baseline;
  gap: 34px;
  padding: 18px 6px;
}
@media screen and (max-width: 768px) {
  .news__list li.news__item {
    gap: 0;
  }
}
.news__list li.news__item .news__title {
  overflow: visible;
  text-overflow: clip;
  white-space: normal;
  line-height: 1.8;
  word-break: break-word;
}
.news__list li.news__item a {
  flex: 1;
  padding: 0;
}
.news__list li a {
  display: flex;
  align-items: baseline;
  gap: 34px;
  padding: 18px 6px;
}
@media screen and (max-width: 768px) {
  .news__list li a {
    gap: 0;
  }
}
.news__list li a:hover {
  opacity: 1;
}
.news__list li a:hover .news__title {
  color: #ff9000;
}
.news__date {
  flex-shrink: 0;
  min-width: 104px;
  font-family: "Dosis", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  color: #1a1a1a;
}
.news__title {
  flex: 1;
  min-width: 0;
  font-size: 15px;
  transition: color 0.3s;
  line-height: 1.8;
  word-break: break-word;
}
.news__more {
  text-align: center;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .news__list a, .news__item {
    flex-direction: column;
    gap: 2px;
    padding: 14px 4px;
  }
  .news__date {
    font-size: 14px;
  }
  .news__title {
    white-space: normal;
  }
}

/* =========================================================
   CORPORATE
   ========================================================= */
.corp__table {
  width: 100%;
}
.corp__row {
  display: flex;
  gap: 30px;
  padding: 18px 6px;
  border-bottom: 1px solid #d9d9d9;
}
.corp__row:last-child {
  border-bottom: 0;
}
.corp__row dt {
  width: 150px;
  flex-shrink: 0;
  font-weight: 700;
}
.corp__row dd {
  flex: 1;
  min-width: 0;
}
.corp__row a {
  color: #ff9000;
  text-decoration: underline;
}
.corp__officer {
  display: flex;
  gap: 30px;
}
.corp__officer + .corp__officer {
  margin-top: 4px;
}
.corp__officer span:first-child {
  width: 130px;
  flex-shrink: 0;
}
.corp__clients li {
  line-height: 1.85;
}
.corp__note {
  margin-top: 16px;
  font-size: 13px;
  color: #555555;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .corp__row {
    flex-direction: column;
    gap: 4px;
  }
  .corp__row dt {
    width: auto;
  }
  .corp__officer {
    gap: 16px;
  }
  .corp__officer span:first-child {
    width: 110px;
  }
}

/* =========================================================
   ACCESS
   ========================================================= */
.access__map {
  position: relative;
}
.access__map iframe {
  display: block;
  width: 100%;
  height: 460px;
}
.access__maplink {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 1;
  background: #ffffff;
  border: 1px solid #1a1a1a;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
}
.access__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  z-index: 2;
  margin: 30px 0 0 36px;
}
.access__name {
  display: inline-block;
  background: #ffe100;
  padding: 0 10px;
  line-height: 1.4;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 1px;
}
@media screen and (max-width: 768px) {
  .access__name {
    font-size: 20px;
  }
}
.access__addr {
  display: inline-block;
  background: #ffe100;
  margin-top: 14px;
  padding: 0 10px;
  font-size: 13px;
  line-height: 1.8;
}
.access__routes {
  margin-top: 65px;
  padding: 16px 24px;
  background: #ffffff;
}
@media screen and (max-width: 768px) {
  .access__routes {
    padding: 12px 16px;
    margin-top: 4vw;
  }
}
.access__routes li {
  font-size: 14px;
  line-height: 1.95;
}
@media screen and (max-width: 768px) {
  .access__routes li {
    font-size: 12px;
    line-height: 1.6;
    margin-top: 4px;
  }
}
@media screen and (max-width: 768px) {
  .access__map iframe {
    height: 90vw;
  }
  .access__card {
    margin: 10vw 0 0;
  }
}

/* =========================================================
   CONTACT
   ========================================================= */
.contact__box {
  padding: 52px 7%;
  text-align: center;
}
.contact__text {
  max-width: 760px;
  margin: 0 auto;
  text-align: left;
  font-size: 15px;
  line-height: 2.15;
}
.contact__btn {
  margin-top: 36px;
}
@media screen and (max-width: 768px) {
  .contact__box {
    padding: 36px 22px;
  }
}
.contact .formrun {
  max-width: 640px;
  margin: 0 auto;
  text-align: left;
}
.contact .formrun > div {
  margin-top: 28px;
}
.contact .formrun > div:first-child {
  margin-top: 0;
}
.contact .formrun label {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.contact .formrun input[type=text],
.contact .formrun input[type=email],
.contact .formrun textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  background: #ffffff;
  color: #1a1a1a;
}
.contact .formrun input[type=text]:focus,
.contact .formrun input[type=email]:focus,
.contact .formrun textarea:focus {
  outline: none;
  border-color: #1a1a1a;
}
.contact .formrun textarea {
  min-height: 160px;
  resize: vertical;
}
.contact .formrun select {
  width: 100%;
  padding: 14px 40px 14px 16px;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  font-family: "Noto Sans JP", "Hiragino Sans", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  background: #ffffff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23222' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 16px center;
  color: #1a1a1a;
  appearance: none;
  cursor: pointer;
}
.contact .formrun select:focus {
  outline: none;
  border-color: #1a1a1a;
}
.contact .formrun input[type=checkbox] {
  width: 18px;
  height: 18px;
  margin-right: 8px;
  vertical-align: middle;
}
.contact .formrun p[data-formrun-confirm-value] {
  padding: 14px 16px;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  background: #f4f3ee;
  font-size: 15px;
  line-height: 1.6;
  min-height: 1.6em;
  white-space: pre-wrap;
  word-break: break-all;
}
.contact .formrun [data-formrun-show-if-error] {
  display: none;
  margin-top: 8px;
  color: #d4380d;
  font-size: 13px;
}
.contact .formrun [data-formrun-show-if-error].is-active, .contact .formrun [data-formrun-show-if-error].formrun-system-show, .contact .formrun [data-formrun-show-if-error][style*=block] {
  display: block;
}
.contact .formrun button:not(.btn-pill) {
  display: inline-block;
  margin-top: 8px;
  padding: 14px 48px;
  border: 1px solid #1a1a1a;
  border-radius: 4px;
  background: #1a1a1a;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.contact .formrun button:not(.btn-pill):hover {
  opacity: 0.8;
}
.contact .formrun button:not(.btn-pill)[data-formrun-back-button] {
  margin-right: 16px;
  background: #ffffff;
  color: #1a1a1a;
}
.contact .formrun button:not(.btn-pill) + button:not(.btn-pill) {
  margin-left: 0;
}
.contact .formrun .formrun__btns {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 48px;
}
.contact .formrun .formrun__btns .btn-pill {
  cursor: pointer;
  min-width: 170px;
}
@media screen and (max-width: 768px) {
  .contact .formrun .formrun__btns .btn-pill {
    min-width: 30vw;
  }
}
@media screen and (max-width: 768px) {
  .contact .formrun > div {
    margin-top: 22px;
  }
  .contact .formrun button {
    display: block;
    width: 100%;
    margin: 16px 0 0;
  }
  .contact .formrun button[data-formrun-back-button] {
    margin-right: 0;
  }
}

body:not(.formrun-system-confirm) .contact .formrun [data-formrun-show-if-confirm],
body.formrun-system-confirm .contact .formrun [data-formrun-hide-if-confirm] {
  display: none;
}

.main--contact {
  background-image: url(../img/bg.png);
  background-repeat: repeat;
  background-size: 12px 12px;
}

.contact-page .section__body.contact {
  background: #ffffff;
  padding: 56px 60px;
}
@media screen and (max-width: 768px) {
  .contact-page .section__body.contact {
    padding: 32px 24px;
  }
}
@media screen and (min-width: 768.01px) {
  .contact-page .section__body.contact--thanks {
    margin-top: 100px;
    padding: 76px 60px;
  }
}

/* =========================================================
   PRIVACY
   ========================================================= */
.privacy {
  font-size: 15px;
  line-height: 2;
}
.privacy p + p,
.privacy p + ul,
.privacy ul + p,
.privacy ul + ul {
  margin-top: 14px;
}
.privacy a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.privacy__section {
  margin-top: 42px;
}
.privacy h2 {
  padding-bottom: 8px;
  border-bottom: 1px solid #d9d9d9;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.6;
}
.privacy h3 {
  margin-top: 22px;
  font-size: 16px;
  font-weight: 700;
}
.privacy ul {
  padding-left: 1.2em;
}
.privacy li {
  list-style: disc;
  margin-top: 4px;
}
.privacy__contact {
  margin-top: 48px;
}
.privacy__contact a.btn-pill {
  text-decoration: none;
  min-width: 172px;
  padding: 6px 18px;
  font-size: 13px;
  border-width: 1.5px;
}
.privacy__date {
  margin-top: 36px;
  font-weight: 700;
}
.privacy__date {
  text-align: right;
}
@media screen and (max-width: 768px) {
  .privacy {
    font-size: 14px;
    line-height: 1.9;
  }
  .privacy__section {
    margin-top: 34px;
  }
  .privacy h2 {
    font-size: 17px;
  }
  .privacy__date {
    text-align: left;
  }
}

.news-archive .news {
  width: 860px;
  margin: 0 auto;
  padding: 40px 0 60px;
  background-color: rgba(0, 0, 0, 0.4);
}
@media screen and (max-width: 768px) {
  .news-archive .news {
    width: auto;
  }
}
.news-archive .news__list {
  padding: 0 20px;
  max-width: 698px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .news-archive .news__list {
    max-width: inherit;
  }
}
.news-archive .news__list li {
  border-bottom: 1px solid #333;
}
.news-archive .news__list li a {
  display: flex;
  padding: 15px 0;
}
@media screen and (max-width: 768px) {
  .news-archive .news__list li a {
    flex-direction: column;
  }
}
.news-archive .news__list li .date {
  font-family: "Dosis", sans-serif;
  width: 120px;
  color: #bfb99a;
  font-size: clamp(16px, 2.5vw, 20px);
}
.news-archive .news__list li .title {
  font-size: clamp(15px, 2.2vw, 18px);
  text-decoration: underline;
}/*# sourceMappingURL=style.css.map */