html {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
body {
  background-image:
    linear-gradient(rgba(255,255,255,.18), rgba(255,255,255,.18)),
    url("../img/bg.jpg");
  background-repeat: repeat;
  background-position: top left;
  background-size: 300px 300px;
  background-attachment: fixed;
  margin: 0;
}

dl, dt, dd {
  margin: 0;
  margin-block-start: 0;
  margin-block-end: 0;
}
dd {
  margin-inline-start: 0;
  margin-left: 0;
}

ul {
  margin-block-start: 0;
  margin-block-end: 0;
  padding-inline-start: 0;
}
ul,li {
  list-style: none;
}

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

p,a,dl,dd,ol,ul,li {
  font-size: var(--font-size-14);
  line-height: 1.8;

  text-align: justify;
}

a {
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  color: inherit;
  cursor: pointer;
}
a:hover {
  text-decoration: underline;
  color: var(--color-corporate);
}


main {
  padding-block-end: 170px;
}

.container,
.header-container,
.footer-container {
  margin: 0 auto;
}

.container {
  width: 980px;
}
.header-container {
  width: 1075px;
}

@media(max-width: 1100px) {
  .header-container {
    width: 95%;
  }
  .container {
    width: 85%;
  }
}

@media screen and (max-width: 699px) {
  body {
    background-attachment: scroll;
  }

  .header-container,
  .container {
    width: 90%;
  }
}


/* 表示制御ユーティリティ */
.sp-only {
  display: none!important;
}
.pc-only {
  display: block!important;
}

.footer_sp-only {
  display: none!important;
}
.footer_pc-only {
  display: block!important;
}


@media screen and (max-width: 940px) {
  .footer_sp-only {
    display: block!important;
  }
  .footer_pc-only {
    display: none!important;
  }
}


/* スマホ(～699px)だけ表示を切り替え */
@media screen and (max-width: 699px) {
  .sp-only {
    display: block!important;
  }
  .pc-only {
    display: none!important;
  }
}

body.is-loading {
  overflow: hidden;
  height: 100vh;
  touch-action: none;
  position: fixed;
  width: 100%;
}

/* ===============================
  Header
=============================== */
header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  color: var(--color-white);
  transition: background-color .25s ease, backdrop-filter .25s ease, -webkit-backdrop-filter .25s ease, box-shadow .25s ease, border-color .25s ease, color .25s ease;

  margin-bottom: 0;
  padding-block: 20px;
}


.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0 0 0;
}

@media screen and (max-width: 699px) {
  header {
    padding-block: 0;
  }
  main {
    margin-inline-start: 0;
    padding-block-end: 120px;
  }
}




/* ============================================================
  PC HEADER
============================================================ */
.header-pc {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  color: var(--color-white);
  transition: background-color .25s ease, backdrop-filter .25s ease, -webkit-backdrop-filter .25s ease, box-shadow .25s ease, border-color .25s ease, color .25s ease;
}

.header-pc .header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0 0 0;
}
.header-pc .logo img {
  width: 190px;
  height: auto;
  display: block;
}

/* PC グロナビ */
.gnav__list {
  list-style: none;
  display: flex;
  gap: 3em;
  margin: 0;
  padding: 0;
}

.gnav__list a {
  color: var(--color-text);
  font-size: var(--font-size-14);
  font-weight: 400;
  line-height: 1.5;
  text-decoration: none;
  transition: opacity 0.2s;
  display: flex;
  flex-direction: column;
  justify-items: flex-start;
}
.gnav__list a span {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: var(--font-size-10);
  color: var(--color-corporate);
}
.gnav__list .active a {
  color: var(--color-corporate);
}

/* アンカーの被り防止 */
html {
  scroll-padding-top: 72px;
}
@media screen and (max-width: 870px) {
  html {
    scroll-padding-top: 64px;
  }
}

@media screen and (max-width: 769px) {
  header {
    margin-bottom: 0;
  }
  .header-pc {
    display: none;
  }
  .site-header {
    display: block;
    padding-block: 0;
  }
  .site-header .logo {
    width: 178px;
  }
}


/* ===== Dropdown ===== */
.gnav__sub {
  position: absolute;
  left: 50%;
  top: calc(100% );
  transform: translate(-50%, 8px);
  width: 280px;

  padding: .6em;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease, visibility .18s step-end;
}

