@charset "UTF-8";
/**
/* Font
/* "Noto Sans JP"
/* "Outfit"
/* "Zen Kaku Gothic New"
**/
/*****************************************
 * 数値から単位を取り除く
 * 参考
 * https://css-tricks.com/snippets/sass/
 ******************************************/
/*****************************************
 * px→remの計算
 * 参考
 * https://webdou.net/sass-rem/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
 ******************************************/
/*****************************************
 * vwの計算
 * 参考
 * https://webdou.net/sass-vw/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
 ******************************************/
/*
 * 参考
 * https://github.com/Andy-set-studio/modern-css-reset/blob/master/src/reset.css
*/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  padding: 0;
  margin: 0;
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  display: block;
  max-width: 100%;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
html {
  background-color: #0f141c;
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}
html.no-scroll {
  overflow: hidden;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-optical-sizing: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.header {
  view-transition-name: site-header;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 72px;
  display: flex;
  justify-content: space-between;
  padding: 0px 20px;
  background-color: #000000;
  border-radius: 4px;
  z-index: 20;
}
@media (min-width: 768px) {
  .header {
    top: 30px;
    height: unset;
  }
}
@media (min-width: 1024px) {
  .header {
    left: 30px;
    width: calc(100% - 60px);
    padding: 0px 50px 0px 35px;
  }
}
.header.fixed {
  position: fixed;
  top: 30px;
}
.header .logo {
  display: block;
  padding: 22px 0;
}
@media (min-width: 768px) {
  .header .logo {
    width: unset;
    height: unset;
  }
}
.header .logo:hover {
  opacity: 0.7;
}
.header .logo__img {
  width: 92px;
  height: 30px;
}
@media (min-width: 768px) {
  .header .logo__img {
    width: 116px;
    height: 38px;
  }
}
.header .logo__top {
  display: none;
}
.header .nav {
  display: none;
  font-family: "Outfit", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-optical-sizing: auto;
}
@media (min-width: 768px) {
  .header .nav {
    display: flex;
    gap: 20px;
    align-items: center;
  }
}
@media (min-width: 1280px) {
  .header .nav {
    gap: 48px;
  }
}
@media (min-width: 768px) {
  .header .nav__logo {
    display: none;
  }
}
.header .navList {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
}
@media (min-width: 1280px) {
  .header .navList {
    gap: 48px;
  }
}
.header .navItem_link {
  display: inline-block;
  padding: 32px 0;
  color: #7b7b81;
  letter-spacing: 0.05em;
}
.header .navItem_link:hover {
  color: #e6cd00;
}
.header .navItem.active .navItem_link {
  padding-bottom: 28px;
  font-weight: bold;
  color: #e6cd00;
  border-bottom: solid 4px #e6cd00;
}
.header .navSub {
  display: flex;
  gap: 20px;
  align-items: center;
}
@media (min-width: 1280px) {
  .header .navSub {
    gap: 30px;
  }
}
.header .navLang {
  display: flex;
  gap: 10px;
  align-items: center;
  color: #7b7b81;
}
.header .navLang_link {
  color: #7b7b81;
}
.header .navLang_link:hover {
  color: #ffffff;
}
.header .navLang_link.active {
  color: #ffffff;
}
.header .btnContact {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px 20px;
  font-family: "Outfit", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-optical-sizing: auto;
  color: #ffffff;
  border: 1px solid #7b7b81;
  border-radius: 6px;
}
@media (min-width: 1024px) {
  .header .btnContact {
    padding: 12px 24px;
  }
}
.header .btnContact:hover {
  border-color: #ffffff;
}
.header .menuBtn {
  position: fixed;
  top: 0;
  right: 0;
  width: 70px;
  height: 70px;
  padding: 20px;
  text-align: center;
  background-color: #000000;
}
@media (min-width: 768px) {
  .header .menuBtn {
    display: none;
  }
}
.header .menuBtn__line {
  position: relative;
  top: 10px;
  display: block;
  width: 30px;
  height: 1px;
  background-color: #ffffff;
  transition: all 0.3s ease;
}
.header .menuBtn__line::before,
.header .menuBtn__line::after {
  position: absolute;
  left: 0;
  width: 30px;
  height: 1px;
  content: "";
  background-color: #ffffff;
  transition: all 0.3s ease;
}
.header .menuBtn__line::before {
  top: -5px;
}
.header .menuBtn__line::after {
  bottom: -5px;
}
.header .menuBtn__text {
  position: absolute;
  bottom: 15px;
  font-family: "Outfit", sans-serif;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  font-optical-sizing: auto;
  color: #ffffff;
}
.header .menuBtn.is_open .menuBtn__line {
  background-color: transparent;
}
.header .menuBtn.is_open .menuBtn__line::before {
  top: 0;
  rotate: 20deg;
}
.header .menuBtn.is_open .menuBtn__line::after {
  bottom: 0;
  rotate: -20deg;
}
.header.is_top {
  view-transition-name: none;
  position: absolute;
  background-color: transparent;
}
.header.is_top .logo__top {
  display: block;
}
.header.is_top .logo__common {
  display: none;
}
.header.is_top .logo__img {
  width: 137px;
  height: 49px;
}
@media (min-width: 768px) {
  .header.is_top .logo__img {
    width: 150px;
    height: 53px;
  }
}
@media (min-width: 1024px) {
  .header.is_top .logo__img {
    width: 218px;
    height: 78px;
  }
}
.header .spMenu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  visibility: hidden;
  justify-content: center;
  overflow: scroll;
  background-color: #0f141c;
  opacity: 0;
  transition: all 0.3s ease;
}
.header .spMenu.is_open {
  visibility: visible;
  opacity: 1;
}
.header .spMenu__logo {
  width: 171px;
  margin: 100px auto 0;
}
.header .spMenu__logoLink:hover {
  opacity: 0.7;
}
.header .spMenu__list {
  display: grid;
  grid-template-rows: auto auto;
  grid-template-columns: auto auto;
  gap: 40px 77px;
  margin: 55px auto 0;
}
.header .spMenu__item:nth-child(2n - 1) {
  text-align: right;
}
.header .spMenu__link {
  font-family: "Outfit", sans-serif;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 500;
  font-optical-sizing: auto;
  color: #d3d3d6;
}
.header .spMenu__subList {
  margin-top: 16px;
}
.header .spMenu__subLink {
  color: #7b7b81;
}
.header .spMenu__subLink::before {
  position: relative;
  top: -5px;
  display: inline-block;
  width: 12px;
  margin-right: 10px;
  content: "";
  border-top: solid 1px #7b7b81;
  transition: all 0.3s ease;
}
.header .spMenu__subLink + .spMenu__subLink {
  margin-top: 16px;
}
.header .spMenu__contact {
  justify-content: center;
  padding: 22px;
  margin: 70px 20px 0;
  background-image: linear-gradient(
    135deg,
    rgba(230, 205, 0, 0.15),
    rgba(90, 93, 96, 0.15) 30%
  );
}
.header .spMenu .spMenuLang {
  position: absolute;
  top: 33px;
  left: 43px;
  display: flex;
  gap: 10px;
  align-items: center;
  color: #7b7b81;
}
.header .spMenu .spMenuLang__link {
  color: #7b7b81;
}
.header .spMenu .spMenuLang__link:hover {
  color: #ffffff;
}
.header .spMenu .spMenuLang__link.active {
  color: #ffffff;
}
.header .spMenu__subMenu {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  color: #7b7b81;
}
.header .spMenu__snsList {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
  padding: 30px;
  margin-top: 30px;
  color: #d3d3d6;
  border-top: 1px solid #383a3d;
}
.header .spMenu__cl {
  padding: 35px;
  font-size: 0.75rem;
  color: #7b7b81;
  text-align: center;
  background-color: #000000;
}

