@charset "UTF-8";
/* style.scss
   FLOCSS structure: settings, tools, base, layout, component, project */
:root {
  --primary-color: #007acc;
  --viewport-height: 100vh;
  --text-fade-distance: calc(var(--viewport-height) * 0.3);
  --scale-distance: calc(var(--viewport-height) * 0.8);
  --normal-scroll-wait: 100vh; /* ヒーローが画面外になるまでの距離 */
  --hero-total-height: calc(var(--text-fade-distance) + var(--scale-distance) + var(--normal-scroll-wait));
  --service-sticky-duration: calc(var(--viewport-height) * 4); /* より長く表示 */
  --grad-color01: #2B5098;
  --grad-color02: #183052;
  --modal-bg: rgba(0, 0, 0, 0.7);
  --modal-content-bg: #fff;
  --modal-video-bg: #000;
  --modal-border-radius: 8px;
  --modal-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* style.scss
   FLOCSS structure: settings, tools, base, layout, component, project */
html {
  font-size: 16px;
}
html * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  position: relative;
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  color: #ffffff;
  background-color: #0D1C43;
}

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

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

::-moz-selection {
  background-color: #D82425;
}

::selection {
  background-color: #D82425;
}

/* style.scss
   FLOCSS structure: settings, tools, base, layout, component, project */
/* style.scss
   FLOCSS structure: settings, tools, base, layout, component, project */