/* 開いたとき */
.has-sub:hover > .gnav__sub,
.has-sub:focus-within > .gnav__sub {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
  transition: opacity .18s ease, transform .18s ease, visibility 0s;
}

.gnav__list > li {
  position: relative;
}
.gnav__sub > li > a {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: .5em;
  padding: .5em 1.5em .5em .8em;
  font-size: 14px;
  letter-spacing: .02em;
  white-space: nowrap;
  background: rgba(255,255,255, 1);
}
.gnav__sub > li + li > a {
  margin-top: .6em;
}

.gnav__sub > li > a:hover,
.gnav__sub > li > a:focus {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0,0,0,.10);
  outline: none;
}

.gnav__sub > li > a > .inner {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 10px;
  align-items: center;
}
.gnav__sub > li > a > .inner >.inner_img {
  width: 55px;
  margin: 0;
}
.gnav__sub > li > a > .inner >.inner_img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 1px 6px rgba(0,0,0,.12);
}
.gnav__sub > li > a > .inner > .inner_txt {
  display: flex;
  flex-direction: column;
}
.gnav__sub > li > a > .inner > .inner_txt span:first-child {
  font-size: 12px;
  font-weight: 400;
  color: var(--color-text);
}
.gnav__sub > li > a > .inner > .inner_txt span:last-child {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;

  font-size: 10px;
  font-weight: 500;
  color: var(--color-primary);
}

.gnav__sub > li > a > .inner > .inner_txt .icon_out {
  width: 10px;
}

/* 右端の矢印 */
.gnav__sub > li > a::after {
  content: "→";
  color: var(--color-primary);
  transition: transform .18s ease, opacity .18s ease;
}
.gnav__sub > li > a:hover::after,
.gnav__sub > li > a:focus::after {
  transform: translateX(2px);
}

/* 端の項目で右寄せ */
.has-sub.is-align-right > .gnav__sub {
  left: auto;
  right: 0;
  transform: translateY(8px);
}
.has-sub.is-align-right:hover > .gnav__sub,
.has-sub.is-align-right:focus-within > .gnav__sub {
  transform: translateY(0);
}

/* backdrop-filterが使えない環境のフォールバック */
@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  .gnav__sub {
    background: rgba(255,255,255,.95);
  }
}


@media screen and (max-width: 899px) {
  .gnav__list {
    gap: 1.5em;
  }
}
@media screen and (max-width: 799px) {
  .gnav__list {
    gap: 1.2em;
  }
  .gnav__list a {
    font-size: var(--font-size-13);
  }
}


/* 画面全体のガラス層 */
.glass-overlay {
  position: fixed;
  inset: 0;
  z-index: 30;
  pointer-events: none;
  background: rgba(255,255,255,0);
  -webkit-backdrop-filter: blur(0px) saturate(120%);
  backdrop-filter: blur(0px) saturate(120%);
  transition: background-color .24s ease, backdrop-filter .24s ease, opacity .24s ease;
  opacity: 0;
  will-change: backdrop-filter, opacity;
}

/* メニューに触れたらすりガラス */
body.menu-active .glass-overlay {
  opacity: 1;
  background: rgba(255,255,255,.10);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  backdrop-filter: blur(10px) saturate(140%);
}

/* 低モーション環境 */
@media (prefers-reduced-motion: reduce) {
  .glass-overlay{
    transition: none;}
}




/* ============================================================
  SP HEADER（ロゴ＋ハンバーガー）
============================================================ */
.site-header {
  position: fixed;
  top: 0;
  z-index: 100;
  background: transparent;
  transition: background-color .25s ease, backdrop-filter .25s ease, -webkit-backdrop-filter .25s ease, box-shadow .25s ease, border-color .25s ease, color .25s ease;
  padding: 0;
}

.site-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1em;
}
.site-header .logo {
  width: 160px;
}
.site-header .logo img {
  width: 100%;
  height: auto;
  display: block;
}

