@charset "utf-8";

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

html {
  font-size: 62.5%;
  overflow-x: hidden;
  overflow-y: scroll;
}

body {
  font-size: 1.0rem;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  font-family: hiragino-kaku-gothic-pron, sans-serif;
  font-weight: 300;
  font-style: normal;
  color: #000;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
}

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

ol,
ul {
  list-style: none;
}

a {
  color: #000;
  text-decoration: none;
  transition: .2s ease-in-out;
}

a:hover {
  opacity: 0.6;
}

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

.sp {
  display: none !important;
}

.container {
  max-width: 110rem;
  width: 85%;
  margin: 0 auto;
  position: relative;
}

/* animation */
.animation,
.panel {
  position: relative;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: opacity 1.2s ease, visibility 1.2s ease, transform 1.2s ease;
}

.fadeInUp {
  opacity: 1;
  visibility: visible !important;
  transform: translateY(0) !important;
}

.fadeOutDown {
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 1.5s ease, visibility 1.5s ease, transform 1.5s ease;
}

.animation-left {
  position: relative;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-30px);
  transition: opacity 1.2s ease, visibility 1.2s ease, transform 1.2s ease;
}

.fadeInLeft {
  opacity: 1;
  visibility: visible !important;
  transform: translateX(0) !important;
}

.parallax,
.parallax-scale {
  position: relative;
  top: 0;
  left: 50%;
  width: auto;
  min-width: 100%;
  height: auto;
  object-fit: cover;
  object-position: top center;
  transform-origin: center top;
  will-change: transform;
}

.parallax-scale {
  width: 100%;
  height: auto;
  transform: translate(-50%, 0%) scale(1.2);
  opacity: 0;
  object-fit: cover;
  object-position: center top;
  will-change: transform;
  transition: transform 1.5s ease, opacity 1.5s ease;
}

.parallax-scale.is-visible {
  transform: translate(-50%, 0%) scale(1) !important;
  opacity: 1 !important;
}


#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #000;
  z-index: 21000;
  opacity: 1;
  pointer-events: auto;
  transform: scaleY(1) translateZ(10px);
  transform-origin: center top;
  transition: transform 1s cubic-bezier(0.77, 0, 0.175, 1) 0s, opacity 0s linear 0s, width 0s linear 0s, height 0s linear 0s;
}

#overlay.loaded {
  height: 0;
  opacity: 0;
  pointer-events: none;
  transform: scaleY(0) translateZ(10px);
  transform-origin: center top;
  transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1) .2s, opacity 0s linear 1.2s, width 0s linear 1.2s, height 0s linear 1.2s;
  width: 0;
}

body .blackout {
  transition: all 0.5s;
  visibility: hidden;
  width: 100%;
  height: 100%;
  z-index: 1000;
  position: fixed;
  top: 0;
  left: 0;
}

body.overwrap .blackout {
  visibility: visible;
  background-color: rgba(0, 0, 0, 0.5);
}

/*header*/
.header {
  position: fixed;
  z-index: 20000;
  top: 5rem;
  left: 5rem;
  right: 5rem;
  transition: opacity .1s linear;
}

.header--hide {
  opacity: 0;
  pointer-events: none;
}

.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 7rem;
  background-color: #fff;
  border-radius: 3.5rem;
  padding: 0 2rem 0 3rem;
  position: relative;
}

.header__logo {
  width: 22rem;
}

.header__nav {
  display: block;
}

.header__menu {
  display: flex;
}

.header__menu-item {}

.header__menu-link {
  font-family: "futura-pt", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: clamp(1.4rem, 1.36rem + 0.2vw, 1.6rem);
  color: #000;
  display: block;
  padding: 1rem 2rem;
  border-radius: 3rem;
  position: relative;
  transition: color 0.5s ease;
  z-index: 1;
  overflow: hidden;
}

.header__menu-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, rgba(25, 146, 203, 1), rgba(102, 45, 145, 1));
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
  border-radius: 3rem;
}

.header__menu-link:hover::before {
  opacity: 1;
}

.header__menu-link:hover {
  color: #fff;
}

.header__dropdown {
  position: absolute;
  transition: all 0.5s;
  width: 100%;
  opacity: 0;
  padding: 0;
  visibility: hidden;
  left: 0;
}

.header__menu-item:hover .header__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header__dropdown ul::before {
  content: "";
  position: absolute;
  top: 2rem;
  width: calc(100% - 4rem);
  left: 50%;
  transform: translateX(-50%);
  height: 0.1rem;
  background-color: #E6E6E6;
}

.header__dropdown ul li {
  line-height: 1;
  padding: 0 2rem;
  position: relative;
  text-align: left;
}

.header__submenu {
  background-color: #fff;
  margin-top: -1.5rem;
  padding-top: 3rem;
  border-bottom-left-radius: 3.5rem;
  border-bottom-right-radius: 3.5rem;
  display: flex;
  justify-content: center;
}

.header__submenu-link {
  display: block;
  padding: 3rem 0;
  font-size: clamp(1.2rem, 1.16rem + 0.2vw, 1.4rem);
}

.header__submenu-link strong {
  font-weight: 700;
}

.header__submenu-link:hover {
  color: #1992CB;
}

.header__nav--sp,
.header__menu-btn {
  display: none;
}

.page-header {
  background: linear-gradient(45deg, rgba(25, 146, 203, 1) 0%, rgba(102, 45, 145, 1) 100%);
  padding: 18rem 0 10rem;
  border-bottom-left-radius: 5rem;
  border-bottom-right-radius: 5rem;
  color: #fff;
  z-index: 1;
  position: relative;
  overflow: hidden;
}

.page-header__container {
  margin: 0 8rem;
}

.page-header__title {
  font-family: futura-pt, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(2rem, 1.28rem + 3.6vw, 5.6rem);
  letter-spacing: 0.1em;
  text-transform: capitalize;
  margin-bottom: 1.5rem;
}

.breadcrumb-nav__list {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 3rem;
}

.breadcrumb-nav__item {
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.2rem);
  position: relative;
  color: #fff;
}

.breadcrumb-nav__item:last-child {
  opacity: 0.6;
}

.breadcrumb-nav__item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -2rem;
  width: 12px;
  height: 1px;
  background-color: #fff;
  opacity: 0.6;
  transform: translateY(-50%);
}

.breadcrumb-nav__item:first-child {
  opacity: 1;
  font-size: clamp(1.2rem, 1.16rem + 0.2vw, 1.4rem);
}

.breadcrumb-nav__link {
  color: #fff;
}


.section-title {
  display: flex;
  align-items: baseline;
  position: relative;
  margin: 0 0 7rem 0;
  z-index: 2;
}

.section-title__en {
  position: relative;
  font-family: futura-pt, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: clamp(1.2rem, 0.379rem + 4.1vw, 3.2rem);
  padding: 0 0 0 2.5rem;
  letter-spacing: 0.15em;
  line-height: 1;
  white-space: nowrap;
}

.section-title__en::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.5rem;
  height: 1.5rem;
  background: linear-gradient(45deg, rgba(25, 146, 203, 1) 0%, rgba(102, 45, 145, 1) 100%);
}

