@charset "UTF-8";
@import url(https://fonts.googleapis.com/css?family=Open+Sans);
@media screen and (max-width: 600px) {
  .hidden-sm {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .hidden-md {
    display: none;
  }
}

@media screen and (max-width: 900px) {
  .hidden-lg {
    display: none;
  }
}

@media screen and (max-width: 1200px) {
  .hidden-xl {
    display: none;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  font-size: 1.25rem;
  line-height: 2;
  background: #F1F1F1;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #232323;
  line-height: 1.7;
}

span {
  display: block;
}

.header__inner--black {
  top: 0;
}


/* Loading背景画面設定　*/
#splash {
  /*fixedで全面に固定*/
  position: absolute;
  width: 100%;
  height: 100%;
  background: #232323;
  text-align: center;
  z-index: 99999;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.gear {
  position: relative;
  width: 100px;
  height: 100px;
}

.gear svg {
  width: 100%;
  height: 100%;
}

.lil-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.text {
  font-size: 24px;
  color: #fff;
  text-align: center;
  margin-top: -16px;
}

.load {
  position: relative;
  margin: 50px auto;
}

.load::before {
  content: "";
  display: block;
  width: 100%;
  background-color: #333;
  position: absolute;
  top: 0;
  left: 100%;
  -webkit-animation: loadLogo 1.5s;
  animation: loadLogo 1.5s;
}

@-webkit-keyframes loadLogo {
  0% {
    left: 0;
  }

  50% {
    left: 0;
  }

  100% {
    left: 100%;
  }
}

@keyframes loadLogo {
  0% {
    left: 0;
  }

  50% {
    left: 0;
  }

  100% {
    left: 100%;
  }
}

.load img {
  width: 300px;
  height: 72px;
}

@media screen and (max-width: 600px) {
  .load img {
    width: 140px;
    height: 33.74px;
  }
}

.load #logo_loader {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 101;
  background-color: #333;
}

.load #logo_loader .f_logo {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 310px;
  height: 72px;
  text-align: center;
  color: #fff;
  font-size: 30px;
}

@media screen and (max-width: 600px) {
  .load #logo_loader .f_logo {
    width: 140px;
    height: 50px;
  }
}

.load #logo_loader .f_logo img {
  width: 100%;
  height: auto;
}

.load #logo_loader .f_logo:before {
  content: "";
  display: block;
  width: 100%;
  height: 110%;
  background-color: #333;
  position: absolute;
  top: 0;
  left: 100%;
  -webkit-animation: loadLogo 2s;
  animation: loadLogo 2s;
}

@keyframes loadLogo {
  0% {
    left: 0;
  }

  50% {
    left: 0;
  }

  100% {
    left: 100%;
  }
}

.load #logo_loader .f_logo:before {
  -webkit-animation: loadLogo 1.5s;
  animation: loadLogo 1.5s;
}

@-webkit-keyframes slideOut {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }

  50% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }

  100% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}

@keyframes slideOut {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }

  50% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }

  100% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}

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

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

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

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

.text {
  color: lightgray;
  font-size: 18px;
  font-family: "Open Sans", sans-serif;
  text-align: center;
}

