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

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

body {
  line-height: 1;
}

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

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
  color: #1f1f1f;
}

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

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

del {
  text-decoration: line-through;
}

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

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

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

input, select {
  vertical-align: middle;
  outline: none;
  background: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/*--------------------------------------------------------------
印刷用
--------------------------------------------------------------*/
@media print {
  html {
    height: 100%;
  }

  body {
    width: 1280px;
    transform: scale(0.8);
    -moz-transform: scale(0.8);
    -webkit-transform: scale(0.8);
    transform-origin: 0 0;
  }
  body .pagetop {
    display: none;
  }
}
/*--------------------------------------------------------------
htmlタグ指定
--------------------------------------------------------------*/
* {
  min-height: 0vw;
}

html {
  font-size: 62.5%;
  height: -webkit-fill-available;
}

body {
  background-color: #E9EDF0;
  font-family: "Inter", "heisei-kaku-gothic-std", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 1.6rem;
  font-weight: 500;
  -webkit-text-size-adjust: 100%;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  overflow-x: hidden;
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: auto 1fr auto;
  min-height: 100vh;
}

body.no-scroll {
  overflow: hidden;
}

*, *::before, *::after {
  box-sizing: border-box;
}

h1, h2, h3, h4, h5 {
  font-weight: inherit;
}

input, select, textarea {
  font-family: inherit;
  font-weight: inherit;
}

ul, li {
  list-style: none;
}

img {
  vertical-align: top;
  max-width: 100%;
  height: inherit;
}

a {
  cursor: pointer;
  color: currentColor;
}

/*--------------------------------------------------------------
Layout
--------------------------------------------------------------*/
.l-content {
  position: relative;
  width: 100%;
}
.l-inner {
  position: relative;
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

/*--header--*/
.l-header {
  position: relative;
  z-index: 1000;
  width: 100%;
  margin: 0 auto;
}
.l-header--index {
  position: absolute;
  top: 0;
  left: 0;
  color: white;
}
.l-header--index .l-header__logo,
.l-header--index .l-header__nav {
  opacity: 0;
}
.l-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px;
}
.l-header__logo {
  position: relative;
  z-index: 1000;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 26px;
  font-size: 1.4rem;
}
.l-header__logo img {
  filter: invert(1);
}
.l-header__toggle {
  display: none;
  flex-direction: column;
  gap: 7px;
  cursor: pointer;
  padding: 10px;
}
.l-header__toggle span {
  display: block;
  width: 30px;
  height: 3px;
  background: currentColor;
  border-radius: 9999px;
}

/*--footer--*/
.l-footer {
  position: relative;
  z-index: 10;
  padding: 160px 0 120px;
  font-size: 1.2rem;
  color: white;
  background-color: #1B222B;
}
.l-footer-top {
  position: relative;
}
.l-footer-top .top-nav {
  width: calc(100% - 100px);
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .l-footer-top .top-nav {
    width: calc(100% - 44px);
  }
}
.l-footer-top .top-nav__item {
  position: relative;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 95px 60px 60px;
  background-color: rgba(14, 48, 70, 0.8);
  border-radius: 40px;
  backdrop-filter: blur(13px);
  /* 下の背景をぼかす */
  -webkit-backdrop-filter: blur(13px);
  /* Safari用 */
  transition: background-color 0.3s ease;
}
.l-footer-top .top-nav__item:hover {
  background-color: rgba(14, 114, 196, 0.5);
  backdrop-filter: blur(40px);
  /* 下の背景をぼかす */
  -webkit-backdrop-filter: blur(40px);
  /* Safari用 */
}
.l-footer-top .top-nav__item:hover .top-nav__en::after {
  width: 100px;
}
.l-footer-top .top-nav__en {
  position: relative;
  font-size: 5rem;
  font-weight: 600;
  padding-bottom: 38px;
  margin-bottom: 42px;
}
.l-footer-top .top-nav__en::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  display: block;
  width: 60px;
  height: 1px;
  background-color: currentColor;
  transition: width 0.3s ease;
}
.l-footer-top .top-nav__title {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2px;
  font-size: 1.8rem;
  font-weight: 700;
}
.l-footer-top .top-nav__title::before, .l-footer-top .top-nav__title::after {
  content: "";
  display: block;
  width: 5px;
  height: 2px;
  background-color: #A0B8D9;
}
.l-footer-top .top-nav__text {
  margin-top: 19px;
  font-size: 1.4rem;
  line-height: 1.7;
}
.l-footer-top .top-nav__link {
  position: absolute;
  inset: 0;
}
.l-footer-top .top-marquee {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
  z-index: 0;
  /* アニメーション */
}
.l-footer-top .top-marquee .marquee-text {
  color: white;
  font-size: 10rem;
  font-weight: 600;
  line-height: 2;
  display: inline-flex;
  animation: marquee 50s linear infinite;
}
.l-footer-top .top-marquee .marquee-text span {
  padding-right: 2rem;
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.l-footer-middle {
  margin-top: 80px;
  width: calc(100% - 100px);
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1024px) {
  .l-footer-middle {
    width: calc(100% - 44px);
  }
}
.l-footer__nav {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 70px;
  padding: 76px 50px 85px;
  color: #1B222B;
  background-color: white;
  border-radius: 10px;
}
.l-footer__nav .nav-item {
  width: calc((100% - 280px) / 5);
}
.l-footer__nav .nav-item a {
  transition: color 0.3s ease;
}
.l-footer__nav .nav-item a:hover {
  color: #0E72C4;
}
.l-footer__nav .nav-item__title {
  position: relative;
  font-size: 2rem;
  font-weight: 600;
  padding-bottom: 30px;
  margin-bottom: 20px;
}
.l-footer__nav .nav-item__title::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: min(150px, 100%);
  height: 1px;
  border-top: 1px solid #D4D6D9;
}
.l-footer__nav .nav-item__subNav {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: column;
  gap: 13px;
}
.l-footer__nav .nav-item__subNav li {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.l-footer-bottom {
  margin-top: 80px;
  width: calc(100% - 100px);
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .l-footer-bottom {
    width: calc(100% - 44px);
  }
}
.l-footer-bottom img {
  filter: invert(1);
}
.l-footer-bottom .bottom-sns {
  margin-top: 50px;
  font-size: 1rem;
  line-height: 1.5;
}
.l-footer-bottom .bottom-sns p {
  margin-top: 16px;
}

/*--------------------------------------------------------------
Component
--------------------------------------------------------------*/
.c-link {
  color: #0092E6;
}
.c-link--white {
  color: white;
}
.c-link--icon {
  display: inline-flex;
  align-items: center;
}
.c-link--icon::after {
  content: "";
  display: block;
  width: 0.6em;
  height: 0.6em;
  border-top: 0.1em solid currentColor;
  border-right: 0.1em solid currentColor;
  margin-left: 0.2em;
  transform: rotate(45deg);
}
.c-link--underline {
  text-decoration: underline;
}

.c-navigation {
  font-size: 1.4rem;
  line-height: 1.5;
  color: #0092E6;
  background-color: white;
  border-radius: 9999px;
}
@media screen and (max-width: 1024px) {
  .c-navigation {
    display: none;
  }
}
.c-navigation__list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 2vw;
}
.c-navigation__item {
  position: relative;
}
.c-navigation__item--last {
  padding-right: 1.927vw;
}
.c-navigation__item--last::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  display: block;
  width: 1px;
  height: 62%;
  background-color: currentColor;
}
.c-navigation__item a {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 14px 1.56vw;
}
.c-navigation__item a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  display: block;
  width: 30px;
  height: 0px;
  background-color: currentColor;
  transition: height 0.1s ease;
}
.c-navigation__item a:hover::after, .c-navigation__item a.is-active::after {
  height: 2px;
}
.c-navigation__contact::before {
  content: "";
  display: block;
  width: 20px;
  height: 15px;
  background: url("../img/base/icon_contact.svg") no-repeat center center/contain;
  filter: invert(37%) sepia(98%) saturate(942%) hue-rotate(172deg) brightness(95%) contrast(106%);
}