.section-title__jp {
  font-size: clamp(1rem, 0.881rem + 0.59vw, 1.4rem);
  padding-left: 1rem;
  letter-spacing: 0.1rem;
}

.btn-primary {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  max-width: 43rem;
  width: 100%;
  padding: 3.4rem;
  color: #fff;
  font-family: futura-pt, sans-serif;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.1em;
  font-size: clamp(1.1rem, 0.952rem + 0.74vw, 1.6rem);
  text-align: center;
  background-image: linear-gradient(45deg, #1992CB 0%, #662D91 100%);
  background-position: right center;
  background-size: 150% 100%;
  text-decoration: none;
  z-index: 1;
  transition: background-position 0.3s ease-in-out, opacity 0.3s ease;
}


.btn-primary::after {
  content: "";
  position: absolute;
  right: -3rem;
  top: 50%;
  transform: translateY(-50%);
  background-image: url("../images/common/btn-arrow-long.svg");
  background-repeat: no-repeat;
  background-position: right;
  width: 6.3rem;
  height: 1.6rem;
  transition: right 0.4s cubic-bezier(0.3, 1.6, 0.5, 1), transform 0.4s cubic-bezier(0.3, 1.6, 0.5, 1);
  z-index: 1;
}

.btn-primary:hover::after {
  right: -3.2rem;
  transform: translateY(-50%) translateX(0.3rem);
  transition: right 0.25s ease-out, transform 0.25s ease-out;
}



.btn-outline {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  max-width: 43rem;
  width: 100%;
  padding: 4rem 0;
  font-family: futura-pt, sans-serif;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.1em;
  font-size: clamp(1.1rem, 0.952rem + 0.74vw, 1.6rem);
  color: #fff;
  background: transparent;
  border: 1px solid #fff;
  text-align: center;
}

.btn-outline:hover {
  background-position: left center;
  opacity: 0.9;
}

.btn-outline::after {
  content: "";
  position: absolute;
  right: -3.1rem;
  top: 50%;
  transform: translateY(-50%);
  background-image: url("../images/common/btn-arrow-long.svg");
  background-repeat: no-repeat;
  background-position: right;
  width: 6.3rem;
  height: 1.6rem;
  transition: right 0.18s ease-out, transform 0.18s ease-out;
  z-index: 1;
}

.btn-outline:hover::after {
  right: -3.15rem;
  transform: translateY(-50%) translateX(0.1rem);
}


.btn-more {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 22.5rem;
  padding: 2rem;
  color: #fff;
  text-align: center;
  font-family: futura-pt, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: clamp(1.1rem, 0.952rem + 0.74vw, 1.6rem);
  border-radius: 4rem;
  overflow: hidden;
  background-image: linear-gradient(to right, #1992CB 0%, #662D91 100%);
  background-position: right center;
  background-size: 150% 100%;
  transition: background-position 0.2s ease-in-out;
}

.btn-more:hover {
  background-position: left center;
  opacity: 0.9;
}

.btn-more::after {
  content: "";
  background-image: url("../images/common/btn-arrow-short.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 1.6rem;
  height: 1.5rem;
  margin-left: 1rem;
  position: relative;
  right: 0;
  transition: right 0.4s cubic-bezier(0.3, 1.6, 0.5, 1), transform 0.4s cubic-bezier(0.3, 1.6, 0.5, 1);
}

.btn-more:hover::after {
  right: -0.2rem;
  transform: translateX(0.1rem);
  transition: right 0.25s ease-out, transform 0.25s ease-out;
}

.btn-site {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 22.5rem;
  padding: 2rem;
  color: #fff;
  text-align: center;
  font-family: futura-pt, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: clamp(1.1rem, 0.952rem + 0.74vw, 1.6rem);
  border-radius: 4rem;
  overflow: hidden;
  background-image: linear-gradient(to right, #1992CB 30%, #662D91 100%);
  background-position: right center;
  background-size: 150% 100%;
  transition: background-position 0.2s ease-in-out;
}

.btn-site:hover {
  background-position: left center;
  opacity: 0.9;
}

.btn-site::after {
  content: "";
  background-image: url("../images/common/icon-visit-site.svg");
  background-repeat: no-repeat;
  width: 1.3rem;
  height: 1.3rem;
  margin-left: 1rem;
  position: relative;
  transition: 0.35s cubic-bezier(0.3, 1.6, 0.5, 1);
  right: 0;
}

.btn-site__black {
  font-size: clamp(1.4rem, 1.36rem + 0.2vw, 1.6rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #000;
  color: #fff;
  padding: 2.2rem 4rem;
  border-radius: 40px;
  font-weight: 500;
  position: relative;
}

.btn-site__black::after {
  content: "";
  background-image: url("../images/common/icon-visit-site.svg");
  background-repeat: no-repeat;
  width: 1.6rem;
  height: 1.6rem;
  position: relative;
  transition: 0.35s cubic-bezier(0.3, 1.6, 0.5, 1);
  right: 0;
}

.link-more {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  color: #fff;
  font-family: futura-pt, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: clamp(1.2rem, 1.12rem + 0.4vw, 1.6rem);
}

.link-more:hover {
  opacity: 0.9;
}

.link-more::after {
  content: "";
  background-image: url("../images/common/btn-arrow-short.svg");
  background-repeat: no-repeat;
  background-size: 100%;
  width: 1.6rem;
  height: 1.5rem;
  margin-left: 1rem;
  position: relative;
  transition: 0.35s cubic-bezier(0.3, 1.6, 0.5, 1);
  right: 0;
}

.link-more:hover::after {
  right: -0.3rem;
  transition: 0.2s cubic-bezier(0.7, 0, 0.3, 1);
}



.btn-site__bk {
  margin-top: 5rem;
}

.btn-site__bk a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 1.6rem 5rem;
  background-color: #000;
  color: #fff;
  font-size: clamp(1.4rem, 1.36rem + 0.2vw, 1.6rem);
  border-radius: 9999px;
  width: 100%;
}

.btn-site__bk a::after {
  content: "";
  display: inline-block;
  margin-left: 8px;
  width: 1.6rem;
  height: 1.6rem;
  background-image: url(../images/common/icon-visit-site.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
}

.arrow-nav {
  padding: 20rem 0;
}

.arrow-nav__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7rem 4rem;
}

.arrow-nav__item {
  position: relative;
}

.arrow-nav__link {
  display: block;
  position: relative;
  text-decoration: none;
  color: #000;
  font-size: clamp(1.2rem, 1.12rem + 0.4vw, 1.6rem);
  padding-bottom: 1rem;
  transition: all 0.3s ease-in-out;
}

.arrow-nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: calc(100% - 1.5rem);
  height: 1px;
  background: #808080;
  transition: width 0.3s ease-in-out;
}

.arrow-nav__link::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 1.5rem;
  width: 2rem;
  height: 1rem;
  border-bottom: solid 1px #808080;
  border-right: solid 1px #808080;
  transform: skew(45deg);
  transition: transform 0.3s ease-in-out, right 0.3s ease-in-out;
  background: #fff;
}

.arrow-nav__label {
  font-family: "futura-pt", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: clamp(1.2rem, 1.16rem + 0.2vw, 1.4rem);
  margin-left: 1rem;
}

.arrow-nav__link:hover::after {
  width: 100%;
}

.arrow-nav__link:hover::before {
  right: 5px;
  transform: skew(45deg) translateX(0);
}


.line-anim {
  position: relative;
  padding-bottom: 25rem;
}

.line-anim::after {
  content: "";
  animation: lineAnim 2s cubic-bezier(.19, 1, .22, 1) 0s infinite;
  background: linear-gradient(45deg, #662D91 0%, #1992CB 100%);
  height: 17rem;
  left: 50%;
  bottom: 0;
  position: absolute;
  width: 1px;
}

@keyframes lineAnim {
  0% {
    clip-path: inset(0 0 100% 0)
  }

  25% {
    clip-path: inset(0 0 0 0)
  }

  75% {
    clip-path: inset(0 0 0 0)
  }

  to {
    clip-path: inset(100% 0 0 0)
  }
}

.pull-up {
  margin-top: -5rem;
  padding-top: 18rem !important;
}

.bg-black-page {
  background: #000;
  color: #fff;
}

.bg-white-page {
  background-image: url(../images/common/bg-white-circle-w.webp);
  background-repeat: repeat-y;
  background-position: top center;
  background-size: 205rem auto;
  mix-blend-mode: multiply;
  background-color: #fff;
  position: relative;
}

.bg-gray-page {
  background: #f2f2f2;
}

.card-box__group {
  display: grid;
  position: relative;
  border-top: 0;
}

.card-box__group--2col {
  grid-template-columns: repeat(2, 1fr);
  gap: 10rem;
}

.card-box__item {
  background: #FFF;
  position: relative;
  padding: 5rem;
  margin-bottom: 7rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 0.5rem;
}

.bg-black-page .card-box__item {
  background: rgba(51, 51, 51, 0.3);
  border: 1px solid #353535;
}

.card-box__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0.5rem;
  background: linear-gradient(45deg, rgba(25, 146, 203, 1) 0%, rgba(102, 45, 145, 1) 100%);
}

.card-box__content {
  flex-grow: 1;
}

.card-box__title {
  font-size: clamp(1.4rem, 1.2rem + 1vw, 2.4rem);
  font-weight: 600;
  margin-bottom: 5rem;
}

.card-box__desc {
  font-size: clamp(1.2rem, 1.12rem + 0.4vw, 1.6rem);
  line-height: 2;
}

.card-box__btn {
  align-self: flex-start;
}

.card-box .btn-more {
  margin: 3rem 0 0 auto;
}

.card-box__img {
  text-align: center;
  margin-bottom: 4rem;
}

.card-box__img img {
  width: 100%;
  border-radius: 1rem;
}

.card-box__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.card-box__category {
  display: inline-block;
  font-size: clamp(1rem, 0.881rem + 0.59vw, 1.4rem);
  font-weight: 600;
  color: #333;
  padding: 0.3rem 1rem;
  border-radius: 1rem;
  border: 1px solid #000;
}

.card-box__name {
  font-weight: 700;
  font-size: clamp(1rem, 0.881rem + 0.59vw, 1.4rem);
}

.card-box__name {
  font-weight: 700;
  font-size: clamp(1rem, 0.881rem + 0.59vw, 1.4rem)
}

.card-box__list {
  margin-top: 5rem;
  padding-left: 1.2rem;
}

.card-box__list li {
  font-size: clamp(1.2rem, 1.12rem + 0.4vw, 1.6rem);
  line-height: 1.8;
  list-style: disc;
  margin-bottom: 0.5rem;
}


.page-end-cta {
  padding: 10rem 0;
  background: #000;
}

.page-end-cta__title {
  font-size: clamp(1.8rem, -0.126rem + 9.63vw, 8.3rem);
  font-family: futura-pt, sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.15em;
  margin-bottom: 8rem;
  text-align: center;
  min-height: 1.5rem;
  white-space: nowrap;
  color: #fff;
}

.page-end-cta__lead {
  font-size: clamp(1.2rem, 1.12rem + 0.4vw, 1.6rem);
  line-height: 2;
  color: #fff;
}

.page-end-cta__button-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-end-cta .btn-service {
  background: linear-gradient(90deg, #4d9aff, #8748f5);
  color: #fff;
  border: none;
  border-radius: 4rem;
  padding: 2rem 4rem;
  font-size: clamp(1.2rem, 1.12rem + 0.4vw, 1.6rem);
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s ease;
}

.page-end-cta .btn-service:hover {
  background: linear-gradient(90deg, #3a7de0, #7435e0);
}

.page-end-entry {
  padding: 15rem 0;
  background-color: #000;
  color: #fff;
}

.page-end-entry__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.page-end-entry__text {
  max-width: 60%;
}

.page-end-entry__title {
  font-size: clamp(3rem, 2.48rem + 2.6vw, 5.6rem);
  font-family: 'futura-pt', sans-serif;
  font-weight: 400;
  letter-spacing: 0.15em;
  margin-bottom: 4rem;
  white-space: nowrap;
}

.page-end-entry__lead {
  font-size: clamp(1.4rem, 1.32rem + 0.4vw, 1.8rem);
  line-height: 2;
}

.page-end-entry__btn-wrap {
  width: 35%;
  display: flex;
  justify-content: flex-end;
}



.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
  margin-top: 4rem;
  flex-wrap: wrap;
}

.pagination__status {
  font-size: clamp(1.2rem, 1.16rem + 0.2vw, 1.4rem);
  color: #333;
  transform: translateY(0.2rem);
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 10rem;
  flex-wrap: wrap;
}

.pagination__status {
  font-size: clamp(1.2rem, 1.16rem + 0.2vw, 1.4rem);
  color: #333;
  transform: translateY(0.2rem);
}

.page-numbers {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 3.6rem;
  height: 3.6rem;
  border: 1px solid #666;
  border-radius: 50%;
  font-size: clamp(1.2rem, 1.16rem + 0.2vw, 1.4rem);
  color: #666;
  text-decoration: none;
  background-color: #fff;
  transition: background-color 0.3s, color 0.3s;
}

.page-numbers:hover {
  background-color: #eee;
}

.page-numbers.current {
  background-color: #666;
  color: #fff;
  border-color: #666;
}

.page-numbers.dots {
  pointer-events: none;
  background: none;
  border: none;
  color: #666;
  width: auto;
  height: auto;
  padding: 0 0.5rem;
  font-size: clamp(1.2rem, 1.16rem + 0.2vw, 1.4rem);
}

.page-numbers.next,
.page-numbers.prev {
  width: 3.6rem;
  height: 3.6rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px 16px;
  background-color: transparent;
  border: none;
  text-indent: -9999px;
  overflow: hidden;
}

.page-numbers.next {
  background-image: url('../images/works/pagination-arrow.svg');
}

.page-numbers.prev {
  background-image: url('../images/works/pagination-arrow.svg');
  transform: scaleX(-1);
}

body.category-top {
  background-color: #000;
  color: #fff;
}

.category-top-bgwrap {
  position: relative;
  background-color: #000;
  color: #fff;
  overflow: hidden;
}

.category-top {
  position: relative;
  z-index: 1;
}

.category-top-bgwrap__img {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 200rem;
  height: auto;
  pointer-events: none;
}

.category-top-bgwrap__img:nth-of-type(1) {
  top: -10rem;
}

.category-top-bgwrap__img:nth-of-type(2) {
  top: calc(35rem + 140rem + 53rem);
  /* = 228rem */
}

.category-top__intro {
  padding: 20rem 0 30rem;
}

.category-top__container {
  max-width: 45rem;
  margin: 0 auto;
}

.category-top__logo {
  text-align: center;
  margin-bottom: 10rem;
}

.category-top__text-ja {
  font-size: clamp(1.2rem, 1.12rem + 0.4vw, 1.6rem);
  line-height: 2;
  margin-bottom: 6rem;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: break-word;
  text-overflow: unset;
  overflow: visible;
  text-align: justify;
}

.category-top__text-en {
  font-size: clamp(1rem, 0.941rem + 0.3vw, 1.2rem);
  line-height: 2;
  color: rgba(255, 255, 255, 0.5);
  white-space: normal;
  word-break: break-word;
  overflow-wrap: break-word;
  text-overflow: unset;
  overflow: visible;
  text-align: justify;
}

.category-blocks {
  padding: 15rem 0 5rem;
  color: #fff;
}

.category-blocks__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  max-width: 100rem;
  margin: 0 auto;
  gap: 5rem 10rem;
  padding: 0;
}

.category-blocks__item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-bottom: 1px solid #353535;
  padding-bottom: 3rem;
  margin-bottom: 10rem;
}

.category-blocks__link {
  color: #fff;
  display: block;
}

.category-blocks__link:hover {
  opacity: 1;
}

.category-blocks__link:hover .category-blocks__text,
.category-blocks__link:hover .category-blocks__viewmore {
  opacity: 0.6;
}

.category-blocks__link:hover .category-blocks__viewmore {}

.category-blocks__link:hover .category-blocks__image img {
  filter: grayscale(0%);
}

.category-blocks__viewmore {
  transition: .6s ease-in-out;
}

.category-blocks__image {
  position: relative;
  overflow: hidden;
}

.category-blocks__image::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.category-blocks__link:hover .category-blocks__image::before {
  opacity: 0;
}

.category-blocks__image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  filter: grayscale(100%);
  transform: scale(1);
  transition: filter 0.6s ease, transform 0.6s ease;
  will-change: transform;
  display: block;
  position: relative;
  z-index: 0;
}