/* fadeUpをするアイコンの動き */
.fadeUp {
  -webkit-animation-name: fadeUpAnime;
  animation-name: fadeUpAnime;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.fv__animation--title {
  position: absolute;
  /* 絶対配置 */
  top: 50%;
  /* 上から50% */
  left: 50%;
  /* 左から50% */
  -webkit-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
  /* 中央に配置し、初期スケールを1倍 */
  -webkit-transform-origin: center center;
  transform-origin: center center;
  /* 基点を中央に設定 */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* 子要素の整列用 */
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  /* 子要素を縦方向に並べる */
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  /* 水平方向の中央揃え */
  text-align: center;
  /* テキストを中央揃え */
  z-index: 1000;
  /* 必要に応じて適切なz-indexを設定 */
  color: #fff;
  width: 100%;
}

.fv__animation--title--inner {
  -moz-text-align-last: left;
  text-align-last: left;
}

.rotate__cont--wrap {
  position: absolute;
  top: -60px;
  right: 0;
  z-index: -1;
  display: none;
}

@media screen and (max-width: 1400px) {
  .rotate__cont--wrap {
    top: -90px;
  }
}

@media screen and (max-width: 1090px) {
  .rotate__cont--wrap {
    top: -80px;
  }
}

@media screen and (max-width: 900px) {
  .rotate__cont--wrap {
    top: -70px;
  }
}

@media screen and (max-width: 768px) {
  .rotate__cont--wrap {
    top: -60px;
  }
}

@media screen and (max-width: 600px) {
  .rotate__cont--wrap {
    top: -50px;
  }
}

@media screen and (max-width: 498px) {
  .rotate__cont--wrap {
    top: -60px;
    right: -10px;
  }
}

@media screen and (max-width: 416px) {
  .rotate__cont--wrap {
    top: -50px;
    right: 10px;
  }
}

.rotate__cont {
  position: relative;
}

.rotate__float {
  width: 140px;
  height: 140px;
  -webkit-animation: rotate 20s infinite linear;
  animation: rotate 20s infinite linear;
}

@media screen and (max-width: 1400px) {
  .rotate__float {
    width: 130px;
    height: 180px;
  }
}

@media screen and (max-width: 1090px) {
  .rotate__float {
    width: 130px;
    height: 160px;
  }
}

@media screen and (max-width: 900px) {
  .rotate__float {
    width: 130px;
    height: 140px;
  }
}

@media screen and (max-width: 768px) {
  .rotate__float {
    width: 120px;
    height: 120px;
  }
}

@media screen and (max-width: 600px) {
  .rotate__float {
    width: 100px;
    height: 100px;
  }
}

@media screen and (max-width: 416px) {
  .rotate__float {
    width: 80px;
    height: 80px;
  }
}

@-webkit-keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.rotate__arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.loading-title1 {
  display: none;
  -webkit-animation: fadeIn 2s ease-out 1s 1 normal backwards;
  animation: fadeIn 2s ease-out 1s 1 normal backwards;
}

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

  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

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

  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.loading-title2 {
  display: none;
  -webkit-animation: fadeIn 2s ease-out 1.8s 1 normal backwards;
  animation: fadeIn 2s ease-out 1.8s 1 normal backwards;
}

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

  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.fvMovie__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  overflow: hidden;
  background-color: #eee;
  position: fixed;
  z-index: -3;
  height: 100lvh;
}

.fvMovie__content::after {
  content: "";
  width: 100%;
  height: 100lvh;
  display: block;
  background-color: rgba(0, 0, 0, 0.3);
  position: absolute;
  z-index: 999;
  -webkit-transition: 1s;
  transition: 1s;
}

.fvMovie__content.scrollin::after {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.fvMovie__content video {
  width: 100%;
  height: 100lvh;
  object-fit: cover;
  object-position: center;
}

.source {
  display: block;
  width: 100%;
  height: 100lvh;
  object-fit: cover;
  object-fit: center;
}

.fvMovie img {
  width: 100%;
  height: 100vh;
}

.fv__text--wrapper {
  color: #fff;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
  -ms-flex-pack: left;
  justify-content: left;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 300vh;
  gap: 30px;
}

@media screen and (max-width: 1000px) {
  .fv__text--wrapper {
    height: 260vh;
  }
}

.fv__txt--wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 126px;
  margin-top: 700px;
  padding: 0 5%;
}

.fv__text--img {
  overflow: hidden;
  aspect-ratio: 16/9;
  width: 564px;
  min-width: 564px;
  border-radius: 0 48px 48px 0;
}

.fv__text--img img {
  margin-top: -100px;
  height: calc(100% + 100px);
  width: 564px;
  min-width: 564px;
  -o-object-fit: cover;
  object-fit: cover;
}

.fv__text--wrapper.is-visible {
  opacity: 1;
  /* 表示 */
  -webkit-transform: translateY(0);
  transform: translateY(0);
  /* 元の位置に戻す */
}

.fv__text2,
.fv__text3 {
  margin-top: 40px;
}

.fv__button {
  margin-top: 40px;
}