/* ハンバーガー */
.hamburger {
  appearance: none;
  border: 0;
  background: none;
  padding: 10px;
  margin: 0;
  cursor: pointer;
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
}
.hamburger__bar {
  width: 30px;
  height: 3px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.hamburger:focus-visible {
  outline: solid 2px var(--color-primary-dark);
  outline-offset: 2px;
}


/* 中身を前面に（擬似要素より上） */
.header-pc .header__inner,
.site-header .header-inner {
  position: relative;
  z-index: 1;
}

/* ガラス層（初期は非表示） */
.header-pc::before,
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.55);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  opacity: 0;
  transition: opacity .25s ease;
  z-index: 0;
  pointer-events: none;
}

.is-scrolled .header-pc::before,
.is-scrolled .site-header::before {
  opacity: 1;
}

.is-scrolled .gnav__list a {
  color: var(--color-text);
}
.is-scrolled .hamburger__bar {
  background: var(--color-text);
}




/* =========================================================
  スマホメニュー
============================================================ */
.spmenu {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--color-white);
  color: var(--color-text);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transform: scale(1.05);
  transition: opacity 0.5s ease, transform 0.6s cubic-bezier(.25,.8,.25,1), visibility 0s linear 0.5s;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.spmenu.is-open {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  transition-delay: 0s;
}

/* パネル内 */
.spmenu__panel {
  width: 100%;
  margin: 0 auto;
  padding-block: 1em;
  animation: fadeUp 0.6s ease both;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* ヘッダー */
.spmenu__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 10px;
}

.spmenu__logo {
  width: 180px;
}
.spmenu__close {
  border: none;
  background: transparent;
  color: #000;
  font-size: 32px;
  cursor: pointer;
  line-height: 1;
}