.category-blocks__link:hover .category-blocks__image img {
  filter: grayscale(0%);
  transform: scale(1.05);
}


.category-blocks__text {
  margin-top: 5rem;
  transition: .6s ease-in-out;
  margin-bottom: 3rem;
}

.category-blocks__title-en {
  font-size: clamp(2rem, 1.17rem + 4.15vw, 4.8rem);
  font-family: futura-pt, sans-serif;
  margin-bottom: 1rem;
  display: block;
}

.category-blocks__title-jp {
  font-size: clamp(1.2rem, 1.12rem + 0.4vw, 1.6rem);
  opacity: 0.8;
  display: block;
  color: rgba(255, 255, 255, 0.5);
}

.category-blocks__viewmore {
  position: relative;
  display: inline-block;
  color: #fff;
  font-family: futura-pt, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: clamp(1.1rem, 0.952rem + 0.74vw, 1.6rem);
  padding-right: 7rem;
  margin-left: auto;
  display: block;
  width: fit-content;
}

.category-blocks__viewmore::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background-image: url("../images/common/btn-arrow-long.svg");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 6rem 1.6rem;
  width: 6rem;
  height: 1.6rem;
  transition: right 0.35s cubic-bezier(0.3, 1.6, 0.5, 1);
}

.line-anim::after {
  height: 17rem;
  bottom: -1rem;
}