.fv__txt--inner {
  margin-top: calc(100vh + 400px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
  width: 100%;
  -webkit-transform: translateY(-40%);
  transform: translateY(-40%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  margin-top: 200px;
}

.header {
  opacity: 0;
  -webkit-transition: 1s;
  transition: 1s;
  -webkit-transition-delay: 4s;
  transition-delay: 4s;
  width: 100%;
}

.header.active {
  opacity: 1;
}

.top__wapper {
  position: absolute;
  bottom: 10vh;
  left: 5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
}

.top__wapper .top__title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.top__wapper.active span {
  color: #fff;
  font-size: 5.25rem;
  -webkit-transform: translateY(105%);
  transform: translateY(105%);
}

@media screen and (max-width: 1200px) {
  .top__wapper.active span {
    font-size: 5rem;
  }
}

@media screen and (max-width: 1000px) {
  .top__wapper.active span {
    font-size: 4rem;
  }
}

@media screen and (max-width: 800px) {
  .top__wapper.active span {
    font-size: 3rem;
  }
}

@media screen and (max-width: 600px) {
  .top__wapper.active span {
    font-size: 2rem;
  }
}

.top__wapper.active span.small {
  font-size: 2.125rem;
}

@media screen and (max-width: 1200px) {
  .top__wapper.active span.small {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 1000px) {
  .top__wapper.active span.small {
    font-size: 1.7rem;
  }
}

@media screen and (max-width: 800px) {
  .top__wapper.active span.small {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 600px) {
  .top__wapper.active span.small {
    font-size: 1.2rem;
  }
}

.top__wapper.active .top__title span {
  display: block;
  -webkit-animation: text 0.4s linear both;
  animation: text 0.4s linear both;
  -webkit-animation-delay: calc(2.5s + 0.07s * var(--i));
  animation-delay: calc(2.5s + 0.07s * var(--i));
}

@media screen and (max-width: 600px) {
  .top__wapper.active .top__title .small {
    margin-right: -2px;
  }
}

.fv__txt--box {
  text-align: justify;
  margin-left: auto;
  -moz-text-align-last: left;
  text-align-last: left;
  margin-top: 50px;
  padding-bottom: 70px;
}

@media screen and (max-width: 900px) {
  .fv__txt--box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .aboutUs-wrap .fv__txt--box {
    flex-direction: column;
    align-items: flex-start;
  }
}

.fv__text1,
.fv__text2,
.fv__text3 {
  color: #fff;
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 2.4;
  letter-spacing: 1.26px;
}

@media screen and (max-width: 600px) {

  .fv__text1,
  .fv__text2,
  .fv__text3 {
    font-size: 16px;
    line-height: 2;
  }
}

.fv-title__en span {
  font-family: "Anton", sans-serif;
  font-size: 5.625rem;
  font-weight: 400;
  line-height: 1.2;
}

@media screen and (max-width: 1400px) {
  .fv-title__en span {
    font-size: 5rem;
  }
}

@media screen and (max-width: 1090px) {
  .fv-title__en span {
    font-size: 4.375rem;
  }
}

@media screen and (max-width: 900px) {
  .fv-title__en span {
    font-size: 3.75rem;
  }
}

@media screen and (max-width: 768px) {
  .fv-title__en span {
    font-size: 3.125rem;
  }
}

@media screen and (max-width: 600px) {
  .fv-title__en span {
    font-size: 2.5rem;
  }
}

@media screen and (max-width: 498px) {
  .fv-title__en span {
    font-size: 2.375rem;
  }
}

@media screen and (max-width: 416px) {
  .fv-title__en span {
    font-size: 2rem;
  }
}

@media screen and (max-width: 335px) {
  .fv-title__en span {
    font-size: 1.875rem;
  }
}

.fv-title__ja {
  margin-top: 48px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.125rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 9.52px;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
}

@media screen and (max-width: 1090px) {
  .fv-title__ja {
    margin-top: 20px;
    font-size: 1.75rem;
    letter-spacing: 7.84px;
  }
}

@media screen and (max-width: 900px) {
  .fv-title__ja {
    font-size: 1.625rem;
    letter-spacing: 7.28px;
  }
}

@media screen and (max-width: 768px) {
  .fv-title__ja {
    font-size: 1.5rem;
    letter-spacing: 6.72px;
  }
}

@media screen and (max-width: 600px) {
  .fv-title__ja {
    font-size: 1.25rem;
    margin-top: 20px;
    letter-spacing: 5.6px;
  }
}

@media screen and (max-width: 498px) {
  .fv-title__ja {
    font-size: 1.125rem;
    letter-spacing: 5.04px;
  }
}

@media screen and (max-width: 416px) {
  .fv-title__ja {
    font-size: 1rem;
    letter-spacing: 4.48px;
  }
}

.fv-title__ja .small {
  font-size: 4rem;
  display: inline-block;
  font-weight: 700;
}

@media screen and (max-width: 1200px) {
  .fv-title__ja .small {
    font-size: 3.75rem;
  }
}

@media screen and (max-width: 900px) {
  .fv-title__ja .small {
    font-size: 3.75rem;
  }
}

.xxl-none {
  display: none;
}

@media screen and (max-width: 1090px) {
  .xxl-none {
    display: block;
  }
}

.fv__title {
  position: relative;
  font-size: 3.75rem;
}

@media screen and (max-width: 1200px) {
  .fv__title {
    font-size: 3.125rem;
  }
}

@media screen and (max-width: 600px) {
  .fv__title {
    font-size: 2.5rem;
  }
}

@media screen and (max-width: 498px) {
  .fv__title {
    font-size: 1.5rem;
  }
}

.fv__text {
  padding-top: 10px;
  font-size: 1.25rem;
  line-height: 2.5;
}

@media screen and (max-width: 1200px) {
  .fv__text {
    font-size: 1.125rem;
  }
}

@media screen and (max-width: 600px) {
  .fv__text {
    font-size: 1rem;
  }
}

@media screen and (max-width: 498px) {
  .fv__text {
    font-size: 0.8125rem;
  }
}

@media screen and (max-width: 498px) {
  .section__parallax {
    top: 1100px;
  }
}

.strengths--icon__title {
  color: #fff;
  color: #FFF;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 1.05px;
}

.strengths--icon2 {
  position: absolute;
  left: 142px;
  top: 120px;
}

.strengths--icon3 {
  position: absolute;
  left: 90px;
  top: 300px;
}

.strengths--icon4 {
  position: absolute;
  left: -90px;
  top: 300px;
}

.strengths--icon5 {
  position: absolute;
  left: -142px;
  top: 120px;
}

.strengths--icon1,
.strengths--icon2,
.strengths--icon3,
.strengths--icon4,
.strengths--icon5 {
  width: 116px;
  height: 116px;
  background-color: #232323;
  border-radius: 50%;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.strengths--icon__img1 {
  width: 52px;
  height: 36px;
}

.strengths--icon__img2 {
  width: 43px;
  height: 44px;
}

.strengths--icon__img3 {
  width: 46px;
  height: 37px;
}

.strengths--icon__img4 {
  width: 43px;
  height: 43px;
}

.strengths--icon__img5 {
  width: 43px;
  height: 43px;
}

.strengths {
  position: relative;
  z-index: 1;
  min-height: 100vh;
}

.section-top__strengths {
  background-color: #eeeeee;
  padding-inline: 120px;
  border-radius: 80px 80px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: sticky;
  top: 0;
  height: 100vh;
  z-index: 0;
  min-height: 100vh;
}

@media screen and (max-width: 600px) {
  .section-top__strengths {
    border-radius: 40px 40px 0 0;
  }
}

.section-top__strengths--inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: sticky;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 3;
  margin-top: -50vh;
}

.contents {
  height: 250vh;
  padding: 50px 0 100px;
  margin: 0 auto;
  z-index: 1;
  position: relative;
}

@media screen and (max-width: 1000px) {

  .contents {
    height: 225vh;
  }
}

@media screen and (max-width: 600px) {
  .contents {
    height: 150vh;
  }
}


.contents__img {
  width: 100%;
}

.contents__img img {
  width: 100%;
  opacity: 0.6;
}

.side {
  stroke-dasharray: 100;
  /* 線の全長を定義 */
  stroke-dashoffset: 100;
  /* 線を完全に隠す状態 */
}

.strengths--right__title {
  font-size: 2.125rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 2.24px;
}

.strengths--right__textBox {
  font-size: 1.125rem;
  letter-spacing: 1.12px;
  margin-top: 34px;
  width: 70%;
  line-height: 2;
}

@media screen and (max-width: 600px) {
  .strengths--right__textBox {
    width: 90%;
    font-size: 15px;
    line-height: 1.5;
  }
}

.strengths--right__text1 {
  font-weight: 700;
}

.strengths--right__text2 {
  font-weight: 700;
  margin-top: 24px;
  padding-bottom: 56px;
}

@media screen and (max-width: 600px) {
  .strengths--right__text2 {
    padding-bottom: 30px;
  }
}

.fvSub__button {
  margin-left: auto;
  width: 360px;
  margin-top: 40px;
}

.service__cicle {
  width: 100%;
  height: 200px;
  overflow-x: hidden;
  position: relative;
  background: #ffffff;
  margin-top: -1px;
}

.service__cicle span {
  content: "";
  display: block;
  width: 120vw;
  position: absolute;
  top: 1px;
  left: 50%;
  z-index: 999;
  background-color: #eeeeee;
  border-radius: 50%/100% 100% 0 0;
  height: 100%;
  -webkit-transform: translate(-50%, -100%);
  transform: translate(-50%, 0);
}

.section__service {
  position: relative;
  background: #232323;
  padding-bottom: 80px;
  border-radius: 80px;
  margin-top: -80px;
}

@media screen and (max-width: 600px) {
  .section__service {
    border-radius: 40px;
    padding-bottom: 40px;
  }
}

.section__circle {
  position: absolute;
  top: 1000px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100%;
  z-index: 100;
}

.service__contents {
  padding: 250px 5% 150px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 1200px) {
  .service__contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

@media screen and (max-width: 1200px) {
  .service__contents {
    padding-inline: 70px;
  }
}

@media screen and (max-width: 1200px) {
  .service__contents {
    padding-top: 250px;
    gap: 100px;
  }
}

@media screen and (max-width: 498px) {
  .service__contents {
    padding-inline: 16px;
  }
}

.service__left--content {
  width: 34%;
  position: sticky;
  top: 140px;
}

.service__right--content {
  width: 50%;
}

@media screen and (max-width: 1200px) {
  .service__left--content {
    width: 64%;
    position: static;
  }
}

@media screen and (max-width: 768px) {
  .service__left--content {
    width: 100%;
  }
}

@media screen and (max-width: 1200px) {
  .service__right--content {
    margin-top: 100px;
    width: 100%;
  }
}

.service__left--lead {
  color: #9f9f9f;
  font-size: 1.125rem;
  margin-top: 40px;
  font-weight: 500;
  line-height: 2;
}

@media screen and (max-width: 498px) {
  .service__left--lead {
    font-size: 0.875rem;
  }
}

.section__title {
  -moz-text-align-last: left;
  text-align-last: left;
}

.service__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 300px;
  margin-top: 100px;
}

@media screen and (max-width: 1200px) {
  .service__items {
    gap: 200px;
    margin-top: 40px;
  }
}

.service__item {
  position: relative;
}

.service__item--contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 40px;
}

@media screen and (max-width: 1200px) {
  .service__item--contents {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
  }
}

@media screen and (max-width: 1090px) {
  .service__item--contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }
}

.service_title__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  gap: 30px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 28px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .service_title__box {
    margin-top: -10px;
  }
}

.service__slider {
  width: 100%;
}

.service__slider .slick-dots {
  position: relative;
  margin-top: -8px;
  text-align: center;
}

.service__slider .slick-dots li {
  display: inline-block;
  margin: 0 5px;
  margin: 0 10px;
  /* ドットの間隔を調整 */
}

.service__slider .slick-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #6a6a6a;
  opacity: 1;
  font-size: 0;
}