/* 本文 */
.spmenu__body {
  width: 80%;
  margin-block-start: 1.5em;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.spmenu__section h2 {
  font-size: var(--font-size-14);
  display: flex;
  flex-direction: column;
  line-height: 1.3;
  margin-block: 0 .5em;
}
.spmenu__section span {
  font-weight: 400;
  font-size: var(--font-size-10);
  color: var(--color-primary);
}
.spmenu__section .icon_out {
  width: 1em;
  margin-inline-start: 3px;
}

.spmenu__section ul {
  margin-inline-start: 1.5em;
}
.spmenu__section li {
  margin-block-end: .8em;
}


/* 背景固定 */
body.menu-open {
  overflow: hidden;
  height: 100vh;
  position: fixed;
  width: 100%;
  touch-action: none;
}
/* バックドロップ（暗転効果） */
.spmenu__backdrop {
  display: none; /* 全画面なので不要だが残しておく */
}



/* ===============================
  ecoship
=============================== */
.ecoship {
  margin-block-end: 2em;
}
.ecoship .logo_ecoship {
  display: block;
  margin: 0 0 0 auto;
}
.ecoship .logo_ecoship {
  width: 97px;
}


@media screen and (max-width: 499px) {
  .ecoship {
    margin-block: 3em 2em;
  }

}

/* ===============================
  Footer
=============================== */
footer {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.footer-container {
  width: 1000px;
}

.waveband {
  animation-duration: 15s;
  position: absolute;
  inset: 0 auto auto 0; /* 上下左右の位置調整 */
  width: 100%;
  height: 381px;
  background: url("../img/footer/wave01.webp") repeat-x;
  background-size: auto 100%;
  z-index: 0; /* 背景レイヤーに */
}

footer .footer_logo {
  width: 100%;
}

.footer__inner {
  position: relative;
  z-index: 1;
  background: transparent;
  padding-block: 80px;
  color: var(--color-white);
}

.footer__cols {
  display: grid;
  grid-template-columns: 1fr 1.2fr repeat(3, 0.9fr);
  gap: var(--space-sm-2);
}

.fcol__title {
  font-size: 1em;
  margin-bottom: 1em;
  color: var(--color-white);
}

.fcol__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fcol__list li + li {
  margin-top: 0.4em;
}

.fcol__list a {
  color: var(--color-footer-text);
  opacity: 0.8;
  transition: opacity 0.2s;

  display: flex;
  align-items: baseline;
}
.fcol__list a:hover {
  opacity: 1;
  text-decoration: none;
}
.fcol__list a .icon {
  width: 12px;
  margin-inline-start: .5em;

}

.copy {
  position: relative;
  overflow: hidden;
  padding-top: 2em;
  padding-bottom: 2em;
  text-align: center;
  color: var(--color-white);
}

@media(max-width: 1000px) {
  .footer-container {
    width: 95%;
  }
  .footer__cols {
    grid-template-columns: 1fr 1.1fr repeat(3, 0.7fr);
    gap: 1em;
  }
}


/* 背景の波 */
.waveband2 {
  background-position: center bottom;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 180px;
  background: url("../img/footer/wave02.webp") repeat-x;
  background-size: auto 100%;
  animation: waveScroll2 35s linear infinite reverse;
  z-index: 0;
}
@keyframes waveScroll2 {
  from {
    background-position: 0 bottom;
  }
  to {
    background-position: -188px bottom;
  }
}
.copy__inner {
  position: relative;
  z-index: 1;
  padding-block: 30px;
}

.copy__inner a {
  color: #5e9eff;
  font-size: 12px;
  text-decoration: none;
}
.copy__inner a:hover {
  opacity: 0.7;
}

.copy__inner p {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;

  font-size: 12px;
  text-align: center;

  position: absolute;
  top: calc(50% + 1.5em);
  left: calc(50%);
  transform: translate(-50%, -50%);
  z-index: 10;
}

.banner_fuji {
  position: absolute;
  top: calc(50% + 1em);
  left: 0;
  transform: translateY(-50%);
  z-index: 10;
  width: 150px;
}
.ccol__list {
  position: absolute;
  top: calc(50%);
  left: calc(50%);
  transform: translate(-50%, -50%);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1em;
}
.ccol__list li {
  list-style: none;
}


@media screen and (max-width: 970px) {
  .footer__inner {
    margin-block-start: 80px;
    margin-block-end: 0;
    padding-block: 0;
  }
  .footer__cols {
    width: 500px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 15px 30px;
    align-items: start;
  }
  footer .footer_logo {
    width: 210px;
    display: block;
    margin: 0 auto 20px;
  }
  .footer__cols .fcol:first-child {
    margin-bottom: 4px;
  }

  .fcol__title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: .8em;
  }
  .fcol__list li {
    line-height: 1;
  }
  .fcol__list a {
    font-size: 12px;
  }

  .waveband2 {
    background-color: var(--color-corporate);
  }
  .footer-buffer {
    background: var(--color-corporate);
    width: 100%;
    height: 150px;
    margin-top: -70px;
  }

  .copy {
    padding-top: 7em;
    padding-bottom: 0;
  }
  .banner_fuji {
    top: calc(50% - 50% - 2em);
    left: calc(50%);
    transform: translate(-50%, -50%);
  }
  .ccol__list {
    top: calc(50% - 30%);
  }
  .copy__inner p {
    width: 100%;
    top: calc(50% - 5px);
  }
}

@media screen and (max-width: 699px) {
  .footer__cols {
    width: 350px;
    grid-template-columns: 1.5fr 1fr;
  }
  .footer-buffer {
    background: var(--color-corporate);
    width: 100%;
    height: 150px;
    margin-top: -70px;
  }
}

@media screen and (max-width: 490px) {
  .ccol__list {
    width: 100%;
  }
}




.button-arrow-right {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
  border-radius: 999px;
}
.button-arrow-right::before {
  content: "";
  margin: auto;
  position: absolute;
  top: calc(50% + 1.4px);
  left: calc(50% + 36%);
  width: 5px;
  height: 5px;
  border-top: solid 1px var(--color-primary);
  border-right: solid 1px var(--color-primary);
  transform: translate(-50%, -50%) rotate(45deg);
}
.button-arrow-right::after {
  content: "";
  margin: auto;
  position: absolute;
  top: calc(50% + 1.4px);
  left: calc(50% + 35%);
  width: 12px;
  height: 1px;
  background: var(--color-primary);
  transform: translate(-50%, -50%);
}

.button-arrow-right:hover {
  color: var(--color-corporate);
}

.button-arrow-right:hover::before,
.button-arrow-right:hover::after {
  left: calc(50% + 40%); /* 矢印全体を少し右にスライド */
  border-color: var(--color-corporate);
  background: var(--color-corporate);
}




.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6em;
  padding: 8px 2.6em;
  border: 1px solid var(--color-primary);
  border-radius: 999px;
  color: var(--color-text);
  text-decoration: none;
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  position: relative;
  overflow: hidden;
  z-index: 0;
  transition: color .2s ease, border-color .2s ease;
}
.button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: var(--color-primary);
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s ease;
  border-radius: 999px;
}
.button:hover,
.button:focus-visible {
  color: #fff;
  border-color: var(--color-primary);
  outline: none;
  text-decoration: none;
}
.button:hover::before,
.button:focus-visible::before {
  transform: scale(1, 1);
}