.line-link {
  font-family: futura-pt, sans-serif;
  font-weight: 600;
  font-size: clamp(1.4rem, 1.306rem + 0.47vw, 1.6rem);
  text-decoration: none;
  transition: color 0.3s ease;
  margin-top: auto;
  line-height: 1.5;
}

.line-link span {
  position: relative;
  display: inline-block;
}

.line-link span::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transition: bottom 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- ライト背景用 ---------- */
.line-link--light {
  color: #CCC;
}

.line-link--light:hover {
  color: #333;
}

.line-link--light:hover span::after {
  bottom: 2px;
}

/* ---------- ダーク背景用 ---------- */
.line-link--dark {
  color: #fff;
}

.line-link--dark:hover {
  color: #CCC;
}

.line-link--dark:hover span::after {
  bottom: 2px;
}

.philosophy__value {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15rem 10rem;
  margin-top: 8rem;
}

.philosophy__value-item {
  position: relative;
}

.philosophy__value-item::before {
  content: "";
  position: absolute;
  top: -3rem;
  left: 0;
  width: 3rem;
  height: 0.4rem;
  background: linear-gradient(45deg, rgba(25, 146, 203, 1) 0%, rgba(102, 45, 145, 1) 100%);
}

.philosophy__dt {
  font-size: clamp(1.4rem, 1.04rem + 1.8vw, 3.2rem);
  font-weight: 600;
  line-height: 2;
  letter-spacing: 0.15em;
  margin-bottom: 3rem;
}

.philosophy__dd {
  font-size: clamp(1.2rem, 1.12rem + 0.4vw, 1.6rem);
  line-height: 2.5;
  margin-bottom: 15rem;
}

.philosophy__value .philosophy__dt,
.philosophy__value .philosophy__dd {
  margin-bottom: 0;
  font-weight: normal;
}

.philosophy__label {
  display: block;
  font-size: clamp(1.6rem, 1.126rem + 2.37vw, 3.2rem);
  font-family: futura-pt, sans-serif;
  font-weight: 600;
  font-style: normal;
  line-height: 1;
  margin-top: 2rem;
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
}

.footer-img {
  position: relative;
  z-index: 3;
  box-sizing: border-box;
  width: 100%;
}

.footer__inner {
  border-bottom: 1px solid #4D4D4D;
}

.footer__top,
.footer__menu-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 3rem 0 2.5rem;
  width: 80%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.footer-img-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.footer-img-wrap img {
  transform-origin: center center;
  will-change: transform;
  width: 100%;
}

.footer {
  position: relative;
  background-color: #141414;
  font-size: clamp(1rem, 0.881rem + 0.59vw, 1.4rem);
  padding-top: 10rem;
  overflow: hidden;
  border-top: 1px solid #4D4D4D;
}

.footer a {
  color: #fff;
}

.footer__container {
  max-width: 110rem;
}

.footer__logo-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 3rem 0 0;
  width: 80%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.footer__logo {}

.footer__inner .footer__menu-wrap {
  justify-content: flex-end;
  align-items: flex-start;
}