.service__slider .slick-dots .slick-active button {
  background-color: #eeeeee;
}

@media screen and (max-width: 1090px) {
  .service__slider {
    margin: 0 auto;
  }
}

@media screen and (max-width: 1200px) {
  .service__slider {
    margin-top: 0px;
  }
}

.service_title {
  color: #232323;
}

.service__title--number {
  font-family: "Anton", sans-serif;
  color: #E8C7B5;
  font-size: 6.25rem;
  font-weight: 400;
  line-height: 1;
}

.service__title--ja {
  color: #fff;
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1%;
  margin-top: 45px;
}

@media screen and (max-width: 600px) {
  .service__title--ja {
    font-size: 1.5rem;
  }
}

.service__title--text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
}

.service__lead {
  margin-top: 58px;
  padding-bottom: 60px;
  color: #9f9f9f;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.8;
}

@media screen and (max-width: 498px) {
  .service__lead {
    font-size: 0.8125rem;
  }
}

.service__item--button {
  text-align: right;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1;
  position: relative;
}

.service__item--button::before {
  content: "";
  position: absolute;
  bottom: -42px;
  left: 0;
  top: 74%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 74%;
  height: 1px;
  background-color: #6a6a6a;
}

.service__button {
  margin-left: auto;
  margin-right: 120px;
  margin-top: 80px;
}