/*------------------------------title------------------------------*/
.c-account {
  width: min(1000px, 100%);
  margin: 0 auto;
  padding-bottom: 50px;
}
.c-account--narrow {
  width: min(500px, 100%);
}
.c-account--full {
  width: 100%;
}
.c-account__header {
  padding-top: 42px;
  padding-bottom: 22px;
  text-align: center;
  font-size: 1.8rem;
  line-height: 1.3;
  font-weight: 700;
}
.c-account__header:nth-child(n+2) {
  margin-top: 38px;
  border-top: 1px solid #E0E0E0;
}
.c-account__message {
  line-height: 1.5;
  font-size: 1.4rem;
}
.c-account__button {
  margin-top: 30px;
}

/*------------------------------button------------------------------*/
.c-button {
  --width:600px;
  --height:80px;
  --color: #97A5B1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 11px;
  width: min(var(--width), 100%);
  height: var(--height);
  padding: 0 30px;
  font-family: "Inter", "heisei-kaku-gothic-std", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 1.8rem;
  color: white;
  background-color: var(--color);
  border: 1px solid var(--color);
  border-radius: 9999px;
  outline: 0;
  cursor: pointer;
  transition: 0.3s ease;
}
.c-button::before, .c-button::after {
  content: "";
  position: absolute;
  right: 30px;
  display: block;
  width: 30px;
  aspect-ratio: 1;
}
.c-button::before {
  background-color: white;
  border-radius: 100%;
}
.c-button::after {
  background: url("../img/base/icon_arrow.svg") no-repeat calc(50% + 0px) center;
  filter: invert(74%) sepia(5%) saturate(783%) hue-rotate(166deg) brightness(87%) contrast(91%);
}
.c-button:hover {
  --color: #1072C4;
  color: white;
}
.c-button:hover::after {
  filter: invert(31%) sepia(89%) saturate(1073%) hue-rotate(180deg) brightness(97%) contrast(92%);
}
.c-button--secondary {
  --width:220px;
  --height:56px;
  --color: #1072C4;
  justify-content: normal;
  font-size: 1.6rem;
}
.c-button--secondary::before {
  display: none;
}
.c-button--secondary::after {
  right: 13px;
  background: url("../img/base/icon_arrow.svg") no-repeat calc(50% + 0px) center;
  filter: invert(100%);
}
.c-button--secondary:hover {
  --color: white;
  color: #0E72C4;
}
.c-button--secondary:hover::after {
  filter: invert(31%) sepia(89%) saturate(1073%) hue-rotate(180deg) brightness(97%) contrast(92%);
}
.c-button.is-disabled, .c-button:disabled {
  pointer-events: none;
  cursor: not-allowed;
  background-color: #F0F0F0;
  border: 0;
  color: #BFBFBF;
}

.c-table {
  margin: 80px auto 60px;
  line-height: 1.4;
  border: 2px solid white;
}
h4 + .table {
  margin-top: 40px;
}

.c-table th, .c-table td {
  text-align: center;
  vertical-align: middle;
  padding: 20px;
}
.c-table th {
  font-size: 18px;
  background-color: #F4F5F5;
}
.c-table td {
  border: 2px solid white;
}

/*------------------------------form------------------------------*/
.c-form {
  margin-top: 30px;
}
.c-form--register .c-form__field + .c-form__field {
  margin-top: 20px;
}
.c-form--register .c-form__submit {
  padding-right: 20px;
  padding-left: 20px;
}
.c-form--register .c-form__label-wrap {
  padding: 13px 20px;
  border-top: 1px solid;
  border-bottom: 1px solid;
  border-color: #E0E0E0;
  color: #969696;
  background-color: #F7F7F7;
}
.c-form--register .c-form__input-wrap {
  padding: 0 20px;
}
.c-form--register .c-input, .c-form--register .c-select select, .c-form--register .c-radio__input, .c-form--register .c-check__input {
  border-color: #E0E0E0;
}
.c-form--horizontal .c-form__field {
  flex-direction: row;
}
.c-form--horizontal .c-form__label-wrap {
  flex-shrink: 0;
  width: 150px;
}
.c-form__field {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: column;
  gap: 16px;
}
.c-form__field + .c-form__field {
  margin-top: 24px;
}
.c-form__field--last {
  padding-bottom: 20px;
  border-bottom: 1px solid #E0E0E0;
}
.c-form__label-wrap {
  width: 100%;
  font-size: 1.4rem;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 10px;
}
.c-form__input-wrap {
  width: 100%;
}
.c-form__label {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px 26px;
}
.c-form__required {
  color: #DA3F45;
}
.c-form__note {
  padding-left: 15px;
  font-size: 1.2rem;
  line-height: 1.5;
}
.c-form__error {
  margin-top: 10px;
  font-size: 1.2rem;
  line-height: 1.5;
  color: #DA3F45;
}
.c-form__forget {
  margin-top: 10px;
  font-size: 1.2rem;
  line-height: 1.5;
}
.c-form__caution {
  margin-top: 19px;
  color: #BFBFBF;
  font-size: 1rem;
  line-height: 1.8;
}
.c-form__agree {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 1.4rem;
  line-height: 1.3;
}
.c-form__agree a {
  text-decoration: underline;
}
.c-form__submit {
  margin-top: 30px;
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: column;
}

