@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Gentium+Plus:ital,wght@0,400;0,700;1,400;1,700&family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Pinyon+Script&display=swap");
.mb-3 {
  margin-bottom: 3rem;
}

.align-left {
  text-align: left;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  height: 100%;
}
@media screen and ( max-width: 768px ) {
  html {
    font-size: 50%;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-weight: 500;
  line-height: 1.6;
  color: #000;
  overflow-x: hidden;
  height: 100%;
}

.inner {
  max-width: 1040px;
  margin: 0 auto;
  width: 95%;
}

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

a {
  color: #000;
}
a:hover {
  opacity: 0.7;
}

.section-title {
  margin-bottom: 4.6rem;
}
.section-title h2 {
  font-size: 6.4rem;
  font-weight: 400;
  font-family: "Gentium Plus";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.95rem;
  line-height: 1;
}
.section-title h2 span {
  display: block;
  width: 12rem;
  height: 1px;
  background: #B4B4B4;
}

.content p {
  font-size: 16px;
  font-weight: 300;
  line-height: 2.4;
}
@media screen and ( max-width: 768px ) {
  .content p {
    font-size: 14px;
  }
}

.more-btn {
  font-size: 14px;
  font-weight: 300;
  border-radius: 24px;
  background: #D9D9D9;
  display: block;
  padding: 14px 54px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #000;
  position: relative;
  margin: 0 auto;
  text-align: center;
  overflow: hidden;
  -webkit-transition: color 0.5s ease;
  transition: color 0.5s ease;
}
.more-btn:hover {
  color: #D9D9D9;
}
.more-btn:hover::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.more-btn::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #000;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  z-index: -1;
}
.more-btn::before:hover {
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
}

.js-fadeIn-top {
  opacity: 0;
  overflow: visible;
}

.btn-text {
  position: relative;
  z-index: 1;
}

.section-inner {
  max-width: 1440px;
  margin: 0 auto;
  width: 95%;
}

.content__inner {
  max-width: 843px;
  margin: 0 auto;
}

.pc-only {
  display: block;
}
@media screen and ( max-width: 768px ) {
  .pc-only {
    display: none;
  }
}

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

.opening {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  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;
  background: #fff;
}

.opening__mask-top,
.opening__mask-bottom {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
}