@media screen and (max-width: 900px) {
  .service__button {
    margin-right: auto;
    margin-left: auto;
  }
}

/*==================================================
スライダーのためのcss
===================================*/
.service-slider {
  position: relative;
  z-index: 1;
  height: 355px;
  max-width: 100%;
}

@media screen and (max-width: 767px) {
  .service-slider {
    height: auto;
  }
}

/*背景画像設定　*/
.slider-item01 {
  background: url(../img/service-slide1-1.png);
}

.slider-item02 {
  background: url(../img/service-slide1-2.png);
}

.slider-item03 {
  background: url(../img/service-slide1-3.png);
}

.slider-item04 {
  background: url(../img/service-slide1-4.png);
}

.slider-item05 {
  background: url(../img/service-slide1-5.png);
}

.slider-item06 {
  background: url(../img/service-slide2-1.png);
}

.slider-item07 {
  background: url(../img/service-slide2-2.png);
}

.slider-item08 {
  background: url(../img/service-slide2-3.png);
}

.slider-item09 {
  background: url(../img/service-slide2-4.png);
}

.slider-item10 {
  background: url(../img/service-slide2-5.png);
}

.slider-item11 {
  background: url(../img/service-slide3-1.png);
}

.slider-item12 {
  background: url(../img/service-slide3-2.png);
}