.footer {
  padding-top: 60px;
  background-image: url("../../images/top/threeBgSp.webp");
  background-repeat: no-repeat;
  background-position: top -50px right 20px;
  background-size: 400px;
}
@media (min-width: 768px) {
  .footer {
    padding-top: 100px;
    background-image: url("../../images/top/threeBg.webp");
    background-position: top -60px right -50px;
    background-size: auto;
  }
}
@media (min-width: 1536px) {
  .footer {
    background-position: top -60px right calc((100% - 1200px) / 2 + 180px);
  }
}
.footer .footerContact {
  position: relative;
  display: block;
  width: 100%;
  max-width: 1200px;
  padding: 30px;
  margin: 0 auto;
  color: #ffffff;
  background-image: linear-gradient(
    135deg,
    rgba(230, 205, 0, 0.15),
    rgba(90, 93, 96, 0.15) 25%
  );
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  box-shadow: 2px 4px 3px rgba(0, 0, 0, 0.4);
}
@media (min-width: 768px) {
  .footer .footerContact {
    padding: 100px 80px;
    border-radius: 15px;
  }
}
.footer .footerContact:after {
  position: absolute;
  right: 17px;
  bottom: 19px;
  display: block;
  width: 17px;
  height: 12px;
  content: "";
  background-image: url("../../images/common/icon-arrowRight.svg");
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .footer .footerContact:after {
    display: none;
  }
}
.footer .footerContact__wrap {
  padding: 0 24px;
}
.footer .footerContact_heading {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  font-optical-sizing: auto;
  letter-spacing: 0.03em;
}
@media (min-width: 768px) {
  .footer .footerContact_heading {
    font-size: 38px;
  }
}
.footer .footerContact_text {
  margin-top: 10px;
  margin-bottom: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.8125rem;
  font-style: normal;
  font-weight: 500;
  font-optical-sizing: auto;
  color: #d3d3d6;
  letter-spacing: 0.03em;
}
@media (min-width: 768px) {
  .footer .footerContact_text {
    width: 90%;
    font-size: 1rem;
  }
}
@media (min-width: 1024px) {
  .footer .footerContact_text {
    width: revert;
  }
}
.footer .footerContact .iconCircleArrow {
  position: absolute;
  top: 50%;
  right: 80px;
  display: none;
  transform: translateY(-50%);
}
@media (min-width: 768px) {
  .footer .footerContact .iconCircleArrow {
    display: block;
  }
}
.footer .footerContact:hover {
  border-color: white;
}
.footer .footerLogo {
  width: 145px;
  height: 71px;
}
@media (min-width: 768px) {
  .footer .footerLogo {
    width: auto;
    height: auto;
  }
}
.footer .footerLogo:hover {
  opacity: 0.7;
}
.footer .footerNavWrap {
  display: flex;
  gap: 40px;
  align-items: start;
  justify-content: center;
  width: 100%;
  max-width: 1200px;
  padding: 0 24px;
  margin: 100px auto 0;
}
@media (min-width: 768px) {
  .footer .footerNavWrap {
    align-items: center;
    justify-content: space-between;
  }
}
.footer .footerNavWrap .footerNav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 10px;
}
@media (min-width: 768px) {
  .footer .footerNavWrap .footerNav {
    flex-direction: row;
    gap: 30px;
  }
}
@media (min-width: 1024px) {
  .footer .footerNavWrap .footerNav {
    flex-direction: row;
    gap: 40px;
  }
}
.footer .footerNavWrap .footerNav_link {
  font-family: "Outfit", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-optical-sizing: auto;
  line-height: 1.5;
  color: #d3d3d6;
}
.footer .footerNavWrap .footerNav_link:hover {
  color: #e6cd00;
}
.footer .footerNavWrap .footerNav_link_gray {
  font-size: 14px;
  color: #7b7b81;
}
@media (min-width: 768px) {
  .footer .footerNavWrap .footerNav_link_gray {
    font-size: 12px !important;
  }
}
@media (min-width: 1024px) {
  .footer .footerNavWrap .footerNav_link_gray {
    font-size: 14px;
  }
}
.footer .footerNavWrap .footerNav_link_gray:hover {
  color: #ffffff;
}
.footer .footerNavWrap .footerNav_link_gray:hover::before {
  border-color: #ffffff;
}
.footer .footerNavWrap .footerNav_link_gray::before {
  position: relative;
  top: -5px;
  display: inline-block;
  width: 12px;
  margin-right: 10px;
  content: "";
  border-top: solid 1px #7b7b81;
  transition: all 0.3s ease;
}
.footer .footerNavWrap .footerNav_childList {
  margin-top: 12px;
}
.footer .footerNavWrap .footerNav_childList .footerNav_item ~ .footerNav_item {
  margin-top: 6px;
}
.footer .footerNavWrap .footerNav_subList .footerNav_link_gray::before {
  content: none;
}
.footer .footerNavWrap .footerNav_subList .footerNav_item ~ .footerNav_item {
  margin-top: 16px;
}
@media (min-width: 768px) {
  .footer .footerNavWrap .footerNav_subList .footerNav_item ~ .footerNav_item {
    margin-top: 20px;
  }
}
.footer .footerSnsWrap {
  display: flex;
  justify-content: space-between;
  margin-top: 95px;
}
.footer .footerSnsWrap .footerSnsCnt {
  flex: 1;
  border-top: 1px solid #383a3d;
}
@media (min-width: 768px) {
  .footer .footerSnsWrap .footerSnsCnt {
    display: flex;
    justify-content: space-between;
    padding: 45px 50px 45px 60px;
  }
}
.footer .footerSnsWrap .footerSnsCnt .footerSns {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
  padding: 32px;
}
@media (min-width: 768px) {
  .footer .footerSnsWrap .footerSnsCnt .footerSns {
    padding: 0;
  }
}
.footer .footerSnsWrap .footerSnsCnt .footerSns_link {
  font-family: "Outfit", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-optical-sizing: auto;
  color: #d3d3d6;
}
.footer .footerSnsWrap .footerSnsCnt .footerSns_link:hover {
  color: #e6cd00;
}
.footer .footerSnsWrap .footerSnsCnt .footerSns_cl {
  padding: 35px;
  font-size: 12px;
  color: #7b7b81;
  text-align: center;
  background-color: #000000;
}
@media (min-width: 768px) {
  .footer .footerSnsWrap .footerSnsCnt .footerSns_cl {
    padding: 0;
    text-align: left;
    background-color: transparent;
  }
}