.c-input {
  width: min(600px, 100%);
  padding: 15px;
  border-radius: 5px;
  background-color: white;
  font-family: "Inter", "heisei-kaku-gothic-std", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 1.6rem;
  outline: 0;
  border: 1px solid #C6C6C6;
}
.c-input::placeholder {
  color: #BFBFBF;
}
.c-input--textarea {
  width: 100%;
  height: 200px;
  line-height: 1.5;
}
.c-input--middle {
  width: min(250px, calc((100% - 10px) / 2));
}
.c-input--small {
  width: min(140px, calc((100% - 20px) / 3));
}
.c-input.is-disabled {
  pointer-events: none;
  color: #BFBFBF;
  background-color: #F0F0F0;
}

.c-select {
  width: min(600px, 100%);
  position: relative;
  font-size: 16px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.c-select.is-disabled {
  color: #BFBFBF;
}
.c-select.is-disabled select {
  pointer-events: none;
  color: #BFBFBF;
  background-color: #F0F0F0;
}
.c-select::after {
  content: "";
  position: absolute;
  right: min(15px, 10%);
  top: calc(50% - 6px);
  width: 8px;
  height: 8px;
  border-bottom: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
  pointer-events: none;
}
.c-select select {
  color: #0A1019;
  width: 100%;
  font-family: "Inter", "heisei-kaku-gothic-std", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 1.6rem;
  padding: 15px;
  padding-left: min(15px, 20%);
  padding-right: min(25px, 22%);
  background-color: white;
  border: 1px solid #C6C6C6;
  border-radius: 5px;
}
.c-select--middle {
  width: min(250px, calc((100% - 10px) / 2));
}
.c-select--small {
  width: min(140px, calc((100% - 20px) / 3));
}

.c-birthday {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 10px;
}
.c-birthday__year {
  width: 26%;
}
.c-birthday__month {
  width: 20%;
}
.c-birthday__day {
  width: 20%;
}
.c-birthday__label {
  padding-right: 10px;
}
.c-birthday__label:last-child {
  padding-right: 0;
}

.c-check {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 0.6em;
  line-height: 1.5;
  font-family: "Inter", "heisei-kaku-gothic-std", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 1.6rem;
}
.c-check.is-disabled {
  pointer-events: none;
  color: #BFBFBF;
}
.c-check.is-disabled .c-check__input {
  color: #BFBFBF;
  background-color: #F0F0F0;
}
.c-check.is-disabled .c-check__input:checked {
  background-color: #C6C6C6;
  border-color: #C6C6C6;
}
.c-check__input {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: clamp(5px, 0.8vw, 10px);
  background-color: white;
  border: 1px solid #C6C6C6;
  margin: 0;
}
.c-check__input:checked {
  position: relative;
  border-color: #0A1019;
  background-color: #0A1019;
}
.c-check__input:checked::before {
  content: "";
  display: block;
  position: absolute;
  top: 5px;
  left: 10px;
  width: 9px;
  height: 14px;
  transform: rotate(40deg);
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
}
.c-radio {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 0.6em;
  line-height: 1.5;
  font-family: "Inter", "heisei-kaku-gothic-std", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 1.6rem;
}
.c-radio.is-disabled {
  pointer-events: none;
  color: #BFBFBF;
}
.c-radio.is-disabled .c-radio__input {
  color: #BFBFBF;
  background-color: #F0F0F0;
}
.c-radio.is-disabled .c-radio__input:checked {
  background-color: #C6C6C6;
  border-color: #C6C6C6;
}
.c-radio__input {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 15px;
  background-color: white;
  border: 1px solid #C6C6C6;
  margin: 0;
}
.c-radio__input:checked {
  position: relative;
  border-color: #0A1019;
  background-color: #0A1019;
}
.c-radio__input:checked::before {
  content: "";
  display: block;
  position: absolute;
  top: 5px;
  left: 10px;
  width: 9px;
  height: 14px;
  transform: rotate(40deg);
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
}
.c-confirm {
  margin-top: 30px;
  line-height: 1.5;
}
.c-confirm__item + .c-confirm__item {
  margin-top: 10px;
}
.c-confirm dt {
  font-size: 1.4rem;
  color: #969696;
}
.c-confirm dd {
  margin-top: 5px;
}

[data-target] {
  transition: transform 0.8s ease 0.2s, opacity 0.8s ease 0.2s, background-color 0.2s, color 0.2s;
  opacity: 0;
}
[data-target].action {
  opacity: 1;
}
[data-target][data-slideup] {
  transform: translateY(1.56vw) scale(1);
}
[data-target][data-slideup].action {
  transform: translateY(0);
}
[data-target][data-slidedown] {
  transform: translateY(-1.56vw) scale(1);
}
[data-target][data-slidedown].action {
  transform: translateY(0);
}
[data-target][data-slideleft] {
  transform: translateX(1.56vw) scale(1);
}
[data-target][data-slideleft].action {
  transform: translateX(0);
}
[data-target][data-slideright] {
  transform: translateX(-1.56vw) scale(1);
}
[data-target][data-slideright].action {
  transform: translateX(0);
}

[data-lazy] {
  opacity: 0;
}
[data-lazy].action {
  transition: opacity 0.4s ease;
  opacity: 1;
}

[data-dummy] {
  color: tomato;
}

/*--------------------------------------------------------------
Utility
--------------------------------------------------------------*/
/* settings */
.u-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.u-only-sp {
  display: none;
}
@media screen and (max-width: 1024px) {
  .u-only-sp {
    display: block;
  }
}

@media screen and (max-width: 1024px) {
  .u-only-pc {
    display: none !important;
  }
}

/* width % */
.u-w-10 {
  width: 10%;
}

@media screen and (max-width: 1024px) {
  .u-w-sp-10 {
    width: 10% !important;
  }
}

.u-w-20 {
  width: 20%;
}

@media screen and (max-width: 1024px) {
  .u-w-sp-20 {
    width: 20% !important;
  }
}

.u-w-30 {
  width: 30%;
}

@media screen and (max-width: 1024px) {
  .u-w-sp-30 {
    width: 30% !important;
  }
}

.u-w-40 {
  width: 40%;
}

@media screen and (max-width: 1024px) {
  .u-w-sp-40 {
    width: 40% !important;
  }
}

.u-w-50 {
  width: 50%;
}

@media screen and (max-width: 1024px) {
  .u-w-sp-50 {
    width: 50% !important;
  }
}

.u-w-60 {
  width: 60%;
}

@media screen and (max-width: 1024px) {
  .u-w-sp-60 {
    width: 60% !important;
  }
}

.u-w-70 {
  width: 70%;
}

@media screen and (max-width: 1024px) {
  .u-w-sp-70 {
    width: 70% !important;
  }
}

.u-w-80 {
  width: 80%;
}

@media screen and (max-width: 1024px) {
  .u-w-sp-80 {
    width: 80% !important;
  }
}

.u-w-90 {
  width: 90%;
}

@media screen and (max-width: 1024px) {
  .u-w-sp-90 {
    width: 90% !important;
  }
}

.u-w-100 {
  width: 100%;
}

@media screen and (max-width: 1024px) {
  .u-w-sp-100 {
    width: 100% !important;
  }
}

/* spacer xs,sm,md,lg,xl */
.u-mt-0 {
  margin-top: 0px !important;
}

.u-mb-0 {
  margin-bottom: 0px !important;
}

.u-mr-0 {
  margin-right: 0px !important;
}

.u-ml-0 {
  margin-left: 0px !important;
}

.u-pt-0 {
  padding-top: 0px !important;
}

.u-pb-0 {
  padding-bottom: 0px !important;
}

.u-pr-0 {
  padding-right: 0px !important;
}

.u-pl-0 {
  padding-left: 0px !important;
}

.u-mt-5 {
  margin-top: 5px !important;
}

.u-mb-5 {
  margin-bottom: 5px !important;
}

.u-mr-5 {
  margin-right: 5px !important;
}

.u-ml-5 {
  margin-left: 5px !important;
}

.u-pt-5 {
  padding-top: 5px !important;
}

.u-pb-5 {
  padding-bottom: 5px !important;
}

.u-pr-5 {
  padding-right: 5px !important;
}

.u-pl-5 {
  padding-left: 5px !important;
}

.u-mt-10 {
  margin-top: 10px !important;
}

.u-mb-10 {
  margin-bottom: 10px !important;
}

.u-mr-10 {
  margin-right: 10px !important;
}

.u-ml-10 {
  margin-left: 10px !important;
}

.u-pt-10 {
  padding-top: 10px !important;
}

.u-pb-10 {
  padding-bottom: 10px !important;
}

.u-pr-10 {
  padding-right: 10px !important;
}

.u-pl-10 {
  padding-left: 10px !important;
}

.u-mt-15 {
  margin-top: 15px !important;
}

.u-mb-15 {
  margin-bottom: 15px !important;
}

.u-mr-15 {
  margin-right: 15px !important;
}

.u-ml-15 {
  margin-left: 15px !important;
}

.u-pt-15 {
  padding-top: 15px !important;
}

.u-pb-15 {
  padding-bottom: 15px !important;
}

.u-pr-15 {
  padding-right: 15px !important;
}

.u-pl-15 {
  padding-left: 15px !important;
}

.u-mt-20 {
  margin-top: 20px !important;
}

.u-mb-20 {
  margin-bottom: 20px !important;
}

.u-mr-20 {
  margin-right: 20px !important;
}

.u-ml-20 {
  margin-left: 20px !important;
}

.u-pt-20 {
  padding-top: 20px !important;
}

.u-pb-20 {
  padding-bottom: 20px !important;
}

.u-pr-20 {
  padding-right: 20px !important;
}

.u-pl-20 {
  padding-left: 20px !important;
}

.u-mt-30 {
  margin-top: 30px !important;
}

.u-mb-30 {
  margin-bottom: 30px !important;
}

.u-mr-30 {
  margin-right: 30px !important;
}

.u-ml-30 {
  margin-left: 30px !important;
}

.u-pt-30 {
  padding-top: 30px !important;
}

.u-pb-30 {
  padding-bottom: 30px !important;
}

.u-pr-30 {
  padding-right: 30px !important;
}

.u-pl-30 {
  padding-left: 30px !important;
}

.u-mt-40 {
  margin-top: 40px !important;
}

.u-mb-40 {
  margin-bottom: 40px !important;
}

.u-mr-40 {
  margin-right: 40px !important;
}

.u-ml-40 {
  margin-left: 40px !important;
}

.u-pt-40 {
  padding-top: 40px !important;
}

.u-pb-40 {
  padding-bottom: 40px !important;
}

.u-pr-40 {
  padding-right: 40px !important;
}

.u-pl-40 {
  padding-left: 40px !important;
}

.u-mt-50 {
  margin-top: 50px !important;
}

.u-mb-50 {
  margin-bottom: 50px !important;
}

.u-mr-50 {
  margin-right: 50px !important;
}

.u-ml-50 {
  margin-left: 50px !important;
}

.u-pt-50 {
  padding-top: 50px !important;
}

.u-pb-50 {
  padding-bottom: 50px !important;
}

.u-pr-50 {
  padding-right: 50px !important;
}

.u-pl-50 {
  padding-left: 50px !important;
}

.u-mt-sm {
  margin-top: clamp(20px, 3vw, 30px) !important;
}

.u-mb-sm {
  margin-bottom: clamp(20px, 3vw, 30px) !important;
}

.u-mr-sm {
  margin-right: clamp(20px, 3vw, 30px) !important;
}

.u-ml-sm {
  margin-left: clamp(20px, 3vw, 30px) !important;
}

.u-pt-sm {
  padding-top: clamp(20px, 3vw, 30px) !important;
}

.u-pb-sm {
  padding-bottom: clamp(20px, 3vw, 30px) !important;
}

.u-pr-sm {
  padding-right: clamp(20px, 3vw, 30px) !important;
}

.u-pl-sm {
  padding-left: clamp(20px, 3vw, 30px) !important;
}

.u-mt-md {
  margin-top: clamp(40px, 5vw, 50px) !important;
}

.u-mb-md {
  margin-bottom: clamp(40px, 5vw, 50px) !important;
}

.u-mr-md {
  margin-right: clamp(40px, 5vw, 50px) !important;
}

.u-ml-md {
  margin-left: clamp(40px, 5vw, 50px) !important;
}

.u-pt-md {
  padding-top: clamp(40px, 5vw, 50px) !important;
}

.u-pb-md {
  padding-bottom: clamp(40px, 5vw, 50px) !important;
}

.u-pr-md {
  padding-right: clamp(40px, 5vw, 50px) !important;
}

.u-pl-md {
  padding-left: clamp(40px, 5vw, 50px) !important;
}

.u-mt-lg {
  margin-top: clamp(60px, 6.66vw, 80px) !important;
}

.u-mb-lg {
  margin-bottom: clamp(60px, 6.66vw, 80px) !important;
}

.u-mr-lg {
  margin-right: clamp(60px, 6.66vw, 80px) !important;
}

.u-ml-lg {
  margin-left: clamp(60px, 6.66vw, 80px) !important;
}

.u-pt-lg {
  padding-top: clamp(60px, 6.66vw, 80px) !important;
}

.u-pb-lg {
  padding-bottom: clamp(60px, 6.66vw, 80px) !important;
}

.u-pr-lg {
  padding-right: clamp(60px, 6.66vw, 80px) !important;
}

.u-pl-lg {
  padding-left: clamp(60px, 6.66vw, 80px) !important;
}

.u-mt-xl {
  margin-top: clamp(80px, 8.33vw, 100px) !important;
}

.u-mb-xl {
  margin-bottom: clamp(80px, 8.33vw, 100px) !important;
}

.u-mr-xl {
  margin-right: clamp(80px, 8.33vw, 100px) !important;
}

.u-ml-xl {
  margin-left: clamp(80px, 8.33vw, 100px) !important;
}

.u-pt-xl {
  padding-top: clamp(80px, 8.33vw, 100px) !important;
}

.u-pb-xl {
  padding-bottom: clamp(80px, 8.33vw, 100px) !important;
}

.u-pr-xl {
  padding-right: clamp(80px, 8.33vw, 100px) !important;
}

.u-pl-xl {
  padding-left: clamp(80px, 8.33vw, 100px) !important;
}

.u-mt-auto {
  margin-top: auto !important;
}

.u-mb-auto {
  margin-bottom: auto !important;
}

.u-mr-auto {
  margin-right: auto !important;
}

.u-ml-auto {
  margin-left: auto !important;
}

.u-pt-auto {
  padding-top: auto !important;
}

.u-pb-auto {
  padding-bottom: auto !important;
}

.u-pr-auto {
  padding-right: auto !important;
}

.u-pl-auto {
  padding-left: auto !important;
}

/* text-align */
.u-text-left {
  text-align: left;
}

.u-text-center {
  text-align: center;
}

.u-text-right {
  text-align: right;
}

/* font-size 1remから3remまで */
.u-font-10 {
  font-size: 1rem;
}

.u-font-11 {
  font-size: 1.1rem;
}

.u-font-12 {
  font-size: 1.2rem;
}

.u-font-13 {
  font-size: 1.3rem;
}

.u-font-14 {
  font-size: 1.4rem;
}

.u-font-15 {
  font-size: 1.5rem;
}

.u-font-16 {
  font-size: 1.6rem;
}

.u-font-17 {
  font-size: 1.7rem;
}

.u-font-18 {
  font-size: 1.8rem;
}

.u-font-19 {
  font-size: 1.9rem;
}

.u-font-20 {
  font-size: 2rem;
}

.u-font-21 {
  font-size: 2.1rem;
}

.u-font-22 {
  font-size: 2.2rem;
}

.u-font-23 {
  font-size: 2.3rem;
}

.u-font-24 {
  font-size: 2.4rem;
}

.u-font-25 {
  font-size: 2.5rem;
}

.u-font-26 {
  font-size: 2.6rem;
}

.u-font-27 {
  font-size: 2.7rem;
}

.u-font-28 {
  font-size: 2.8rem;
}

.u-font-29 {
  font-size: 2.9rem;
}

.u-font-30 {
  font-size: 3rem;
}

.u-flex {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-wrap: wrap;
  gap: 10px;
}

.u-opacity {
  transition: opacity 0.3s ease;
}
.u-opacity:hover {
  opacity: 0.6;
}

/*--------------------------------------------------------------
indexのみ
--------------------------------------------------------------*/
.p-sec-header {
  width: calc(100% - 100px);
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 100px;
}
@media screen and (max-width: 1024px) {
  .p-sec-header {
    width: calc(100% - 44px);
  }
}
@media screen and (max-width: 1024px) {
  .p-sec-header {
    flex-direction: column;
    align-items: start;
  }
}
.p-sec-header__copy {
  flex-shrink: 0;
  width: 50%;
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: column;
  line-height: 1.21;
}
@media screen and (max-width: 1024px) {
  .p-sec-header__copy {
    width: 100%;
  }
}
.p-sec-header__copy span {
  color: #0E72C4;
  font-size: clamp(2rem,calc((80 / 15) * 1vw),8rem);
  font-weight: 700;
}
.p-sec-header__copy span:last-of-type {
  margin-top: 0.22em;
  margin-left: 0.5em;
}
.p-sec-header__copy span.--large {
  font-size: clamp(2.4rem,calc((100 / 15) * 1vw),10rem);
}
.p-sec-header__copy span.--middle {
  font-size: clamp(2.2rem,calc((90 / 15) * 1vw),9rem);
}
.p-sec-header__copy span.--white {
  color: white;
}
.p-sec-header__copy span.--light-gray {
  color: #A9B5BE;
}
.p-sec-header__copy span.--light-blue {
  color: #A2C6F4;
}
.p-sec-header__content {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: column;
}
.p-sec-header__content .title {
  font-size: clamp(1.8rem,calc((28 / 15) * 1vw),2.8rem);
  font-weight: 700;
  line-height: 1.5;
}
.p-sec-header__content .text {
  margin-top: 15px;
  color: #585858;
  line-height: 2;
}
.p-sec-header__content .text.--white {
  color: white;
}
.p-sec-header__content .button {
  margin-top: 40px;
  width: 100%;
}

.p-card {
  position: relative;
  transition: opacity 0.3s ease;
}
.p-card--works .p-card__image {
  height: 520px;
}
.p-card--works .p-card__text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.p-card:hover {
  opacity: 0.8;
}
.p-card__link {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.p-card__image {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 10px;
}
.p-card__title {
  margin-top: 28px;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.p-card__text {
  margin-top: 9px;
  font-size: 1.4rem;
  line-height: 1.875;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.p-card__tags {
  margin-top: 14px;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 10px;
}
.p-card__tags a {
  position: relative;
  z-index: 2;
  transition: opacity 0.3s ease;
}
.p-card__tags a:hover {
  opacity: 0.8;
}
.p-card__tags .tag {
  display: inline-block;
  color: white;
  background-color: #0E72C4;
  padding: 10px 17px;
  font-size: 1.2rem;
  line-height: 1.3;
  border-radius: 9999px;
}

.p-mv {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}
.p-mv__text {
  margin-top: -3.98%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 5.41vw;
  width: inherit;
}
.p-mv__text p {
  transform: translate(0px, 100%);
}
.p-mv__catch {
  position: relative;
  height: calc(var(--fontSize) * 1.5);
  overflow: hidden;
}
.p-mv__catch p {
  position: absolute;
  top: 0;
  left: 0;
  font-size: var(--fontSize);
  font-weight: 700;
  color: white;
  line-height: 1.5;
}
.p-mv__catch--1 {
  --fontSize: 5.2vw;
}
.p-mv__catch--1 p {
  color: #0E72C4;
}
.p-mv__catch--2 {
  --fontSize: 5.2vw;
  margin-top: calc(var(--fontSize) * -.43);
  margin-left: calc(var(--fontSize) * 2.85);
}
.p-mv__sub {
  position: relative;
  height: calc(var(--fontSize) * 1.5);
  overflow: hidden;
}
.p-mv__sub p {
  position: absolute;
  top: 0;
  left: 0;
  font-size: var(--fontSize);
  color: white;
  line-height: 1.5;
}
.p-mv__sub--1 {
  --fontSize: max(2.3rem,1.56vw);
  margin-top: calc(var(--fontSize) * 0.53);
}
.p-mv__sub--1 p {
  font-weight: 700;
}
.p-mv__sub--2 {
  --fontSize: max(1.4rem,0.93vw);
  margin-top: calc(var(--fontSize) * 0.16);
}
.p-mv__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: -1;
}
.p-mv__bgFloating {
  position: absolute;
  z-index: 10;
  right: 0;
  width: 50%;
  height: 100%;
}
.p-mv__bgFloating.float-start .item {
  animation-play-state: running;
}
.p-mv__bgFloating .item {
  height: auto;
  border-radius: 10px;
  position: absolute;
  animation-name: floatUp;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  /* 無限ループの場合 */
  animation-play-state: paused;
  z-index: 2;
  /* 浮遊アニメーション本体 */
}
@keyframes floatUp {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  45% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100%);
    opacity: 0;
  }
}
.p-mv__bgFloating .item1 {
  top: 5%;
  left: 50%;
  width: max(493px, 25vw);
  animation-duration: 20s;
}
.p-mv__bgFloating .item2 {
  top: 35%;
  left: 35%;
  width: max(340px, 17.7vw);
  animation-duration: 22s;
}
.p-mv__bgFloating .item3 {
  opacity: 0.3;
  top: 50%;
  left: 68.75%;
  width: max(300px, 15.6vw);
  animation-duration: 27s;
  z-index: 1;
}
.p-mv__bgFloating .item4 {
  top: 60%;
  left: 27%;
  width: max(600px, 31.25vw);
  animation-duration: 25s;
}
.p-mv__bgFloating .item5 {
  top: 76%;
  left: 50%;
  width: max(400px, 23vw);
  animation-duration: 22s;
  animation-delay: 13s;
  opacity: 0;
  z-index: 1;
}
.p-mv__bgColumn {
  width: 100%;
  height: 100%;
  display: flex;
  z-index: 2;
}
.p-mv__bgColumn .column {
  flex: 1;
  position: relative;
  background-position: center;
  transform: translateY(100%);
  opacity: 0;
  background-image: url("../img/top/mv_bg.jpg");
  background-size: 800% 100%;
}
.p-mv__bgColumn .col1 {
  background-position: 0% 0;
}
.p-mv__bgColumn .col2 {
  background-position: 12.5% 0;
}
.p-mv__bgColumn .col3 {
  background-position: 25% 0;
}
.p-mv__bgColumn .col4 {
  background-position: 37.5% 0;
}
.p-mv__bgColumn .col5 {
  background-position: 50% 0;
}
.p-mv__bgColumn .col6 {
  background-position: 62.5% 0;
}
.p-mv__bgColumn .col7 {
  background-position: 75% 0;
}
.p-mv__bgColumn .col8 {
  background-position: 87.5% 0;
}
.p-mv__bgLine {
  /* 線の位置を設定 */
}
.p-mv__bgLine .line {
  position: absolute;
  width: 1px;
  background-color: #94CBF5;
  bottom: 0;
  top: 0;
  transform: scaleY(0);
  transform-origin: bottom center;
  z-index: 3;
}
.p-mv__bgLine .line1 {
  left: 12.5%;
}
.p-mv__bgLine .line2 {
  left: 25%;
}
.p-mv__bgLine .line3 {
  left: 37.5%;
}
.p-mv__bgLine .line4 {
  left: 50%;
}
.p-mv__bgLine .line5 {
  left: 62.5%;
}
.p-mv__bgLine .line6 {
  left: 75%;
}
.p-mv__bgLine .line7 {
  left: 87.5%;
}
.p-mv__ameba {
  transform: translateZ(0);
  backface-visibility: hidden;
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: visible;
  z-index: 1;
  opacity: 0;
  /* 最初は見せない */
  transition: opacity 1s ease;
  background-color: #8dccff;
}
.p-mv__ameba .blob {
  position: absolute;
  filter: blur(160px);
  transform-origin: center;
}
.p-mv__ameba .blob--left {
  top: 1%;
  left: -7%;
  transform: translateY(-50%);
  width: 1241.044px;
  height: 673.398px;
}
.p-mv__ameba .blob--center {
  top: 40%;
  left: 37%;
  transform: translate(-50%, -50%);
  width: 1982.948px;
  height: 1677.117px;
}
.p-mv__ameba .blob--right {
  top: 23%;
  right: -29%;
  transform: translateY(-50%);
  width: 1173.688px;
  height: 1185.152px;
}
.p-mv__ameba .blob--out {
  top: -39%;
  left: -37%;
  transform: translateY(-50%);
  width: 1293.876px;
  height: 1279.859px;
}

.p-mvBottom {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  pointer-events: none;
  z-index: 9;
  /* 必要に応じて調整 */
  display: flex;
  backface-visibility: hidden;
  transform: translateZ(0);
}
.p-mvBottom .column {
  height: 100%;
  background: #E9EDF0;
  transform-origin: bottom;
  flex: 1 0 calc(12.5% + 1px);
  transform: scaleY(0);
  /* グラフィックの乱れ防止 */
  will-change: transform;
  image-rendering: pixelated;
}

.p-contentWrapper {
  position: relative;
  z-index: 10;
  /* GSAP が y + opacity を制御するので最初はここに書かない */
  backface-visibility: hidden;
  transform: translateZ(0);
  opacity: 0;
  background-color: #E9EDF0;
}

.p-about {
  padding: 500px 0 0;
}
.p-about__content {
  margin-top: 80px;
  position: relative;
}
.p-about__drawing {
  width: 1330px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 75px;
  background: no-repeat center center/contain;
  background-image: image-set(url("../img/top/about_bg.webp") type("image/webp"), url("../img/top/about_bg.png") type("image/jpeg"));
}
.p-about__drawing .drawing-item {
  width: 490px;
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: white;
}
.p-about__drawing .drawing-item.--orange .drawing-item__tags {
  color: #E59425;
}
.p-about__drawing .drawing-item__copy {
  margin-top: 19px;
  font-size: 4.6rem;
  font-weight: 300;
}
.p-about__drawing .drawing-item__image {
  margin-top: 4px;
}
.p-about__drawing .drawing-item__tags {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #56ABDC;
  font-size: 1.8rem;
}
.p-about__drawing .drawing-item__tags li {
  min-width: 90px;
  text-align: center;
  padding: 11px 19px;
  background-color: white;
  border-radius: 9999px;
}
.p-about__list {
  margin-top: 5px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 50px;
  color: #50A586;
  font-size: 1.8rem;
  line-height: 1.33;
  z-index: 1;
}
.p-about__list .list-item {
  position: relative;
  width: 170px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 6px;
  aspect-ratio: 1;
  background-color: white;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
  border-radius: 100%;
}
.p-about__list .list-item::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  aspect-ratio: 1;
  width: 190px;
  background-color: #E9EDF0;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  border-radius: 100%;
  z-index: -1;
}
.p-about__list .list-item:nth-of-type(2)::after {
  background-color: rgba(255, 255, 255, 0.5);
}
.p-about__list .list-item__en {
  font-size: 1.2rem;
  font-weight: 300;
}
.p-about__marquee {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
  z-index: -1;
  /* アニメーション */
}
.p-about__marquee .marquee-text {
  color: #E1E7EB;
  font-size: 13rem;
  font-weight: 600;
  line-height: 2;
  display: inline-flex;
  animation: marquee 50s linear infinite;
}
.p-about__marquee .marquee-text span {
  padding-right: 2rem;
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.p-service {
  padding: 170px 0 184px;
  position: relative;
}
.p-service-header {
  width: calc(100% - 100px);
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1024px) {
  .p-service-header {
    width: calc(100% - 44px);
  }
}
.p-service-header__title {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: row-reverse;
  gap: 25px;
}
.p-service-header__title .main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 7px;
  padding-top: 20px;
}
.p-service-header__title .main::before, .p-service-header__title .main::after {
  content: "";
  display: block;
  width: 5px;
  height: 2px;
  background: currentColor;
}
.p-service-header__title .sub {
  color: #0E72C4;
  font-size: 6rem;
  font-weight: 700;
}
.p-service-header__title span.--light-gray {
  color: #A9B5BE;
}
.p-service-header__copy {
  margin-top: 40px;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
}
.p-service-header__text {
  margin-top: 12px;
  color: #585858;
  line-height: 2;
}
.p-service__content {
  margin-top: 52px;
  width: calc(100% - 100px);
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1024px) {
  .p-service__content {
    width: calc(100% - 44px);
  }
}
.p-service__list {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 25px;
}
@media screen and (max-width: 1024px) {
  .p-service__list {
    flex-direction: column;
  }
}
.p-service__list::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -40px;
  /* 開発実績　角丸分 */
  display: block;
  width: 100vw;
  aspect-ratio: 1;
  background: url("../img/top/service_bg.jpg") no-repeat center bottom;
  background-size: max(2795px, 100%) auto;
  mix-blend-mode: multiply;
  opacity: 0.5;
  z-index: -1;
}
.p-service__list .service-card {
  position: relative;
  flex: 1;
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: column;
  padding: 50px 30px 30px;
  transition: color 0.3s ease, background-color 0.3s ease;
}
.p-service__list .service-card > * {
  position: relative;
  z-index: 1;
}
.p-service__list .service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #F4F5F5;
  border-radius: 10px;
  z-index: 0;
  transition: color 0.3s ease, background-color 0.3s ease;
}
.p-service__list .service-card:hover {
  color: white;
}
.p-service__list .service-card:hover::after {
  background-color: #2185D8;
  mix-blend-mode: multiply;
}
.p-service__list .service-card:hover .service-card__en {
  color: white;
}
.p-service__list .service-card:hover .service-card__title {
  color: white;
}
.p-service__list .service-card:hover .service-card__text {
  color: white;
}
.p-service__list .service-card:hover .service-card__button {
  color: #0E72C4;
  background-color: rgba(255, 255, 255, 0.8);
}
.p-service__list .service-card:hover .service-card__button::after {
  filter: invert(31%) sepia(89%) saturate(1073%) hue-rotate(180deg) brightness(97%) contrast(92%);
}
.p-service__list .service-card__en {
  color: black;
  font-family: "adobe-garamond-pro", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 2rem;
}
.p-service__list .service-card__title {
  margin-top: 33px;
  color: #2B3036;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
}
.p-service__list .service-card__text {
  margin-top: 15px;
  margin-bottom: 53px;
  color: #585858;
  line-height: 1.875;
}
.p-service__list .service-card__link {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.p-service__list .service-card__button {
  margin-top: auto;
  pointer-events: none;
}

.p-works {
  position: relative;
  padding: 323px 0 0;
  background-color: #F4F5F5;
  border-radius: 40px 40px 0 0;
}
.p-works__bottom {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -237px;
  margin: auto;
  width: max(1500px, 100%);
  height: 237px;
  overflow: hidden;
}
.p-works__bottom::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* = 237px */
  background: url("../img/top/works_bottom.svg") no-repeat center top;
  background-size: 100% 100%;
}
.p-works__content {
  margin-top: 80px;
  width: calc(100% - 100px);
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1024px) {
  .p-works__content {
    width: calc(100% - 44px);
  }
}
.p-works__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.4rem;
}
.p-works__nav a {
  display: block;
  padding: 13px 18px;
  border-radius: 9999px;
  transition: color 0.3s ease, background-color 0.3s ease;
}
.p-works__nav a.is-active, .p-works__nav a:hover {
  color: white;
  background-color: #0E72C4;
}
.p-works__list {
  margin-top: 80px;
  display: flex;
  justify-content: start;
  align-items: start;
  gap: 80px 2%;
  flex-wrap: wrap;
}
@media screen and (max-width: 1024px) {
  .p-works__list {
    flex-direction: column;
  }
}
.p-works__list > * {
  width: 62%;
}
@media screen and (max-width: 1024px) {
  .p-works__list > * {
    width: 100% !important;
  }
}
.p-works__list > *:nth-of-type(4n+2), .p-works__list > *:nth-of-type(4n+3) {
  width: 36%;
}
.p-works__button > * {
  margin: 126px auto 0;
}