.footer__menu-group {
  padding-left: 5rem;
  line-height: 1.6;
}

.footer__menu-group:last-child {
  font-family: "futura-pt", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.footer__menu-title {
  color: #999;
  margin-bottom: 1.5rem;
  font-size: clamp(1.2rem, 1.16rem + 0.2vw, 1.4rem);
  font-family: "futura-pt", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.footer__menu-link {
  color: #999;
  display: block;
  padding-bottom: 1rem;
  font-size: clamp(1.2rem, 1.16rem + 0.2vw, 1.4rem);
}

.footer__menu-link:hover {
  color: #fff;
  opacity: 0.8;
}

.footer__menu-title--dummy {
  visibility: hidden;
}

.footer__bottom-links {
  display: flex;
  align-items: center;
}

.footer__link-list li a,
.footer__bottom-links li a {
  position: relative;
  padding-left: 1.8rem;
  margin-right: 5rem;
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.2rem);
}

.footer__link-list li a::before,
.footer__bottom-links li a::before {
  content: "";
  display: block;
  border-color: #fff;
  border-style: solid;
  border-width: 0 1px 1px 0;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  width: 10px;
  height: 10px;
}

.footer__sns {
  display: flex;
  align-items: center;
}

.footer__sns li {
  padding-left: 3rem;
}

.footer__sns-list {
  display: flex;
  align-items: center;
}

.footer__sns-list li {
  padding-left: 3rem;
}

.footer__pmark-sp {
  display: none;
}

.footer__bottom-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  border-bottom: 1px solid #4D4D4D;
}

.footer__pagetop {
  margin-left: auto;
  width: 21px;
  height: 21px;
  position: relative;
}

.footer__pagetop a {
  display: block;
  width: 21px;
  height: 21px;
}

.footer__pagetop a:before {
  background-color: #fff;
  content: "";
  display: block;
  height: 1px;
  position: absolute;
  top: 0;
  width: 100%;
}

.footer__pagetop a:after {
  border-color: #fff;
  border-style: solid;
  border-width: 1px 1px 0 0;
  content: "";
  display: block;
  left: 50%;
  position: absolute;
  top: 8px;
  transform: translate(-50%) rotate(-45deg);
  width: 16px;
  height: 16px;
  transition: transform 0.4s ease;
}

.footer__pagetop a:hover:after {
  transform: translate(-50%, -3px) rotate(-45deg);
}

.footer__copyright {
  font-size: clamp(1rem, 0.98rem + 0.1vw, 1.1rem);
  letter-spacing: 0.1em;
  color: #fff;
  text-align: center;
  padding: 10rem 0 7rem;
  position: relative;
  z-index: 1;
}

.footer__menu-wrap-column {
  padding-left: 5rem;
  margin-bottom: 3rem;
}

.footer__menu-wrap-title {
  color: #fff;
  font-weight: 600;
  margin-bottom: 1.5rem;
  font-size: clamp(1.2rem, 1.16rem + 0.2vw, 1.4rem);
}

.footer__menu-wrap-link {
  color: #999;
  display: block;
  padding-bottom: 1rem;
  font-size: clamp(1rem, 0.94rem + 0.3vw, 1.3rem);
}

.footer__menu-wrap-link:hover {
  color: #fff;
  opacity: 0.8;
}

@keyframes menuClose {
  0% {
    clip-path: inset(0 0 0 0);
  }

  100% {
    clip-path: inset(0 0 100% 0);
  }
}


.lp-text-list {
  padding-left: 1.5em;
  margin: 3em auto;
  max-width: 100rem;
  font-size: clamp(1.4rem, 1.36rem + 0.2vw, 1.6rem);
  line-height: 2;
}

.lp-text-list li {
  margin-bottom: 1rem;
  list-style: disc;
}

.lp-text-list li a {
  color: #111;
  font-weight: 500;
}



/* =============================
    information list Section
   ============================= */
.information-list {
  background: #f7f7f7;
  padding: 10rem 0 15rem 0;
}

.information-list__main {
  display: flex;
  flex-wrap: wrap;
  gap: 5rem;
}

.information-list__item {
  flex: 0 0 29%;
  box-sizing: border-box;
  border-bottom: 1px solid #ccc;
  position: relative;
}

.information-list__item::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  width: 1rem;
  height: 1rem;
  border-top: 1px solid #ccc;
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
}

.information-list__item a {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.information-list__item-jp {
  font-size: clamp(1.2rem, 1.111rem + 0.44vw, 1.5rem);
  margin-bottom: 1rem;
  padding-right: 1rem;
}

.information-list__item-en {
  font-family: futura-pt, sans-serif;
  font-size: 1rem;
  margin-top: 0.5rem;
}

.top-spacer-large {
  margin-top: 15rem;
}

.white-section {
  background-color: #fff;
  min-height: 35rem;
  padding: 10rem 8rem 35rem 17rem;
  border-radius: 0 5rem 0 0;
  margin-left: calc(50% - 50vw);
  margin-right: 40%;
}

.recruit-job-opening .white-section {
  padding: 0 8rem 35rem 17rem;
}

.outline-btn {
  display: inline-block;
  position: relative;
  padding: 3rem 0;
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.08em;
  white-space: nowrap;
  max-width: 46rem;
  width: 100%;
  text-align: center;
}

.outline-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: black;
  mix-blend-mode: multiply;
  opacity: 0.3;
  z-index: 0;
}

.outline-btn-gradation {
  background: linear-gradient(90deg, #1992cb 0%, #662d91 100%) !important;
  color: #fff;
  border: 0 !important;
}

.outline-btn-gradation:before {
  background-color: transparent;
}

.outline-btn__label {
  font: 600 1.5rem / 1.4 "futura-pt", sans-serif;
  letter-spacing: 0.2rem;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  z-index: 1;
}

.outline-btn__arrow {
  position: absolute;
  top: 50%;
  right: -3rem;
  width: 5.5rem;
  height: 1px;
  transform: translateY(-50%);
  z-index: 1;
}

.outline-btn__arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: #fff;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}

.outline-btn__arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1.2rem;
  height: 1.2rem;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.3s ease;
}

.outline-btn:hover .outline-btn__arrow::before {
  transform: translateX(0.4rem) translateY(-50%);
}

.outline-btn:hover .outline-btn__arrow::after {
  transform: translateX(0.4rem) translateY(-50%) rotate(45deg);
}


/* ——— Optional hover animation ——— */
.outline-btn:hover .outline-btn__arrow::before {
  transform: translate(0.45rem, -50%);
}

.outline-btn:hover .outline-btn__arrow::after {
  transform: translate(0.45rem, -50%) rotate(45deg);
}

.openlink__btn {
  display: inline-block;
  background-image: url("../images/recruit/window.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 7rem;
  height: 7rem;
  margin-top: 3rem;
}

.openlink__btn:hover {
  opacity: 0.6;
}

.openlink-black__btn {
  display: inline-block;
  background-image: url("../images/recruit/window-black.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 5rem;
  height: 5rem;
}

.openlink-black__btn:hover {
  opacity: 0.6;
}

.link-section-arrow {
  display: inline-block;
  position: relative;
}

.link-section-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 5rem;
  height: 1px;
  background: #fff;
  transform: translateY(-50%);
  border-radius: 2px;
}

.link-section-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 4rem;
  width: 1rem;
  height: 1rem;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: translateY(-50%) rotate(45deg);
}