.pagetop {
  display: none;
}
@media (min-width: 768px) {
  .pagetop {
    display: block;
  }
}
.pagetop_link {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  justify-content: center;
  width: 115px;
  height: 115px;
  font-family: "Outfit", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-optical-sizing: auto;
  color: #ffffff;
  background-image: linear-gradient(
    190deg,
    rgba(230, 205, 0, 0.15),
    rgba(90, 93, 96, 0.15) 70%
  );
  border: 1px solid #383a3d;
}
.pagetop_link:hover {
  border-color: #ffffff;
}
.pagetop_text {
  margin: 0;
}

main {
  background-image: url(../../images/common/bg04.jpg);
  background-repeat: no-repeat;
  background-position: top -18px left calc(50% + 107px);
  background-size: 507px;
}
@media (min-width: 768px) {
  main {
    background-position: top -110px right calc(50% - 323px);
    background-size: 1462px;
  }
}

.title-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 639px) {
  .title-wrapper {
    height: 276px;
    padding-top: 128px;
  }
}
@media (min-width: 640px) {
  .title-wrapper {
    height: 333px;
    padding-top: 128px;
  }
}
@media (min-width: 768px) {
  .title-wrapper {
    height: 500px;
    padding-top: 240px;
  }
}
@media (min-width: 1024px) {
  .title-wrapper {
    height: 650px;
    padding-top: 266px;
  }
}
.title-wrapper::before {
  position: absolute;
  top: 0;
  content: "";
}