.p-products {
  padding: 483px 0 239px;
  color: white;
  background-image: linear-gradient(89deg, #2c5ebb, #437ecb);
  overflow: hidden;
}
.p-products__content {
  margin-top: 162px;
  width: calc(100% - 100px);
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1024px) {
  .p-products__content {
    width: calc(100% - 44px);
  }
}
.p-products__list {
  position: relative;
  padding-left: 160px;
  margin-right: calc(50% - 50vw);
}
.p-products__list::before {
  content: "";
  position: absolute;
  left: 260px;
  bottom: 0;
  width: 100vw;
  height: 1px;
  border-top: 1px solid currentColor;
  opacity: 0.55;
}
.p-products__card {
  position: relative;
  margin-left: 100px;
  opacity: 0.5;
  transition: opacity 0.3s ease, margin-left 0.3s ease;
}
.p-products__card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100vw;
  height: 1px;
  border-top: 1px solid currentColor;
}
.p-products__card:hover {
  opacity: 1;
  margin-left: 0;
}
.p-products__card:hover .card-wrapper {
  height: 390px;
}
.p-products__card:hover .card-image {
  opacity: 1;
}
.p-products__card .card-link {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.p-products__card .card-wrapper {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 289px;
  transition: height 0.3s ease;
}
.p-products__card .card-num {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 24px;
  font-size: 2.6rem;
  position: relative;
  z-index: 2;
}
.p-products__card .card-num .num {
  font-size: 5rem;
  font-weight: 600;
}
.p-products__card .card-icon {
  margin: 0 60px;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background-color: white;
  position: relative;
  z-index: 2;
}
.p-products__card .card-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  display: block;
  width: 12px;
  height: 17px;
  background: url("../img/base/icon_arrow.svg") no-repeat center right/contain;
  filter: invert(32%) sepia(95%) saturate(1107%) hue-rotate(184deg) brightness(89%) contrast(94%) !important;
}
.p-products__card .card-title {
  margin-top: 28px;
  font-size: 6.6rem;
  font-weight: 600;
  position: relative;
  z-index: 2;
}
.p-products__card .card-image {
  position: absolute;
  left: 133px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 500px;
  height: 300px;
  object-fit: cover;
  opacity: 0;
  border-radius: 10px;
  transition: opacity 0.3s ease;
  z-index: 1;
}
.p-products__card .card-text {
  width: 32.5vw;
  margin-left: auto;
  font-size: 2rem;
  line-height: 1.8;
}