.opening__mask-circle {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: 0 auto;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 13.8888888889vw;
  height: 13.8888888889vw;
  min-width: 100px;
  min-height: 100px;
  border-radius: 50%;
  background: -webkit-gradient(linear, left top, left bottom, from(#F5F5F5), to(#EEE));
  background: linear-gradient(180deg, #F5F5F5 0%, #EEE 100%);
  z-index: 100;
  scale: 0;
}
@media screen and ( max-width: 768px ) {
  .opening__mask-circle {
    width: 106.6666666667px;
    height: 106.6666666667px;
  }
}

.opening__logo {
  display: block;
  width: 200px;
  height: auto;
  z-index: 2;
  opacity: 0;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.mainVisual {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: -webkit-gradient(linear, left top, left bottom, from(#F5F5F5), to(#EEE));
  background: linear-gradient(180deg, #F5F5F5 0%, #EEE 100%);
  position: relative;
}

.mainVisual__content {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-font-feature-settings: "palt" on;
          font-feature-settings: "palt" on;
}
.mainVisual__content h1 {
  font-size: 6.4rem;
  font-weight: 400;
  font-family: "Dancing Script", cursive;
  margin-bottom: 1.6rem;
}
@media screen and ( max-width: 768px ) {
  .mainVisual__content h1 {
    width: 80%;
    text-align: center;
    font-size: 5rem;
  }
}
.mainVisual__content p {
  font-size: 2.4rem;
  font-weight: 400;
  font-family: "Noto sans JP";
}

.head {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 150;
  opacity: 0;
  background-color: #fff;
}

#top .head {
  background: #F5F5F5;
}

.head__inner {
  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;
  padding: 2.84rem 1.9rem;
}

.head__nav {
  width: 100%;
}
.head__nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4%;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
}
.head__nav li {
  font-weight: 400;
  font-family: "Noto Serif JP";
}

.head__logo {
  width: 12.7rem;
  height: auto;
}
@media screen and ( max-width: 768px ) {
  .head__logo {
    width: 80px;
  }
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 20px;
  position: relative;
  z-index: 200;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #000;
  position: absolute;
  left: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.hamburger span:nth-child(1) {
  top: 20%;
}

.hamburger span:nth-child(2) {
  bottom: 20%;
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }
  .head__nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.9);
    -webkit-transition: 0.3s;
    transition: 0.3s;
    color: #fff;
  }
  .head__nav.active {
    left: 0;
  }
  .head__nav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 100%;
  }
  .head__nav li {
    margin: 20px 0;
  }
  .head__nav li a {
    color: #fff;
  }
}
.hamburger.active span:nth-child(1) {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  background-color: #fff;
}

.hamburger.active span:nth-child(2) {
  bottom: 50%;
  -webkit-transform: translateY(50%) rotate(-45deg);
          transform: translateY(50%) rotate(-45deg);
  background-color: #fff;
}

.concept {
  position: relative;
  --slideX: inset(0 100% 0 0);
}
.concept::after {
  position: absolute;
  content: "";
  display: block;
  width: 49.7%;
  height: 122%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(244, 244, 244, 0.5)), to(rgba(203, 203, 203, 0.5)));
  background: linear-gradient(180deg, rgba(244, 244, 244, 0.5) 0%, rgba(203, 203, 203, 0.5) 100%);
  top: 0;
  left: 0;
  z-index: -1;
  -webkit-clip-path: var(--slideX);
          clip-path: var(--slideX);
}
@media screen and ( max-width: 768px ) {
  .concept::after {
    width: 77.7%;
  }
}

.concept__inner {
  padding: 13.9rem 0 10.3rem;
}
@media screen and ( max-width: 768px ) {
  .concept__inner {
    padding: 10% 0;
  }
}

.concept__content {
  width: 32.15%;
  margin-left: 52.5%;
}
@media screen and ( max-width: 768px ) {
  .concept__content {
    width: 87%;
    margin-left: 10%;
  }
}
.concept__content p {
  margin-bottom: 3rem;
}

.service {
  position: relative;
  --slideX: inset(0 0 0 100%);
}
.service::after {
  position: absolute;
  content: "";
  display: block;
  width: 64.7%;
  height: 161%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(244, 244, 244, 0.5)), to(rgba(203, 203, 203, 0.5)));
  background: linear-gradient(180deg, rgba(244, 244, 244, 0.5) 0%, rgba(203, 203, 203, 0.5) 100%);
  top: 0;
  right: 0;
  z-index: -2;
  -webkit-clip-path: var(--slideX);
          clip-path: var(--slideX);
}

.service__inner {
  padding: 6.6rem 0 3.4rem;
}

.service__content {
  width: 45%;
  margin: 0 auto;
}
@media screen and ( max-width: 768px ) {
  .service__content {
    width: 95%;
  }
}
.service__content p {
  margin-bottom: 5.5rem;
}
.service__content a {
  margin: 0 auto;
}