.page-title {
  display: grid;
  place-items: center;
  height: 128px;
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  line-height: 1.6;
  -webkit-text-fill-color: transparent;
  text-align: center;
  letter-spacing: 0.1em;
  background: linear-gradient(-93deg, #fd1010 0%, #ec6d00 100%);
  -webkit-background-clip: text;
}
@media (max-width: 639px) {
  .page-title {
    height: 64px;
    font-size: 2.5rem;
    -webkit-text-fill-color: transparent;
    background: linear-gradient(-96deg, #fd1010 0%, #edc600 100%);
    background-position: 40% center;
    -webkit-background-clip: text;
    background-size: 200%;
  }
}
@media (min-width: 640px) {
  .page-title {
    font-size: 3rem;
  }
}
@media (min-width: 768px) {
  .page-title {
    font-size: 4rem;
  }
}
@media (min-width: 1024px) {
  .page-title {
    font-size: 5rem;
  }
}

.page-title--company {
  background-position: 20% center; /* 50〜70%の中心に当たるように設定（=60%） */
  background-size: 200%; /* 50〜70%の中心に当たるように設定（=60%） */
}

.ja .page-title--page {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-optical-sizing: auto;
}

@media (min-width: 1024px) {
  .breadcrumb {
    max-width: 1000px;
  }
}

.breadcrumb__list {
  display: flex;
  gap: 16px;
  padding: 0 16px;
  margin: 0;
  overflow: hidden;
  list-style: none;
  border-radius: 16px;
}

.breadcrumb__item {
  display: flex;
  flex-shrink: 0; /* 基本的には項目は縮小しない */
  align-items: center;
  white-space: nowrap; /* 基本的には項目は縮小しない */
}

/* 最後の項目だけ省略可能にする */
.breadcrumb__item:last-child {
  flex: 1 1 0;
  min-width: 0; /* 重要！ */
  overflow: hidden;
}

.breadcrumb__item:last-child {
  display: block;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.breadcrumb__item,
.breadcrumb__link {
  font-family: "Outfit", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #d3d3d6;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
}

.breadcrumb__link:hover {
  color: #e6cd00;
}

.breadcrumb__item + .breadcrumb__item::before {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-right: 16px;
  vertical-align: -2px;
  content: "";
  background-image: url("../../images/common/icon_chevron-right.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media (max-width: 639px) {
  .breadcrumb__item + .breadcrumb__item::before {
    width: 10px;
    height: 10px;
    vertical-align: -1px;
  }
}

body {
  background-color: transparent;
}

.title-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 276px;
  padding-top: 36px;
}
@media (min-width: 768px) {
  .title-wrapper {
    height: 650px;
  }
}

.page-title {
  position: relative;
  z-index: 1;
}

.breadcrumb {
  position: relative;
  z-index: 1;
}
@media (max-width: 639px) {
  .breadcrumb {
    margin-top: 8px;
  }
}

.title__background {
  position: absolute;
  top: 0;
  right: 0;
}

.development {
  position: relative;
  max-width: 1270px;
  padding-inline: 25px;
  margin-inline: auto;
  color: #ffffff;
}

.development__content {
  display: grid;
}

.development__title {
  font-size: 1.5625rem;
  line-height: 1.2;
  color: #ffffff;
  text-align: center;
  letter-spacing: 0.03em;
}
@media (min-width: 1280px) {
  .development__title {
    grid-row: 1 / 2;
    grid-column: 2 / 3;
    font-size: 2.5rem;
    line-height: 1.5;
    text-align: left;
    letter-spacing: 0.03em;
  }
}

.development__icons {
  position: relative;
  width: auto;
  height: 20.375rem;
  margin-inline: auto;
  margin-top: 2.875rem;
}
@media (max-width: 374px) {
  .development__icons {
    width: 16.875rem;
    height: 15.625rem;
  }
}
@media (min-width: 768px) {
  .development__icons {
    width: 31.25rem;
    height: 29.375rem;
  }
}
@media (min-width: 1280px) {
  .development__icons {
    grid-row: 1 / 3;
    width: 38.75rem;
    height: 35rem;
    margin-inline: initial;
    margin-top: 30px;
    margin-right: 1.875rem;
  }
}

.circle-item {
  position: absolute;
  color: #ffffff;
}
.circle-item .circle-svg circle {
  transition:
    stroke 0.3s ease,
    fill 0.3s ease;
}
.circle-item.is-active .circle-svg circle {
  fill: rgba(255, 215, 0, 0.1) !important;
  stroke: #ffd700 !important;
}
.circle-item:nth-child(1) {
  top: 0;
  left: 50%;
  transform: translateX(-50%) scale(1.05);
}
@media (min-width: 768px) {
  .circle-item:nth-child(1) {
    top: 0.625rem;
    transform: translateX(-50%) scale(1);
  }
}
.circle-item:nth-child(2) {
  bottom: 0.3125rem;
  left: 0.3125rem;
}
@media (min-width: 768px) {
  .circle-item:nth-child(2) {
    bottom: 0.0625rem;
    left: 0.625rem;
  }
}
.circle-item:nth-child(3) {
  right: 0.3125rem;
  bottom: 0.3125rem;
}
@media (min-width: 768px) {
  .circle-item:nth-child(3) {
    right: 0.625rem;
    bottom: 0.0625rem;
  }
}

.circle-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.circle-icon {
  position: relative;
  z-index: 2;
  max-width: 11.4375rem;
  height: auto;
}
@media (max-width: 374px) {
  .circle-icon {
    max-width: 8.75rem;
  }
}
@media (min-width: 768px) {
  .circle-icon {
    max-width: 15.625rem;
  }
}
@media (min-width: 1280px) {
  .circle-icon {
    max-width: 19.5625rem;
  }
}

.development__slider {
  width: 100%;
  margin-inline: auto;
  margin-top: 2.3125rem;
  overflow: hidden;
  background: #1a1f26;
}
@media (max-width: 374px) {
  .development__slider {
    max-width: 16.875rem;
  }
}
@media (min-width: 640px) {
  .development__slider {
    max-width: 22rem;
  }
}
@media (min-width: 768px) {
  .development__slider {
    max-width: 31.25rem;
  }
}
@media (min-width: 1280px) {
  .development__slider {
    grid-row: 2 / 3;
    grid-column: 2 / 3;
    max-width: 30.25rem;
    margin-top: 1.25rem;
  }
}

@media (min-width: 1280px) {
  .swiper.development__slider {
    margin-left: initial;
  }
}

.development__slide {
  padding: 2rem 1.5625rem;
}
@media (min-width: 1280px) {
  .development__slide {
    padding: 2.5rem 2.1875rem 2.5rem 3.0625rem;
  }
}

.development__slide-header {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1280px) {
  .development__slide-header {
    justify-content: flex-start;
  }
}

.development__icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.5625rem;
  height: 4.5625rem;
  padding: 19px 4px 10px 12px;
  background-color: #0f141c;
  border-radius: 12px;
}
@media (min-width: 1280px) {
  .development__icon-wrapper {
    width: 5.8125rem;
    height: 5.8125rem;
    padding: 19px 4px 10px 16px;
    border-radius: 16px;
  }
}

.development__icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.development__slide-title {
  margin-left: 1.25rem;
  font-size: 1.5rem;
  line-height: 1.5;
  color: #ffffff;
  letter-spacing: 0.05em;
}
@media (min-width: 1280px) {
  .development__slide-title {
    margin-left: 1.4375rem;
    font-size: 1.875rem;
  }
}
.development__slide-title span {
  -webkit-text-fill-color: transparent;
  background: linear-gradient(
    93deg,
    #e6cd00 -38.66%,
    #cde600 -38.65%,
    #e38500 28.41%,
    #fd1101 108.18%
  );
  -webkit-background-clip: text;
  background-clip: text;
}

.development__slide-text {
  margin-top: 1.3125rem;
  font-size: 0.875rem;
  line-height: 1.8;
  color: #d3d3d6;
  text-align: left;
}
@media (min-width: 640px) {
  .development__slide-text {
    text-align: center;
  }
}
@media (min-width: 1280px) {
  .development__slide-text {
    margin-top: 1.6875rem;
    font-size: 1rem;
    line-height: 1.88;
    text-align: left;
    letter-spacing: 0.03em;
  }
}
@media (max-width: 639px) {
  .development__slide-text br {
    display: none;
  }
}

.development__content .swiper-button-next,
.development__content .swiper-button-prev {
  position: absolute;
  top: 85%;
  z-index: 10;
  width: 2.25rem;
  height: 2.25rem;
  color: #fff;
  background: #808080;
  border-radius: 50%;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .development__content .swiper-button-next,
  .development__content .swiper-button-prev {
    width: 3.75rem;
    height: 3.75rem;
  }
}
@media (min-width: 1280px) {
  .development__content .swiper-button-next,
  .development__content .swiper-button-prev {
    top: 64%;
  }
}
.development__content .swiper-button-next:hover,
.development__content .swiper-button-prev:hover {
  background: #666;
}
.development__content .swiper-button-next::after,
.development__content .swiper-button-prev::after {
  font-size: 0.8125rem;
}
@media (min-width: 768px) {
  .development__content .swiper-button-next::after,
  .development__content .swiper-button-prev::after {
    font-size: 1.25rem;
  }
}

.development__content .swiper-button-prev {
  left: 20px;
  transform: translateX(-36%) translateY(-112%);
}
@media (max-width: 374px) {
  .development__content .swiper-button-prev {
    left: 30px;
  }
}
@media (min-width: 640px) {
  .development__content .swiper-button-prev {
    left: 53%;
    margin-left: -200px;
  }
}
@media (min-width: 768px) {
  .development__content .swiper-button-prev {
    left: 49%;
    margin-left: -250px;
  }
}
@media (min-width: 1280px) {
  .development__content .swiper-button-prev {
    left: 680px;
    margin-left: 0;
    transform: translateY(-84%);
  }
}
.development__content .swiper-button-prev::after {
  content: "←";
}

.development__content .swiper-button-next {
  right: 20px;
  transform: translateX(36%) translateY(-112%);
}
@media (max-width: 374px) {
  .development__content .swiper-button-next {
    right: 5px;
  }
}
@media (min-width: 640px) {
  .development__content .swiper-button-next {
    right: 59%;
    margin-right: -250px;
  }
}
@media (min-width: 768px) {
  .development__content .swiper-button-next {
    right: 49%;
    margin-right: -250px;
  }
}
@media (min-width: 1280px) {
  .development__content .swiper-button-next {
    right: 30px;
    margin-right: 0;
    transform: translateY(-84%);
  }
}
.development__content .swiper-button-next::after {
  content: "→";
}

.development__content .swiper-pagination {
  position: absolute;
  right: 0;
  bottom: -3.125rem;
  left: 0;
  display: flex;
  gap: 0.625rem;
  justify-content: center;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .development__content .swiper-pagination {
    bottom: -2.5rem;
  }
}
@media (min-width: 1280px) {
  .development__content .swiper-pagination {
    right: 15.75rem;
    bottom: -3.0625rem;
    left: auto;
    margin: 0;
  }
}

.pagination-item {
  position: relative;
  width: 28px;
  height: 24px;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.pagination-item .pagination-svg circle {
  transition:
    stroke 0.3s ease,
    fill 0.3s ease;
}
.pagination-item.is-active .pagination-svg circle {
  fill: rgba(255, 215, 0, 0.1);
  stroke: #ffd700;
}

.pagination-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.pagination-icon {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: filter 0.3s ease;
}

.pagination-item.is-active .pagination-icon {
  filter: brightness(2.5) saturate(2.5) hue-rotate(0deg);
}

.product {
  position: relative;
  overflow-x: hidden;
}
@media (min-width: 768px) {
  .product {
    overflow-x: visible;
  }
}
.product::before {
  position: absolute;
  top: -6.875rem;
  left: -24.6875rem;
  z-index: -1;
  width: 49.1875rem;
  height: 29.125rem;
  pointer-events: none;
  content: "";
  background-image: url("../../images/product/bg_product_sp.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
}
@media (min-width: 768px) {
  .product::before {
    top: -8.4375rem;
    left: -17.3125rem;
    width: 55.5rem;
    height: 37.3125rem;
    background-image: url("../../images/product/bg_product_pc.png");
  }
}

.product__inner {
  max-width: 78.125rem;
  padding-inline: 1.5625rem;
  margin-inline: auto;
}

.product__cards {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 3.75rem;
  margin-inline: auto;
  margin-top: 2.1875rem;
}
@media (max-width: 639px) {
  .product__cards {
    gap: 2.5rem;
  }
}
@media (min-width: 640px) {
  .product__cards {
    gap: 2.5rem;
  }
}
@media (min-width: 1024px) {
  .product__cards {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 3.875rem;
  }
}

.product-cards {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.description {
  position: relative;
}

.description__inner {
  max-width: 65.625rem;
  padding-inline: 1.5625rem;
  margin-inline: auto;
}

.description__main {
  display: flex;
  flex-direction: column;
  gap: 2.125rem;
}
@media (min-width: 1024px) {
  .description__main {
    flex-direction: row;
    gap: 4.375rem;
    align-items: center;
  }
}

@media (min-width: 768px) {
  .description__body {
    flex: 1;
  }
}

.description__lead {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.8;
  color: #d3d3d6;
  letter-spacing: 0.03em;
}
@media (min-width: 768px) {
  .description__lead {
    margin-top: 1.875rem;
    font-size: 1rem;
    line-height: 1.88;
    letter-spacing: 0.03em;
  }
}

.description__lead + .description__lead {
  margin-top: 1.875rem;
}
@media (min-width: 1024px) {
  .description__lead + .description__lead {
    margin-top: 1.875rem;
  }
}

.description__image {
  max-width: 18.3125rem;
  aspect-ratio: 293 / 191;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .description__image {
    max-width: 30.875rem;
    aspect-ratio: 494 / 303;
  }
}
.description__image > img {
  width: 100%;
}

.description__visual {
  margin: 2.5rem 0;
  text-align: center;
}

.description__visual img {
  width: 100%;
  max-width: 28.75rem;
  height: auto;
}

.description__footer {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: calc(100% + 1.125rem);
  padding: 6.75rem 2rem 3.125rem;
  margin-inline: -0.5625rem;
  margin-top: -5rem;
  background: linear-gradient(
    99deg,
    rgba(230, 205, 0, 0.15) -4.64%,
    rgba(90, 93, 96, 0.15) 36.42%
  );
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  box-shadow: 2px 4px 3px 0 rgba(0, 0, 0, 0.4);
}
@media (min-width: 1024px) {
  .description__footer {
    flex-direction: row;
    gap: 5.25rem;
    padding: 2.75rem 4.5625rem;
    margin-top: 63px;
    border: 1px solid #333;
    border-radius: 15px;
  }
}

.description__message {
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.8;
  color: #ffffff;
  letter-spacing: 0.03em;
}
@media (min-width: 1024px) {
  .description__message {
    flex: 1;
    font-size: 1.25rem;
    line-height: 1.88;
  }
}

.description__button {
  position: relative;
  z-index: 10;
  display: inline-flex;
  gap: 0.9375rem;
  align-items: center;
  margin-inline: auto;
  margin-top: -0.5625rem;
  font-size: 0.875rem;
  color: #ffffff;
  letter-spacing: 0.03em;
}
@media (min-width: 1024px) {
  .description__button {
    gap: 0.875rem;
    font-weight: 700;
    line-height: 1.88;
    letter-spacing: 0.03em;
  }
}

@media (min-width: 640px) {
  .brand-state {
    margin-top: 60px;
  }
}
@media (min-width: 768px) {
  .brand-state {
    margin-top: 80px;
  }
}
@media (min-width: 1024px) {
  .brand-state {
    margin-top: 0px;
  }
}

@media (min-width: 1280px) {
  .en .development__content .swiper-button-prev {
    left: 660px;
  }
}

@media (min-width: 1280px) {
  .en .development__content .swiper-button-next {
    right: 55px;
  }
}

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