.title-spacer {
  margin: 0 0 4rem 0 !important;
}

.gradation-border {
  background: linear-gradient(90deg, #1992cb 0%, #662d91 100%);
  width: 8%;
  height: 5px;
  position: relative;
}

.gradation-border span {
  font-size: 1rem;
  font-weight: 600;
  position: absolute;
  top: -3px;
  left: 70px;
  width: 20rem;
}

.section-title-second__jp {
  font-size: clamp(1.5rem, 1.44rem + 0.3vw, 1.8rem);
  font-weight: 600;
  margin-bottom: 3rem;
}

.bg-white {
  background-color: #fff;
}

.page-end-visual {
  position: relative;
  min-height: 50rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: left;
}

.page-end-visual .link-section-arrow::before {
  left: auto;
  right: 0;
}

.page-end-visual .link-section-arrow::after {
  left: auto;
  right: 1px;
}

.section-background-common {
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  height: 50rem;
  width: 100%;
  overflow: hidden;
}

.section-background-common::before {
  content: "";
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: grayscale(100%) brightness(60%);
  position: absolute;
  inset: 0;
  z-index: 0;
  transition: filter 0.5s ease;
}

.section-background-furusato::before {
  background-image: url('../images/common/bg-end-visual-furusato.webp');
}

.section-background-ec::before {
  background-image: url('../images/common/bg-end-visual-ec.webp');
}

.section-background-common:hover::before {
  filter: grayscale(0%) brightness(100%);
}

.section-background-common>* {
  position: relative;
  z-index: 1;
  width: 100%;
}

.recruit-link__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-left: 0;
  color: #fff;
  background: transparent;
  height: 100%;
  width: 100%;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
}

.recruit-link__item:hover {
  opacity: 1;
}

.recruit-link__label {
  font-family: futura-pt, sans-serif;
  font-size: clamp(2rem, 1.28rem + 3.6vw, 5.6rem);
  letter-spacing: 0.4rem;
  margin-bottom: 3rem;
}

.recruit-link__desc {
  font-size: clamp(1.2rem, 1.12rem + 0.4vw, 1.6rem);
  margin-bottom: 5rem;
}

.link-section-arrow {
  display: inline-block;
  padding-right: 7rem;
  font-size: clamp(1.2rem, 1.12rem + 0.4vw, 1.6rem);
}

.back-link {
  padding: 3rem 0 20rem 1rem;
  position: relative;
  font-size: clamp(1.2rem, 1.12rem + 0.4vw, 1.6rem);
}

.back-link::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  transform: rotate(135deg);
  margin-right: 0.5rem;
}


.about__container {
  max-width: 100rem;
}

.greeting-message {
  padding-bottom: 18rem;
  position: relative;
  background-color: #000;
  color: #fff;
}

.greeting-message::before {
  content: "";
  position: absolute;
  top: -9rem;
  left: 0;
  width: 100%;
  height: 10rem;
  background: #000;
}

.greeting-message__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 9rem;
  flex-wrap: wrap;
}

.greeting-message__title {
  color: #fff;
  flex: 1 1 40%;
}