.swiper-wrapper {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and ( max-width: 768px ) {
  .swiper-wrapper {
    width: 200%;
  }
}

.mv-slider {
  overflow-x: hidden;
}

.slide {
  width: 24%;
  display: grid !important;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
}

.slider1 {
  grid-template-areas: "top top" "bottom-left bottom-right";
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 2fr 1fr;
}
.slider1 .swiper-slide:nth-child(1) {
  grid-area: top;
  width: 90%;
}
.slider1 .swiper-slide:nth-child(2) {
  grid-area: bottom-left;
  width: 85%;
}
.slider1 .swiper-slide:nth-child(3) {
  grid-area: bottom-right;
  width: 60%;
}

.slider2 .swiper-slide:nth-child(1) {
  width: 80%;
}

.slider3 {
  grid-template-areas: "top-left top-right" "bottom bottom";
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 2fr;
}
.slider3 .swiper-slide:nth-child(1) {
  grid-area: top-left;
  width: 75%;
}
.slider3 .swiper-slide:nth-child(2) {
  grid-area: top-right;
  width: 90%;
}
.slider3 .swiper-slide:nth-child(3) {
  grid-area: bottom;
  width: 80%;
}

.spacer {
  height: 100vh;
}

.swiper-slide img {
  -webkit-transition: -webkit-filter 0.3s ease;
  transition: -webkit-filter 0.3s ease;
  transition: filter 0.3s ease;
  transition: filter 0.3s ease, -webkit-filter 0.3s ease;
  -o-object-fit: cover;
     object-fit: cover;
}

.textslider-container {
  width: 100%;
  overflow: hidden;
  padding: 10px 0;
}

.textslider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  white-space: nowrap;
}
.textslider p {
  font-size: 8.8rem;
  font-weight: 700;
  font-family: "Gentium Plus";
  margin: 0;
  padding: 0 20px;
  color: rgba(202, 197, 197, 0.4);
}

.slider-animation {
  margin-bottom: 7.5rem;
}

@media screen and ( max-width: 768px ) {
  .slider {
    width: 200%;
  }
}

.information__content {
  background: rgba(246, 244, 244, 0.5);
}

.information__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.7rem;
  padding: 6.8rem 0;
}

.information__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 3.7rem;
  background: none;
  font-size: 16px;
  font-weight: 300;
}
@media screen and ( max-width: 768px ) {
  .information__item a {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    font-size: 14px;
  }
}

.company {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(246, 246, 246, 0.5)), to(rgba(139, 139, 139, 0.5)));
  background: linear-gradient(180deg, rgba(246, 246, 246, 0.5) 0%, rgba(139, 139, 139, 0.5) 100%);
  text-align: center;
  padding-bottom: 19%;
  margin-bottom: 23.5rem;
  max-height: 543px;
}

.content__btn--white {
  background: #fff !important;
  margin: 0 auto;
  margin-bottom: 5.2rem !important;
}

.company__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  gap: 3%;
  width: 95%;
}

.company__card-item {
  position: relative;
  max-width: 44.1rem;
  opacity: 0;
  overflow: hidden;
  --translateX: translateX(0);
}
.company__card-item::after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #000;
  top: 0;
  left: 0;
  z-index: 1;
  -webkit-transform: var(--translateX);
          transform: var(--translateX);
}

.company__card-text {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  height: 80%;
  background: rgba(0, 0, 0, 0.4);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.company__card-text p {
  color: #FFF;
}
@media screen and ( max-width: 768px ) {
  .company__card-text p {
    font-size: 7.8px;
  }
}
.company__card-text a {
  background: none;
  border: 1px solid #FFF;
  color: #FFF !important;
  border-radius: 24px;
  padding: 1.4rem 5.4rem;
}
@media screen and ( max-width: 768px ) {
  .company__card-text a {
    font-size: 9px;
    padding: 5px 20px;
  }
}

.company__card-text-title {
  font-size: 3.1rem !important;
  font-weight: 500 !important;
  line-height: 1.2;
}
@media screen and ( max-width: 768px ) {
  .company__card-text-title {
    font-size: 12px !important;
  }
}

.company__card-text-text {
  font-weight: 400 !important;
  margin-bottom: 3.2rem;
}
@media screen and ( max-width: 768px ) {
  .company__card-text-text {
    margin-bottom: 1rem;
    font-weight: 300 !important;
  }
}

.company__card-img {
  width: 80%;
  margin-bottom: 2rem;
  margin-top: 3rem;
}
@media screen and ( max-width: 768px ) {
  .company__card-img {
    margin-bottom: 1rem;
    margin-top: 10px;
  }
}

.company__other {
  position: relative;
}

.company__other-title {
  margin-bottom: 3.2rem;
}

footer {
  background: #474747;
  padding: 5.1rem 0 7.6rem;
}
footer img {
  width: 128px;
  margin: 0 auto;
  display: block;
}
@media screen and ( max-width: 768px ) {
  footer img {
    width: 80px;
    margin: 0;
  }
}
@media screen and ( max-width: 768px ) {
  footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    padding: 5%;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 8rem;
  }
}