.arrow-right {
  display: inline-block;
  vertical-align: middle;
  color: var(--color-primary);
  line-height: 1;
  position: relative;
  width: 12px;
  height: 1px;
  height: .8px;
  background: currentColor;
}
.arrow-right::before {
  content: '';
  width: 0.65em;
  height: 0.65em;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  transform: rotate(45deg);
  transform-origin: top right;
  position: absolute;
  top: 50%;
  right: -0.05em;
  margin-top: 0;
  box-sizing: border-box;
}

.button:hover .arrow-right,
.button:focus-visible .arrow-right {
  color: #fff;
}



/* くの字アイコン（下） */
.button-arrow-down {
  display: inline-block;
  position: relative;
  align-items: center;
  text-align: center;
  line-height: 1;
  padding-block: 15px;
  border-radius: 10px;
}
.shipping_intro__buttons .button span {
  font-size: 14px;
  font-weight: 500;
}
.button-arrow-down::before {
  content: "";
  margin: auto;
  position: absolute;
  top: calc(50% - 1px);
  left: calc(50% + 40%);
  width: 7.5px;
  height: 7.5px;
  border-top: solid 1.5px var(--color-corporate);
  border-right: solid 1.5px var(--color-corporate);
  transform: translate(-50%, -50%) rotate(135deg);
}
.button-arrow-down:hover {
  text-decoration: none;
}


/* Biz本体 */
.biz {
  position: relative;
  z-index: 2;  /* 浮遊画像より前に */
  max-width: 450px;
  width: 60%;
  margin-bottom: 120px;
}
.biz__title {
  display: flex;
  align-items: baseline;
  flex-direction: column;
  margin-bottom: 16px;
}
.biz__title h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
}
.biz__title span {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;

  font-size: 10px;
  font-weight: 400;
  color: var(--color-primary);
  letter-spacing: .05em;
}


.biz__body {
}
.biz__body p {
  margin: 0;
  line-height: 1.8;
  color: var(--color-text);
}

/* 浮遊画像レイヤー */
.biz__float {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.biz__float figure {
  position: absolute;
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0,0,0,.14);
}
.biz__float img {
  display: block;
  width: 100%;
  height: auto;
}


.biz__float .ph1 {
  top: calc(50% - 29%);
  left: calc(50% + 0%);
  transform: translate(-50%, -50%);
  max-width: 460px;
  width: 40%;
}
.biz__float .ph2 {
  top: calc(50% + 1%);
  left: calc(50% + 85px);
  transform: translate(-50%, -50%);
  max-width: 420px;
  width: 35%;
}



@media(max-width: 1080px) {
  .biz {
    max-width: 400px;
    margin-bottom: 120px;
  }

  .biz__float .ph1 {
    top: calc(50% - 24%);
    left: calc(50% + 3%);
  }
  .biz__float .ph2 {
    top: calc(50% + 5%);
    left: calc(50% + 7%);
  }
}


@media (max-width: 950px) {
  .intro__gallery .ph1 {
    max-width: 290px;
  }
  .intro__gallery .ph2 {
    left: calc(50% - 42%);
  }
  .intro__gallery .ph3 {
    left: calc(50% - 40%);
    max-width: 240px;
  }
  .intro__gallery .ph4 {
    max-width: 420px;
  }
}




/* --------------------------------------------------------------
  TITLE
---------------------------------------------------------------- */
.page-hero {
  display: flex;
  justify-content: space-between;
  margin-block: 10em 7em;
}
.page-hero__title {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  text-align: left;
}
.page-hero__title h1 {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 52px;
  font-weight: 400;
  margin: 0 0 .2em;
  line-height: 1.15;
}
.page-hero__title span {
  font-size: 20px;
  font-weight: 400;
  color: var(--color-primary);
  display: inline-block;
}