.slider-item13 {
  background: url(../img/service-slide3-3.png);
}

.slider-item14 {
  background: url(../img/service-slide3-4.png);
}

.slider-item15 {
  background: url(../img/service-slide3-5.png);
}

.slider-item16 {
  background: url(../img/service-slide4-1.png);
}

.slider-item17 {
  background: url(../img/service-slide4-2.png);
}

.slider-item18 {
  background: url(../img/service-slide4-3.png);
}

.slider-item19 {
  background: url(../img/service-slide4-4.png);
}

.slider-item20 {
  background: url(../img/service-slide4-5.png);
}

.slider-item {
  width: 666px;
  height: 355px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 40px;
}

@media screen and (max-width: 768px) {
  .slider-item {
    width: 360px;
    height: 227.18px;
  }
}

@media screen and (max-width: 416px) {
  .slider-item {
    width: 290px;
    height: 183.01px;
  }
}

@media screen and (max-width: 335px) {
  .slider-item {
    width: 240px;
    height: 151.46px;
  }
}

.slider-item img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: auto;
}

/*矢印の設定*/
.slick-prev,
.slick-next {
  position: absolute;
  z-index: 3;
  top: 42%;
  cursor: pointer;
  /*マウスカーソルを指マークに*/
  outline: none;
  /*クリックをしたら出てくる枠線を消す*/
  border-top: 2px solid #fff;
  /*矢印の色*/
  border-right: 2px solid #fff;
  /*矢印の色*/
  height: 25px;
  width: 25px;
}