.footer__nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.4rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 5.1rem;
}
@media screen and ( max-width: 768px ) {
  .footer__nav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0;
    gap: 1rem;
  }
}
.footer__nav a {
  color: #fff !important;
  font-family: "Noto Serif JP", serif;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.8px;
}

#page-service #service {
  margin-bottom: 9.6rem;
}
#page-service #service::after {
  content: none;
}
#page-service .content {
  max-width: 843px;
  margin: 0 auto;
}
#page-service .service__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3.68rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#page-service .service__line {
  width: 100%;
  height: 1px;
  color: rgb(237, 237, 237);
}
#page-service .service__media-wrapper {
  width: 100%;
  height: 100%;
}
#page-service .content__title {
  text-align: center;
  margin-bottom: 3.68rem;
}
#page-service svg {
  display: block;
  margin: 0 auto;
  width: 100%;
  height: auto;
  max-width: 696px;
  overflow: visible;
  opacity: 0;
}
#page-service .service__media-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 843px;
  margin: 0 auto;
  gap: 3.85rem;
  padding: 2.6rem 0;
}
#page-service .service__media-item:nth-last-of-type(odd) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and ( max-width: 768px ) {
  #page-service .service__media-item:nth-last-of-type(odd) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and ( max-width: 768px ) {
  #page-service .service__media-item {
    -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;
  }
}
#page-service .service-item__img {
  width: 240px;
}
#page-service .service-item__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  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;
  gap: 1.8rem;
}
@media screen and ( max-width: 768px ) {
  #page-service .service-item__text {
    padding: 0 5%;
  }
}
#page-service .service-item__text h3 {
  font-size: 2.4rem;
  font-weight: 700;
  font-family: "Gentium Plus";
}
#page-service .service-item__text p {
  font-size: 16px;
  font-weight: 300;
  line-height: 2.4;
}
#page-service .service-item__title p {
  font-size: 16px;
  font-weight: 700;
}
#page-service .works {
  background: none;
  padding-bottom: 7.1rem;
}
#page-service .works .content {
  margin-bottom: 5.46rem;
}
#page-service .works__card-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.6rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 1304px;
  margin: 0 auto;
}
#page-service .works__card-item {
  width: calc(100% - 36px);
  max-width: 633px;
}
#page-service .works-item__img {
  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;
  background-color: #F7F7F7;
}
#page-service .works-item__img img {
  width: auto;
  height: auto;
  max-height: 473px;
  padding: 3% 0;
}
#page-service .works-item__text h3 {
  font-size: 16px;
  font-weight: 400;
  line-height: 240%;
  /* 38.4px */
}
#page-service .works-item__text p {
  font-size: 11px;
  font-weight: 400;
  line-height: 2.4;
}
#page-service .section__inner {
  padding: 0 5%;
}