.page-hero__image svg {
  display: block;
  max-width: 500px;
  width: 100%;
  height: auto;
  margin-inline: auto;
}

.parallax-wrap svg {
  display:block;
  width:100%;
  height:auto;
}

[data-hero-img] {
  transform-origin: 50% 40%;
  will-change: transform;
}

/*
@media screen and (max-width: 699px) {
  .parallax-wrap {
    overflow-x: clip;
    overflow-y: visible;
  }
}
*/
.page-hero__lead {
  margin-block-start: 1em;
}
.page-hero__lead p {
  font-size: 14px;
  letter-spacing: 1px;
}
@media screen and (max-width: 900px) {
  .page-hero__image svg {
    max-width: 600px;
  }

  .page-hero__title h1 {
    font-size: 50px;
  }
}

@media screen and (max-width: 699px) {
  .page-hero {
    width: 100%;
    position: relative;
    display: block;
    margin-block: 8em 5em;
    overflow-x: clip;
    overflow-y: visible;
  }

  .page-hero__title {
    position: relative;
    z-index: 10;
    padding: 0;
  }
  .page-hero__title h1 {
    font-size: 42px;
    letter-spacing: .1em;
    font-weight: 400;
    line-height: 1.2;
    margin-block-end: 10px;
  }
  .page-hero__title span {
    font-size: 18px;
  }

  .page-hero__image {
    position: relative;
    width: min(90vw, 520px);
    margin: 2em auto 0;
    overflow: visible;
  }

  .page-hero__image svg {
    display: block;
    width: 100%;
    height: auto;
    transform: translateX(8%);
  }

  .page-hero__image .parallax-wrap {
    height: auto;
  }

  [data-hero-img] {
    height: 120%;
    transform: translateY(-20%);
  }
}


/*

@media screen and (max-width: 499px) {
  .page-hero__image {
    top: -80px;
    right: -20%;
  }
  .page-hero__image svg {
    width: 480px;
  }
}
  */


.chevron-list {
  display: grid;
  gap: .4em;
  margin-block-start: 2.5em;
  margin-inline-start: 0%;
  padding: 0;
}
.chevron-list li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: .25em;
  margin-bottom: .4em;
}
.chevron-list a {
  text-decoration: none;
  font-size: 13px;
  color: var(--ink);
}
.chevron-list a:hover {
  text-decoration: underline;
}
.chevron-list a img {
  width: 10px;
  margin-inline-start: .2em;
}
.chevron-list .active {
  color: var(--color-corporate);
}

.dli-chevron-round-right {
  display: inline-block;
  vertical-align: middle;
  margin-right: .5em;
  color: #5E9CFF;
  line-height: 1;
  position: relative;
  width: .5em;
  height: .5em;
  transform: translateX(-25%) rotate(45deg);
}
.dli-chevron-round-right::before, .dli-chevron-round-right::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 0.1em;
}
.dli-chevron-round-right::before {
  top: 0;
  left: 0;
  right: 0;
  height: 0.1em;
}
.dli-chevron-round-right::after {
  top: 0;
  right: 0;
  bottom: 0;
  width: 0.1em;
}


html, body {
  overflow-x: clip;
}










/* ============================================================
  Animation
============================================================ */

/* slide In */
.slide-in {
	overflow: hidden;
  display: inline-block;
}
.slide-in_inner {
	display: inline-block;
}

.slide-in_center {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
  overflow: hidden;
}
.slide-in_center_inner {
  display: inline-block;
}

/*左右のアニメーション*/
.leftAnime{
  opacity: 0;
}

.slideAnimeLeftRight {
	animation-name:slideTextX100;
	animation-duration:0.8s;
	animation-fill-mode:forwards;
    opacity: 0;
}

@keyframes slideTextX100 {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.slideAnimeRightLeft {
	animation-name:slideTextX-100;
	animation-duration:0.8s;
	animation-fill-mode:forwards;
    opacity: 0;
}


@keyframes slideTextX-100 {
  from {
	transform: translateX(100%);/*要素を右の枠外に移動*/
    opacity: 0;
  }

  to {
	transform: translateX(0);/*要素を元の位置に移動*/
    opacity: 1;
  }
}


/* fade In */
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