.greeting-message__title h3 {
  font-size: clamp(2rem, 1.44rem + 2.8vw, 4.8rem);
  line-height: 1.4;
  font-weight: bold;
  font-family: "shippori-antique", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.ceo-title {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.ceo-position {
  font-size: clamp(1rem, 0.9rem + 0.4vw, 1.4rem);
  line-height: 1.5;
}

.ceo-name-img {
  max-width: 13rem;
  height: auto;
  display: block;
}

.ceo-title span {
  font-size: 1.4rem;
  letter-spacing: 0.1em;
}

.greeting-message__photo {
  position: relative;
  width: 60%;
  max-width: 50rem;
  margin-left: auto;
}

.greeting-message__photo::after {
  content: "";
  position: absolute;
  right: -3rem;
  top: -3rem;
  width: 50%;
  height: 83.335%;
  background: linear-gradient(45deg, rgba(25, 146, 203, 1) 0%, rgba(102, 45, 145, 1) 100%);
  z-index: 0;
}

.greeting-message__photo img {
  width: 100%;
  position: relative;
  z-index: 1;
}

.greeting-message__body {
  font-size: clamp(1rem, 0.88rem + 0.6vw, 1.6rem);
  line-height: 2;
  margin-bottom: 8rem;
  padding-bottom: 5rem;
  border-bottom: 1px solid #808080;
  text-align: justify;
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
}

.greeting-message__body h4 {
  font-weight: 600;
}

.greeting-message__body p {
  margin-bottom: 3rem;
}

.greeting-message__profile {
  margin-top: 4rem;
  font-size: clamp(1rem, 0.88rem + 0.6vw, 1.6rem);
  line-height: 2;
}


/* PC */
@media (max-width: 1440px) {}

@media (max-width: 1280px) {}

@media (max-width: 1024px) {
  .header__logo {
    width: 17rem;
  }

  .header__menu-link {
    padding: 1rem;
  }

  .header__dropdown ul li {
    padding: 0 1rem;
  }
}

/* Tablet */
@media (max-width: 768px) {
  a,
  button {
    -webkit-tap-highlight-color: transparent;
  }

  .pc {
    display: none !important;
  }

  .sp {
    display: block !important;
  }

  body.hidden {
    overflow: hidden;
  }

  .header {
    top: 2rem;
    left: 1rem;
    right: 1rem;
  }

  header .container {
    width: 95%;
    height: auto;
    padding: 1.5rem 2rem;
    border-radius: 3rem;
  }

  .header__container {
    padding: 0 2rem;
    height: 5rem;
  }

  .page-header {
    padding: 10rem 3rem 3rem;
    border-bottom-left-radius: 2rem;
    border-bottom-right-radius: 2rem;
  }

  .page-header__title {
    letter-spacing: 0.08em;
  }

  .page-header__container {
    margin: 0;
  }

  .breadcrumbs {
    margin-top: 2rem;
  }

  .header__logo {
    margin: 0;
    width: 50%;
    opacity: 1;
    transition: all 0.5s;
    display: flex;
    align-items: center;
  }

  .header__logo .sc {
    display: none;
  }

  .header__sp-logo {
    width: calc(95% - 4rem);
    margin: 4rem auto 2rem;
  }

  .header__sp-logo img {
    width: 50%;
    max-width: 222px;
  }

  .header__sp-menu {
    display: block;
    width: 90%;
    margin: 0 auto;
  }

  .header__sp-menu a {
    font-size: clamp(1rem, 0.714rem + 1.43vw, 1.4rem);
  }

  .header__sp-menu-block {}

  .header__menu-item {
    margin: 0;
    text-align: left;
  }

  .header__menu-item.btn1 {
    margin-top: 2rem;
  }

  .header__menu-item>p {
    color: #999;
    line-height: 1;
    font-size: clamp(1.2rem, 0.933rem + 1.33vw, 2.1rem);
    padding: 1rem;
    font-family: "futura-pt", sans-serif;
    font-weight: 500;
    font-style: normal;
  }

  .header__menu-link {
    color: #fff !important;
    line-height: 1;
    font-size: clamp(1.2rem, 0.933rem + 1.33vw, 2.1rem);
    padding: 1.5rem;
    font-family: "futura-pt", sans-serif;
    font-weight: 500;
    font-style: normal;
  }

  .header__menu-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    z-index: 30000;
    width: 5rem;
    height: 5rem;
    visibility: visible !important;
  }

  .header__menu-btn--sp {
    display: block;
  }

  a.header__menu-trigger,
  a.header__menu-trigger span {
    display: inline-block;
    transition: all 0.4s;
    box-sizing: border-box;
  }

  a.header__menu-trigger {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    gap: 6px;
    flex-flow: column;
    align-items: center;
    justify-content: center;
  }

  a.header__menu-trigger span {
    width: 20px;
    height: 1px;
    transition: all 0.4s;
    background-color: #000;
  }

  .header__menu-btn--active .header__menu-trigger span {
    background-color: #fff;
    transition-delay: 0.5s;
  }

  .header__menu-btn--active .header__menu-trigger span:nth-of-type(1) {
    transform: translateY(6px) rotate(-45deg);
  }

  .header__menu-btn--active .header__menu-trigger span:nth-of-type(2) {
    opacity: 0;
  }

  .header__menu-btn--active .header__menu-trigger span:nth-of-type(3) {
    transform: translateY(-7px) rotate(45deg);
  }

  #overlay.show {
    height: 100%;
    opacity: 1;
    pointer-events: auto;
    transform: scaleY(1) translateZ(10px);
    transform-origin: center bottom;
    transition: transform 1s cubic-bezier(0.77, 0, 0.175, 1) 0s, opacity 0s linear 0s, width 0s linear 0s, height 0s linear 0s;
    width: 100%;
  }

  #overlay.hide {
    height: 0;
    opacity: 0;
    pointer-events: none;
    transform: scaleY(0) translateZ(10px);
    transform-origin: center top;
    transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1) .2s, opacity 0s linear 1.2s, width 0s linear 1.2s, height 0s linear 1.2s;
  }

  .header.open nav {
    z-index: 20000;
  }

  /* .header {
    transition: height 0.5s ease;
  } */

  .header.open {
    height: 100%;
  }

  .header a {
    color: #fff;
  }

  .header__nav {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 15000;
    background-color: #000;
    overflow: hidden;
    clip-path: inset(100% 0 0 0);
    transition: clip-path 1s cubic-bezier(0.77, 0, 0.175, 1);
  }

  header.open nav {
    clip-path: inset(0 0 0 0);
    z-index: 20000;
  }

  header.close nav {
    animation: menuClose 1s cubic-bezier(0.19, 1, 0.22, 1) 0s 1 normal both;
  }

  .header__menu-item a:link {
    text-decoration: none;
    font-size: clamp(1.2rem, 0.933rem + 1.33vw, 2.1rem);
    color: #fff;
    margin: 0;
    display: block;
    transition: .5s;
    position: relative;
    padding-left: 1.5rem;
  }

  .header__sp-menu-title {
    color: #999;
    line-height: 1;
    font-size: clamp(1.3rem, 1.229rem + 0.36vw, 1.4rem);
    padding: 0 0 1rem 1rem;
    font-family: "futura-pt", sans-serif;
    font-weight: 600;
    font-style: normal;
  }

  .header__sp-submenu a {
    padding: 0 0 0 1rem;
    position: relative;
  }

  .header__sp-submenu a::before {
    content: "-";
    position: absolute;
    left: 0;
    color: #fff;
  }

  .section-title {
    margin: 0 0 3rem 0 !important;
    flex-wrap: wrap;
    line-height: 3;
  }

  .section-title__jp {
    padding-left: 2.5rem;
  }

  .section-title__en {
    letter-spacing: 0.05em;
    padding: 0 0 0 2rem;
  }

  .header__sp-menu-item {
    font-family: "futura-pt", sans-serif;
    font-weight: 500;
    font-style: normal;
  }

  .header__sp-menu-item a {
    font-size: clamp(1.2rem, 1.16rem + 0.2vw, 1.4rem);
  }

  .header__sp-service-layout {
    display: flex;
    padding: 2rem 0 0 0;
  }

  .header__sp-service-main {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    flex: 1;
  }

  .header__sp-submenu li {
    padding: 0 1rem 1.5rem 1rem;
  }

  .header__sp-submenu li:last-child {
    padding: 0 1rem 0;
  }

  .header__sp-submenu-link {
    padding-left: 1rem;
  }

  .header__sp-service-side {
    padding-right: 5rem;
  }

  .header__sp-service-side li {
    padding-bottom: 1.5rem;
  }

  .header__sp-service-side a {
    font-family: "futura-pt", sans-serif;
    font-size: clamp(1.3rem, 1.229rem + 0.36vw, 1.4rem);
  }

  .header__sp-inline-footer {
    display: flex;
    gap: 3rem;
    padding: 0.5rem 1rem;
  }

  .header__sp-inline-footer li {}

  .header__sp-inline-footer a {
    position: relative;
    padding-left: 1.5rem;
  }

  .header__sp-inline-footer a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 8px;
    height: 8px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
  }

  .header__sp-menu-item--btn {
    margin: 1.5rem 0;
  }

  .header__sp-menu-item--btn a {
    text-decoration: none;
    font-size: clamp(1.2rem, 1.16rem + 0.2vw, 1.4rem);
    color: #fff;
    margin: 0;
    display: block;
    transition: .5s;
    position: relative;
    text-align: center;
    inset: 0;
    border-radius: 3rem;
    line-height: 3;
    padding-right: 2.5rem;
  }

  .header__sp-menu-item--btn a::before {
    content: "";
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.3rem;
    height: 1.3rem;
    background-image: url(../images/common/btn-arrow-short.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }

  .header__sp-menu-item--btn1 a {
    background: linear-gradient(45deg, rgba(25, 146, 203, 1) 0%, rgba(102, 45, 145, 1) 100%);
  }

  .header__sp-menu-item--btn2 a {
    border: 1px solid #fff;
  }

  .header__sp-menu-item--arrow {
    padding-left: 1.5rem;
    position: relative;
  }

  .header__sp-menu-item--arrow a {
    font-size: clamp(1rem, 0.96rem + 0.2vw, 1.2rem);
  }

  .header__sp-menu-item--arrow::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    vertical-align: middle;
    width: 8px;
    height: 8px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .breadcrumb-nav__list {
    flex-wrap: wrap;
    gap: 1.5rem;
    row-gap: 0.5rem;
  }

  .breadcrumb-nav__item {}

  .breadcrumb-nav__item:not(:last-child)::after {
    right: -1.2rem;
    width: 8px;
  }

  .breadcrumb-nav__item:first-child {}

  .breadcrumb-nav__link {
    line-height: 1.6;
  }

  .bg-white-page {
    background-size: 100% auto;
  }

  .pull-up {
    margin-top: -3rem;
    padding-top: 8rem !important;
  }

  a.btn::after {
    right: -2rem;
    width: 4rem;
  }

  .arrow-nav {
    padding: 8rem 0;
  }

  .arrow-nav__list {
    gap: 4rem;
    grid-template-columns: repeat(2, 1fr);
  }

  .arrow-nav__item {
    width: 100%;
    margin-bottom: 0;
  }

  .arrow-nav__link {
    line-height: 1.4;
  }

  .arrow-nav__label {
    display: block;
    margin-left: 0;
  }

  .btn-more,
  .btn-primary {
    width: 80%;
    margin: 0 auto;
    padding: 1.5rem;
  }

  .container .btn-more,
  .container .btn-primary {
    max-width: 100%;
    width: 100%;
  }

  .card-box .btn-more {
    margin: 2rem 0 0 auto;
  }

  .card-box {
    padding-bottom: 5rem;
  }

  .card-box__item {
    padding: 3rem 1.5rem;
    margin-bottom: 0;
  }

  .card-box__group--2col {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .card-box__img {
    margin-bottom: 3rem;
  }

  .card-box__list-text {
    padding-top: 2rem;
    margin-top: 2rem;
  }

  .bg-white-page {
    background-size: 100vw auto;
  }

  .category-top-bgwrap__img {
    width: 100vw;
    max-width: 600px;
  }

  .category-top-bgwrap__img:nth-of-type(1) {
    top: 20rem;
  }

  .category-top-bgwrap__img:nth-of-type(2) {
    top: calc(20rem + 100rem + 40rem);
    /* 160rem */
  }

  .category-top-intro {
    padding: 60px 16px;
  }

  .category-top__logo {
    margin-bottom: 5rem;
  }

  .category-blocks__text {
    margin: 3rem 0 2rem;
  }

  .category-top-intro__text-ja,
  .category-top-intro__text-en {
    font-size: clamp(1.2rem, 1.16rem + 0.2vw, 1.4rem);
    line-height: 1.7;
    margin-bottom: 14px;
  }

  .category-blocks__list {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .category-blocks__item {
    margin-bottom: 0;
  }

  .category-top__logo img {
    width: 60%;
  }

  .category-top__intro {
    padding: 7rem 0 13rem;
  }

  .category-blocks {
    padding: 5rem 0 0;
  }

  .category-blocks__image img {
    aspect-ratio: auto;
    height: 40vw;
    width: 100%;
    object-fit: cover;
    object-position: center;
  }

  .page-end-cta__title {
    margin-bottom: 5rem;
  }

  .page-end-cta__button-wrap {
    display: block;
  }

  .page-end-cta__button-wrap .btn-primary {
    width: calc(100% - 3rem);
  }

  .page-end-cta__lead {
    margin-bottom: 2rem;
  }

  .footer {
    background-size: 100vw auto;
    background-position: center -20vw;
    padding-top: 0;
  }

  .footer__top,
  .footer__menu-wrap {
    width: 100%;
    padding: 4rem 0 2rem;
  }

  .footer__logo-wrap {
    align-items: center;
    padding: 3rem 0 2rem;
    width: 100%;
  }

  .footer__inner {
    border: 0;
  }

  .footer__top,
  .footer__inner:nth-of-type(2) {
    display: none;
  }

  .footer__logo {
    width: 50%;
  }

  .footer__pmark {
    width: 13%;
  }

  .footer__bottom-links {
    flex-flow: column;
    align-items: flex-start;
    line-height: 1.8;
  }

  .footer__bottom-links li {
    margin-bottom: 1rem;
  }

  .footer__sns {
    flex-direction: row;
    align-items: center !important;
    padding: 0 0 2rem 0;
  }

  .footer__sns li {
    padding: 0 1rem 0 0;
  }

  .footer__link-list li a,
  .footer__bottom-links li a {
    margin-right: 0;
  }

  .footer__copyright {
    padding: 1rem 0 3rem;
  }

  .footer__pmark-sp {
    display: block;
    position: absolute;
    right: 0;
    bottom: 3rem;
    width: 4.5rem;
  }

  .philosophy__value {
    grid-template-columns: 1fr;
    gap: 8rem;
  }

  .philosophy__dt,
  .philosophy__dd {
    width: 100%;
    margin-bottom: 5rem;
    line-height: 1.8;
  }

  .philosophy__dt {
    margin-bottom: 3rem;
  }

  .information-list {
    padding: 5rem 0 6rem 0;
  }

  .information-list__main {
    gap: 4rem;
  }

  .information-list__item {
    flex: 0 0 100%;
  }

  .top-spacer-large {
    margin-top: 0;
  }


  .white-section {
    padding: 30rem 2rem 5rem 2rem !important;
    width: 100vw !important;
    border-radius: 0 !important;
  }

  .outline-btn {
    padding: 2rem 5rem 2rem 2.5rem !important;
  }

  .outline-btn__arrow {
    right: -1rem;
    width: 2.5rem;
  }

  .outline-btn__arrow::after {
    width: 1rem;
    height: 1rem;
  }

  .page-end-visual {
    min-height: 25rem;
  }

  .openlink__btn {
    width: 4rem;
    height: 4rem;
    margin-top: 0;
  }

  .openlink-black__btn {
    width: 3.5rem;
    height: 3.5rem;
  }

  .page-end-entry__text {
    max-width: none;
  }

  .page-end-entry__inner {
    flex-flow: column;
  }

  .page-end-entry__btn-wrap {
    width: 100%;
    margin-top: 2rem;
  }

  .page-end-entry__btn-wrap a {
    width: 100%;
  }

  .page-end-entry {
    padding: 5rem 0;
  }

  .back-link {
    padding: 3rem 0 5rem 1rem;
  }


  .ceo-title {
    margin: 2rem 0 1rem;
  }

  .greeting-message {
    padding-bottom: 8rem;
  }

  .greeting-message__body {
    margin-bottom: 5rem;
    padding-bottom: 2rem;
  }

  .greeting-message__header {
    flex-flow: column-reverse;
    gap: 4rem;
    align-items: flex-start;
    margin: 5rem 0 3rem;
  }

  .greeting-message__title,
  .greeting-message__photo {
    width: 100%;
    max-width: 100%;
    flex: none;
  }

  .greeting-message__photo::after {
    right: -2rem;
    top: -2rem;
  }

  .section-background-common {
    height: 25rem;
  }

  .line-anim::after {
    height: 8rem;
  }

  .card-box__btn {
    width: 100%;
  }

  .ceo-name-img {
    max-width: 25%;
  }

  .btn-primary::after {
    right: -1.5rem;
    width: 3rem;
  }

  .btn-primary:hover::after {
    right: -2rem;
  }
  .page-end-cta {
    padding: 8rem 0;
  }

  .read__section-date {
    padding: 1rem 0;
  }
}

/* Smartphone */
@media (max-width: 480px) {}