#page-company .company {
  background: none;
}
#page-company .content__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
#page-company .content__list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  gap: 7.9rem;
  font-weight: 400;
}
@media screen and ( max-width: 768px ) {
  #page-company .content__list li {
    gap: 3rem;
  }
}
#page-company .content__list-title {
  width: 80px;
  text-align: left;
}
#page-company .content__list-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: left;
}
#page-company .section-title {
  margin-bottom: 6.78rem;
}
#page-company .profile {
  padding-bottom: 0;
  margin-bottom: 9.1rem;
}
#page-company .works__media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5.5rem;
  width: 100%;
}
@media screen and ( max-width: 768px ) {
  #page-company .works__media {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3rem;
  }
}
#page-company .message__img {
  width: 52.1%;
  height: auto;
}
@media screen and ( max-width: 768px ) {
  #page-company .message__img {
    margin: 0 auto;
  }
}
#page-company .message__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 0 5%;
}
#page-company .message {
  margin-bottom: 9.17rem;
}
#page-company .company {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(246, 246, 246, 0.5)), to(rgba(139, 139, 139, 0.5)));
  background: linear-gradient(180deg, rgba(246, 246, 246, 0.5) 0%, rgba(139, 139, 139, 0.5) 100%);
  text-align: center;
  padding-bottom: 19%;
  margin-bottom: 23.5rem;
  max-height: 635px;
  padding-top: 9.5rem;
}
#page-company .content__btn--white {
  background: #fff !important;
  margin: 0 auto;
  margin-bottom: 5.2rem !important;
}
#page-company .company__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  gap: 3%;
  width: 95%;
}
#page-company .company__card-item {
  position: relative;
  max-width: 44.1rem;
  opacity: 0;
  overflow: hidden;
  --translateX: translateX(0);
}
#page-company .company__card-item::after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #000;
  top: 0;
  left: 0;
  z-index: 1;
  -webkit-transform: var(--translateX);
          transform: var(--translateX);
}
#page-company .company__card-text {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  height: 80%;
  background: rgba(0, 0, 0, 0.4);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#page-company .company__card-text p {
  color: #FFF;
}
@media screen and ( max-width: 768px ) {
  #page-company .company__card-text p {
    font-size: 7.8px;
  }
}
#page-company .company__card-text a {
  background: none;
  border: 1px solid #FFF;
  color: #FFF !important;
  border-radius: 24px;
  padding: 1.4rem 5.4rem;
}
@media screen and ( max-width: 768px ) {
  #page-company .company__card-text a {
    font-size: 9px;
    padding: 5px 20px;
  }
}
#page-company .company__card-text-title {
  font-size: 3.1rem !important;
  font-weight: 500 !important;
  line-height: 1.2;
}
@media screen and ( max-width: 768px ) {
  #page-company .company__card-text-title {
    font-size: 12px !important;
  }
}
#page-company .company__card-text-text {
  font-weight: 400 !important;
  margin-bottom: 3.2rem;
}
@media screen and ( max-width: 768px ) {
  #page-company .company__card-text-text {
    margin-bottom: 1rem;
    font-weight: 300 !important;
  }
}
#page-company .company__card-img {
  width: 80%;
  margin-bottom: 2rem;
  margin-top: 3rem;
}
@media screen and ( max-width: 768px ) {
  #page-company .company__card-img {
    margin-bottom: 1rem;
    margin-top: 10px;
  }
}
#page-company .company__other {
  position: relative;
}
#page-company .company__other-title {
  margin-bottom: 3.2rem;
}
#page-company .js-fadeIn {
  opacity: 0;
  overflow: visible;
}
#page-company .content p {
  line-height: 2.4;
}

.box {
  padding-bottom: 9.8rem;
  background: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#E6E6E6));
  background: linear-gradient(180deg, #FFF 0%, #E6E6E6 100%);
}

.content__text {
  text-align: center;
}

.content__text-main {
  margin-bottom: 5rem;
}
.content__text-main p {
  color: #000;
  text-align: center;
  font-family: "Noto Serif JP";
  font-size: 2.4rem;
  font-weight: 700 !important;
  line-height: 300%;
  /* 72px */
}

.content__text-sub p {
  color: #000;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 240%;
  /* 38.4px */
}

#page-concept .section-title {
  margin-bottom: 10.5rem;
}

.animate-text {
  overflow: visible;
  opacity: 0;
}/*# sourceMappingURL=style.css.map */