.d-none {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

.d-block {
  display: block !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.d-inline-flex {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}

.d-grid {
  display: grid !important;
}

.d-inline-grid {
  display: inline-grid !important;
}

.d-table {
  display: table !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-table-row {
  display: table-row !important;
}

.d-xs-none {
  display: none !important;
}

.d-xs-inline {
  display: inline !important;
}

.d-xs-block {
  display: block !important;
}

.d-xs-inline-block {
  display: inline-block !important;
}

.d-xs-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.d-xs-inline-flex {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}

.d-xs-grid {
  display: grid !important;
}

.d-xs-inline-grid {
  display: inline-grid !important;
}

.d-xs-table {
  display: table !important;
}

.d-xs-table-cell {
  display: table-cell !important;
}

.d-xs-table-row {
  display: table-row !important;
}

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .d-sm-grid {
    display: grid !important;
  }
  .d-sm-inline-grid {
    display: inline-grid !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
}
@media (min-width: 769px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-md-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .d-md-grid {
    display: grid !important;
  }
  .d-md-inline-grid {
    display: inline-grid !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
}
@media (min-width: 1024px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .d-lg-grid {
    display: grid !important;
  }
  .d-lg-inline-grid {
    display: inline-grid !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
}
@media (min-width: 1440px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .d-xl-grid {
    display: grid !important;
  }
  .d-xl-inline-grid {
    display: inline-grid !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
}
@media (min-width: 1920px) {
  .d-xxl-none {
    display: none !important;
  }
  .d-xxl-inline {
    display: inline !important;
  }
  .d-xxl-block {
    display: block !important;
  }
  .d-xxl-inline-block {
    display: inline-block !important;
  }
  .d-xxl-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-xxl-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
  .d-xxl-grid {
    display: grid !important;
  }
  .d-xxl-inline-grid {
    display: inline-grid !important;
  }
  .d-xxl-table {
    display: table !important;
  }
  .d-xxl-table-cell {
    display: table-cell !important;
  }
  .d-xxl-table-row {
    display: table-row !important;
  }
}
@media (min-width: 769px) {
  .d-mobile-only {
    display: none !important;
  }
}

.d-desktop-only {
  display: none !important;
}
@media (min-width: 769px) {
  .d-desktop-only {
    display: block !important;
  }
}

.d-tablet-up {
  display: none !important;
}
@media (min-width: 576px) {
  .d-tablet-up {
    display: block !important;
  }
}

/* style.scss
   FLOCSS structure: settings, tools, base, layout, component, project */
.text-left {
  text-align: left !important;
}

.text-center {
  text-align: center !important;
}

.text-right {
  text-align: right !important;
}

.text-justify {
  text-align: justify !important;
}

.text-start {
  text-align: start !important;
}

.text-end {
  text-align: end !important;
}

.text-xs-left {
  text-align: left !important;
}

.text-xs-center {
  text-align: center !important;
}

.text-xs-right {
  text-align: right !important;
}

.text-xs-justify {
  text-align: justify !important;
}

.text-xs-start {
  text-align: start !important;
}

.text-xs-end {
  text-align: end !important;
}

@media (min-width: 576px) {
  .text-sm-left {
    text-align: left !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
  .text-sm-right {
    text-align: right !important;
  }
  .text-sm-justify {
    text-align: justify !important;
  }
  .text-sm-start {
    text-align: start !important;
  }
  .text-sm-end {
    text-align: end !important;
  }
}
@media (min-width: 769px) {
  .text-md-left {
    text-align: left !important;
  }
  .text-md-center {
    text-align: center !important;
  }
  .text-md-right {
    text-align: right !important;
  }
  .text-md-justify {
    text-align: justify !important;
  }
  .text-md-start {
    text-align: start !important;
  }
  .text-md-end {
    text-align: end !important;
  }
}
@media (min-width: 1024px) {
  .text-lg-left {
    text-align: left !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
  .text-lg-right {
    text-align: right !important;
  }
  .text-lg-justify {
    text-align: justify !important;
  }
  .text-lg-start {
    text-align: start !important;
  }
  .text-lg-end {
    text-align: end !important;
  }
}
@media (min-width: 1440px) {
  .text-xl-left {
    text-align: left !important;
  }
  .text-xl-center {
    text-align: center !important;
  }
  .text-xl-right {
    text-align: right !important;
  }
  .text-xl-justify {
    text-align: justify !important;
  }
  .text-xl-start {
    text-align: start !important;
  }
  .text-xl-end {
    text-align: end !important;
  }
}
@media (min-width: 1920px) {
  .text-xxl-left {
    text-align: left !important;
  }
  .text-xxl-center {
    text-align: center !important;
  }
  .text-xxl-right {
    text-align: right !important;
  }
  .text-xxl-justify {
    text-align: justify !important;
  }
  .text-xxl-start {
    text-align: start !important;
  }
  .text-xxl-end {
    text-align: end !important;
  }
}
.text-mobile-center {
  text-align: center !important;
}
@media (min-width: 769px) {
  .text-mobile-center {
    text-align: left !important;
  }
}

.text-mobile-left {
  text-align: left !important;
}
@media (min-width: 769px) {
  .text-mobile-left {
    text-align: center !important;
  }
}

@media (min-width: 576px) {
  .text-tablet-center {
    text-align: center !important;
  }
}

@media (min-width: 769px) {
  .text-desktop-right {
    text-align: right !important;
  }
}

/* style.scss
   FLOCSS structure: settings, tools, base, layout, component, project */
.l-header {
  position: fixed;
  left: 0;
  top: -65px;
  height: 65px;
  width: 100%;
  z-index: 100;
  -webkit-transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}
.l-header__inner {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  background-color: #0D1C43;
}
@media (min-width: 769px) {
  .l-header__inner {
    padding: 0 20px;
  }
}
@media (min-width: 769px) {
  .l-header__burger {
    display: none;
  }
}
.l-header .c-logo img {
  width: 152px;
}
@media (min-width: 769px) {
  .l-header .c-logo img {
    width: 130px;
  }
}
@media (min-width: 1024px) {
  .l-header .c-logo img {
    width: auto;
  }
}

.hero-off-screen .l-header {
  top: 0;
}

.l-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

/* style.scss
   FLOCSS structure: settings, tools, base, layout, component, project */
.l-main {
  background: #0D1C43;
}

/* style.scss
   FLOCSS structure: settings, tools, base, layout, component, project */
.l-footer {
  background: #0D1C43;
  color: #fff;
}
.l-footer__inner {
  padding-top: 38px;
  padding: 38px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
@media (min-width: 769px) {
  .l-footer__inner {
    padding: 60px 20px 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.l-footer-nav {
  font-size: 1.125rem;
  line-height: 2.8333333333;
  font-weight: 500;
  letter-spacing: 0.09em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.26);
  padding: 0 20px 1.25rem;
  margin-bottom: 1.875rem;
}
@media (min-width: 769px) {
  .l-footer-nav {
    padding: 0 20px;
    border-bottom: none;
  }
}
.l-footer-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  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: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.l-footer-nav__item--privacy {
  font-size: 0.875rem;
  line-height: 3.6428571429;
}
.l-footer-nav__item--privacy a {
  text-decoration: underline;
}
.l-footer-nav__item--privacy a:hover {
  text-decoration: none;
}
.l-footer-nav__item a {
  display: inline-block;
}
.l-footer-nav__item a:hover {
  -webkit-transition: all 0.2s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.2s cubic-bezier(0.19, 1, 0.22, 1);
  color: #1341A8;
}

.l-footer-info {
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}
@media (min-width: 769px) {
  .l-footer-info {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}
.l-footer-info .c-logo--large a {
  padding: 0;
}
.l-footer-info__address {
  text-align: center;
}
@media (min-width: 769px) {
  .l-footer-info__address {
    text-align: left;
  }
}
.l-footer-info__address p {
  font-weight: 500;
  font-size: 1.5rem;
  letter-spacing: 0;
  margin: 10px 0;
  line-height: 1.375;
}
@media (min-width: 769px) {
  .l-footer-info__address p {
    margin: 0;
  }
}
.l-footer-info__address address {
  font-size: 1rem;
  line-height: 1.375;
  font-style: normal;
}
.l-footer-info__address .c-button {
  margin-top: 0.875rem;
}

.l-footer-text {
  padding-bottom: 1.625rem;
  padding: 30px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.26);
}
@media (min-width: 769px) {
  .l-footer-text {
    margin-top: 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    text-align: left;
    border: none;
    padding: 0 20px 1.625rem;
  }
}
.l-footer-text__copy {
  font-size: 0.75rem;
  text-align: center;
}
.l-footer-text__privacy a {
  text-decoration: underline;
  font-size: 0.875rem;
  letter-spacing: 0.09em;
}
.l-footer-text__privacy a:hover {
  text-decoration: none;
}

.l-footer-privacy {
  padding: 0.625rem 20px;
}

/* style.scss
   FLOCSS structure: settings, tools, base, layout, component, project */
.c-logo {
  line-height: 1;
  margin: 0;
  height: 100%;
}
.c-logo > a,
.c-logo > span {
  height: 100%;
  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;
  padding: 0 20px;
}

.c-logo--large {
  line-height: 1;
  margin: 0;
}
.c-logo--large img {
  width: 100%;
  max-width: 13.375rem;
}
.c-logo--large > a,
.c-logo--large > span {
  height: 100%;
  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;
  padding: 0 20px;
}

/* style.scss
   FLOCSS structure: settings, tools, base, layout, component, project */
/* バーガーボタン */
.c-burger {
  position: relative;
  width: 60px;
  height: 60px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.c-burger__icon {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 24px;
  height: 18px;
}

.c-burger__line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fff;
  -webkit-transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -webkit-transform-origin: center;
          transform-origin: center;
}

.c-burger__line:nth-child(1) {
  top: 0;
}

.c-burger__line:nth-child(2) {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.c-burger__line:nth-child(3) {
  bottom: 0;
}

/* バーガーアクティブ状態 */
.c-burger.is-active .c-burger__line:nth-child(1) {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}

.c-burger.is-active .c-burger__line:nth-child(2) {
  opacity: 0;
  -webkit-transform: translateY(-50%) scale(0);
          transform: translateY(-50%) scale(0);
}

.c-burger.is-active .c-burger__line:nth-child(3) {
  bottom: 50%;
  -webkit-transform: translateY(50%) rotate(-45deg);
          transform: translateY(50%) rotate(-45deg);
}

/* style.scss
   FLOCSS structure: settings, tools, base, layout, component, project */
/* ローディング画面 */
.c-loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, #0D1C43 0%, #0D1C43 50%, #284074 100%);
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 9999;
  opacity: 1;
  -webkit-transition: opacity 0.8s ease-out;
  transition: opacity 0.8s ease-out;
}

.c-loading-screen.fade-out {
  opacity: 0;
  pointer-events: none;
}

/* ロゴコンテナ */
.c-logo-container {
  position: relative;
  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;
  gap: 2rem;
}

/* SVGアニメーション */
.c-alfa-logo {
  width: 250px;
  height: auto;
  -webkit-filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
          filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
}

.c-alfa-logo path {
  fill: transparent;
  stroke: #ffffff;
  stroke-width: 0.5;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  -webkit-animation: drawLogo 3s ease-in-out forwards;
          animation: drawLogo 3s ease-in-out forwards;
}

.c-alfa-logo path:nth-child(1) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

.c-alfa-logo path:nth-child(2) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

.c-alfa-logo path:nth-child(3) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

.c-alfa-logo path:nth-child(4) {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}

.c-alfa-logo path:nth-child(5) {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.c-alfa-logo path:nth-child(6) {
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}

@-webkit-keyframes drawLogo {
  0% {
    stroke-dashoffset: 1000;
    fill: transparent;
  }
  70% {
    stroke-dashoffset: 0;
    fill: transparent;
  }
  100% {
    stroke-dashoffset: 0;
    fill: #ffffff;
    stroke: #ffffff;
  }
}

@keyframes drawLogo {
  0% {
    stroke-dashoffset: 1000;
    fill: transparent;
  }
  70% {
    stroke-dashoffset: 0;
    fill: transparent;
  }
  100% {
    stroke-dashoffset: 0;
    fill: #ffffff;
    stroke: #ffffff;
  }
}
/* プログレスバー */
.c-progress-container {
  position: absolute;
  bottom: 15%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 300px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 1px;
  overflow: hidden;
}

.c-progress-bar {
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#D82425), to(#ffffff));
  background: linear-gradient(90deg, #D82425, #ffffff);
  width: 0%;
  border-radius: 1px;
  -webkit-animation: fillProgress 3.5s ease-out forwards;
          animation: fillProgress 3.5s ease-out forwards;
  -webkit-box-shadow: 0 0 10px rgba(216, 36, 37, 0.5);
          box-shadow: 0 0 10px rgba(216, 36, 37, 0.5);
}

@-webkit-keyframes fillProgress {
  to {
    width: 100%;
  }
}

@keyframes fillProgress {
  to {
    width: 100%;
  }
}
/* レスポンシブ */
@media (max-width: 768px) {
  .c-alfa-logo {
    width: 200px;
  }
  .c-progress-container {
    width: 250px;
  }
}
/* style.scss
   FLOCSS structure: settings, tools, base, layout, component, project */
/* style.scss
   FLOCSS structure: settings, tools, base, layout, component, project */
@-webkit-keyframes scrollDown1 {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-836px);
            transform: translateY(-836px);
  }
}
@keyframes scrollDown1 {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-836px);
            transform: translateY(-836px);
  }
}
@-webkit-keyframes scrollDown2 {
  0% {
    -webkit-transform: translateY(-836px);
            transform: translateY(-836px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes scrollDown2 {
  0% {
    -webkit-transform: translateY(-836px);
            transform: translateY(-836px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes transformLeftRight {
  0% {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes transformLeftRight {
  0% {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes transformRightLeft {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(200%);
            transform: translateX(200%);
  }
}
@keyframes transformRightLeft {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(200%);
            transform: translateX(200%);
  }
}
/* 右からのアニメーション */
[data-animate].animate {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

/* 左からのアニメーション */
[data-animate].animate-left {
  opacity: 1;
  -webkit-transform: translateX(0) !important;
          transform: translateX(0) !important;
  -webkit-transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* 下からのアニメーション */
[data-animate].animate-up {
  opacity: 1;
  -webkit-transform: translateY(0) !important;
          transform: translateY(0) !important;
  -webkit-transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* フェードインのみ */
[data-animate].animate-fade {
  opacity: 1;
  -webkit-transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* スケールイン */
[data-animate].animate-scale {
  opacity: 1;
  -webkit-transform: scale(1) !important;
          transform: scale(1) !important;
  -webkit-transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* 共通の初期状態 */
[data-animate] {
  opacity: 0;
}

@-webkit-keyframes shake {
  0% {
    -webkit-transform: translate(3px, 5px);
            transform: translate(3px, 5px);
  }
  5% {
    -webkit-transform: translate(8px, -5px);
            transform: translate(8px, -5px);
  }
  10% {
    -webkit-transform: translate(-3px, 2px);
            transform: translate(-3px, 2px);
  }
  20% {
    -webkit-transform: translate(0px, -5px);
            transform: translate(0px, -5px);
  }
  25% {
    -webkit-transform: translate(2px, -5px);
            transform: translate(2px, -5px);
  }
  30% {
    -webkit-transform: translate(-3px, -3px);
            transform: translate(-3px, -3px);
  }
  30% {
    -webkit-transform: translate(0px, 0px);
            transform: translate(0px, 0px);
  }
  40% {
    -webkit-transform: translate(2px, 2px);
            transform: translate(2px, 2px);
  }
  55% {
    -webkit-transform: translate(6px, -5px);
            transform: translate(6px, -5px);
  }
  68% {
    -webkit-transform: translate(4px, -3px);
            transform: translate(4px, -3px);
  }
  80% {
    -webkit-transform: translate(-4px, 2px);
            transform: translate(-4px, 2px);
  }
  85% {
    -webkit-transform: translate(2px, -5px);
            transform: translate(2px, -5px);
  }
  90% {
    -webkit-transform: translate(-8px, 5px);
            transform: translate(-8px, 5px);
  }
  100% {
    -webkit-transform: translate(7px, 6px);
            transform: translate(7px, 6px);
  }
}

@keyframes shake {
  0% {
    -webkit-transform: translate(3px, 5px);
            transform: translate(3px, 5px);
  }
  5% {
    -webkit-transform: translate(8px, -5px);
            transform: translate(8px, -5px);
  }
  10% {
    -webkit-transform: translate(-3px, 2px);
            transform: translate(-3px, 2px);
  }
  20% {
    -webkit-transform: translate(0px, -5px);
            transform: translate(0px, -5px);
  }
  25% {
    -webkit-transform: translate(2px, -5px);
            transform: translate(2px, -5px);
  }
  30% {
    -webkit-transform: translate(-3px, -3px);
            transform: translate(-3px, -3px);
  }
  30% {
    -webkit-transform: translate(0px, 0px);
            transform: translate(0px, 0px);
  }
  40% {
    -webkit-transform: translate(2px, 2px);
            transform: translate(2px, 2px);
  }
  55% {
    -webkit-transform: translate(6px, -5px);
            transform: translate(6px, -5px);
  }
  68% {
    -webkit-transform: translate(4px, -3px);
            transform: translate(4px, -3px);
  }
  80% {
    -webkit-transform: translate(-4px, 2px);
            transform: translate(-4px, 2px);
  }
  85% {
    -webkit-transform: translate(2px, -5px);
            transform: translate(2px, -5px);
  }
  90% {
    -webkit-transform: translate(-8px, 5px);
            transform: translate(-8px, 5px);
  }
  100% {
    -webkit-transform: translate(7px, 6px);
            transform: translate(7px, 6px);
  }
}
.c-carousel {
  margin: 0 auto;
  position: relative;
  width: 284px;
  height: 364px;
  overflow: visible;
}

.c-carousel__item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transform: translateX(0) translateY(0) rotate(0deg);
          transform: translateX(0) translateY(0) rotate(0deg);
  -webkit-transition: -webkit-transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: -webkit-transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-radius: 0;
  overflow: hidden;
  /* アニメーション中の要素を強制的にGPUレイヤーに移動 */
  will-change: transform, opacity;
  /* サブピクセルレンダリングを防ぐ */
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

/* 各状態のスタイル */
.c-carousel__item.is-active {
  opacity: 1;
  -webkit-transform: translateX(0) translateY(0) rotate(0deg);
          transform: translateX(0) translateY(0) rotate(0deg);
  z-index: 3;
}

.c-carousel__item.is-prev {
  opacity: 1;
  -webkit-transform: translateX(-20px) translateY(0) rotate(-4deg);
          transform: translateX(-20px) translateY(0) rotate(-4deg);
  z-index: 2;
}

.c-carousel__item.is-next {
  opacity: 1;
  -webkit-transform: translateX(28px) translateY(0) rotate(8deg);
          transform: translateX(28px) translateY(0) rotate(8deg);
  z-index: 1;
}

/* フェードアニメーション用の状態 */
.c-carousel__item.is-fade-out {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}

.c-carousel__item.is-fade-in {
  opacity: 1;
  -webkit-transition: opacity 0.6s ease-in;
  transition: opacity 0.6s ease-in;
}

/* アニメーション中の状態 */
.c-carousel__item.is-transitioning {
  -webkit-transition-duration: 1.2s;
          transition-duration: 1.2s;
  -webkit-transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
          transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.c-carousel__content {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

/* オーバーレイ効果 */
.c-carousel__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 34, 112, 0.5);
  z-index: 1;
  pointer-events: none;
  opacity: 1;
  -webkit-transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.c-carousel__item.is-active::before {
  opacity: 0;
  background: rgba(0, 34, 112, 0);
}

.c-carousel__item.is-prev::before {
  opacity: 1;
  background: rgba(0, 34, 112, 0.5);
}

.c-carousel__item.is-next::before {
  opacity: 1;
  background: rgba(0, 34, 112, 0.8);
}

/* スライドの背景画像 */
.p-slide--type1 .c-carousel__content {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.p-slide--type2 .c-carousel__content {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.p-slide--type3 .c-carousel__content {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .c-carousel {
    width: min(284px, 80vw);
    height: min(364px, 102.5352112676vw);
  }
}
@media (max-width: 480px) {
  .c-carousel {
    width: min(284px, 90vw);
    height: min(364px, 115.3521126761vw);
  }
}
/* style.scss
   FLOCSS structure: settings, tools, base, layout, component, project */
.c-button {
  display: inline-block;
  padding: 14px 40px;
  background-color: #FFFFFF;
  border-radius: 3.75rem;
  color: #0D1C43;
  font-weight: 500;
  font-size: 1.125rem;
  position: relative;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  min-width: 235px;
  width: 100%;
  max-width: 375px;
}
@media (min-width: 769px) {
  .c-button {
    width: auto;
    max-width: auto;
    padding: 14px 60px 14px 32px;
  }
}
.c-button::after {
  content: "";
  width: 11px;
  height: 9px;
  display: block;
  position: absolute;
  right: 25px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url(../images/ico-arrow01--main.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.c-button:hover {
  background: #1341A8;
  color: #FFF;
}
.c-button:hover::after {
  background-image: url(../images/ico-arrow01--white.svg);
}
.c-button--red {
  background-color: #D82425;
  color: #fff;
}
.c-button--red:hover {
  background: #fff;
  color: #D82425;
}
.c-button--blue {
  background-color: #0D1C43;
  color: #fff;
}
.c-button--blue::after {
  background-image: url(../images/ico-arrow01--white.svg);
}
.c-button--external {
  padding: 14px 30px 15px 14px;
  min-width: 258px;
  text-align: center;
}
.c-button--external::after {
  right: 34px;
  width: 16px;
  height: 16px;
  background-image: url(../images/ico-external01.svg);
}
.c-button--external:hover::after {
  background-image: url(../images/ico-external01--red.svg);
}
.c-button--pdf {
  padding: 14px 40px 15px 14px;
  min-width: 258px;
  text-align: center;
  background-color: #0D1C43;
  color: #fff;
}
.c-button--pdf::after {
  right: 24px;
  width: 20px;
  height: 20px;
  background-image: url(../images/ico-pdf01.svg);
}
.c-button--pdf:hover::after {
  right: 24px;
  width: 20px;
  height: 20px;
  background-image: url(../images/ico-pdf01.svg);
}
.c-button--map {
  padding: 14px 14px 15px 30px;
  min-width: 265px;
  text-align: center;
}
.c-button--map::after {
  right: unset;
  left: 32px;
  width: 16px;
  height: 21px;
  background-image: url(../images/ico-pin01.svg);
}
.c-button--map:hover::after {
  background-image: url(../images/ico-pin01--outline.svg);
}

/* style.scss
   FLOCSS structure: settings, tools, base, layout, component, project */
.c-flag {
  display: inline-block;
  font-weight: 500;
  font-size: 1.125rem;
  letter-spacing: 0.09em;
  text-align: left;
  color: #ffffff;
  position: relative;
  padding-left: 0.9375rem;
}
.c-flag::before {
  content: "";
  position: absolute;
  display: block;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.4375rem;
  height: 0.4375rem;
  margin-right: 0.25em;
  background: #D82425;
  border-radius: 100%;
}

/* style.scss
   FLOCSS structure: settings, tools, base, layout, component, project */
.c-link {
  display: block;
  padding: 0.75rem;
  border: 1px solid #1e4098;
  margin-bottom: 0.5rem;
  border-radius: 4px;
}

.c-font-sgeo {
  font-family: "Special Gothic Expanded One", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* style.scss
   FLOCSS structure: settings, tools, base, layout, component, project */
.c-arrow {
  overflow: hidden;
  position: absolute;
  top: 0;
  right: 30px;
  bottom: 0;
  width: 30px;
  margin: auto 0;
  line-height: 1;
  border-radius: 60px;
  background: rgba(75, 98, 123, 0.1);
  height: 19px;
}
.c-arrow::before, .c-arrow::after {
  content: "";
  width: 11px;
  height: 9px;
  display: block;
  position: absolute;
  background-image: url(../images/ico-arrow01--gray.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  left: 10px;
  top: 5px;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-duration: 0.6s;
          animation-duration: 0.6s;
}
.c-arrow::after {
  -webkit-transform: translateX(-200%);
          transform: translateX(-200%);
}

/* style.scss
   FLOCSS structure: settings, tools, base, layout, component, project */
hr,
.c-hr01 {
  width: 100%;
  height: 0;
  border: none;
  border-bottom: 1px solid #fff;
  margin-bottom: 50px;
}

.c-map-container {
  position: relative;
}
.c-map-container::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background-color: #2D3136;
  mix-blend-mode: color;
}
.c-map-container iframe {
  width: 100%;
  -webkit-filter: sepia(20%) saturate(80%) brightness(90%);
          filter: sepia(20%) saturate(80%) brightness(90%);
}

/* style.scss
   FLOCSS structure: settings, tools, base, layout, component, project */
:root {
  --table-shadow-color: hsla(0, 0%, 87%, 0.9);
  --table-shadow-size: 0.5rem;
  --table-shadow-spread: calc(var(--table-shadow-size) * -0.5);
}

@-webkit-keyframes scroll-table-shadow-inset {
  0% {
    -webkit-box-shadow: inset calc(var(--table-shadow-size) * -2) 0 var(--table-shadow-size) var(--table-shadow-spread) var(--table-shadow-color), inset 0 0 var(--table-shadow-size) var(--table-shadow-spread) var(--table-shadow-color);
            box-shadow: inset calc(var(--table-shadow-size) * -2) 0 var(--table-shadow-size) var(--table-shadow-spread) var(--table-shadow-color), inset 0 0 var(--table-shadow-size) var(--table-shadow-spread) var(--table-shadow-color);
  }
  10%, 90% {
    -webkit-box-shadow: inset calc(var(--table-shadow-size) * -1) 0 var(--table-shadow-size) var(--table-shadow-spread) var(--table-shadow-color), inset var(--table-shadow-size) 0 var(--table-shadow-size) var(--table-shadow-spread) var(--table-shadow-color);
            box-shadow: inset calc(var(--table-shadow-size) * -1) 0 var(--table-shadow-size) var(--table-shadow-spread) var(--table-shadow-color), inset var(--table-shadow-size) 0 var(--table-shadow-size) var(--table-shadow-spread) var(--table-shadow-color);
  }
  100% {
    -webkit-box-shadow: inset 0 0 var(--table-shadow-size) var(--table-shadow-spread) var(--table-shadow-color), inset calc(var(--table-shadow-size) * 2) 0 var(--table-shadow-size) var(--table-shadow-spread) var(--table-shadow-color);
            box-shadow: inset 0 0 var(--table-shadow-size) var(--table-shadow-spread) var(--table-shadow-color), inset calc(var(--table-shadow-size) * 2) 0 var(--table-shadow-size) var(--table-shadow-spread) var(--table-shadow-color);
  }
}

@keyframes scroll-table-shadow-inset {
  0% {
    -webkit-box-shadow: inset calc(var(--table-shadow-size) * -2) 0 var(--table-shadow-size) var(--table-shadow-spread) var(--table-shadow-color), inset 0 0 var(--table-shadow-size) var(--table-shadow-spread) var(--table-shadow-color);
            box-shadow: inset calc(var(--table-shadow-size) * -2) 0 var(--table-shadow-size) var(--table-shadow-spread) var(--table-shadow-color), inset 0 0 var(--table-shadow-size) var(--table-shadow-spread) var(--table-shadow-color);
  }
  10%, 90% {
    -webkit-box-shadow: inset calc(var(--table-shadow-size) * -1) 0 var(--table-shadow-size) var(--table-shadow-spread) var(--table-shadow-color), inset var(--table-shadow-size) 0 var(--table-shadow-size) var(--table-shadow-spread) var(--table-shadow-color);
            box-shadow: inset calc(var(--table-shadow-size) * -1) 0 var(--table-shadow-size) var(--table-shadow-spread) var(--table-shadow-color), inset var(--table-shadow-size) 0 var(--table-shadow-size) var(--table-shadow-spread) var(--table-shadow-color);
  }
  100% {
    -webkit-box-shadow: inset 0 0 var(--table-shadow-size) var(--table-shadow-spread) var(--table-shadow-color), inset calc(var(--table-shadow-size) * 2) 0 var(--table-shadow-size) var(--table-shadow-spread) var(--table-shadow-color);
            box-shadow: inset 0 0 var(--table-shadow-size) var(--table-shadow-spread) var(--table-shadow-color), inset calc(var(--table-shadow-size) * 2) 0 var(--table-shadow-size) var(--table-shadow-spread) var(--table-shadow-color);
  }
}
.c-table-scroll {
  overflow-x: scroll;
  -webkit-animation: scroll-table-shadow-inset linear;
          animation: scroll-table-shadow-inset linear;
  animation-timeline: scroll(self x);
}
@media (min-width: 769px) {
  .c-table-scroll {
    overflow-x: auto;
    -webkit-animation: none;
            animation: none;
  }
}
.c-table-scroll table {
  width: 100%;
  border-collapse: collapse;
  white-space: nowrap;
}
@media (min-width: 769px) {
  .c-table-scroll table {
    white-space: normal;
  }
}

/* style.scss
   FLOCSS structure: settings, tools, base, layout, component, project */
.c-list-number__item {
  display: block;
  text-indent: -1.2em;
  padding-left: 2.2em;
}
.c-list-number__item:nth-child(1)::before {
  content: "① ";
}
.c-list-number__item:nth-child(2)::before {
  content: "② ";
}
.c-list-number__item:nth-child(3)::before {
  content: "③ ";
}
.c-list-number__item:nth-child(4)::before {
  content: "④ ";
}
.c-list-number__item:nth-child(5)::before {
  content: "⑤ ";
}
.c-list-number__item:nth-child(6)::before {
  content: "⑥ ";
}
.c-list-number__item:nth-child(7)::before {
  content: "⑦ ";
}
.c-list-number__item:nth-child(8)::before {
  content: "⑧ ";
}
.c-list-number__item:nth-child(9)::before {
  content: "⑨ ";
}
.c-list-number__item:nth-child(10)::before {
  content: "⑩ ";
}

ul.c-list-number02 {
  list-style: none;
  padding: 0;
}
ul.c-list-number02 li {
  text-indent: -1.2em;
  padding-left: 2.2em;
}

/* style.scss
   FLOCSS structure: settings, tools, base, layout, component, project */
.p-hero {
  height: var(--hero-total-height);
  position: relative;
  color: #fff;
}
.p-hero .p-hero__bg {
  position: sticky;
  top: 0;
  width: 100%;
  height: var(--viewport-height);
  overflow: hidden;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-transition: -webkit-transform 0.1s ease-out;
  transition: -webkit-transform 0.1s ease-out;
  transition: transform 0.1s ease-out;
  transition: transform 0.1s ease-out, -webkit-transform 0.1s ease-out;
  z-index: 2;
}
.p-hero .p-hero__bg video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-hero__body {
  position: fixed;
  inset: 0;
  height: var(--viewport-height);
  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: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  z-index: 3; /* 最前面に配置 */
  pointer-events: none;
}
.p-hero__title {
  margin: 0;
  font-size: clamp(2.8125rem, 3.6290322581vw, 3.75rem);
  line-height: 1.1111111111;
  line-height: 1.2;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.16);
}
@media (max-width: 768px) {
  .p-hero__title {
    font-size: 1.75rem;
  }
}
.p-hero__lead {
  font-size: clamp(1.125rem, 1.4516129032vw, 1.875rem);
  margin-top: 1.0625rem;
  font-size: 1.125rem;
  letter-spacing: 0.09em;
  line-height: 1.1666666667;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.16);
  margin-bottom: 4.375rem;
}

/* style.scss
   FLOCSS structure: settings, tools, base, layout, component, project */
.p-slide {
  background: #163171;
  position: relative;
  padding: 60px 0 110px;
}

.p-slide-button {
  position: relative;
  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;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px 30px;
  padding-bottom: 90px;
}
@media (min-width: 769px) {
  .p-slide-button {
    width: auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.p-slide-button__item {
  cursor: pointer;
  border: none;
  display: inline-block;
  padding: 14px 36px;
  background-color: #FFFFFF;
  border-radius: 3.75rem;
  color: #0D1C43;
  font-weight: 500;
  font-size: 1.125rem;
  position: relative;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.p-slide-button__item:hover {
  background: #1341A8;
  color: #FFF;
}
.p-slide-button__item:hover::after {
  background-image: url(../images/ico-arrow01--white.svg);
}

.p-slide-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  margin-bottom: 30px;
  gap: 30px 0;
}
@media (min-width: 769px) {
  .p-slide-header {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 50px;
    gap: 0;
  }
}
.p-slide-header__col:last-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}

.p-slide-data__title {
  margin: 0;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.p-slide-data__text {
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}

.slide-counter .current {
  font-size: 1.5rem;
}
.slide-counter .slash {
  font-size: 1.125rem;
  color: #6585B9;
}
.slide-counter .total {
  font-size: 1.125rem;
  color: #6585B9;
}

.swiper-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.swiper-button-prev,
.swiper-button-next {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  -webkit-transition: opacity 0.2s ease-in;
  transition: opacity 0.2s ease-in;
  left: auto;
  right: auto;
  top: auto;
  margin: 0;
}
.swiper-button-prev::after,
.swiper-button-next::after {
  content: "";
  width: 11px;
  height: 8px;
  background-image: url(../images/ico-arrow03.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
  opacity: 0.5;
}

.swiper-button-prev::after {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}

/* style.scss
   FLOCSS structure: settings, tools, base, layout, component, project */
.p-global-nav {
  height: 100%;
  display: none;
}
@media (min-width: 769px) {
  .p-global-nav {
    display: block;
  }
}
.p-global-nav__list {
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  gap: 1.875rem;
  height: 100%;
}
@media (min-width: 769px) {
  .p-global-nav__list {
    font-size: 0.9375rem;
    gap: 1.625rem;
  }
}
@media (min-width: 1024px) {
  .p-global-nav__list {
    gap: 3.125rem;
    font-size: 1.125rem;
  }
}
.p-global-nav__item {
  height: 100%;
}
.p-global-nav__item > a {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
  position: relative;
}
.p-global-nav__item > a::before {
  content: "";
  opacity: 0;
  width: 100%;
  height: 3px;
  background-color: #D82424;
  display: block;
  position: absolute;
  bottom: 0;
  z-index: 2;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.p-global-nav__item > a:hover::before {
  opacity: 1;
}
.p-global-nav__item > a.is-external::after {
  content: "";
  display: inline-block;
  margin-left: 5px;
  width: 12px;
  height: 12px;
  background-image: url(../images/ico-external01.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.p-gnav-sp {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  opacity: 0;
  z-index: 90;
  background: #0D1C43;
  visibility: hidden;
  -webkit-transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media (min-width: 769px) {
  .p-gnav-sp {
    display: none;
  }
}
.p-gnav-sp.is-active {
  opacity: 1;
  visibility: visible;
}
.p-gnav-sp__content {
  padding-top: 80px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.26);
}
.p-gnav-sp__list {
  list-style: none;
  font-weight: 500;
  font-size: 0.9375rem;
  letter-spacing: 0.09em;
  line-height: 2.6666666667;
  color: #fff;
  padding: 0;
  margin: 0;
}
.p-gnav-sp__item {
  -webkit-transform: translateX(50px);
          transform: translateX(50px);
  opacity: 0;
  -webkit-transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.p-gnav-sp__item a {
  display: block;
  padding: 10px 30px;
}
.p-gnav-sp__item a.is-external::after {
  content: "";
  display: inline-block;
  margin-left: 5px;
  width: 12px;
  height: 12px;
  background-image: url(../images/ico-external01.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.p-gnav-sp.is-active .p-gnav-sp__item {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}

/* 遅延アニメーション */
.p-gnav-sp.is-active .p-gnav-sp__item:nth-child(1) {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

.p-gnav-sp.is-active .p-gnav-sp__item:nth-child(2) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.p-gnav-sp.is-active .p-gnav-sp__item:nth-child(3) {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.p-gnav-sp.is-active .p-gnav-sp__item:nth-child(4) {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

body.menu-open {
  overflow: hidden;
}

/* style.scss
   FLOCSS structure: settings, tools, base, layout, component, project */
.p-local-nav .l-container {
  padding-top: 40px;
  max-width: 1100px;
}
.p-local-nav__list {
  list-style: none;
  gap: clamp(5px, 2.0161290323vw, 25px);
  padding: 0;
  margin: 0;
}
@media (min-width: 769px) {
  .p-local-nav__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (min-width: 769px) {
  .p-local-nav__item {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.p-local-nav__link {
  padding: 20px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-weight: 500;
  font-size: 0.9375rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.26);
  position: relative;
  height: 100%;
  gap: 0.625rem;
}
@media (min-width: 769px) {
  .p-local-nav__link {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.p-local-nav__link::before {
  content: "";
  position: absolute;
  display: block;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
  z-index: 2;
  background-color: #1241A8;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.p-local-nav__link::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background-image: url(../images/ico-arrow02.svg);
  background-repeat: none;
  background-size: contain;
  background-position: center;
}
.p-local-nav__link:hover::before {
  width: 100%;
}

/* style.scss
   FLOCSS structure: settings, tools, base, layout, component, project */
/* 横スクロールセクション */
.p-side-scroll {
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  position: relative;
}

.p-side-scroll-list-wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 900px;
  z-index: 3;
}

.p-side-scroll-list {
  padding-top: 60px;
  position: absolute;
  top: 50%;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0;
  height: 90%;
  padding-left: 600px;
  padding-right: 200px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin: 0;
}

.p-side-scroll-bg-logo {
  display: block;
  position: absolute;
  inset: 0;
  width: 2400px;
  height: 100%;
  padding-left: 600px;
  background-image: url("../images/logo_alfa-pd01--gray.svg");
  background-color: rgba(255, 255, 255, 0.9);
  background-blend-mode: lighten;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 96% auto;
  z-index: 2;
}

.p-side-scroll-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: auto;
  color: #1b1717;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  margin-left: -20px;
  margin-right: -20px;
}
.p-side-scroll-item:nth-child(1) {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 306px;
}
.p-side-scroll-item:nth-child(2) {
  width: 460px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.p-side-scroll-item:nth-child(3) {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 420px;
}
.p-side-scroll-item:nth-child(4) {
  width: 342px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.p-side-scroll-item:nth-child(5) {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 420px;
}
.p-side-scroll-item:nth-child(6) {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: 512px;
}

/* style.scss
   FLOCSS structure: settings, tools, base, layout, component, project */
.p-top-service {
  padding: 40px 0 100px;
  background-color: #0D1C43;
  height: var(--service-sticky-duration);
  position: relative;
  margin-top: calc(var(--hero-total-height) * -1);
}
.p-top-service__sticky {
  position: sticky;
  top: 0;
  width: 100%;
  height: var(--viewport-height);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 1; /* ヒーローセクションより後ろに配置 */
}
.p-top-service__sticky::before, .p-top-service__sticky::after {
  position: absolute;
  top: 6.25rem;
  content: "";
  width: 100%;
  height: 100px;
  opacity: 0.3;
  background-repeat: repeat-x;
  background-image: url(../images/logo_alfa-pd01--bg.svg);
  -webkit-animation: loop-slide 4s infinite linear;
          animation: loop-slide 4s infinite linear;
}
.p-top-service__sticky::before {
  top: 8.125rem;
  -webkit-animation: loop-slide 4s infinite linear;
          animation: loop-slide 4s infinite linear;
}
.p-top-service__sticky::after {
  top: 12.5rem;
  animation: loop-slide 4s infinite linear reverse;
}
.p-top-service__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 700px;
  opacity: 0;
  -webkit-transform: translateY(10%);
          transform: translateY(10%);
  -webkit-transition: all 0.5s ease-in;
  transition: all 0.5s ease-in;
}
@media (max-width: 768px) {
  .p-top-service__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-top-service__col {
  max-width: 600px;
}
.p-top-service__col:last-child {
  width: 100%;
  max-width: 600px;
}
.p-top-service__col .c-carousel {
  margin: 30px auto 30px 100px;
}
.p-top-service__header {
  margin-bottom: 1rem;
}
.p-top-service__title {
  margin-top: 1.3125rem;
  margin-bottom: 0;
  font-size: 2.8125rem;
}
.p-top-service__text {
  margin-top: 1.75rem;
  margin-bottom: 2.9375rem;
  font-size: 0.9375rem;
  line-height: 1.8666666667;
}
@media (min-width: 769px) {
  .p-top-service__text {
    font-size: 1.125rem;
    line-height: 1.9444444444;
  }
}
.p-top-service__image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 50%;
}
.p-top-service__image img {
  border-radius: 8px;
}
@media (max-width: 768px) {
  .p-top-service__image {
    width: 100%;
  }
}
.hero-off-screen .p-top-service__inner {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

@-webkit-keyframes loop-slide {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -200px 0;
  }
}

@keyframes loop-slide {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -200px 0;
  }
}
.p-top-equipment {
  padding: 25vh 0 0;
  position: relative;
  -webkit-clip-path: inset(0);
          clip-path: inset(0);
  overflow: hidden;
  background: #091636;
  text-align: center;
}
.p-top-equipment__bg {
  -o-object-fit: cover;
     object-fit: cover;
  position: fixed;
  left: -30px;
  top: -30px;
  max-width: none;
  width: calc(100% + 60px);
  height: calc(100% + 60px);
  -webkit-transition: -webkit-filter 0.3s ease-out;
  transition: -webkit-filter 0.3s ease-out;
  transition: filter 0.3s ease-out;
  transition: filter 0.3s ease-out, -webkit-filter 0.3s ease-out;
  -webkit-filter: blur(0px);
          filter: blur(0px);
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}
.p-top-equipment__movie {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-top-equipment__bg-mask {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.1)), color-stop(5%, transparent), color-stop(95%, transparent), to(rgba(0, 0, 0, 0.1)));
  background: linear-gradient(to right, rgba(0, 0, 0, 0.1) 0%, transparent 5%, transparent 95%, rgba(0, 0, 0, 0.1) 100%);
  pointer-events: none;
  z-index: 1;
}
.p-top-equipment__inner {
  position: relative;
  padding: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0;
  z-index: 10;
  height: 100vh;
}
@media (max-width: 768px) {
  .p-top-equipment__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.p-top-equipment__col {
  width: 50%;
}
.p-top-equipment__content {
  padding: 0 20px;
  margin: 0 auto;
  opacity: 0;
  -webkit-transform: translateY(10%);
          transform: translateY(10%);
  -webkit-transition: all 0.5s ease-in;
  transition: all 0.5s ease-in;
}
.p-top-equipment__content.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.p-top-equipment__title {
  margin-top: 1.3125rem;
  margin-bottom: 0;
  font-size: 2.8125rem;
}
.p-top-equipment__text {
  margin-top: 2.125rem;
  margin-bottom: 2.8125rem;
  font-size: 0.9375rem;
  line-height: 1.8666666667;
}
@media (min-width: 769px) {
  .p-top-equipment__text {
    margin-bottom: 4.0625rem;
    font-size: 1.125rem;
    line-height: 1.9444444444;
  }
}

.p-top-customer {
  padding: 0;
  overflow: hidden;
  position: relative;
  height: 100vh;
  text-align: center;
  background: #0D1C43;
}
.p-top-customer .l-container {
  height: 100%;
  position: relative;
  z-index: 2;
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-top-customer__list {
  width: 100%;
  max-width: 1200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 0;
  height: 100%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.p-top-customer__item--01, .p-top-customer__item--02 {
  max-width: 281px;
}
.p-top-customer__item--01 {
  -webkit-animation: scrollDown1 20s infinite linear 0.5s both;
          animation: scrollDown1 20s infinite linear 0.5s both;
}
.p-top-customer__item--02 {
  -webkit-animation: scrollDown2 20s infinite linear 0.5s both;
          animation: scrollDown2 20s infinite linear 0.5s both;
}
.p-top-customer .c-flag {
  padding: 0;
}
.p-top-customer .c-flag::before {
  content: none;
}
.p-top-customer__header {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.p-top-customer__title {
  font-size: 2.8125rem;
  position: relative;
  margin-top: 1.0625rem;
  padding-bottom: 0.375rem;
  margin-bottom: 3rem;
}
.p-top-customer__title::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 3px;
  background-color: #D82425;
}

.p-top-company {
  min-height: 700px;
  position: relative;
  overflow: hidden;
}
.p-top-company::before {
  content: "";
  position: absolute;
  display: block;
  inset: 0;
  z-index: 2;
  background: rgba(24, 48, 82, 0.38);
}
.p-top-company__movie {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.p-top-company__movie video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-top-company__inner {
  position: relative;
  z-index: 3;
  padding: 3.75rem 20px;
}
@media (min-width: 769px) {
  .p-top-company__inner {
    padding: 11.25rem 20px;
  }
}
.p-top-company__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  margin: 1.875rem auto 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 420px;
}
@media (min-width: 1024px) {
  .p-top-company__row {
    max-width: none;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 11.25rem 20px;
  }
}
@media (min-width: 1024px) {
  .p-top-company__header {
    padding-left: 60px;
  }
}
.p-top-company__title {
  margin-top: 1.3125rem;
  margin-bottom: 0;
  font-size: 2.8125rem;
}
.p-top-company__visual {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: right;
}
.p-top-company__info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
}
.p-top-company__links {
  margin: 0;
  padding: 0;
  list-style: none;
  max-width: 600px;
  counter-reset: listnum;
}
@media (min-width: 1024px) {
  .p-top-company__links {
    margin: 0 0 0 auto;
  }
}
.p-top-company__links li {
  margin-block: 6px;
  position: relative;
  opacity: 0;
  -webkit-transform: translateX(100px);
          transform: translateX(100px);
  -webkit-transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.p-top-company__links li:nth-child(1) {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}
.p-top-company__links li:nth-child(2) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.p-top-company__links li:nth-child(3) {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.p-top-company__links li:nth-child(4) {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.p-top-company__links li:nth-child(5) {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.p-top-company__links li:nth-child(6) {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.p-top-company__links li::before {
  counter-increment: listnum;
  content: counter(listnum, decimal-leading-zero);
  position: absolute;
  left: 18px;
  top: calc(50% - 2px);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #0D1C43;
  z-index: 2;
  font-weight: 400;
  font-style: normal;
  font-size: 2.5rem;
  line-height: 1;
  -webkit-transition: all 0.2s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.2s cubic-bezier(0.19, 1, 0.22, 1);
}
@media (min-width: 769px) {
  .p-top-company__links li::before {
    left: 58px;
  }
}
.p-top-company__links li:hover::before {
  color: #fff;
}
.p-top-company__links li a {
  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;
  background: #fff;
  border-radius: 5px;
  font-weight: 500;
  font-size: 1.125rem;
  color: #30394d;
  height: 90px;
  gap: 8px;
  padding-left: 80px;
  -webkit-transition: all 0.2s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.2s cubic-bezier(0.19, 1, 0.22, 1);
  position: relative;
}
@media (min-width: 769px) {
  .p-top-company__links li a {
    padding-left: 163px;
  }
}
.p-top-company__links li a .c-font-sgeo {
  font-weight: normal;
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  color: #4b627b;
  opacity: 0.5;
}
.p-top-company__links li a:hover {
  background: #1341A8;
  color: #fff;
}
.p-top-company__links li a:hover .c-font-sgeo {
  color: #fff;
}
.p-top-company__links li a:hover .c-arrow {
  background: rgba(255, 255, 255, 0.1);
}
.p-top-company__links li a:hover .c-arrow::before {
  -webkit-animation-name: transformRightLeft;
          animation-name: transformRightLeft;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
          animation-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  background-image: url(../images/ico-arrow01--white.svg);
}
.p-top-company__links li a:hover .c-arrow::after {
  -webkit-animation-name: transformLeftRight;
          animation-name: transformLeftRight;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
  -webkit-animation-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
          animation-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  background-image: url(../images/ico-arrow01--white.svg);
}

/* style.scss
   FLOCSS structure: settings, tools, base, layout, component, project */
.p-page-hero {
  height: 150vh;
  height: 150svh;
  min-height: 700px;
  position: relative;
}
.p-page-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.48);
}
.p-page-hero__movie {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.p-page-hero__movie video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-page-hero__movie img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-page-hero .l-container {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: 60px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.p-page-hero__content {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-page-hero__title {
  margin-top: 10px;
  font-size: 2.8125rem;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.16);
}
.p-page-hero .c-flag {
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.16);
}
.p-page-hero__sticky {
  top: 0;
  height: 120vh;
  height: 120svh;
  position: sticky;
}
.p-page-hero__mask {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 10;
  width: 100%;
  height: 100vh;
}
.p-page-hero__gradient-layer {
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(var(--grad-color01)), to(var(--grad-color02)));
  background: linear-gradient(180deg, var(--grad-color01) 0%, var(--grad-color02) 100%);
  mask: url(#circle-mask);
  -webkit-mask: url(#circle-mask);
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  opacity: 1;
}
.p-page-hero__gradient-layer.resizing {
  opacity: 0;
}
.p-page-lead {
  position: relative;
  z-index: 2;
}
.p-page-lead p {
  font-size: 0.9375rem;
  line-height: 1.8666666667;
  margin-bottom: 2.5rem;
}
@media (min-width: 769px) {
  .p-page-lead p {
    font-size: 1.125rem;
    line-height: 1.9444444444;
    margin-bottom: 3.75rem;
  }
}

/* style.scss
   FLOCSS structure: settings, tools, base, layout, component, project */
.p-company {
  background: #183052;
}

.p-company-section__header {
  font-size: 1.125rem;
  margin: 0;
}
.p-company-section__header .c-flag {
  margin: 0;
}
.p-company-section__title {
  margin: 10px 0 0;
  font-size: 2.8125rem;
  display: block;
}
.p-company-section__text {
  font-size: 0.9375rem;
  line-height: 1.8666666667;
  margin-bottom: 2.5rem;
}
@media (min-width: 769px) {
  .p-company-section__text {
    font-size: 1.125rem;
    line-height: 1.9444444444;
    margin-bottom: 3.75rem;
  }
}
.p-company-section.l-section {
  padding: 60px 0;
}
@media (min-width: 769px) {
  .p-company-section.l-section {
    padding: 120px 0;
  }
}
.p-company-section .l-container {
  max-width: 1040px;
}

#policy.l-section {
  padding-bottom: 240px;
}

#initiatives .p-company-section {
  height: 200vh;
  padding-bottom: 240px;
}
#initiatives .p-company-section + .p-company-section {
  padding-bottom: 0;
}
#initiatives .p-company-section::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -25%;
  width: 100%;
  height: 50%;
  z-index: 1;
  background-color: var(--section-color);
}
#initiatives .p-company-section .l-section {
  width: 100%;
  height: 100vh;
  height: 100svh;
  padding-top: 0;
  padding-bottom: 0;
}
@media (min-width: 769px) {
  #initiatives .p-company-section .l-section {
    padding-bottom: 0;
  }
}

#sdgs {
  height: 200vh;
  height: 200svh;
}
#sdgs .p-company-section__title {
  font-size: 2.1875rem;
}
@media (min-width: 769px) {
  #sdgs .p-company-section__title {
    font-size: 2.8125rem;
  }
}
#sdgs .l-section {
  height: 110vh;
  height: 110svh;
}
@media (min-width: 769px) {
  #sdgs .l-section {
    height: 100vh;
    height: 100svh;
    width: 100%;
  }
}
#sdgs .l-container {
  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;
}

#certification {
  height: 200vh;
  height: 200svh;
}
#certification .l-section {
  height: 110vh;
  height: 110svh;
}
@media (min-width: 769px) {
  #certification .l-section {
    height: 100vh;
    height: 100svh;
    width: 100%;
  }
}
#certification .l-container {
  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;
}

#history {
  background: #193052;
  overflow: hidden;
}

#outline {
  background: #163271;
}

.p-policy-card {
  background: #fff;
  color: #000;
  padding: 2.5rem 1.875rem;
  gap: 1.25rem;
}
@media (min-width: 769px) {
  .p-policy-card {
    padding: 3.75rem;
    gap: 2.6875rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.p-policy-card__text {
  margin-top: 0;
  font-size: 0.9375rem;
  line-height: 1.8666666667;
}
.p-policy-card__text h2 {
  margin: 0;
}
.p-policy-card__text h2 + .note {
  margin-top: 0;
}
@media (min-width: 769px) {
  .p-policy-card__text {
    font-size: 1.125rem;
    line-height: 1.9444444444;
  }
}
.p-policy-card__logo {
  max-width: 180px;
}
@media (min-width: 769px) {
  .p-policy-card__logo {
    max-width: none;
  }
}

.p-sdgs-card {
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #0D1C43;
  padding: 2.5rem 1.875rem;
  gap: 1.25rem;
  margin-top: 1.25rem;
}
@media (min-width: 769px) {
  .p-sdgs-card {
    margin-top: 1.875rem;
    padding: 3.75rem 1.25rem;
    gap: 2.6875rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.p-sdgs-card__text {
  margin-top: 0;
  font-size: 0.9375rem;
  line-height: 1.8666666667;
}
@media (min-width: 769px) {
  .p-sdgs-card__text {
    font-size: 1.125rem;
    line-height: 1.9444444444;
  }
}
.p-sdgs-card__logo {
  max-width: 180px;
}
@media (min-width: 769px) {
  .p-sdgs-card__logo {
    max-width: none;
  }
}

.p-certification-card {
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #0D1C43;
  padding: 2.5rem 1.875rem;
  gap: 1.25rem;
  margin-top: 1.25rem;
}
@media (min-width: 769px) {
  .p-certification-card {
    margin-top: 1.875rem;
    padding: 3.75rem 1.25rem;
    gap: 2.6875rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.p-certification-card__text {
  margin-top: 0;
  font-size: 0.9375rem;
  line-height: 1.8666666667;
}
@media (min-width: 769px) {
  .p-certification-card__text {
    font-size: 1.125rem;
    line-height: 1.9444444444;
  }
}
.p-certification-card__logo {
  max-width: 180px;
}
@media (min-width: 769px) {
  .p-certification-card__logo {
    max-width: none;
  }
}

.p-initiatives-item {
  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;
}
@media (min-width: 769px) {
  .p-initiatives-item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media (min-width: 769px) {
  .p-initiatives-item.--type01 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    height: 100vh;
    height: 100svh;
  }
}
@media (min-width: 769px) {
  .p-initiatives-item.--type01 .p-initiatives-item__image {
    height: 100%;
  }
}
@media (min-width: 769px) {
  .p-initiatives-item.--type01 img {
    width: clamp(23.4375rem, 21.1344rem + 9.8266vw, 28.75rem);
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (min-width: 769px) {
  .p-initiatives-item.--type02 {
    height: 100vh;
    height: 100svh;
  }
}
@media (min-width: 769px) {
  .p-initiatives-item.--type02 .p-initiatives-item__image {
    height: 100%;
  }
}
.p-initiatives-item.--type02 img {
  height: auto;
  max-height: 40vh;
}
@media (min-width: 769px) {
  .p-initiatives-item.--type02 img {
    width: clamp(23.4375rem, 21.1344rem + 9.8266vw, 28.75rem);
    height: 100%;
    max-height: none;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.p-initiatives-item__text {
  font-size: 0.9375rem;
  line-height: 1.8666666667;
}
@media (min-width: 769px) {
  .p-initiatives-item__text {
    font-size: 1.125rem;
    line-height: 1.9444444444;
    width: clamp(20rem, -11.412rem + 65.44vw, 31.125rem);
  }
}

.js-gradient-section {
  position: relative;
  height: 110vh;
  height: 110svh;
  background-color: var(--prev-section-color);
}
@media (min-width: 769px) {
  .js-gradient-section {
    height: 100vh;
  }
}
.js-gradient-section .l-container {
  padding-top: 0;
  height: 100%;
  position: relative;
}

.js-gradient-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 110vh;
  height: 110svh;
}
@media (min-width: 769px) {
  .js-gradient-background {
    height: 100vh;
  }
}

.strip {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.p-company-sticky {
  position: sticky;
  top: 0;
  z-index: 10;
  height: 110vh;
  height: 110svh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 769px) {
  .p-company-sticky {
    height: 100vh;
    height: 100svh;
  }
}
.p-company-sticky.is-full {
  top: 60px;
}
.p-company-sticky.is-full .p-company-sticky__inner {
  padding: 0;
}
.p-company-sticky__inner {
  width: 100%;
  padding: 60px 0 30px;
}
@media (min-width: 769px) {
  .p-company-sticky__inner {
    padding: 120px 0 60px;
  }
}

.p-history-timeline {
  position: relative;
  padding: 40px 100px 40px 0;
  margin-bottom: 60px;
  font-size: 1.125rem;
}

.p-history-timeline__line {
  position: absolute;
  left: calc(50% - 50px);
  top: 65px;
  bottom: 40px;
  width: 2px;
  background-color: rgba(255, 255, 255, 0.4);
  -webkit-transform: translateX(-50%) scaleY(0);
          transform: translateX(-50%) scaleY(0);
  -webkit-transform-origin: top;
          transform-origin: top;
  -webkit-transition: -webkit-transform 2s ease-in-out;
  transition: -webkit-transform 2s ease-in-out;
  transition: transform 2s ease-in-out;
  transition: transform 2s ease-in-out, -webkit-transform 2s ease-in-out;
}
.p-history-timeline__line.is-animated {
  -webkit-transform: translateX(-50%) scaleY(1);
          transform: translateX(-50%) scaleY(1);
}

.p-history-list {
  position: relative;
  z-index: 2;
}

.p-history-item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  margin-bottom: 20px;
}
.p-history-item__year {
  text-align: right;
  padding: 15px 20px;
  border-radius: 8px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.05em;
  opacity: 0;
  -webkit-transform: translateX(-50px);
          transform: translateX(-50px);
  -webkit-transition: all 0.6s ease-out;
  transition: all 0.6s ease-out;
}
.p-history-item__year.is-visible {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.p-history-item__marker {
  position: relative;
  width: 8px;
  height: 9px;
  background-color: #fff;
  border-radius: 50%;
  z-index: 3;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: -webkit-transform 0.4s ease-out;
  transition: -webkit-transform 0.4s ease-out;
  transition: transform 0.4s ease-out;
  transition: transform 0.4s ease-out, -webkit-transform 0.4s ease-out;
  justify-self: center;
}
.p-history-item__marker.is-visible {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.p-history-item__marker.is-visible::before {
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
}
.p-history-item__marker::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  background-color: #ffffff;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
          transform: translate(-50%, -50%) scale(0);
  -webkit-transition: -webkit-transform 0.3s ease-out 0.2s;
  transition: -webkit-transform 0.3s ease-out 0.2s;
  transition: transform 0.3s ease-out 0.2s;
  transition: transform 0.3s ease-out 0.2s, -webkit-transform 0.3s ease-out 0.2s;
}
.p-history-item__text {
  text-align: left;
  padding: 15px 20px;
  border-radius: 8px;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  font-size: 1.125rem;
  line-height: 1.6;
  color: #ffffff;
  opacity: 0;
  -webkit-transform: translateX(50px);
          transform: translateX(50px);
  -webkit-transition: all 0.6s ease-out;
  transition: all 0.6s ease-out;
}
.p-history-item__text.is-visible {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.p-history-image {
  max-width: 870px;
  margin: 0 auto;
  text-align: center;
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: all 0.8s ease-out;
  transition: all 0.8s ease-out;
}
.p-history-image.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.p-history-image img {
  max-width: 100%;
  height: auto;
}
.p-history-image .p-gallery-item .img::before {
  opacity: 0.5;
}
.p-history-image .p-gallery-item .img::after {
  opacity: 1;
}

@media (max-width: 768px) {
  .p-history-timeline {
    margin-bottom: 0;
    padding: 40px 0 20px;
  }
  .p-history-item {
    grid-template-columns: 1fr;
    gap: 5px;
    text-align: center;
    margin-bottom: 30px;
  }
  .p-history-timeline__line {
    left: 50%;
  }
  .p-history-item__year {
    text-align: center;
    border-right: none;
    font-size: 0.875rem;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    padding: 5px 10px;
  }
  .p-history-item__marker {
    width: 12px;
    height: 12px;
    border-width: 2px;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    justify-self: center;
  }
  .p-history-item__marker::before {
    width: 6px;
    height: 6px;
  }
  .p-history-item__text {
    font-size: 0.875rem;
    text-align: center;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    padding: 5px 10px;
  }
}
.p-outline-table {
  margin-top: 52px;
  background: #fff;
  font-size: 1rem;
  line-height: 1.5625;
  color: #183052;
  border-radius: 5px;
  padding: 20px;
  margin-bottom: 60px;
}
@media (min-width: 769px) {
  .p-outline-table {
    padding: 50px;
  }
}
.p-outline-table__table {
  table-layout: fixed;
  border-collapse: collapse;
  width: 100%;
  border-top: solid 1px rgba(24, 48, 82, 0.3);
}
.p-outline-table__table th {
  font-weight: normal;
  text-align: left;
  width: 100px;
  vertical-align: top;
}
@media (min-width: 769px) {
  .p-outline-table__table th {
    width: 253px;
  }
}
.p-outline-table__table th,
.p-outline-table__table td {
  padding: 18px 0;
  border-bottom: solid 1px rgba(24, 48, 82, 0.3);
}

.p-outline-map {
  max-width: 870px;
  margin: 0 auto 60px;
}

.p-access-list {
  max-width: 420px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}
@media (min-width: 769px) {
  .p-access-list {
    max-width: 870px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
  }
}
.p-access-list__item {
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (min-width: 769px) {
  .p-access-list__item {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.p-access-list__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 0.9375rem;
  line-height: 1.8666666667;
  margin-bottom: 0.625rem;
  gap: 8px;
}
@media (min-width: 769px) {
  .p-access-list__label {
    font-size: 1.125rem;
    line-height: 1.9444444444;
  }
}
.p-access-list__content {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 5px;
  font-size: 0.875rem;
  line-height: 1.7142857143;
  margin-bottom: 1rem;
  padding: 16px 20px;
}
.p-access-list__content p {
  margin-top: 0;
}
.p-access-list__content img {
  display: block;
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
}
@media (min-width: 769px) {
  .p-access-list__content {
    padding: 17px 30px;
    font-size: 1rem;
    line-height: 1.5625;
  }
}

/* style.scss
   FLOCSS structure: settings, tools, base, layout, component, project */
.p-service {
  background: #183052;
}

.p-service-sticky {
  height: 600px;
}
.p-service-sticky__inner {
  position: sticky;
  top: 160px;
}

/* style.scss
   FLOCSS structure: settings, tools, base, layout, component, project */
/* ホバー効果を無効化（クリック問題回避） */
.p-gallery-item:hover {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}

.p-gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--modal-border-radius);
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  text-decoration: none;
  color: inherit;
}
.p-gallery-item .img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  position: relative;
  margin-bottom: 20px;
}
.p-gallery-item .img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #183052;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding: 15px;
  color: white;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  z-index: 2;
}
.p-gallery-item .img::after {
  content: "";
  width: 78px;
  height: 78px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-image: url(../images/ico-play01.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0;
  z-index: 3;
}
.p-gallery-item .text {
  font-size: 0.875rem;
  line-height: 2;
}

.p-gallery-item:hover .img::before {
  opacity: 0.5;
}

.p-gallery-item:hover .img::after {
  opacity: 1;
}

/* フォーカス表示 */
.p-gallery-item:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* style.scss
   FLOCSS structure: settings, tools, base, layout, component, project */
/* モーダル背景 */
.modal-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--modal-bg);
  z-index: 200;
  opacity: 0;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.modal-bg.active {
  opacity: 1;
}

/* アニメーション用の一時的なモーダル */
.temp-modal {
  position: fixed;
  z-index: 100001;
  -webkit-perspective: 1000px;
          perspective: 1000px;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.72, -1.03, 0.51, 1);
  transition: -webkit-transform 0.5s cubic-bezier(0.72, -1.03, 0.51, 1);
  transition: transform 0.5s cubic-bezier(0.72, -1.03, 0.51, 1);
  transition: transform 0.5s cubic-bezier(0.72, -1.03, 0.51, 1), -webkit-transform 0.5s cubic-bezier(0.72, -1.03, 0.51, 1);
}

.temp-modal-front {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
  transition: -webkit-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
}

.temp-modal-back {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
  transition: -webkit-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* メインモーダル */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100002;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  position: relative;
  background: var(--modal-content-bg);
  border-radius: var(--modal-border-radius);
  -webkit-box-shadow: var(--modal-shadow);
          box-shadow: var(--modal-shadow);
  max-width: 90vw;
  max-height: 90vh;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.modal.active .modal-content {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.modal-content.video {
  background: var(--modal-video-bg);
}

.modal-media {
  display: block;
  max-width: 100%;
  max-height: calc(90vh - 80px);
  width: auto;
  height: auto;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}

.modal-media.loaded {
  opacity: 1;
}

.modal-media.video,
.modal-media.iframe {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  aspect-ratio: 16/9;
  -o-object-fit: contain;
     object-fit: contain;
}

.modal-content.video {
  width: auto;
  height: auto;
  min-width: 400px;
  min-height: 225px;
}

.modal-header {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  color: white;
  padding: 15px;
  z-index: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.47, 1.83, 0.71, 1);
  transition: -webkit-transform 0.3s cubic-bezier(0.47, 1.83, 0.71, 1);
  transition: transform 0.3s cubic-bezier(0.47, 1.83, 0.71, 1);
  transition: transform 0.3s cubic-bezier(0.47, 1.83, 0.71, 1), -webkit-transform 0.3s cubic-bezier(0.47, 1.83, 0.71, 1);
}

.modal-header.visible {
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}

.modal-title {
  display: inline-block;
  font-weight: 500;
  font-size: 1.125rem;
  letter-spacing: 0.09em;
  text-align: left;
  color: #ffffff;
  position: relative;
  padding-left: 0.9375rem;
  margin: 0;
}
.modal-title::before {
  content: "";
  position: absolute;
  display: block;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.4375rem;
  height: 0.4375rem;
  margin-right: 0.25em;
  background: #D82425;
  border-radius: 100%;
}

.modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  width: 30px;
  height: 30px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.875rem;
  z-index: 2;
  -webkit-transform: translateY(45px);
          transform: translateY(45px);
  -webkit-transition: all 0.3s cubic-bezier(0.47, 1.83, 0.71, 1);
  transition: all 0.3s cubic-bezier(0.47, 1.83, 0.71, 1);
  background: none;
  color: #fff;
}

.modal-close.visible {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.modal-close::before {
  content: "×";
}

/* ローディングアニメーション */
.modal-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top: 3px solid #fff;
  border-radius: 50%;
  -webkit-animation: spin 1s linear infinite;
          animation: spin 1s linear infinite;
  z-index: 1;
}

@-webkit-keyframes spin {
  to {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
            transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes spin {
  to {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
            transform: translate(-50%, -50%) rotate(360deg);
  }
}
/* 閉じるアニメーション用 */
.modal-header.closing {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: -webkit-transform 0.2s ease-in;
  transition: -webkit-transform 0.2s ease-in;
  transition: transform 0.2s ease-in;
  transition: transform 0.2s ease-in, -webkit-transform 0.2s ease-in;
}

.modal-close.closing {
  -webkit-transform: translateY(45px);
          transform: translateY(45px);
  -webkit-transition: -webkit-transform 0.2s ease-in;
  transition: -webkit-transform 0.2s ease-in;
  transition: transform 0.2s ease-in;
  transition: transform 0.2s ease-in, -webkit-transform 0.2s ease-in;
}

.modal-media.closing {
  opacity: 0;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}

/* body固定時のスタイル */
/* body.modal-open {
            position: fixed;
            width: 100%;
            overflow: hidden;
        } */
/* レスポンシブ対応 */
@media (max-width: 768px) {
  .modal {
    padding: 10px;
  }
  .modal-content {
    max-width: 95vw;
    max-height: 95vh;
  }
  .modal-media {
    max-height: calc(95vh - 60px);
  }
}
/* アクセシビリティ */
@media (prefers-reduced-motion: reduce) {
  * {
    -webkit-transition: none !important;
    transition: none !important;
    -webkit-animation: none !important;
            animation: none !important;
  }
}
/* 主要設備用 モーダルスタイル */
.modal-equipment {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  -webkit-animation: fadeIn 0.3s ease;
          animation: fadeIn 0.3s ease;
}

.modal-equipment.show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.modal-equipment__content {
  background: white;
  border-radius: 5px;
  padding: 0;
  max-width: 1000px;
  width: 90%;
  height: 100%;
  max-height: 80vh;
  position: relative;
  -webkit-animation: slideIn 0.3s ease;
          animation: slideIn 0.3s ease;
  -webkit-box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
          box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  padding: 20px 25px 16px;
}

.modal-equipment__inner {
  height: 100%;
  width: 100%;
  overflow: auto;
}

.modal-equipment .p-equipment-item {
  cursor: default;
  padding: 0 0 26px;
}

.close-button {
  position: absolute;
  top: -40px;
  right: 0;
  width: 30px;
  height: 30px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.875rem;
  z-index: 2;
  -webkit-transform: translateY(45px);
          transform: translateY(45px);
  -webkit-transition: all 0.3s cubic-bezier(0.47, 1.83, 0.71, 1);
  transition: all 0.3s cubic-bezier(0.47, 1.83, 0.71, 1);
  background: none;
  color: #fff;
}

.modal-equipment.show .close-button {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.close-button:hover {
  background: rgba(0, 0, 0, 0.2);
  color: #333;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-webkit-keyframes slideIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(-20px) scale(0.95);
            transform: translateY(-20px) scale(0.95);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
  }
}
@keyframes slideIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(-20px) scale(0.95);
            transform: translateY(-20px) scale(0.95);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
  }
}
@-webkit-keyframes slideOut {
  from {
    opacity: 1;
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
  }
  to {
    opacity: 0;
    -webkit-transform: translateY(-20px) scale(0.95);
            transform: translateY(-20px) scale(0.95);
  }
}
@keyframes slideOut {
  from {
    opacity: 1;
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
  }
  to {
    opacity: 0;
    -webkit-transform: translateY(-20px) scale(0.95);
            transform: translateY(-20px) scale(0.95);
  }
}
.modal-equipment.closing {
  -webkit-animation: fadeOut 0.3s ease forwards;
          animation: fadeOut 0.3s ease forwards;
}

.modal-equipment.closing .modal-equipment__content {
  -webkit-animation: slideOut 0.3s ease forwards;
          animation: slideOut 0.3s ease forwards;
}

.delay-1 {
  -webkit-animation: slideInUp 0.6s ease forwards 0.1s both;
          animation: slideInUp 0.6s ease forwards 0.1s both;
}

.delay-2 {
  -webkit-animation: slideInUp 0.6s ease forwards 0.2s both;
          animation: slideInUp 0.6s ease forwards 0.2s both;
}

.delay-3 {
  -webkit-animation: slideInUp 0.6s ease forwards 0.3s both;
          animation: slideInUp 0.6s ease forwards 0.3s both;
}

@-webkit-keyframes slideInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@media (max-width: 767px) {
  .p-equipment-item {
    cursor: default;
  }
  .p-equipment-item:hover {
    -webkit-transform: none;
            transform: none;
    -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
}
.instruction {
  text-align: center;
  color: #666;
  margin-bottom: 30px;
  font-size: 14px;
}

h1 {
  text-align: center;
  color: #333;
  margin-bottom: 10px;
}

/* style.scss
   FLOCSS structure: settings, tools, base, layout, component, project */
:root {
  --sticky-area: 600px;
}

.p-equipment {
  background: #183052;
}

.p-equipment-sticky {
  min-height: var(--sticky-area);
  position: relative;
}
.p-equipment-sticky__inner {
  position: sticky;
  top: 160px;
}

.p-equipment-section .l-section {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px 150px;
}
.p-equipment-section .l-container {
  max-width: 1040px;
}
.p-equipment-section .c-hr01 {
  margin-top: 60px;
  margin-bottom: 130px;
}

.p-equipment-text {
  opacity: 0;
}
.p-equipment-text.active {
  opacity: 1;
}
.p-equipment-text span {
  display: inline-block;
  opacity: 0;
  -webkit-transform: translate(-150px, 0) scale(0.3);
          transform: translate(-150px, 0) scale(0.3);
}
.p-equipment-text span.animate {
  -webkit-animation: leftRight 0.5s forwards;
          animation: leftRight 0.5s forwards;
}

@-webkit-keyframes leftRight {
  40% {
    -webkit-transform: translate(50px, 0) scale(0.8);
            transform: translate(50px, 0) scale(0.8);
    opacity: 1;
    color: #fff;
  }
  60% {
    color: #fff;
  }
  80% {
    -webkit-transform: translate(0) scale(3);
            transform: translate(0) scale(3);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0) scale(1);
            transform: translate(0) scale(1);
    opacity: 1;
  }
}

@keyframes leftRight {
  40% {
    -webkit-transform: translate(50px, 0) scale(0.8);
            transform: translate(50px, 0) scale(0.8);
    opacity: 1;
    color: #fff;
  }
  60% {
    color: #fff;
  }
  80% {
    -webkit-transform: translate(0) scale(3);
            transform: translate(0) scale(3);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0) scale(1);
            transform: translate(0) scale(1);
    opacity: 1;
  }
}
.p-equipment-list.type02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 30px 0;
}

.p-equipment-list.type02 .p-equipment-item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 var(--item-width, 300px);
          flex: 0 0 var(--item-width, 300px);
  width: var(--item-width, 300px);
}

.scroll-container {
  overflow: hidden;
  margin-bottom: 50px;
}

.p-equipment-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  /* グリッチアニメーション */
  /* より強烈なグリッチエフェクト（コメントアウトを外すと使用可能） */
  /* 遅延アニメーション用のクラス */
}
@media (min-width: 769px) {
  .p-equipment-list {
    grid-template-columns: 1fr 1fr;
  }
}
.p-equipment-list .p-equipment-item {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-perspective: 1000px;
          perspective: 1000px;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.p-equipment-list .p-equipment-item:not(.is-visible) {
  -webkit-transform: rotateY(-180deg) translateZ(-50px);
          transform: rotateY(-180deg) translateZ(-50px);
  opacity: 0;
  visibility: hidden; /* 完全に非表示 */
}
.p-equipment-list .p-equipment-item.is-visible {
  -webkit-transform: rotateY(0deg) translateZ(0px);
          transform: rotateY(0deg) translateZ(0px);
  opacity: 1;
  visibility: visible; /* 表示状態 */
  -webkit-transition: opacity 0.8s ease, visibility 0s ease 0s, -webkit-transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 0.8s ease, visibility 0s ease 0s, -webkit-transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.8s ease, visibility 0s ease 0s;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.8s ease, visibility 0s ease 0s, -webkit-transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94); /* visibilityは即座に変更 */
}
.p-equipment-list .p-equipment-item:hover {
  -webkit-animation: glitch 0.6s ease-in-out;
          animation: glitch 0.6s ease-in-out;
}
.p-equipment-list .p-equipment-item:hover::before,
.p-equipment-list .p-equipment-item:hover::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: inherit;
  opacity: 0.8;
  z-index: -1;
}
.p-equipment-list .p-equipment-item:hover::before {
  -webkit-animation: glitch-1 0.6s ease-in-out;
          animation: glitch-1 0.6s ease-in-out;
}
.p-equipment-list .p-equipment-item:hover::after {
  -webkit-animation: glitch-2 0.6s ease-in-out;
          animation: glitch-2 0.6s ease-in-out;
}
.p-equipment-list .p-equipment-item {
  position: relative;
}
.p-equipment-list .p-equipment-item.delay-0 {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.p-equipment-list .p-equipment-item.delay-1 {
  -webkit-transition-delay: 0.15s;
          transition-delay: 0.15s;
}
.p-equipment-list .p-equipment-item.delay-2 {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.p-equipment-list .p-equipment-item.delay-3 {
  -webkit-transition-delay: 0.45s;
          transition-delay: 0.45s;
}
.p-equipment-list .p-equipment-item.delay-4 {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.p-equipment-list .p-equipment-item.delay-5 {
  -webkit-transition-delay: 0.75s;
          transition-delay: 0.75s;
}
.p-equipment-list .p-equipment-item.delay-6 {
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}
.p-equipment-list .p-equipment-item.delay-7 {
  -webkit-transition-delay: 1.05s;
          transition-delay: 1.05s;
}
.p-equipment-list .p-equipment-item.delay-8 {
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}
.p-equipment-list .p-equipment-item.delay-9 {
  -webkit-transition-delay: 1.35s;
          transition-delay: 1.35s;
}
.p-equipment-list .p-equipment-item.delay-10 {
  -webkit-transition-delay: 1.5s;
          transition-delay: 1.5s;
}

.p-equipment-item {
  background: #fff;
  border-radius: 5px;
  color: #183052;
  position: relative;
  padding: 20px 25px 26px;
}
.p-equipment-item__summary {
  padding: 20px 15px 0;
}
.p-equipment-item__image {
  width: 100%;
  max-width: 100%;
}
.p-equipment-item .label {
  margin: 0;
  color: #dc143c;
  font-size: 0.9375rem;
  font-weight: bold;
  line-height: 1.8666666667;
}
.p-equipment-item .label--blue {
  color: #183052;
  font-weight: 400;
}
@media (min-width: 769px) {
  .p-equipment-item .label {
    font-size: 1.125rem;
    line-height: 1.9444444444;
  }
}
.p-equipment-item .title {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.35;
}
.p-equipment-item .text {
  margin: 5px 0 0;
  font-size: 1rem;
  line-height: 1.5625;
}
.p-equipment-item .count {
  position: absolute;
  right: 40px;
  bottom: 20px;
  font-size: 1rem;
  line-height: 1.8125;
  border-radius: 0.90625rem;
  background: rgba(24, 48, 82, 0.1);
  padding: 0 14px;
}

@-webkit-keyframes glitch {
  0%, 100% {
    -webkit-transform: scale(1.02) translate(0);
            transform: scale(1.02) translate(0);
  }
  10% {
    -webkit-transform: scale(1.02) translate(-2px, 2px);
            transform: scale(1.02) translate(-2px, 2px);
  }
  20% {
    -webkit-transform: scale(1.02) translate(2px, -2px);
            transform: scale(1.02) translate(2px, -2px);
  }
  30% {
    -webkit-transform: scale(1.02) translate(-2px, -2px);
            transform: scale(1.02) translate(-2px, -2px);
  }
  40% {
    -webkit-transform: scale(1.02) translate(2px, 2px);
            transform: scale(1.02) translate(2px, 2px);
  }
  50% {
    -webkit-transform: scale(1.02) translate(-1px, 1px);
            transform: scale(1.02) translate(-1px, 1px);
  }
  60% {
    -webkit-transform: scale(1.02) translate(1px, -1px);
            transform: scale(1.02) translate(1px, -1px);
  }
  70% {
    -webkit-transform: scale(1.02) translate(-1px, -1px);
            transform: scale(1.02) translate(-1px, -1px);
  }
  80% {
    -webkit-transform: scale(1.02) translate(1px, 1px);
            transform: scale(1.02) translate(1px, 1px);
  }
  90% {
    -webkit-transform: scale(1.02) translate(-2px, 2px);
            transform: scale(1.02) translate(-2px, 2px);
  }
}

@keyframes glitch {
  0%, 100% {
    -webkit-transform: scale(1.02) translate(0);
            transform: scale(1.02) translate(0);
  }
  10% {
    -webkit-transform: scale(1.02) translate(-2px, 2px);
            transform: scale(1.02) translate(-2px, 2px);
  }
  20% {
    -webkit-transform: scale(1.02) translate(2px, -2px);
            transform: scale(1.02) translate(2px, -2px);
  }
  30% {
    -webkit-transform: scale(1.02) translate(-2px, -2px);
            transform: scale(1.02) translate(-2px, -2px);
  }
  40% {
    -webkit-transform: scale(1.02) translate(2px, 2px);
            transform: scale(1.02) translate(2px, 2px);
  }
  50% {
    -webkit-transform: scale(1.02) translate(-1px, 1px);
            transform: scale(1.02) translate(-1px, 1px);
  }
  60% {
    -webkit-transform: scale(1.02) translate(1px, -1px);
            transform: scale(1.02) translate(1px, -1px);
  }
  70% {
    -webkit-transform: scale(1.02) translate(-1px, -1px);
            transform: scale(1.02) translate(-1px, -1px);
  }
  80% {
    -webkit-transform: scale(1.02) translate(1px, 1px);
            transform: scale(1.02) translate(1px, 1px);
  }
  90% {
    -webkit-transform: scale(1.02) translate(-2px, 2px);
            transform: scale(1.02) translate(-2px, 2px);
  }
}
@-webkit-keyframes glitch-1 {
  0%, 100% {
    -webkit-transform: translate(0);
            transform: translate(0);
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  10% {
    -webkit-transform: translate(-3px, 0);
            transform: translate(-3px, 0);
    -webkit-clip-path: polygon(0 20%, 100% 20%, 100% 21%, 0 21%);
            clip-path: polygon(0 20%, 100% 20%, 100% 21%, 0 21%);
  }
  20% {
    -webkit-transform: translate(3px, 0);
            transform: translate(3px, 0);
    -webkit-clip-path: polygon(0 60%, 100% 60%, 100% 61%, 0 61%);
            clip-path: polygon(0 60%, 100% 60%, 100% 61%, 0 61%);
  }
  30% {
    -webkit-transform: translate(-2px, 0);
            transform: translate(-2px, 0);
    -webkit-clip-path: polygon(0 43%, 100% 43%, 100% 44%, 0 44%);
            clip-path: polygon(0 43%, 100% 43%, 100% 44%, 0 44%);
  }
  40% {
    -webkit-transform: translate(2px, 0);
            transform: translate(2px, 0);
    -webkit-clip-path: polygon(0 25%, 100% 25%, 100% 26%, 0 26%);
            clip-path: polygon(0 25%, 100% 25%, 100% 26%, 0 26%);
  }
  50% {
    -webkit-transform: translate(-4px, 0);
            transform: translate(-4px, 0);
    -webkit-clip-path: polygon(0 65%, 100% 65%, 100% 66%, 0 66%);
            clip-path: polygon(0 65%, 100% 65%, 100% 66%, 0 66%);
  }
  60% {
    -webkit-transform: translate(1px, 0);
            transform: translate(1px, 0);
    -webkit-clip-path: polygon(0 85%, 100% 85%, 100% 86%, 0 86%);
            clip-path: polygon(0 85%, 100% 85%, 100% 86%, 0 86%);
  }
  70% {
    -webkit-transform: translate(-1px, 0);
            transform: translate(-1px, 0);
    -webkit-clip-path: polygon(0 15%, 100% 15%, 100% 16%, 0 16%);
            clip-path: polygon(0 15%, 100% 15%, 100% 16%, 0 16%);
  }
  80% {
    -webkit-transform: translate(3px, 0);
            transform: translate(3px, 0);
    -webkit-clip-path: polygon(0 72%, 100% 72%, 100% 73%, 0 73%);
            clip-path: polygon(0 72%, 100% 72%, 100% 73%, 0 73%);
  }
  90% {
    -webkit-transform: translate(-2px, 0);
            transform: translate(-2px, 0);
    -webkit-clip-path: polygon(0 38%, 100% 38%, 100% 39%, 0 39%);
            clip-path: polygon(0 38%, 100% 38%, 100% 39%, 0 39%);
  }
}
@keyframes glitch-1 {
  0%, 100% {
    -webkit-transform: translate(0);
            transform: translate(0);
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  10% {
    -webkit-transform: translate(-3px, 0);
            transform: translate(-3px, 0);
    -webkit-clip-path: polygon(0 20%, 100% 20%, 100% 21%, 0 21%);
            clip-path: polygon(0 20%, 100% 20%, 100% 21%, 0 21%);
  }
  20% {
    -webkit-transform: translate(3px, 0);
            transform: translate(3px, 0);
    -webkit-clip-path: polygon(0 60%, 100% 60%, 100% 61%, 0 61%);
            clip-path: polygon(0 60%, 100% 60%, 100% 61%, 0 61%);
  }
  30% {
    -webkit-transform: translate(-2px, 0);
            transform: translate(-2px, 0);
    -webkit-clip-path: polygon(0 43%, 100% 43%, 100% 44%, 0 44%);
            clip-path: polygon(0 43%, 100% 43%, 100% 44%, 0 44%);
  }
  40% {
    -webkit-transform: translate(2px, 0);
            transform: translate(2px, 0);
    -webkit-clip-path: polygon(0 25%, 100% 25%, 100% 26%, 0 26%);
            clip-path: polygon(0 25%, 100% 25%, 100% 26%, 0 26%);
  }
  50% {
    -webkit-transform: translate(-4px, 0);
            transform: translate(-4px, 0);
    -webkit-clip-path: polygon(0 65%, 100% 65%, 100% 66%, 0 66%);
            clip-path: polygon(0 65%, 100% 65%, 100% 66%, 0 66%);
  }
  60% {
    -webkit-transform: translate(1px, 0);
            transform: translate(1px, 0);
    -webkit-clip-path: polygon(0 85%, 100% 85%, 100% 86%, 0 86%);
            clip-path: polygon(0 85%, 100% 85%, 100% 86%, 0 86%);
  }
  70% {
    -webkit-transform: translate(-1px, 0);
            transform: translate(-1px, 0);
    -webkit-clip-path: polygon(0 15%, 100% 15%, 100% 16%, 0 16%);
            clip-path: polygon(0 15%, 100% 15%, 100% 16%, 0 16%);
  }
  80% {
    -webkit-transform: translate(3px, 0);
            transform: translate(3px, 0);
    -webkit-clip-path: polygon(0 72%, 100% 72%, 100% 73%, 0 73%);
            clip-path: polygon(0 72%, 100% 72%, 100% 73%, 0 73%);
  }
  90% {
    -webkit-transform: translate(-2px, 0);
            transform: translate(-2px, 0);
    -webkit-clip-path: polygon(0 38%, 100% 38%, 100% 39%, 0 39%);
            clip-path: polygon(0 38%, 100% 38%, 100% 39%, 0 39%);
  }
}
@-webkit-keyframes glitch-2 {
  0%, 100% {
    -webkit-transform: translate(0);
            transform: translate(0);
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  15% {
    -webkit-transform: translate(2px, 0);
            transform: translate(2px, 0);
    -webkit-clip-path: polygon(0 15%, 100% 15%, 100% 16%, 0 16%);
            clip-path: polygon(0 15%, 100% 15%, 100% 16%, 0 16%);
  }
  25% {
    -webkit-transform: translate(-3px, 0);
            transform: translate(-3px, 0);
    -webkit-clip-path: polygon(0 85%, 100% 85%, 100% 86%, 0 86%);
            clip-path: polygon(0 85%, 100% 85%, 100% 86%, 0 86%);
  }
  35% {
    -webkit-transform: translate(1px, 0);
            transform: translate(1px, 0);
    -webkit-clip-path: polygon(0 35%, 100% 35%, 100% 36%, 0 36%);
            clip-path: polygon(0 35%, 100% 35%, 100% 36%, 0 36%);
  }
  45% {
    -webkit-transform: translate(-1px, 0);
            transform: translate(-1px, 0);
    -webkit-clip-path: polygon(0 70%, 100% 70%, 100% 71%, 0 71%);
            clip-path: polygon(0 70%, 100% 70%, 100% 71%, 0 71%);
  }
  55% {
    -webkit-transform: translate(2px, 0);
            transform: translate(2px, 0);
    -webkit-clip-path: polygon(0 50%, 100% 50%, 100% 51%, 0 51%);
            clip-path: polygon(0 50%, 100% 50%, 100% 51%, 0 51%);
  }
  65% {
    -webkit-transform: translate(-2px, 0);
            transform: translate(-2px, 0);
    -webkit-clip-path: polygon(0 90%, 100% 90%, 100% 91%, 0 91%);
            clip-path: polygon(0 90%, 100% 90%, 100% 91%, 0 91%);
  }
  75% {
    -webkit-transform: translate(3px, 0);
            transform: translate(3px, 0);
    -webkit-clip-path: polygon(0 10%, 100% 10%, 100% 11%, 0 11%);
            clip-path: polygon(0 10%, 100% 10%, 100% 11%, 0 11%);
  }
  85% {
    -webkit-transform: translate(-1px, 0);
            transform: translate(-1px, 0);
    -webkit-clip-path: polygon(0 55%, 100% 55%, 100% 56%, 0 56%);
            clip-path: polygon(0 55%, 100% 55%, 100% 56%, 0 56%);
  }
  95% {
    -webkit-transform: translate(1px, 0);
            transform: translate(1px, 0);
    -webkit-clip-path: polygon(0 80%, 100% 80%, 100% 81%, 0 81%);
            clip-path: polygon(0 80%, 100% 80%, 100% 81%, 0 81%);
  }
}
@keyframes glitch-2 {
  0%, 100% {
    -webkit-transform: translate(0);
            transform: translate(0);
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  15% {
    -webkit-transform: translate(2px, 0);
            transform: translate(2px, 0);
    -webkit-clip-path: polygon(0 15%, 100% 15%, 100% 16%, 0 16%);
            clip-path: polygon(0 15%, 100% 15%, 100% 16%, 0 16%);
  }
  25% {
    -webkit-transform: translate(-3px, 0);
            transform: translate(-3px, 0);
    -webkit-clip-path: polygon(0 85%, 100% 85%, 100% 86%, 0 86%);
            clip-path: polygon(0 85%, 100% 85%, 100% 86%, 0 86%);
  }
  35% {
    -webkit-transform: translate(1px, 0);
            transform: translate(1px, 0);
    -webkit-clip-path: polygon(0 35%, 100% 35%, 100% 36%, 0 36%);
            clip-path: polygon(0 35%, 100% 35%, 100% 36%, 0 36%);
  }
  45% {
    -webkit-transform: translate(-1px, 0);
            transform: translate(-1px, 0);
    -webkit-clip-path: polygon(0 70%, 100% 70%, 100% 71%, 0 71%);
            clip-path: polygon(0 70%, 100% 70%, 100% 71%, 0 71%);
  }
  55% {
    -webkit-transform: translate(2px, 0);
            transform: translate(2px, 0);
    -webkit-clip-path: polygon(0 50%, 100% 50%, 100% 51%, 0 51%);
            clip-path: polygon(0 50%, 100% 50%, 100% 51%, 0 51%);
  }
  65% {
    -webkit-transform: translate(-2px, 0);
            transform: translate(-2px, 0);
    -webkit-clip-path: polygon(0 90%, 100% 90%, 100% 91%, 0 91%);
            clip-path: polygon(0 90%, 100% 90%, 100% 91%, 0 91%);
  }
  75% {
    -webkit-transform: translate(3px, 0);
            transform: translate(3px, 0);
    -webkit-clip-path: polygon(0 10%, 100% 10%, 100% 11%, 0 11%);
            clip-path: polygon(0 10%, 100% 10%, 100% 11%, 0 11%);
  }
  85% {
    -webkit-transform: translate(-1px, 0);
            transform: translate(-1px, 0);
    -webkit-clip-path: polygon(0 55%, 100% 55%, 100% 56%, 0 56%);
            clip-path: polygon(0 55%, 100% 55%, 100% 56%, 0 56%);
  }
  95% {
    -webkit-transform: translate(1px, 0);
            transform: translate(1px, 0);
    -webkit-clip-path: polygon(0 80%, 100% 80%, 100% 81%, 0 81%);
            clip-path: polygon(0 80%, 100% 80%, 100% 81%, 0 81%);
  }
}
@-webkit-keyframes image-glitch {
  0%, 100% {
    -webkit-filter: hue-rotate(0deg) saturate(1);
            filter: hue-rotate(0deg) saturate(1);
  }
  10% {
    -webkit-filter: hue-rotate(90deg) saturate(1.5);
            filter: hue-rotate(90deg) saturate(1.5);
  }
  20% {
    -webkit-filter: hue-rotate(180deg) saturate(0.8);
            filter: hue-rotate(180deg) saturate(0.8);
  }
  30% {
    -webkit-filter: hue-rotate(270deg) saturate(1.2);
            filter: hue-rotate(270deg) saturate(1.2);
  }
  40% {
    -webkit-filter: hue-rotate(360deg) saturate(1);
            filter: hue-rotate(360deg) saturate(1);
  }
  50% {
    -webkit-filter: hue-rotate(45deg) saturate(1.8);
            filter: hue-rotate(45deg) saturate(1.8);
  }
  60% {
    -webkit-filter: hue-rotate(135deg) saturate(0.6);
            filter: hue-rotate(135deg) saturate(0.6);
  }
  70% {
    -webkit-filter: hue-rotate(225deg) saturate(1.4);
            filter: hue-rotate(225deg) saturate(1.4);
  }
  80% {
    -webkit-filter: hue-rotate(315deg) saturate(1.1);
            filter: hue-rotate(315deg) saturate(1.1);
  }
  90% {
    -webkit-filter: hue-rotate(180deg) saturate(1.6);
            filter: hue-rotate(180deg) saturate(1.6);
  }
}
@keyframes image-glitch {
  0%, 100% {
    -webkit-filter: hue-rotate(0deg) saturate(1);
            filter: hue-rotate(0deg) saturate(1);
  }
  10% {
    -webkit-filter: hue-rotate(90deg) saturate(1.5);
            filter: hue-rotate(90deg) saturate(1.5);
  }
  20% {
    -webkit-filter: hue-rotate(180deg) saturate(0.8);
            filter: hue-rotate(180deg) saturate(0.8);
  }
  30% {
    -webkit-filter: hue-rotate(270deg) saturate(1.2);
            filter: hue-rotate(270deg) saturate(1.2);
  }
  40% {
    -webkit-filter: hue-rotate(360deg) saturate(1);
            filter: hue-rotate(360deg) saturate(1);
  }
  50% {
    -webkit-filter: hue-rotate(45deg) saturate(1.8);
            filter: hue-rotate(45deg) saturate(1.8);
  }
  60% {
    -webkit-filter: hue-rotate(135deg) saturate(0.6);
            filter: hue-rotate(135deg) saturate(0.6);
  }
  70% {
    -webkit-filter: hue-rotate(225deg) saturate(1.4);
            filter: hue-rotate(225deg) saturate(1.4);
  }
  80% {
    -webkit-filter: hue-rotate(315deg) saturate(1.1);
            filter: hue-rotate(315deg) saturate(1.1);
  }
  90% {
    -webkit-filter: hue-rotate(180deg) saturate(1.6);
            filter: hue-rotate(180deg) saturate(1.6);
  }
}
@-webkit-keyframes text-glitch {
  0%, 100% {
    text-shadow: 0 0 0 transparent;
  }
  10% {
    text-shadow: -2px 0 #ff00ff, 2px 0 #00ffff;
  }
  20% {
    text-shadow: 2px 0 #ff00ff, -2px 0 #00ffff;
  }
  30% {
    text-shadow: -1px 0 #ff00ff, 1px 0 #00ffff;
  }
  40% {
    text-shadow: 1px 0 #ff00ff, -1px 0 #00ffff;
  }
  50% {
    text-shadow: -3px 0 #ff00ff, 3px 0 #00ffff;
  }
  60% {
    text-shadow: 1px 0 #ff00ff, -1px 0 #00ffff;
  }
  70% {
    text-shadow: -1px 0 #ff00ff, 1px 0 #00ffff;
  }
  80% {
    text-shadow: 2px 0 #ff00ff, -2px 0 #00ffff;
  }
  90% {
    text-shadow: -2px 0 #ff00ff, 2px 0 #00ffff;
  }
}
@keyframes text-glitch {
  0%, 100% {
    text-shadow: 0 0 0 transparent;
  }
  10% {
    text-shadow: -2px 0 #ff00ff, 2px 0 #00ffff;
  }
  20% {
    text-shadow: 2px 0 #ff00ff, -2px 0 #00ffff;
  }
  30% {
    text-shadow: -1px 0 #ff00ff, 1px 0 #00ffff;
  }
  40% {
    text-shadow: 1px 0 #ff00ff, -1px 0 #00ffff;
  }
  50% {
    text-shadow: -3px 0 #ff00ff, 3px 0 #00ffff;
  }
  60% {
    text-shadow: 1px 0 #ff00ff, -1px 0 #00ffff;
  }
  70% {
    text-shadow: -1px 0 #ff00ff, 1px 0 #00ffff;
  }
  80% {
    text-shadow: 2px 0 #ff00ff, -2px 0 #00ffff;
  }
  90% {
    text-shadow: -2px 0 #ff00ff, 2px 0 #00ffff;
  }
}
@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateX(-50%) translateY(0);
            transform: translateX(-50%) translateY(0);
  }
  40% {
    -webkit-transform: translateX(-50%) translateY(-10px);
            transform: translateX(-50%) translateY(-10px);
  }
  60% {
    -webkit-transform: translateX(-50%) translateY(-5px);
            transform: translateX(-50%) translateY(-5px);
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateX(-50%) translateY(0);
            transform: translateX(-50%) translateY(0);
  }
  40% {
    -webkit-transform: translateX(-50%) translateY(-10px);
            transform: translateX(-50%) translateY(-10px);
  }
  60% {
    -webkit-transform: translateX(-50%) translateY(-5px);
            transform: translateX(-50%) translateY(-5px);
  }
}
.p-equipment-datas {
  background: #fff;
  border-radius: 5px;
  padding: 25px 20px;
  margin-top: 30px;
}
@media (min-width: 769px) {
  .p-equipment-datas {
    padding: 35px 50px;
  }
}
.p-equipment-datas table {
  width: 100%;
  border-collapse: collapse;
  color: #183052;
  font-size: 0.875rem;
  line-height: 1.5625;
}
@media (min-width: 769px) {
  .p-equipment-datas table {
    font-size: 1rem;
  }
}
.p-equipment-datas table thead th, .p-equipment-datas table thead td {
  border-bottom: 2px solid #183052;
}
.p-equipment-datas table thead th {
  text-align: left;
  font-size: 1rem;
  line-height: 1.3888888889;
  padding: 8px 0 7px;
}
@media (min-width: 769px) {
  .p-equipment-datas table thead th {
    padding: 15px 0 13px;
    font-size: 1.125rem;
  }
}
.p-equipment-datas table thead th:not(:first-child) {
  padding: 8px 5px 7px;
}
@media (min-width: 769px) {
  .p-equipment-datas table thead th:not(:first-child) {
    padding: 15px 5px 13px;
  }
}
.p-equipment-datas table thead th:not(:first-child):last-child {
  padding-right: 0;
}
.p-equipment-datas table tr td {
  padding: 8px 0 7px;
}
@media (min-width: 769px) {
  .p-equipment-datas table tr td {
    padding: 15px 0 13px;
  }
}
.p-equipment-datas table tr td:not(:first-child) {
  padding: 8px 5px 7px;
}
@media (min-width: 769px) {
  .p-equipment-datas table tr td:not(:first-child) {
    padding: 15px 5px 13px;
  }
}
.p-equipment-datas table tr td:not(:first-child):last-child {
  padding-right: 0;
}
.p-equipment-datas table th, .p-equipment-datas table td {
  border-bottom: 1px solid rgba(24, 48, 82, 0.3);
}
.p-equipment-btn {
  padding: 0 0 1.25rem;
  text-align: center;
}
.p-equipment-btn p {
  margin-bottom: 1.25rem;
}
.p-equipment-btn .c-button {
  min-width: 290px;
}

/* style.scss
   FLOCSS structure: settings, tools, base, layout, component, project */
.p-privacy {
  background: #fff;
}
.p-privacy__title {
  font-weight: bold;
  color: #000;
  font-size: 1.5rem;
  line-height: 1.3333333333;
  margin-bottom: 1.25rem;
}
@media (min-width: 769px) {
  .p-privacy__title {
    font-size: 2rem;
    line-height: 1.9375;
    margin-bottom: 1.875rem;
  }
}
.p-privacy__image {
  margin-bottom: 1.875rem;
}
@media (min-width: 769px) {
  .p-privacy__image {
    margin-bottom: 3.75rem;
  }
}
.p-privacy__text {
  font-size: 0.875rem;
  line-height: 1.8666666667;
}
@media (min-width: 769px) {
  .p-privacy__text {
    font-size: 1.125rem;
    line-height: 1.9444444444;
  }
}

.p-privacy-sticky {
  height: 200vh;
  height: 200svh;
  min-height: 1000px;
  padding-bottom: 100px;
}
@media (min-width: 769px) {
  .p-privacy-sticky {
    padding-bottom: 200px;
  }
}
.p-privacy-sticky__inner {
  position: sticky;
  top: 160px;
}

.p-privacy-section {
  color: #0D1C43;
}
.p-privacy-section .l-container {
  max-width: 1040px;
  padding: 0 20px;
}

.p-privacy__contents {
  color: #000;
  text-align: left;
  margin: 0 auto;
  padding-bottom: 120px;
}
.p-privacy__contents h3 {
  margin-top: 30px;
}
.p-privacy__contents ol {
  font-size: 0.875rem;
  line-height: 1.8666666667;
}
@media (min-width: 769px) {
  .p-privacy__contents ol {
    font-size: 1.125rem;
    line-height: 1.9444444444;
  }
}

.p-privacy__image02 {
  max-width: 320px;
  margin: 40px 0 0 auto;
}

/* style.scss
   FLOCSS structure: settings, tools, base, layout, component, project */
.p-default--white {
  background: #fff;
}
.p-default__title {
  font-size: 1.5rem;
  line-height: 1.3333333333;
  margin-bottom: 1.25rem;
}
@media (min-width: 769px) {
  .p-default__title {
    font-size: 2rem;
    line-height: 1.9375;
    margin-bottom: 1.875rem;
  }
}
.p-default__image {
  margin-bottom: 1.875rem;
}
@media (min-width: 769px) {
  .p-default__image {
    margin-bottom: 3.75rem;
  }
}
.p-default__text {
  font-size: 0.875rem;
  line-height: 1.8666666667;
}
@media (min-width: 769px) {
  .p-default__text {
    font-size: 1.125rem;
    line-height: 1.9444444444;
  }
}

.p-base-section {
  color: #0D1C43;
  padding-bottom: 60px;
}
@media (min-width: 769px) {
  .p-base-section {
    padding-bottom: 120px;
  }
}
.p-base-section .l-container {
  max-width: 1040px;
  padding: 0 20px;
}

/* style.scss
   FLOCSS structure: settings, tools, base, layout, component, project */
.p-edit {
  line-height: 1.6;
}/*# sourceMappingURL=style.css.map */