.p-blog {
  margin-top: -40px;
  margin-bottom: -40px;
  padding: 197px 0 255px;
  border-radius: 40px;
  background-color: white;
}
.p-blog-header {
  width: calc(100% - 100px);
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1024px) {
  .p-blog-header {
    width: calc(100% - 44px);
  }
}
.p-blog-header__title {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: row-reverse;
  gap: 25px;
}
.p-blog-header__title .main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 7px;
  padding-top: 20px;
}
.p-blog-header__title .main::before, .p-blog-header__title .main::after {
  content: "";
  display: block;
  width: 5px;
  height: 2px;
  background: currentColor;
}
.p-blog-header__title .sub {
  color: #0E72C4;
  font-size: 8rem;
  font-weight: 700;
}
.p-blog-header__title span.--light-gray {
  color: #A9B5BE;
}
.p-blog-header__text {
  margin-top: 30px;
  color: #585858;
  line-height: 2;
}
.p-blog__content {
  margin-top: 52px;
  width: calc(100% - 100px);
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1024px) {
  .p-blog__content {
    width: calc(100% - 44px);
  }
}
.p-blog__list {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 60px 25px;
  flex-wrap: wrap;
}
.p-blog__list > * {
  width: calc((100% - 50px) / 3);
}
.p-blog__button > * {
  margin: 100px auto 0;
}

/*# sourceMappingURL=index.css.map */