.slick-prev {
  /*戻る矢印の位置と形状*/
  left: 2.5%;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.slick-next {
  /*次へ矢印の位置と形状*/
  right: 2.5%;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/
.slick-dots {
  position: relative;
  z-index: 100;
  text-align: center;
  margin: 10px 0 0 0;
  /*ドットの位置*/
}

.slick-dots li {
  display: inline-block;
  margin: 0 5px;
}

.slick-dots button {
  outline: none;
  width: 8px;
  /*ドットボタンのサイズ*/
  height: 8px;
  /*ドットボタンのサイズ*/
  display: block;
  border-radius: 50%;
  background: #eeeeee;
  opacity: 1;
  /*ドットボタンの色*/
}

.fadeUp {
  -webkit-animation-name: fadeUpAnime;
  animation-name: fadeUpAnime;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@media screen and (max-width: 768px) {
  .service__item--contents.fadeUp {
    padding-inline: 25px;
  }
}

@media screen and (max-width: 600px) {
  .service__item--contents.fadeUp {
    padding-inline: 10px;
  }
}

.service__item--head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  position: absolute;
  top: -90px;
  left: -30px;
  z-index: 1000;
}

@media screen and (max-width: 600px) {
  .service__item--head {
    left: -10px;
  }
}

.service__item--number {
  color: #A3A3A3;
  font-family: Antonio;
  font-size: 130px;
  font-style: normal;
  font-weight: 600;
  line-height: 1;
}

@media screen and (max-width: 600px) {
  .service__item--number {
    font-size: 80px;
  }
}

/* .service__item--title {
  width: 666px;
} */

.service__item--titleEn {
  color: #6A6A6A;
  font-family: "Anton", sans-serif;
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 1.68px;
  margin-top: 14px;
  padding-left: 12px;
}

@media screen and (max-width: 600px) {
  .service__item--titleEn {
    font-size: 2rem;
  }
}

.section__works {
  border-radius: 0 0 80px 80px;
  background-image: url(../img/bg-texture.png);
}

@media screen and (max-width: 600px) {
  .section__works {
    padding: 250px 0 150px;
    border-radius: 0 0 40px 40px;
  }
}

/*==================================================
company
===================================*/
.company {
  margin-top: -140px;
  padding: 126px 5%;
  position: relative;
  padding-block: 200px;
  overflow: hidden;
}

.company__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/company__bgImg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

.company__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.company__title--wrap {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

@media screen and (max-width: 767px) {
  .company__title--wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 50px;
  }
}

.company-test {
  margin-top: 60px;
}

.company__bgImg img {
  height: 900px;
}

.company__subButton--wrap {
  margin-top: 120px;
}

.company__contents--wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.company__contents--img img {
  min-width: 564px;
  width: 564px;
  border-radius: 48px 0 0 48px;
}

.company__contents--text {
  color: #eeeeee;
  padding-bottom: 70px;
  margin-top: 40px;
}

.company .button {
  margin-right: 0 !important;
}

.company__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 126px;
}

/*==================================================
recruit
===================================*/
.recruit {
  overflow-x: hidden;
}

@-webkit-keyframes MoveLeft {
  from {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }

  to {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

@keyframes MoveLeft {
  from {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }

  to {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

@-webkit-keyframes MoveLeft2 {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  to {
    -webkit-transform: translateX(-200%);
    transform: translateX(-200%);
  }
}

@keyframes MoveLeft2 {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  to {
    -webkit-transform: translateX(-200%);
    transform: translateX(-200%);
  }
}

.recruit__button {
  margin-top: 20px;
}

@media screen and (max-width: 1400px) {
  .recruit__button {
    margin-top: 0px;
  }
}

@media screen and (max-width: 1400px) {
  .recruit__button--area {
    text-align: right;
  }
}

@media screen and (max-width: 1400px) {
  .recruit__contents--common__fv {
    padding-bottom: 50px;
  }
}

/* ナビゲーションのアニメーション */
.nav-fadein {
  -webkit-animation: navfadein 0.5s linear both;
  animation: navfadein 0.5s linear both;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

@-webkit-keyframes navfadein {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes navfadein {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/* worksの下の円部分 */
.section__circle__bottom {
  position: absolute;
  width: 100vw;
  bottom: -19vw;
  left: 0;
}

.section__circle__bottom svg {
  width: 100%;
}

/* 固定するスタイル */
.fixed {
  position: fixed;
  top: 20%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100%;
  z-index: 10;
}

/* parallax が被さる */
.parallax-active {
  position: relative;
  z-index: 20;
}

.strengths-slick1 {
  position: absolute;
  width: 100%;
  height: 100%;
}

.strengths-slick img {
  width: 100%;
  height: auto;
  display: block;
}

.strengths-slick .slick-slide {
  padding-right: 15px;
  /* 間隔をあけたい場合 */
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.elem span[style*="--i:2"] {
  color: #FFAF10;
}

.top__company__ul {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 100px;
}

.top__company__ul__li {
  width: calc(100% / 4 - 22.5px);
  border-radius: 30px;
  border: solid 2px #FFFFFF;
}

.top__company__ul__li a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 75px 0;
}

.top__company__ul__li img {
  display: block;
  width: auto;
  height: 100px;
  margin-bottom: 20px;
}

.top__company__ul__li h4 {
  font-size: 24px;
  font-weight: 700;
  color: #FFFFFF;
}

@media (max-width: 1023px) {
  .top__company__ul__li {
    width: calc(100% / 2 - 15px);
  }

  .top__company__ul__li img {
    height: 80px;
  }
}

@media (max-width: 600px) {

  .top__company__ul {
    margin-top: 50px;
  }

  .top__company__ul__li h4 {
    font-size: 18px;
  }

  .top__company__ul__li img {
    height: 60px;
  }
}