@charset "UTF-8";
/*16px＝1rem*/
html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.6;
  color: #252525;
}

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

a {
  transition: all 0.3s ease;
}
a:hover {
  opacity: 0.8;
}
a:not(.btn-home):hover {
  opacity: 0.7;
}

* {
  box-sizing: border-box;
}

:focus {
  outline: none;
  outline-offset: 2px;
}

::-moz-selection {
  background: #F0EEE9;
  color: #252525;
}

::selection {
  background: #F0EEE9;
  color: #252525;
}

main {
  min-height: 100vh;
  position: relative;
}

@media (prefers-reduced-motion: reduce) {
  *,
*::before,
*::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

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

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

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

/* Remove list styles on ul, ol elements with a class attribute */
/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
}

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

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

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

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

body.scroll-prevent {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
}

.header {
  z-index: 9999;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  height: 80px;
  transition: background-color 0.3s ease;
}
@media screen and (max-width: 900px) {
  .header {
    height: 70px;
  }
}

.header__inner {
  width: 100%;
  padding: 0px 25px;
  display: flex;
  justify-content: space-between;
  height: inherit;
}
@media screen and (max-width: 900px) {
  .header__inner {
    padding: 0 15px;
  }
}

.header-logo {
  display: flex;
  align-items: center;
  max-width: 65px;
  height: auto;
  aspect-ratio: 80/76;
  position: relative;
  z-index: 9999;
}
@media screen and (max-width: 768px) {
  .header-logo {
    max-width: 50px;
    margin-top: 10px;
  }
}
.header-logo .logo__link {
  outline: none;
  border-radius: 4px;
  transition: box-shadow 0.2s ease;
}

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

.header__wrapper {
  display: flex;
  height: inherit;
  align-items: start;
}

.header__nav {
  display: flex;
  align-items: center;
  height: inherit;
}

.header__lists {
  display: flex;
  height: inherit;
  list-style: none;
  gap: 37px;
  padding-left: 130px;
}

.header__item {
  height: inherit;
}

.header__link {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  color: #252525;
  height: inherit;
  display: flex;
  align-items: center;
  padding: 10px 0;
  position: relative;
  transition: color 0.3s ease;
  font-family: "Poppins", sans-serif;
  outline: none;
  text-decoration: none;
}
.header__link:hover {
  color: rgba(37, 37, 37, 0.7);
}
@media screen and (max-width: 1134px) {
  .header__link {
    padding-right: 15px;
    font-size: 12px;
  }
}

.header__wrapper-contact {
  display: flex;
  height: 38px;
  max-width: 170px;
  width: 100%;
  align-items: start;
  margin-top: 20px;
}

.header__link--contact {
  height: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  display: inline-block;
  position: relative;
  padding: 15px 48px;
  color: #FFFEFA;
  max-width: 144px;
  width: 100%;
  outline: none;
}

.hamburger {
  position: fixed;
  z-index: 9999;
  top: 25px;
  right: 30px;
  width: 25px;
  height: 16px;
  cursor: pointer;
  transition: transform 0.3s ease;
  outline: none;
}
@media screen and (max-width: 900px) {
  .hamburger {
    right: 15px;
  }
}
.hamburger:hover {
  transform: scale(1.1);
}

.hamburger span {
  background-color: #252525;
  width: 25px;
  height: 2px;
  position: absolute;
  left: 0;
  display: inline-block;
  transition: all 0.3s ease;
  transform-origin: center center;
  border-radius: 2px;
}

.hamburger span:first-child {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 8px;
}

.hamburger.is-active span:first-child {
  top: 8px;
  transform: rotate(-45deg);
}
.hamburger.is-active span:nth-child(2) {
  top: 8px;
  transform: rotate(45deg);
}

.drawer-menu {
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: 8000;
  top: 0;
  left: 0;
  display: none;
  background-color: rgba(255, 254, 250, 0.98);
  overflow-y: auto;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.drawer-menu__inner {
  padding: 70px 90px;
  padding-top: 130px;
  height: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .drawer-menu__inner {
    padding: 50px 50px;
    padding-top: 100px;
  }
}

.drawer-menu__lists {
  list-style: none;
  align-items: center;
}

.drawer-menu__item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease;
}
.drawer-menu__item:hover {
  transform: translateX(5px);
}

.drawer-menu__link {
  font-size: 23px;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  color: #252525;
  padding-left: 10px;
  position: relative;
  outline: none;
  text-decoration: none;
}
.drawer-menu__link::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 10px;
  width: 0;
  height: 2px;
  background-color: #252525;
  transition: width 0.3s ease;
}
.drawer-menu__link:hover::after {
  width: calc(100% - 10px);
}

.drawer-menu__contact-item {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
  transition: transform 0.3s ease;
}
.drawer-menu__contact-item:hover {
  transform: scale(1.05);
}

.drawer-btn__top {
  font-size: 16px;
}

.drawer-btn__bottom {
  font-size: 10px;
}

.drawer-menu__link span {
  background-color: #252525;
  width: 2px;
  height: 8px;
  position: absolute;
  display: inline-block;
}

.drawer-menu__link span:first-child {
  transform: rotate(140deg);
  top: 18px;
  right: 23px;
}

.drawer-menu__link span:last-child {
  transform: rotate(-140deg);
  top: 23px;
  right: 23px;
}

.company-mv__inner-1 {
  position: relative;
  padding-bottom: 300px;
  z-index: 100;
}
@media screen and (max-width: 1024px) {
  .company-mv__inner-1 {
    padding-bottom: 30px;
  }
}

.company__img {
  position: absolute;
  top: 32%;
  left: 50%;
  transform: translateX(-50%);
  max-width: 1200px;
  width: 100%;
  height: auto;
  aspect-ratio: 1200/480;
  z-index: 1;
  margin-top: 90px;
}
@media screen and (max-width: 1024px) {
  .company__img {
    position: static;
    transform: none;
    margin-top: 30px;
  }
}
@media screen and (max-width: 768px) {
  .company__img {
    aspect-ratio: 360/190;
  }
}

.company__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}

.company__img-sub {
  padding-top: 380px;
  max-width: 1372px;
  width: 100%;
  height: auto;
  aspect-ratio: 1372/184;
  margin-inline: auto;
  text-align: left;
}
@media screen and (max-width: 1024px) {
  .company__img-sub {
    padding-top: 50px;
  }
}

.summary {
  background-color: #F5F5F5;
  padding-top: 86px;
}

.summary__item {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #000;
  padding: 50px 0;
}
@media screen and (max-width: 768px) {
  .summary__item {
    padding: 30px 0;
    align-items: flex-start;
  }
}

.summary__title {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .summary__title {
    font-size: 14px;
    margin-bottom: 28px;
  }
}

.summary__subtitle p {
  text-align: center;
  font-size: 28px;
  font-weight: 300;
  line-height: 2;
  margin-bottom: 16px;
  color: #252525;
}
@media screen and (max-width: 768px) {
  .summary__subtitle p {
    font-size: 20px;
    margin-bottom: 14px;
    text-align: left;
  }
}

.summary__text p {
  text-align: center;
  line-height: 1.7;
  font-size: 16px;
  font-weight: 300;
  color: #252525;
}
@media screen and (max-width: 768px) {
  .summary__text p {
    font-size: 12px;
    text-align: left;
  }
}

.profile {
  background-color: #F5F5F5;
  padding-top: 160px;
}
@media screen and (max-width: 768px) {
  .profile {
    padding-top: 100px;
  }
}

.aside-title {
  margin-bottom: 50px;
}

.aside-title__main {
  height: 77px;
  font-size: 64px;
  font-weight: 300;
  font-family: "Poppins", sans-serif;
  color: #252525;
}
@media screen and (max-width: 768px) {
  .aside-title__main {
    font-size: 30px;
    height: 40px;
  }
}

.aside-title__sub {
  margin-top: 15px;
  font-size: 12px;
  font-weight: 700;
  color: #252525;
}
@media screen and (max-width: 768px) {
  .aside-title__sub {
    font-size: 10px;
    margin-top: 6px;
  }
}

.profile__content {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  max-width: 1250px;
}

.profile__info {
  width: 100%;
}

.profile__list {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.profile__list dt {
  font-size: 18px;
  font-weight: 500;
  color: #252525;
  width: 30%;
  padding-top: 36px;
  padding-bottom: 33px;
  border-top: solid 1px #cccccc;
  margin-right: 40px;
}
.profile__list dd {
  font-size: 15px;
  font-weight: 300;
  color: #252525;
  width: 66.6%;
  padding-top: 39px;
  padding-bottom: 36px;
  border-top: solid 1px #cccccc;
}
.profile__list dd span {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 1228px) {
  .profile__list dt,
.profile__list dd {
    text-align: left;
    padding-bottom: 0;
  }
  .profile__list dt {
    padding-top: 30px;
    margin-right: 0;
  }
  .profile__list dd {
    padding-top: 30px;
  }
}
@media screen and (max-width: 768px) {
  .profile__list dt {
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
  }
  .profile__list dd {
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 10px 0;
  }
}
.profile__list dt:nth-of-type(6) {
  padding-top: 46px;
  border-bottom: solid 1px #cccccc;
}
@media screen and (max-width: 1228px) {
  .profile__list dt:nth-of-type(6) {
    padding-top: 35px;
  }
}
@media screen and (max-width: 768px) {
  .profile__list dt:nth-of-type(6) {
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
  }
}
.profile__list dd:nth-of-type(6) {
  padding-top: 36px;
  border-bottom: solid 1px #cccccc;
}
@media screen and (max-width: 1228px) {
  .profile__list dd:nth-of-type(6) {
    padding-top: 25px;
  }
}
@media screen and (max-width: 768px) {
  .profile__list dd:nth-of-type(6) {
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 10px 0;
  }
}

.profile__area {
  display: flex;
}
@media screen and (max-width: 1228px) {
  .profile__area {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  .profile__area {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
}

.profile__adres {
  padding-left: 10px;
}
@media screen and (max-width: 768px) {
  .profile__adres {
    padding-left: 0;
    padding-top: 7px;
  }
}

.member {
  background-color: #F5F5F5;
  padding-top: 160px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .member {
    padding: 80px 0;
  }
}

.member__inner {
  position: relative;
}

.member-slider {
  margin-top: 185px;
  background-color: #F0EEE9;
}
@media screen and (max-width: 768px) {
  .member-slider {
    margin-top: 100px;
  }
}

.aside-title {
  margin-bottom: 50px;
}

.aside-title__main {
  height: 77px;
  font-size: 64px;
  font-weight: 300;
  font-family: "Poppins", sans-serif;
  color: #252525;
}
@media screen and (max-width: 768px) {
  .aside-title__main {
    font-size: 30px;
    height: 40px;
  }
}

.aside-title__sub {
  margin-top: 15px;
  font-size: 12px;
  font-weight: 700;
  color: #252525;
}
@media screen and (max-width: 768px) {
  .aside-title__sub {
    font-size: 10px;
    margin-top: 6px;
  }
}

.member-slider__swiper {
  margin-top: 50px;
  margin-right: calc(50% - 50vw);
}
@media screen and (max-width: 480px) {
  .member-slider__swiper {
    margin-right: 0;
    padding-right: 0;
  }
}

/* スライダーのナビゲーションボタン用のコンテナ */
.member-slider__nav {
  position: absolute;
  top: 50px;
  right: 5%;
  display: flex;
  gap: 10px;
  z-index: 1;
}
@media screen and (max-width: 560px) {
  .member-slider__nav {
    position: relative;
    top: 20px;
    right: auto;
    justify-content: center;
    margin-top: 20px;
  }
}

.member-slide {
  max-width: 393px;
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.member-slide__img {
  max-width: 393px;
  width: 100%;
  height: auto;
  aspect-ratio: 393/300;
  text-align: center;
  border-radius: 10px;
}
.member-slide__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.member-slide__text-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 25px;
  padding-left: 10px;
  padding-right: 10px;
}

.member-slide__text-name {
  font-size: 1.375rem;
  font-weight: 500;
  color: #000;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.2em;
}
@media screen and (max-width: 768px) {
  .member-slide__text-name {
    font-size: 1.125rem;
  }
}

.member-slide__text-position {
  font-size: 0.875rem;
  font-weight: 300;
  color: #000;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.2em;
}
@media screen and (max-width: 768px) {
  .member-slide__text-position {
    font-size: 0.75rem;
  }
}

/* 前への矢印 */
.swiper-button-prev {
  position: relative;
  left: auto;
  top: auto;
  width: 64px;
  height: 64px;
  background-color: #000;
  border-radius: 50%;
  margin: 0;
}
.swiper-button-prev::after {
  content: "";
  width: 12px;
  height: 12px;
  border-top: 2px solid #FFFEFA;
  border-left: 2px solid #FFFEFA;
  transform: rotate(-45deg);
  margin-left: 5px;
}

/* 次への矢印 */
.swiper-button-next {
  position: relative;
  right: auto;
  top: auto;
  width: 64px;
  height: 64px;
  background-color: #000;
  border-radius: 50%;
  margin: 0;
}
.swiper-button-next::after {
  content: "";
  width: 12px;
  height: 12px;
  border-top: 2px solid #FFFEFA;
  border-right: 2px solid #FFFEFA;
  transform: rotate(45deg);
  margin-right: 5px;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  text-rendering: initial;
}

.service {
  background-color: #F5F5F5;
  padding-top: 50px;
}

.service-mask-bg {
  padding-top: 180px;
}
@media screen and (max-width: 768px) {
  .service-mask-bg {
    padding-top: 30px;
    padding-bottom: 50px;
  }
}

.section-title {
  position: relative;
}

.section-title__main {
  font-size: 80px;
  font-weight: 300;
  color: #000;
  font-family: "Poppins", sans-serif;
  margin-top: 10px;
}
@media screen and (max-width: 900px) {
  .section-title__main {
    font-size: 50px;
  }
}
@media screen and (max-width: 768px) {
  .section-title__main {
    font-size: 40px;
    line-height: 1;
  }
}

.section-title__sub {
  margin-top: 4px;
  font-size: 18px;
  font-weight: 700;
  color: #000;
}
@media screen and (max-width: 768px) {
  .section-title__sub {
    margin-top: 15px;
  }
}

.section-title__primary {
  position: absolute;
  right: 0;
  top: 65%;
  font-size: 12px;
  font-weight: 500;
}

.service__img {
  margin-top: 90px;
  max-width: 1200px;
  width: 100%;
  height: auto;
  aspect-ratio: 1200/480;
}
@media screen and (max-width: 768px) {
  .service__img {
    margin-top: 50px;
    aspect-ratio: 360/190;
  }
}

.service__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.service__items {
  max-width: 1200px;
  border-bottom: 1px solid #8B8985;
  border-top: 1px solid #8B8985;
  margin-top: 70px;
  padding: 40px 0px;
}
@media screen and (max-width: 768px) {
  .service__items {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    justify-content: center;
    align-items: center;
  }
}

.service__item {
  width: 100%;
  height: 232px;
  display: flex;
  justify-content: center;
  gap: 40px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .service__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }
}
@media screen and (max-width: 375px) {
  .service__item {
    gap: 10px;
  }
}
.service__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .service__item::before {
    opacity: 1;
  }
}
.service__item:hover .service__number-black,
.service__item:hover .service__title-black,
.service__item:hover .service__text-black {
  color: #FFFEFA;
  transition: color 0.3s ease;
}
.service__item:hover .service__circle {
  opacity: 1;
}
.service__item:hover::before {
  opacity: 1;
}

.service__item {
  position: relative;
}

.service__item-1 {
  border-bottom: 1px solid #8B8985;
}
.service__item-1::before {
  background: linear-gradient(rgba(0, 0, 0, 0.01), rgba(0, 0, 0, 0.01)), url(../images/service/service-img4.webp) center/cover no-repeat;
}
@media screen and (max-width: 420px) {
  .service__item-1::before {
    background: linear-gradient(rgba(0, 0, 0, 0.01), rgba(0, 0, 0, 0.01)), url(../images/service/service-item-sp1.webp) center/cover no-repeat;
  }
}

.service__item-2 {
  border-bottom: 1px solid #8B8985;
}
.service__item-2::before {
  background: linear-gradient(rgba(0, 0, 0, 0.01), rgba(0, 0, 0, 0.01)), url(../images/service/service-img2-new.webp) center/cover no-repeat;
}
@media screen and (max-width: 420px) {
  .service__item-2::before {
    background: linear-gradient(rgba(0, 0, 0, 0.01), rgba(0, 0, 0, 0.01)), url(../images/service/service-img2-sp.webp) center/cover no-repeat;
  }
}

.service__item-3::before {
  background: linear-gradient(rgba(0, 0, 0, 0.01), rgba(0, 0, 0, 0.01)), url(../images/service/service-img5.webp) center/cover no-repeat;
}
@media screen and (max-width: 420px) {
  .service__item-3::before {
    background: linear-gradient(rgba(0, 0, 0, 0.01), rgba(0, 0, 0, 0.01)), url(../images/service/service-item-sp3.webp) center/cover no-repeat;
  }
}

.service__number {
  font-size: 14px;
  color: #FFFEFA;
  font-weight: 300;
  font-family: "Poppins", sans-serif;
  text-align: justify;
  margin-top: 30px;
  margin-left: 30px;
}
@media screen and (max-width: 768px) {
  .service__number {
    font-size: 12px;
    margin-top: 10px;
    margin-right: auto;
    margin-left: 0px;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .service__number {
    padding-left: 15px;
  }
}
.service__number-black {
  color: #000;
}
@media screen and (max-width: 768px) {
  .service__number-black {
    font-size: 12px;
    margin-top: 10px;
    margin-right: auto;
    margin-left: 0px;
    color: #FFFEFA;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .service__number-black {
    padding-left: 15px;
  }
}

.service__content {
  width: 100%;
  flex: 1;
  display: flex;
  align-items: center;
  gap: 30px;
  padding-right: 40px;
}
@media screen and (max-width: 768px) {
  .service__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    padding-right: 0;
    width: 100%;
  }
}
@media screen and (max-width: 375px) {
  .service__content {
    gap: 10px;
  }
}

.service__title {
  width: 45%;
  font-size: 24px;
  font-weight: 300;
  color: #F0EEE9;
  flex-shrink: 0;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .service__title {
    width: 100%;
    font-size: 20px;
    margin-right: auto;
    margin-left: auto;
    text-align: left;
    padding: 0 15px;
    line-height: 1.7;
  }
}
.service__title-black {
  color: #000;
}
@media screen and (max-width: 768px) {
  .service__title-black {
    width: 100%;
    font-size: 20px;
    margin-right: auto;
    margin-left: auto;
    text-align: left;
    padding: 0 30px;
    color: #FFFEFA;
    line-height: 1.7;
  }
}
@media screen and (max-width: 375px) {
  .service__title-black {
    padding: 0 15px;
  }
}

.service__text {
  width: 48.3%;
  font-size: 15px;
  line-height: 1.7;
  color: #F0EEE9;
  flex: 1;
}
@media screen and (max-width: 768px) {
  .service__text {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding: 0 30px;
    font-size: 15px;
    text-align: left;
    font-size: 13px;
    line-height: 1.7;
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 375px) {
  .service__text {
    padding: 0 15px 20px 15px;
  }
}
.service__text-black {
  color: #000;
}
@media screen and (max-width: 768px) {
  .service__text-black {
    font-size: 13px;
    color: #FFFEFA;
  }
}

.service__circle {
  position: absolute;
  width: 60px;
  height: 60px;
  background-color: #F0EEE9;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  will-change: transform;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .service__circle {
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
  }
}

.service__circle div {
  font-family: "Helvetica", sans-serif;
  position: absolute;
  font-weight: 500;
  font-size: 24.36px;
  color: #000;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  border-color: #F0EEE9;
  transform: rotate(-45deg);
}
@media screen and (max-width: 768px) {
  .service__circle div {
    font-size: 15px;
  }
}

.service__recrute-box {
  background-image: url(../images/top/recruit-top.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px;
  border-radius: 20px;
  margin-top: 200px;
}
@media screen and (max-width: 900px) {
  .service__recrute-box {
    padding: 40px 25px;
    margin-top: 100px;
  }
}

.service__recrute-box-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  height: 100%;
}
@media screen and (max-width: 900px) {
  .service__recrute-box-wrapper {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
  }
}

.service__recrute-title {
  font-size: 44px;
  font-weight: 300;
  letter-spacing: 0.02em;
  color: #F0EEE9;
  font-family: "Poppins", sans-serif;
}
@media screen and (max-width: 768px) {
  .service__recrute-title {
    font-size: 20px;
  }
}

.service__recrute-subtitle {
  margin-top: 5px;
  font-size: 12px;
  font-weight: 700;
  color: #F0EEE9;
}

.service__recrute-text {
  margin-top: 88px;
  font-size: 15px;
  font-weight: 500;
  color: #F0EEE9;
  letter-spacing: 0.04em;
  line-height: 2;
}
@media screen and (max-width: 1024px) {
  .service__recrute-text {
    margin-top: 40px;
  }
}
@media screen and (max-width: 768px) {
  .service__recrute-text {
    margin-top: 20px;
  }
}

.service-detail {
  background-color: #F5F5F5;
  position: relative;
  padding-bottom: 200px;
  padding-top: 180px;
}
@media screen and (max-width: 768px) {
  .service-detail {
    padding-top: 80px;
  }
}

.service-detail-slider__inner {
  position: relative;
}

.service-detail-top__text {
  margin-top: 40px;
  font-size: 16px;
  font-weight: 300;
  color: #000;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 170%; /* 27.2px */
}

.service-detail-slider {
  margin-top: 185px;
  background-color: #F5F5F5;
}
@media screen and (max-width: 768px) {
  .service-detail-slider {
    margin-top: 100px;
  }
}

.service-detail-slider__title {
  font-size: 2.25rem;
  font-weight: 500;
  color: #000;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.2em;
  padding-top: 2rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .service-detail-slider__title {
    font-size: 1.5rem;
  }
}

.service-detail-slider__title::before {
  content: "what we can do";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  font-family: "Poppins", sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  color: #000;
  line-height: 1.2em;
}
@media screen and (max-width: 768px) {
  .service-detail-slider__title::before {
    font-size: 0.875rem;
  }
}

.service-detail-slider__swiper {
  margin-top: 50px;
  margin-right: calc(50% - 50vw);
  padding-right: 180px;
}
@media screen and (max-width: 480px) {
  .service-detail-slider__swiper {
    margin-right: 0;
    padding-right: 0;
  }
}

/* スライダーのナビゲーションボタン用のコンテナ */
.service-detail-slider__nav {
  position: absolute;
  top: 50px;
  right: 5%;
  display: flex;
  gap: 10px;
  z-index: 1;
}
@media screen and (max-width: 560px) {
  .service-detail-slider__nav {
    position: relative;
    top: 20px;
    right: auto;
    justify-content: center;
    margin-top: 20px;
  }
}

.service-detail-slide {
  position: relative;
  background-color: #FFFEFA;
  max-width: 393px;
  width: 100%;
  height: auto;
  aspect-ratio: 393/355;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.service-detail-slide__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  max-width: 293px;
  width: 100%;
  padding: 20px;
}
@media screen and (max-width: 480px) {
  .service-detail-slide__content {
    padding: 10px 10px 20px 10px;
  }
}

.service-detail-slide__number {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 0.75rem;
  font-weight: 500;
  color: #000;
  font-family: "Poppins", sans-serif;
}

.service-detail-slide__title {
  font-size: 1.5rem;
  font-weight: 500;
  color: #000;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.2em;
  text-align: left;
  padding-top: 50px;
}

.service-detail-slide__img {
  max-width: 126.16px;
  width: 100%;
  height: auto;
  aspect-ratio: 126.16/94;
  text-align: center;
}
.service-detail-slide__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.service-detail-slide__text {
  font-size: 1rem;
  font-weight: 300;
  color: #000;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.75em;
  text-align: left;
}

/* 前への矢印 */
.swiper-button-prev {
  position: relative;
  left: auto;
  top: auto;
  width: 64px;
  height: 64px;
  background-color: #000;
  border-radius: 50%;
  margin: 0;
}
.swiper-button-prev::after {
  content: "";
  width: 12px;
  height: 12px;
  border-top: 2px solid #FFFEFA;
  border-left: 2px solid #FFFEFA;
  transform: rotate(-45deg);
  margin-left: 5px;
}

/* 次への矢印 */
.swiper-button-next {
  position: relative;
  right: auto;
  top: auto;
  width: 64px;
  height: 64px;
  background-color: #000;
  border-radius: 50%;
  margin: 0;
}
.swiper-button-next::after {
  content: "";
  width: 12px;
  height: 12px;
  border-top: 2px solid #FFFEFA;
  border-right: 2px solid #FFFEFA;
  transform: rotate(45deg);
  margin-right: 5px;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  text-rendering: initial;
}

.challenges {
  margin-top: -106px;
  background: #E9E6DB;
  -webkit-clip-path: ellipse(92% 50% at 50% 50%);
  clip-path: ellipse(92% 50% at 50% 50%);
  padding-bottom: 130px;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .challenges {
    -webkit-clip-path: ellipse(100% 50% at 50% 50%);
    clip-path: ellipse(100% 50% at 50% 50%);
  }
}
@media screen and (max-width: 480px) {
  .challenges {
    -webkit-clip-path: ellipse(156% 50% at 50% 50%);
    clip-path: ellipse(156% 50% at 50% 50%);
  }
}

.challenges__inner {
  padding: 150px 0;
}
@media screen and (max-width: 768px) {
  .challenges__inner {
    padding: 80px 0;
  }
}
@media screen and (max-width: 375px) {
  .challenges__inner {
    padding: 50px 0;
  }
}

.challenges__title {
  font-size: 2.25rem;
  font-weight: 500;
  color: #000;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.2em;
  padding-top: 2rem;
  position: relative;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .challenges__title {
    font-size: 1.5rem;
  }
}

.challenges__title::before {
  content: "Common challenges";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  font-family: "Poppins", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #000;
  line-height: 1.2em;
}

.challenges__lists {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding-top: 50px;
  list-style: none;
}
@media screen and (max-width: 768px) {
  .challenges__lists {
    grid-template-columns: 1fr;
  }
}

.challenges__list {
  background: #FFFEFA;
  border-radius: 10px;
  padding: 20px;
}

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

.challenges__list-text {
  font-size: 1rem;
  font-weight: 300;
  color: #000;
  font-family: "Zen Kaku Gothic New", sans-serif;
  position: relative;
  padding-left: 40px;
  line-height: 2em;
}

.challenges__list-text::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  margin: auto 0;
  width: 32px;
  height: 32px;
  display: inline-block;
  background-image: url(../images/service/check-icon.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 10px;
}

.commitment {
  position: relative;
  background-color: #FFFEFA;
  padding-top: 128px;
  margin-top: -128px;
  padding-bottom: 170px;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .commitment {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}

.commitment__wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 106px;
  height: auto;
}
@media screen and (max-width: 1024px) {
  .commitment__wrapper {
    gap: 50px;
  }
}
@media screen and (max-width: 768px) {
  .commitment__wrapper {
    flex-direction: column;
    align-items: center;
    gap: 50px;
  }
}

@media screen and (max-width: 1024px) {
  .commitment__content {
    width: 40%;
  }
}
@media screen and (max-width: 768px) {
  .commitment__content {
    width: auto;
  }
}

.commitment__title {
  font-size: 2.25rem;
  font-weight: 500;
  color: #000;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.6em;
  padding-top: 2rem;
  position: relative;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .commitment__title {
    font-size: 1.5rem;
  }
}

.commitment__title::before {
  content: "Commitment";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  font-family: "Poppins", sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  color: #000;
  line-height: 1.2em;
}
@media screen and (max-width: 768px) {
  .commitment__title::before {
    font-size: 0.875rem;
  }
}

.commitment-images {
  margin-top: 66px;
  position: relative;
  height: 560px;
}
@media screen and (max-width: 768px) {
  .commitment-images {
    height: 425px;
  }
}

.commitment__img {
  max-width: 368px;
  width: 100%;
  height: auto;
  aspect-ratio: 368/480;
  position: absolute;
  top: 0;
  left: 0;
}
.commitment__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.commitment__img-under {
  max-width: 234px;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  position: absolute;
  bottom: 0;
  right: -27px;
  z-index: 100;
  border-radius: 10px;
}
.commitment__img-under img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .commitment__img-under {
    bottom: -16px;
    right: -15px;
  }
}

.commitment__lists {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}
@media screen and (max-width: 1024px) {
  .commitment__lists {
    width: 60%;
  }
}
@media screen and (max-width: 768px) {
  .commitment__lists {
    width: 100%;
  }
}

.commitment__item {
  list-style: none;
  padding: 30px 5px;
  position: relative;
  border-bottom: 1px solid #000;
}

.commitment__item:first-child {
  border-top: 1px solid #000;
}

.commitment__item {
  padding-left: 30px;
}
@media screen and (max-width: 768px) {
  .commitment__item {
    padding-left: 30px;
  }
}

.commitment__item:nth-child(1)::after {
  content: "( Setting )";
  position: absolute;
  top: 50%;
  left: 0;
  height: 100%;
  text-align: center;
  transform: translateY(-50%);
  font-size: 0.6875rem;
  font-weight: 300;
  color: #000;
  font-family: "Poppins", sans-serif;
  line-height: 1.2em;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.commitment__item:nth-child(2)::before {
  content: "( Communicate )";
  position: absolute;
  top: 50%;
  left: 0;
  height: 100%;
  text-align: center;
  transform: translateY(-50%);
  font-size: 0.6875rem;
  font-weight: 300;
  color: #000;
  font-family: "Poppins", sans-serif;
  line-height: 1.2em;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.commitment__item:nth-child(3)::before {
  content: "( Design )";
  position: absolute;
  top: 50%;
  left: 0;
  height: 100%;
  text-align: center;
  transform: translateY(-50%);
  font-size: 0.6875rem;
  font-weight: 300;
  color: #000;
  font-family: "Poppins", sans-serif;
  line-height: 1.2em;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.commitment__item:nth-child(4)::before {
  content: "( Marketing )";
  position: absolute;
  top: 50%;
  left: 0;
  height: 100%;
  text-align: center;
  transform: translateY(-50%);
  font-size: 0.6875rem;
  font-weight: 300;
  color: #000;
  font-family: "Poppins", sans-serif;
  line-height: 1.2em;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.commitment__item:nth-child(5)::before {
  content: "( Maximize effectiveness )";
  position: absolute;
  top: 50%;
  left: 0;
  height: 100%;
  text-align: center;
  transform: translateY(-50%);
  font-size: 0.6875rem;
  font-weight: 300;
  color: #000;
  font-family: "Poppins", sans-serif;
  line-height: 1.2em;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.commitment__item-title {
  font-size: 1.5rem;
  font-weight: 500;
  color: #000;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.75em;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .commitment__item-title {
    font-size: 1.25rem;
  }
}

.commitment__item-text {
  font-size: 1rem;
  font-weight: 300;
  color: #000;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.75em;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .commitment__item-text {
    font-size: 0.875rem;
  }
}

.features {
  background-color: #F5F5F5;
  padding-top: 143px;
  padding-bottom: 160px;
}
@media screen and (max-width: 768px) {
  .features {
    padding-top: 100px;
    padding-bottom: 30px;
  }
}

.features__title {
  font-size: 2.25rem;
  font-weight: 500;
  color: #000;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.6em;
  padding-top: 2rem;
  position: relative;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .features__title {
    font-size: 1.5rem;
  }
}

.features__title::before {
  content: "Features";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Poppins", sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #000;
  line-height: 1.2em;
}
@media screen and (max-width: 768px) {
  .features__title::before {
    font-size: 0.875rem;
  }
}

.features__contents {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding-top: 50px;
}
@media screen and (max-width: 768px) {
  .features__contents {
    grid-template-columns: 1fr;
  }
}

.features__content {
  background-color: #FFFEFA;
  border-radius: 10px;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: left;
  gap: 18px;
}
@media screen and (max-width: 768px) {
  .features__content {
    padding: 25px;
  }
}

.features__content-title {
  font-size: 1.5rem;
  font-weight: 500;
  color: #000;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.21em;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .features__content-title {
    font-size: 1.25rem;
  }
}

.features__content-text {
  font-size: 0.9375rem;
  font-weight: 300;
  color: #000;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.75em;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .features__content-text {
    font-size: 0.875rem;
  }
}

.service-detail-slider-2 {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
.service-detail-slider-2::before, .service-detail-slider-2::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 50%;
  left: 0;
}
.service-detail-slider-2::before {
  top: 0;
  background-color: #F5F5F5;
}
.service-detail-slider-2::after {
  bottom: 0;
  background-color: #FFFEFA;
}
.service-detail-slider-2 .service-detail-slider__swiper2 {
  position: relative;
  z-index: 1;
  width: 100%;
  overflow: visible;
}

.service-detail-slider__wrapper2 {
  transition-timing-function: linear !important;
}

.service-detail-slider__slide2 {
  width: auto;
  height: auto;
}

.service-detail-slider__img2 {
  width: 100%;
  height: 100%;
}
.service-detail-slider__img2 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}

.service-detail-slider__img-2-1 {
  max-width: 523px;
  width: 100%;
  height: auto;
  aspect-ratio: 523/370;
}
@media screen and (max-width: 768px) {
  .service-detail-slider__img-2-1 {
    max-width: 100%;
  }
}

.service-detail-slider__img-2-2 {
  max-width: 380px;
  width: 100%;
  height: auto;
  aspect-ratio: 380/540;
}
@media screen and (max-width: 768px) {
  .service-detail-slider__img-2-2 {
    max-width: 100%;
  }
}

.service-detail-slider__img-2-3 {
  max-width: 320px;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 768px) {
  .service-detail-slider__img-2-3 {
    max-width: 100%;
  }
}

.service-detail-slider__img-2-4 {
  max-width: 652px;
  width: 100%;
  height: auto;
  aspect-ratio: 652/470;
}
@media screen and (max-width: 768px) {
  .service-detail-slider__img-2-4 {
    max-width: 100%;
  }
}

.flow {
  background-color: #FFFEFA;
  padding-top: 210px;
  padding-bottom: 160px;
}
@media screen and (max-width: 768px) {
  .flow {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media screen and (max-width: 480px) {
  .flow {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.flow__title {
  font-size: 2.25rem;
  font-weight: 500;
  color: #000;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.6em;
  padding-top: 2rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .flow__title {
    font-size: 1.5rem;
  }
}

.flow__title::before {
  content: "Flow";
  position: absolute;
  top: 0;
  left: 0;
  font-family: "Poppins", sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  color: #000;
  line-height: 1.2em;
}
@media screen and (max-width: 768px) {
  .flow__title::before {
    font-size: 0.875rem;
  }
}

.flow__lists {
  list-style: none;
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
}

.flow__list {
  border-bottom: 1px solid #000;
  border-top: 1px solid #000;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 20px 0;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .flow__list {
    flex-direction: column;
    align-items: flex-start;
    border-top: none;
  }
}

.flow__list::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 37px 0 37px;
  border-color: #000 transparent transparent transparent;
}

.flow__list:last-child::after {
  display: none;
}

.flow__list-number {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 300;
  color: #000;
  font-family: "Poppins", sans-serif;
  line-height: 1.2em;
  text-align: center;
  position: relative;
  padding-top: 19px;
  border-right: 1px solid #000;
  height: 107px;
  max-width: 121px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .flow__list-number {
    font-size: 0.75rem;
    height: 30px;
    text-align: left;
    border-right: none;
    justify-content: flex-start;
    padding-left: 33px;
    padding-top: 0;
  }
}

.flow__list-number::after {
  content: "STEP";
  position: absolute;
  top: 23px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1rem;
  font-weight: 300;
  color: #000;
  font-family: "Poppins", sans-serif;
  line-height: 1.2em;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .flow__list-number::after {
    font-size: 0.75rem;
    left: 1px;
    top: 50%;
    transform: translateY(-50%);
  }
}

.flow__list-text-wrap {
  display: flex;
  width: 100%;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .flow__list-text-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}

.flow__list-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #000;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.45em;
  text-align: center;
  max-width: 203px;
  width: 100%;
  margin: 0 30px;
}
@media screen and (max-width: 1024px) {
  .flow__list-title {
    font-size: 20px;
    margin: 0 15px;
    max-width: 190px;
  }
}
@media screen and (max-width: 768px) {
  .flow__list-title {
    margin: 0px;
    max-width: 100%;
    text-align: left;
  }
}

.flow__list-text {
  font-size: 1rem;
  font-weight: 300;
  color: #000;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.75em;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .flow__list-text {
    font-size: 0.875rem;
    margin-top: 10px;
  }
}

.faq {
  padding: 120px 0;
  background-color: #F5F5F5;
}
.faq__wrapper {
  display: flex;
  justify-content: space-between;
  gap: clamp(30px, (100vw - 375px) / 1065 * 173 + 30px, 203px);
}
@media screen and (max-width: 768px) {
  .faq__wrapper {
    flex-direction: column;
    gap: 30px;
  }
}
.faq__title {
  font-size: 4rem;
  font-weight: 300;
  color: #000;
  font-family: "Poppins", sans-serif;
  line-height: 1.2em;
  text-align: left;
  padding-bottom: 32px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .faq__title {
    font-size: 2rem;
    padding-bottom: 20px;
  }
}
.faq__title::before {
  content: "・よくあるご質問";
  font-size: 0.75rem;
  font-weight: 700;
  color: #000;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.2em;
  text-align: left;
  position: absolute;
  top: 80px;
  left: 0;
}
@media screen and (max-width: 768px) {
  .faq__title::before {
    font-size: 0.625rem;
    top: 36px;
  }
}
.faq__list {
  border-bottom: 1px solid #E5E5E5;
}
.faq__list:first-child {
  border-top: 1px solid #E5E5E5;
}
.faq__list-question {
  position: relative;
  padding: 24px 60px 24px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.faq__list-number {
  font-size: 0.75rem;
  font-weight: 300;
  color: #252525;
  font-family: "Poppins", sans-serif;
  line-height: 1.5;
  text-align: center;
  padding: 0 14px;
}
.faq__list-question-text {
  font-size: 16px;
  font-weight: bold;
}
.faq__list-icon {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
}
.faq__list-icon::before, .faq__list-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 15px;
  height: 2px;
  background-color: #333;
  transition: transform 0.3s ease;
}
.faq__list-icon::before {
  transform: translate(-50%, -50%);
}
.faq__list-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.faq__list-answer {
  padding: 0 20px;
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}
.faq__list-answer-text {
  padding-bottom: 24px;
  font-size: 14px;
  line-height: 1.8;
}
.faq__list.is-open .faq__list-answer {
  height: auto;
  opacity: 1;
}
.faq__list.is-open .faq__list-icon::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq__lists {
  list-style: none;
}

@media screen and (max-width: 768px) {
  .faq {
    padding: 80px 0;
  }
  .faq__title {
    font-size: 28px;
  }
  .faq__list-question {
    padding: 20px 50px 20px 0;
  }
  .faq__list-question-text {
    font-size: 15px;
  }
  .faq__list-answer-text {
    font-size: 13px;
  }
}
.mv {
  width: 100%;
  background-color: #F5F5F5;
}

.mv-mask {
  padding-top: 200px;
}
@media screen and (max-width: 768px) {
  .mv-mask {
    padding-top: 80px;
  }
}

.mv__inner-1 {
  max-width: 1250px;
  width: 100%;
  padding-left: 30px;
  padding-right: 30px;
  margin-right: auto;
  margin-left: auto;
  position: relative;
  display: grid;
  place-content: center;
  padding-bottom: 300px;
  z-index: 100;
}
@media screen and (max-width: 1024px) {
  .mv__inner-1 {
    padding-bottom: 41px;
  }
}

.mv__img-text {
  max-width: 483px;
  width: 100%;
  height: auto;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .mv__img-text {
    margin-top: 60px;
  }
}

.mv-text {
  font-size: 8.75rem;
  font-weight: 400;
  color: #252525;
  font-family: "Poppins", sans-serif;
  text-align: center;
  position: relative;
  display: flex;
  align-items: start;
  justify-content: center;
  line-height: 1.1;
}
@media screen and (max-width: 1024px) {
  .mv-text {
    font-size: 7.5rem;
  }
}
@media screen and (max-width: 900px) {
  .mv-text {
    font-size: 5.875rem;
  }
}
@media screen and (max-width: 768px) {
  .mv-text {
    font-size: 4.375rem;
  }
}
@media screen and (max-width: 560px) {
  .mv-text {
    font-size: 2.5rem;
  }
}

.mv-text__the {
  font-size: 1.125rem;
  font-weight: 300;
  color: #252525;
  font-family: "Poppins", sans-serif;
  line-height: 1.1;
  padding-right: 5px;
  display: flex;
  align-items: center;
  padding-top: 25px;
}
@media screen and (max-width: 560px) {
  .mv-text__the {
    font-size: 0.75rem;
    padding-top: 20px;
  }
}

.scroll {
  display: grid;
  place-content: center;
  text-decoration: underline;
  text-underline-offset: 8px;
  position: relative;
  z-index: 2;
  margin-bottom: 20px;
}

.wrap {
  overflow: hidden;
}

.mv__inner-2 {
  background: #FFFEFA;
  -webkit-clip-path: ellipse(92% 50% at 50% 50%);
          clip-path: ellipse(92% 50% at 50% 50%);
  margin-left: -100px;
  margin-right: -100px;
  padding-left: 100px;
  padding-right: 100px;
  padding-bottom: 130px;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .mv__inner-2 {
    padding-bottom: 60px;
  }
}

.mv__img {
  position: absolute;
  top: 64%;
  left: 50%;
  transform: translateX(-50%);
  max-width: 1320px;
  width: 100%;
  height: auto;
  aspect-ratio: 1320/780;
  z-index: 1;
  opacity: 0;
  will-change: transform, opacity;
}
@media screen and (max-width: 1024px) {
  .mv__img {
    position: static;
    transform: none;
    margin-top: 20px;
  }
}

.mv-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}

.mv__img-sub {
  padding-top: 533px;
  max-width: 1372px;
  width: 100%;
  height: auto;
  margin-inline: auto;
  text-align: left;
}
@media screen and (max-width: 1024px) {
  .mv__img-sub {
    padding-top: 50px;
  }
}

.mv__text-sub-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 40px;
  padding: 0 15px;
}
@media screen and (max-width: 768px) {
  .mv__text-sub-content {
    gap: 20px;
  }
}

.mv__image-sub {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.mv__text-sub-title {
  font-size: 2.1875rem;
  font-weight: 300;
  color: #252525;
  font-family: "Zen Kaku Gothic New", sans-serif;
  text-align: center;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .mv__text-sub-title {
    font-size: 1.25rem;
  }
}

.mv__text-sub-text {
  font-size: 1rem;
  font-weight: 300;
  color: #252525;
  font-family: "Zen Kaku Gothic New", sans-serif;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .mv__text-sub-text {
    font-size: 0.875rem;
  }
}

.service {
  background: #F5F5F5;
  position: relative;
  padding-bottom: 60px;
}

.mask {
  position: relative;
}

.inner-mask {
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  max-width: 1220px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: blur(65px);
  opacity: 0.8;
  z-index: 1;
}

.service__inner {
  position: relative;
  z-index: 2;
}

.service__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 111px;
}
@media screen and (max-width: 768px) {
  .service__wrapper {
    flex-direction: column;
    gap: 20px;
    padding-top: 50px;
    align-items: start;
  }
}

.service__title-text {
  font-size: 1rem;
  font-weight: 300;
  color: #252525;
  font-family: "Zen Kaku Gothic New", sans-serif;
  text-align: end;
}
@media screen and (max-width: 768px) {
  .service__title-text {
    font-size: 14px;
    text-align: left;
  }
}

.works {
  background-color: #FFFEFA;
  padding: 240px 0 150px 0;
  background-image: url(../images/top/works-of-tetote.png);
  background-size: contain;
  background-position: 90px 23%;
  background-repeat: no-repeat;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .works {
    padding: 50px 0 50px 0;
  }
}

.works__inner {
  max-width: 1200px;
  width: 100%;
  padding-left: 25px;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .works__inner {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.top-works-swiper {
  margin-right: calc(50% - 50vw);
}
@media screen and (max-width: 420px) {
  .top-works-swiper {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

.works-swiper-slide {
  max-width: 450px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .works-swiper-slide {
    max-width: 320px;
  }
}

.works-swiper-slide__link {
  text-decoration: none;
  color: inherit;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  transition: opacity 0.3s ease;
}
.works-swiper-slide__link:hover .works-swiper__image {
  transform: scale(1.2);
}

.works-swiper__img {
  max-width: 640px;
  width: 100%;
  height: auto;
  aspect-ratio: 560/497;
  overflow: hidden;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .works-swiper__img {
    max-width: 320px;
    aspect-ratio: 320/282;
  }
}

.works-swiper__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  -o-object-position: top;
     object-position: top;
  transition: transform 0.6s ease;
}

.swiper-pagination-progressbar {
  position: relative !important;
  margin-top: 100px;
  background: rgba(0, 0, 0, 0.1);
  max-width: 1600px;
  width: 100%;
}
@media screen and (max-width: 1440px) {
  .swiper-pagination-progressbar {
    max-width: 1200px;
  }
}
@media screen and (max-width: 768px) {
  .swiper-pagination-progressbar {
    margin-top: 30px;
  }
}

.swiper-pagination-progressbar-fill {
  background: #000 !important;
}

.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal {
  height: 1px;
  left: 50%;
  transform: translateX(-50%);
}

.works__text-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  padding-top: 20px;
}
@media screen and (max-width: 768px) {
  .works__text-wrap {
    padding-top: 10px;
    align-items: flex-start;
    width: 100%;
  }
}

.works-swiper-category-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.works-swiper__title {
  font-size: 1.25rem;
  font-weight: 500;
  color: #252525;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .works-swiper__title {
    font-size: 1.25rem;
  }
}

.works-swiper__text {
  font-size: 1rem;
  font-weight: 300;
  color: #252525;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .works-swiper__text {
    font-size: 0.875rem;
  }
}

.works-swiper__category {
  font-size: 0.75rem;
  font-weight: 300;
  color: #252525;
  font-family: "Zen Kaku Gothic New", sans-serif;
  border: 1px solid #252525;
  padding: 5px 10px;
  border-radius: 60px;
}
@media screen and (max-width: 768px) {
  .works-swiper__category {
    font-size: 0.5rem;
  }
}

.works__btn-wrap {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin-top: 150px;
  max-width: 520px;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 1px solid #252525;
  margin-inline: auto;
  transition: all 0.3s ease;
  background-color: transparent;
}
@media screen and (max-width: 768px) {
  .works__btn-wrap {
    margin-top: 50px;
    max-width: 170px;
  }
}
.works__btn-wrap:hover {
  background-color: #252525;
  border-color: #252525;
}
.works__btn-wrap:hover .works__button,
.works__btn-wrap:hover .works__button-sub {
  color: #FFFEFA;
}
.works__btn-wrap:hover .works__button-sub::after {
  background-color: #FFFEFA;
}
.works__btn-wrap:hover .works__button-sub::before {
  border-color: #FFFEFA;
}

.works__button {
  font-size: 3.5rem;
  font-family: "Poppins", sans-serif;
  color: #000;
  transition: color 0.3s ease;
}
@media screen and (max-width: 768px) {
  .works__button {
    font-size: 1.25rem;
  }
}

.works__button-sub {
  font-size: 1rem;
  font-family: "Poppins", sans-serif;
  color: #000;
  position: relative;
  padding-bottom: 50px;
  transition: color 0.3s ease;
}
@media screen and (max-width: 768px) {
  .works__button-sub {
    font-size: 0.8125rem;
    padding-bottom: 20px;
  }
}
.works__button-sub::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 2px;
  background-color: #000;
  transition: background-color 0.3s ease;
}
@media screen and (max-width: 768px) {
  .works__button-sub::after {
    width: 20px;
  }
}
.works__button-sub::before {
  content: "";
  position: absolute;
  right: 45px;
  bottom: -4px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  transform: rotate(45deg);
  transition: border-color 0.3s ease;
}
@media screen and (max-width: 768px) {
  .works__button-sub::before {
    right: 56px;
  }
}

.voice {
  background: #F0EEE9;
  -webkit-clip-path: ellipse(92% 50% at 50% 50%);
          clip-path: ellipse(92% 50% at 50% 50%);
  margin-left: -100px;
  margin-right: -100px;
  padding-left: 100px;
  padding-right: 100px;
  padding-bottom: 237px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .voice {
    -webkit-clip-path: ellipse(140% 50% at 50% 50%);
            clip-path: ellipse(140% 50% at 50% 50%);
  }
}

.voice-title {
  padding-top: 200px;
}
@media screen and (max-width: 768px) {
  .voice-title {
    padding-top: 100px;
  }
}

.voice-flex-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 60px;
}
@media screen and (max-width: 768px) {
  .voice-flex-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}

.voice-flex__items {
  display: flex;
  gap: 60px;
  flex-direction: column;
}

.voice-flex__item {
  display: flex;
  flex-direction: column;
}

.voice-flex-item-title__wrapper {
  display: flex;
  justify-content: space-between;
  padding-top: 30px;
}
@media screen and (max-width: 768px) {
  .voice-flex-item-title__wrapper {
    flex-direction: column;
    gap: 10px;
  }
}

.voice-flex-item__img {
  max-width: 570px;
  width: 100%;
  height: auto;
  aspect-ratio: 570/380;
  overflow: hidden;
  border-radius: 10px;
}
.voice-flex-item__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s ease;
}

.voice-flex-item__btn {
  display: flex;
  justify-content: end;
}

.voice-flex-item__text {
  padding-top: 20px;
}

.voice-flex-item-title {
  font-size: 1.25rem;
  font-weight: 500;
  color: #252525;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .voice-flex-item-title {
    font-size: 1.125rem;
  }
}

.voice-flex-item__category {
  font-size: 0.9375rem;
  font-weight: 300;
  color: #252525;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .voice-flex-item__category {
    font-size: 0.75rem;
  }
}

.voice-flex__item-link {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: opacity 0.3s ease;
}
.voice-flex__item-link:hover .voice-flex-item__img img {
  transform: scale(1.2);
}

.news {
  position: relative;
  padding-top: 140px;
  padding-bottom: 140px;
  margin-top: -222px;
  background-color: #F0EEE9;
}
@media screen and (max-width: 768px) {
  .news {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.news-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 20px;
  padding-top: 80px;
  border-top: 1px solid #000;
}
@media screen and (max-width: 768px) {
  .news-wrapper {
    flex-direction: column;
  }
}

.news-item__btn {
  padding-top: 40px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .news-item__btn {
    margin-left: auto;
  }
}

.news__items {
  max-width: 823px;
  width: 100%;
  list-style: none;
  overflow: hidden;
}

.news__item a {
  display: flex;
  gap: 38px;
  padding: 20px 5px;
  border-bottom: 1px solid #cccccc;
}

.news-item_date {
  font-size: 12px;
  color: #252525;
  font-family: "Poppins", sans-serif;
  line-height: 1.5rem;
  font-weight: 300;
  display: flex;
  align-items: center;
}

.news-item__text {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.contact-cta {
  width: 100%;
  background-color: #FFFEFA;
  padding: 150px 0;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .contact-cta {
    padding: 50px 0;
  }
}

.contact-cta__wrapper {
  display: flex;
  gap: 56px;
  -webkit-animation: scrollText 20s linear infinite;
          animation: scrollText 20s linear infinite;
  white-space: nowrap;
  will-change: transform;
}
@media screen and (max-width: 768px) {
  .contact-cta__wrapper {
    gap: 25px;
  }
}

@-webkit-keyframes scrollText {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes scrollText {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}
.contact-cta__text {
  font-size: 72px;
  font-weight: 100;
  font-family: "Poppins", sans-serif;
  color: #000;
  text-decoration: none;
  position: relative;
  padding-right: 20px;
  display: inline-block;
}
.contact-cta__text:before {
  content: "";
  position: absolute;
  background-image: url(../images/top/contact-arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  top: 50%;
  transform: translateY(-50%);
  right: -44px;
  width: 50px;
  height: 50px;
}
@media screen and (max-width: 768px) {
  .contact-cta__text {
    font-size: 40px;
  }
  .contact-cta__text:before {
    width: 30px;
    height: 30px;
    right: -15px;
  }
}

.footer {
  padding-top: 100px;
  width: 100%;
  background-color: #F0EEE9;
}
@media screen and (max-width: 768px) {
  .footer {
    padding-top: 50px;
  }
}

.footer__inner {
  display: flex;
  width: 100%;
  padding-left: 25px;
  padding-right: 25px;
  justify-content: space-around;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .footer__inner {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media screen and (max-width: 480px) {
  .footer__inner {
    flex-direction: column;
    align-items: center;
  }
}

.footer__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer__logo a img {
  max-width: 85px;
  width: 100%;
  height: 100%;
  aspect-ratio: 85/82;
}

.footer__logo p {
  margin-top: 67px;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 480px) {
  .footer__logo p {
    font-size: 12px;
    letter-spacing: 0.04em;
  }
}

.footer__items {
  padding: 100px 0;
}
@media screen and (max-width: 1134px) {
  .footer__items {
    padding: 60px 60px;
    width: 100%;
  }
}

.footer__item {
  display: flex;
  gap: 60px;
}
@media screen and (max-width: 1134px) {
  .footer__item {
    gap: 40px;
  }
}
@media screen and (max-width: 768px) {
  .footer__item {
    gap: 20px;
  }
}
@media screen and (max-width: 480px) {
  .footer__item {
    flex-direction: column;
  }
}

.footer__first-title a {
  font-size: 14px;
  font-weight: 700;
  color: #252525;
  font-family: "Zen Kaku Gothic New", sans-serif;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .footer__first-title a {
    margin-left: 20px;
    font-size: 14px;
  }
}

.footer__first-title a:first-child {
  margin-left: 0;
}

.footer__first-text {
  margin-top: 12px;
}

.footer__first-text a {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  font-weight: 300;
  color: #252525;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
@media screen and (max-width: 480px) {
  .footer__first-text a {
    font-size: 14px;
  }
}

.footer__second {
  display: flex;
  margin-top: 40px;
  gap: 60px;
}
@media screen and (max-width: 768px) {
  .footer__second {
    margin-top: 20px;
    gap: 20px;
  }
}
@media screen and (max-width: 480px) {
  .footer__second {
    flex-direction: column;
  }
}

.footer__second-title a {
  font-size: 14px;
  font-weight: 700;
  color: #252525;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
@media screen and (max-width: 480px) {
  .footer__second-title a {
    font-size: 14px;
  }
}

.footer__logo-text {
  color: #000;
  font-family: Questrial;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.96px;
  margin-bottom: 30px;
}

.works-archive {
  background-color: #F5F5F5;
  padding-top: 180px;
}
@media screen and (max-width: 768px) {
  .works-archive {
    padding-top: 80px;
  }
}
.works-archive__inner {
  position: relative;
  z-index: 100;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 40px;
}
@media screen and (max-width: 900px) {
  .works-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .works-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25rem;
    margin-top: 2.5rem;
  }
}
.works-grid__item {
  width: 100%;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 768px) {
  .works-grid__item {
    display: flex;
    justify-content: center;
  }
}
.works-grid__item:hover {
  transform: translateY(-5px);
}
.works-grid__link {
  display: block;
}
.works-grid__image {
  max-width: 560px;
  width: 100%;
  height: auto;
  aspect-ratio: 560/497;
}
.works-grid__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  -o-object-position: top;
     object-position: top;
}
.works-grid__content {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 30px;
  gap: 20px;
  max-width: 560px;
  width: 100%;
}
.works-grid__title {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.21em;
  color: #000;
  font-family: "Zen Kaku Gothic New", sans-serif;
  flex: 1;
}
@media screen and (max-width: 900px) {
  .works-grid__title {
    font-size: 1.125rem;
  }
}
.works-grid__text {
  font-size: 1rem;
  line-height: 1.21em;
  font-weight: 300;
  color: #252525;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
@media screen and (max-width: 768px) {
  .works-grid__text {
    font-size: 0.875rem;
  }
}
.works-grid__category {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .works-grid__category {
    margin-top: 10px;
  }
}
.works-grid__category-text {
  font-size: 0.875rem;
  line-height: 1;
  font-weight: 300;
  color: #000;
  font-family: "Zen Kaku Gothic New", sans-serif;
  padding: 4px 12px;
  border-radius: 60px;
  border: 1px solid #000;
}
@media screen and (max-width: 768px) {
  .works-grid__category-text {
    font-size: 0.875rem;
  }
}

.pagination {
  margin-top: 5rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  margin: 0 0.25rem;
  font-size: 1rem;
  color: #000;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  transition: all 0.3s ease;
}
.pagination .page-numbers.current {
  color: #000;
  position: relative;
}
.pagination .page-numbers.current::after {
  content: "";
  position: absolute;
  bottom: -0.25rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1rem;
  height: 1px;
  background-color: #000;
}
.pagination .page-numbers.prev, .pagination .page-numbers.next {
  width: 6.25rem;
  border-radius: 3.75rem;
  border: 1px solid #000;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 0.875rem;
  position: relative;
}
.pagination .page-numbers.prev:hover, .pagination .page-numbers.next:hover {
  background-color: #000;
  color: #FFFEFA;
}
.pagination .page-numbers.prev:hover::before, .pagination .page-numbers.next:hover::before {
  border-color: #FFFEFA;
}
.pagination__prev, .pagination__next {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.pagination__prev::before, .pagination__next::before {
  content: "";
  width: 0.375rem;
  height: 0.375rem;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transition: border-color 0.3s ease;
}
.pagination__prev::before {
  margin-right: 0.5rem;
  transform: rotate(-135deg);
}
.pagination__next::before {
  margin-left: 0.5rem;
  transform: rotate(45deg);
}

.works-archive-top {
  background-color: #F5F5F5;
}

.works-archive__info {
  margin-top: 90px;
}
@media screen and (max-width: 768px) {
  .works-archive__info {
    margin-top: 50px;
  }
}

.works-archive__date {
  font-size: 0.75rem;
  font-weight: 300;
  font-family: "Poppins", sans-serif;
  color: #000;
  line-height: 1;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.works-archive__title {
  font-size: 1.25rem;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  color: #000;
  letter-spacing: 0.06em;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .works-archive__title {
    font-size: 1.125rem;
  }
}

.works-content {
  background-color: #F5F5F5;
}

.works-archive__info-table {
  margin-top: 30px;
}
.works-archive__info-table table {
  width: 100%;
  font-size: 0.75rem;
}
.works-archive__info-table table th, .works-archive__info-table table td {
  text-align: left;
  font-size: 0.75rem;
  font-weight: 300;
  font-family: "Noto Sans JP", sans-serif;
  color: #000;
  letter-spacing: 0.06em;
  line-height: 2;
}
.works-archive__info-table table th a, .works-archive__info-table table td a {
  color: #252525;
}
.works-archive__info-table table th {
  width: 54px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  vertical-align: middle;
  text-align: left;
}
.works-archive__info-table table tr {
  padding-top: 10px;
}

.works-archive__img {
  margin-top: 90px;
  max-width: 1200px;
  width: 100%;
  height: auto;
  aspect-ratio: 560/497;
}
@media screen and (max-width: 768px) {
  .works-archive__img {
    margin-top: 25px;
  }
}

.wp-block-table {
  padding-top: 140px;
  padding-bottom: 224px;
}
@media screen and (max-width: 768px) {
  .wp-block-table {
    padding-top: 80px;
    padding-bottom: 120px;
  }
}
.wp-block-table td {
  border: none;
  padding: 70px 5px;
}
.wp-block-table td:first-child {
  font-weight: 300;
  text-align: center;
  max-width: 450px;
  width: 450px;
  vertical-align: middle;
  text-align: left;
  font-size: 1.25rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  text-align: left;
  color: #252525;
  letter-spacing: 0.06em;
  line-height: 2;
}
@media screen and (max-width: 1024px) {
  .wp-block-table td:first-child {
    width: 350px;
  }
}
@media screen and (max-width: 768px) {
  .wp-block-table td:first-child {
    width: 100%;
  }
}
.wp-block-table td {
  font-size: 0.875rem;
  font-weight: 300;
  font-family: "Zen Kaku Gothic New", sans-serif;
  text-align: left;
  color: #252525;
  letter-spacing: 0.06em;
  line-height: 2;
}
.wp-block-table tr {
  border-bottom: 1px solid #252525;
}
@media screen and (max-width: 768px) {
  .wp-block-table tr {
    display: flex;
    flex-direction: column;
  }
  .wp-block-table tr td {
    width: 100%;
    padding: 10px 0;
  }
  .wp-block-table tr td:first-child {
    padding-bottom: 15px;
  }
  .wp-block-table tr td:last-child {
    padding-top: 0;
  }
}

.works-navigation {
  padding: 40px 0;
  background-color: #F5F5F5;
}
.works-navigation__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.works-navigation__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding-top: 120px;
}
.works-navigation__prev-next {
  display: flex;
  justify-content: space-between;
  width: 100%;
  gap: 20px;
}
.works-navigation__prev, .works-navigation__next {
  flex: 1;
  text-align: center;
}
.works-navigation__archive {
  text-align: center;
}
.works-navigation__link {
  display: inline-block;
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease;
  position: relative;
}
.works-navigation__link:hover {
  opacity: 0.7;
}
.works-navigation__text {
  font-size: 3.75rem;
  font-weight: 200;
  font-family: "Poppins", sans-serif;
  position: relative;
  display: inline-block;
  padding-bottom: 5px;
  text-decoration: underline;
  text-decoration-thickness: 2px;
}
@media screen and (max-width: 768px) {
  .works-navigation__text {
    font-size: 1.875rem;
  }
}
@media screen and (max-width: 480px) {
  .works-navigation__text {
    font-size: 1.25rem;
  }
}
.works-navigation__text::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
}
@media screen and (max-width: 768px) {
  .works-navigation__text::before {
    width: 20px;
    height: 20px;
    left: -36px;
  }
}
@media screen and (max-width: 480px) {
  .works-navigation__text::before {
    width: 12px;
    height: 12px;
    left: -20px;
  }
}
.works-navigation__prev .works-navigation__text::before {
  left: -40px;
  transform: translateY(-50%) rotate(-135deg);
}
@media screen and (max-width: 768px) {
  .works-navigation__prev .works-navigation__text::before {
    left: -36px;
  }
}
@media screen and (max-width: 480px) {
  .works-navigation__prev .works-navigation__text::before {
    left: -20px;
  }
}
.works-navigation__next .works-navigation__text::after {
  right: -56px;
  transform: translateY(-50%) rotate(45deg);
}
@media screen and (max-width: 480px) {
  .works-navigation__next .works-navigation__text::after {
    right: -20px;
  }
}

.works-navigation__text-archive {
  font-size: 1.875rem;
  font-weight: 200;
  font-family: "Poppins", sans-serif;
  position: relative;
  display: inline-block;
  padding-bottom: 5px;
  text-decoration: underline;
  text-decoration-thickness: 2px;
}
@media screen and (max-width: 768px) {
  .works-navigation__text-archive {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 480px) {
  .works-navigation__text-archive {
    font-size: 1rem;
  }
}

.works-navigation__text-next {
  position: relative;
  font-size: 3.75rem;
  font-weight: 200;
  font-family: "Poppins", sans-serif;
  position: relative;
  display: inline-block;
  padding-bottom: 5px;
  text-decoration: underline;
  text-decoration-thickness: 2px;
}
@media screen and (max-width: 768px) {
  .works-navigation__text-next {
    font-size: 1.875rem;
  }
}
@media screen and (max-width: 480px) {
  .works-navigation__text-next {
    font-size: 1.25rem;
  }
}
.works-navigation__text-next::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
  transform: translateY(-50%) rotate(45deg);
  right: -56px;
}
@media screen and (max-width: 768px) {
  .works-navigation__text-next::after {
    right: -36px;
    width: 20px;
    height: 20px;
  }
}
@media screen and (max-width: 480px) {
  .works-navigation__text-next::after {
    right: -20px;
    width: 12px;
    height: 12px;
  }
}

.works-archive-member__title {
  color: #222;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 18px */
  letter-spacing: 1.08px;
}

.works-archive-member__table {
  margin-top: 10px;
}
.works-archive-member__table table {
  width: 100%;
  font-size: 1rem;
}
.works-archive-member__table table th, .works-archive-member__table table td {
  text-align: left;
  font-size: 1rem;
  font-weight: 300;
  font-family: "Noto Sans JP", sans-serif;
  color: #000;
  letter-spacing: 0.06em;
  line-height: 1;
}
.works-archive-member__table table th {
  width: 54px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  vertical-align: middle;
  text-align: left;
}

.customer-voice {
  margin-top: 60px;
  padding: 40px;
  background-color: #FFFEFA;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.customer-voice__title {
  font-size: 1.5rem;
  font-weight: 500;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #000;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 10px;
}
.customer-voice__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 2px;
  background-color: #000;
}
.customer-voice__content {
  font-size: 1rem;
  line-height: 1.8;
  color: #252525;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.works-content__body p {
  font-size: 1rem;
  font-weight: 300;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #252525;
  line-height: 1.75em;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .works-content__body p {
    font-size: 0.875rem;
    margin-top: 10px;
  }
}

.works-content__body h2 {
  font-size: 2rem;
  font-weight: 500;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #252525;
  line-height: 1.75em;
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .works-content__body h2 {
    font-size: 1.25rem;
    margin-top: 30px;
  }
}

.works-content__body h3 {
  font-size: 1.5rem;
  font-weight: 500;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #252525;
  line-height: 1.75em;
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .works-content__body h3 {
    font-size: 1.125rem;
    margin-top: 30px;
  }
}

.works-content__body h4 {
  font-size: 1.25rem;
  font-weight: 500;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #252525;
  line-height: 1.75em;
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .works-content__body h4 {
    font-size: 1rem;
    margin-top: 30px;
  }
}

.works-content__body ul {
  list-style: disc;
}

.wp-block-list {
  List-style-position: inside;
}

.works-single__inner {
  position: relative;
  z-index: 100;
  max-width: 1050px;
  width: 100%;
  padding-left: 25px;
  padding-right: 25px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .works-single__inner {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.works-content__inner {
  max-width: 1050px;
  width: 100%;
  padding-left: 25px;
  padding-right: 25px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .works-content__inner {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.works-navigation__inner {
  max-width: 1050px;
  width: 100%;
  padding-left: 25px;
  padding-right: 25px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .works-navigation__inner {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.news-archive {
  background-color: #F5F5F5;
  padding-top: 180px;
}
.news-archive__inner {
  position: relative;
  z-index: 100;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
@media screen and (max-width: 1024px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .news-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25rem;
    margin-top: 5rem;
  }
}
.news-grid__item {
  width: 100%;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
}
.news-grid__item:hover {
  transform: translateY(-5px);
}
.news-grid__link {
  display: block;
  text-decoration: none;
  height: 100%;
}
.news-grid__image {
  max-width: 360px;
  width: 100%;
  height: auto;
  aspect-ratio: 360/227;
}
.news-grid__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.news-grid__content {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 20px;
  max-width: 360px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .news-grid__content {
    padding-top: 10px;
  }
}
.news-grid__title {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.21em;
  color: #000;
  font-family: "Zen Kaku Gothic New", sans-serif;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  word-break: break-word;
  word-wrap: break-word;
  overflow-wrap: break-word;
  min-height: 2.42em;
}
@media screen and (max-width: 768px) {
  .news-grid__title {
    font-size: 0.875rem;
  }
}
.news-grid__date {
  font-size: 0.875rem;
  font-weight: 300;
  color: #000;
  font-family: "Poppins", sans-serif;
  line-height: 1.2em;
}
@media screen and (max-width: 768px) {
  .news-grid__date {
    font-size: 0.75rem;
  }
}

.pagination {
  margin-top: 5rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  margin: 0 0.25rem;
  font-size: 1rem;
  color: #000;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  transition: all 0.3s ease;
}
.pagination .page-numbers.current {
  color: #000;
  position: relative;
}
.pagination .page-numbers.current::after {
  content: "";
  position: absolute;
  bottom: -0.25rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1rem;
  height: 1px;
  background-color: #000;
}
.pagination .page-numbers.prev, .pagination .page-numbers.next {
  width: 6.25rem;
  border-radius: 3.75rem;
  border: 1px solid #000;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 0.875rem;
  position: relative;
}
.pagination .page-numbers.prev:hover, .pagination .page-numbers.next:hover {
  background-color: #000;
  color: #FFFEFA;
}
.pagination .page-numbers.prev:hover::before, .pagination .page-numbers.next:hover::before {
  border-color: #FFFEFA;
}
.pagination__prev, .pagination__next {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.pagination__prev::before, .pagination__next::before {
  content: "";
  width: 0.375rem;
  height: 0.375rem;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transition: border-color 0.3s ease;
}
.pagination__prev::before {
  margin-right: -0.5rem;
  transform: rotate(-135deg);
}
.pagination__next::before {
  margin-left: 0.5rem;
  transform: rotate(45deg);
}

.news-single {
  background-color: #F0EEE9;
  padding-top: 180px;
}
@media screen and (max-width: 768px) {
  .news-single {
    padding-top: 100px;
  }
}
.news-single__inner {
  border-bottom: 1px solid #252525;
  padding-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .news-single__inner {
    padding-bottom: 40px;
  }
}
.news-single__wrapper {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 40px;
  margin-right: calc(50% - 50vw);
}
@media screen and (max-width: 768px) {
  .news-single__wrapper {
    flex-direction: column;
    align-items: start;
    margin-right: 0;
  }
}
.news-single__contant {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: end;
  gap: 150px;
  padding-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .news-single__contant {
    gap: 50px;
  }
}
.news-single__title {
  font-size: 2.5rem;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  color: #252525;
  line-height: 1.2;
  padding-top: 30px;
}
@media screen and (max-width: 768px) {
  .news-single__title {
    font-size: 1.5625rem;
  }
}
.news-single__date {
  font-size: 0.75rem;
  font-weight: 300;
  font-family: "Poppins", sans-serif;
  color: #252525;
  line-height: 1;
  letter-spacing: 0.06em;
}
.news-single__img {
  max-width: 760px;
  width: 100%;
  height: auto;
  aspect-ratio: 760/500;
}
.news-single__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px 0 0 20px;
}
@media screen and (max-width: 768px) {
  .news-single__img img {
    border-radius: 20px;
  }
}
.news-archive__info {
  margin-top: 90px;
}
@media screen and (max-width: 768px) {
  .news-archive__info {
    margin-top: 50px;
  }
}

.news-archive__date {
  font-size: 0.75rem;
  font-weight: 300;
  font-family: "Poppins", sans-serif;
  color: #000;
  line-height: 1;
  letter-spacing: 0.06em;
}

.news-content {
  padding-top: 100px;
  background-color: #F0EEE9;
}
@media screen and (max-width: 768px) {
  .news-content {
    padding-top: 50px;
  }
}

.news-archive__info-table {
  margin-top: 30px;
}
.news-archive__info-table table {
  width: 100%;
  font-size: 0.75rem;
}
.news-archive__info-table table th, .news-archive__info-table table td {
  text-align: left;
  font-size: 0.75rem;
  font-weight: 300;
  font-family: "Noto Sans JP", sans-serif;
  color: #000;
  letter-spacing: 0.06em;
  line-height: 1;
}
.news-archive__info-table table th {
  width: 54px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  vertical-align: middle;
  text-align: left;
}

.news-navigation {
  padding: 40px 0;
  background-color: #F0EEE9;
}
.news-navigation__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.news-navigation__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding-top: 120px;
}
.news-navigation__prev-next {
  display: flex;
  justify-content: space-between;
  width: 100%;
  gap: 20px;
}
.news-navigation__prev, .news-navigation__next {
  flex: 1;
  text-align: center;
}
.news-navigation__archive {
  text-align: center;
}
.news-navigation__link {
  display: inline-block;
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease;
  position: relative;
}
.news-navigation__link:hover {
  opacity: 0.7;
}
.news-navigation__text {
  font-size: 3.75rem;
  font-weight: 200;
  font-family: "Poppins", sans-serif;
  position: relative;
  display: inline-block;
  padding-bottom: 5px;
  text-decoration: underline;
  text-decoration-thickness: 2px;
}
@media screen and (max-width: 768px) {
  .news-navigation__text {
    font-size: 1.875rem;
  }
}
@media screen and (max-width: 480px) {
  .news-navigation__text {
    font-size: 1.25rem;
  }
}
.news-navigation__text::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
}
@media screen and (max-width: 768px) {
  .news-navigation__text::before {
    width: 20px;
    height: 20px;
    left: -36px;
  }
}
@media screen and (max-width: 480px) {
  .news-navigation__text::before {
    width: 12px;
    height: 12px;
    left: -20px;
  }
}
.news-navigation__prev .news-navigation__text::before {
  left: -40px;
  transform: translateY(-50%) rotate(-135deg);
}
@media screen and (max-width: 768px) {
  .news-navigation__prev .news-navigation__text::before {
    left: -36px;
  }
}
@media screen and (max-width: 480px) {
  .news-navigation__prev .news-navigation__text::before {
    left: -20px;
  }
}
.news-navigation__next .news-navigation__text::after {
  right: -56px;
  transform: translateY(-50%) rotate(45deg);
}
@media screen and (max-width: 480px) {
  .news-navigation__next .news-navigation__text::after {
    right: -20px;
  }
}

.news-navigation__text-archive {
  font-size: 1.875rem;
  font-weight: 200;
  font-family: "Poppins", sans-serif;
  position: relative;
  display: inline-block;
  padding-bottom: 5px;
  text-decoration: underline;
  text-decoration-thickness: 2px;
}
@media screen and (max-width: 768px) {
  .news-navigation__text-archive {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 480px) {
  .news-navigation__text-archive {
    font-size: 1rem;
  }
}

.news-navigation__text-next {
  position: relative;
  font-size: 3.75rem;
  font-weight: 200;
  font-family: "Poppins", sans-serif;
  position: relative;
  display: inline-block;
  padding-bottom: 5px;
  text-decoration: underline;
  text-decoration-thickness: 2px;
}
@media screen and (max-width: 768px) {
  .news-navigation__text-next {
    font-size: 1.875rem;
  }
}
@media screen and (max-width: 480px) {
  .news-navigation__text-next {
    font-size: 1.25rem;
  }
}
.news-navigation__text-next::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
  transform: translateY(-50%) rotate(45deg);
  right: -56px;
}
@media screen and (max-width: 768px) {
  .news-navigation__text-next::after {
    right: -36px;
    width: 20px;
    height: 20px;
  }
}
@media screen and (max-width: 480px) {
  .news-navigation__text-next::after {
    right: -20px;
    width: 12px;
    height: 12px;
  }
}

.news-content__body p {
  font-size: 1rem;
  font-weight: 300;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #252525;
  line-height: 1.75em;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .news-content__body p {
    font-size: 0.875rem;
    margin-top: 10px;
  }
}

.news-content__body h2 {
  font-size: 2rem;
  font-weight: 500;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #252525;
  line-height: 1.75em;
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .news-content__body h2 {
    font-size: 1.25rem;
    margin-top: 30px;
  }
}

.news-content__body h3 {
  font-size: 1.5rem;
  font-weight: 500;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #252525;
  line-height: 1.75em;
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .news-content__body h3 {
    font-size: 1.125rem;
    margin-top: 30px;
  }
}

.news-content__body h4 {
  font-size: 1.25rem;
  font-weight: 500;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #252525;
  line-height: 1.75em;
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .news-content__body h4 {
    font-size: 1rem;
    margin-top: 30px;
  }
}

.recruit-top {
  background-color: #F5F5F5;
  position: relative;
  padding-top: 180px;
}
@media screen and (max-width: 768px) {
  .recruit-top {
    padding-top: 80px;
  }
}

.recruit-top__inner {
  position: relative;
}

.recruit-top__text {
  margin-top: 40px;
  font-size: 16px;
  color: #000;
  font-weight: 300;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.recruit-main {
  background-color: #F5F5F5;
  padding-top: 160px;
}
@media screen and (max-width: 768px) {
  .recruit-main {
    padding-top: 80px;
  }
}

.recruit-main__wrapper {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .recruit-main__wrapper {
    flex-direction: column;
  }
}

.recruit-main__tabs {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 80px;
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
@media screen and (max-width: 1024px) {
  .recruit-main__tabs {
    flex-direction: row;
    position: static;
  }
}
@media screen and (max-width: 768px) {
  .recruit-main__tabs {
    padding-top: 40px;
  }
}

.recruit-main-tab a {
  font-size: 1.25rem;
  font-weight: 500;
  color: #000;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.2em;
  opacity: 0.6;
}
@media screen and (max-width: 1134px) {
  .recruit-main-tab a {
    font-size: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .recruit-main-tab a {
    font-size: 1rem;
  }
}

.recruit-main__content {
  max-width: 800px;
  width: 100%;
}
@media screen and (max-width: 1134px) {
  .recruit-main__content {
    max-width: 750px;
  }
}
@media screen and (max-width: 1024px) {
  .recruit-main__content {
    max-width: 800px;
  }
}

.recruit-main__title {
  font-size: 1.5rem;
  font-weight: 500;
  color: #000;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.2em;
  padding-bottom: 20px;
  border-bottom: 1px solid #cccccc;
  position: relative;
}
@media screen and (max-width: 768px) {
  .recruit-main__title {
    font-size: 1.25rem;
  }
}

.recruit-main__content-box {
  display: none;
  background-color: #FFFEFA;
  border-radius: 10px;
  padding: 50px;
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .recruit-main__content-box {
    padding: 30px;
    margin-top: 30px;
  }
}
.recruit-main__content-box.is-active {
  display: block;
}

.recruit-main__content-box-title {
  font-size: 1.875rem;
  font-weight: 500;
  color: #000;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.2em;
  padding-bottom: 20px;
  border-bottom: 1px solid #000;
}
@media screen and (max-width: 768px) {
  .recruit-main__content-box-title {
    font-size: 1.25rem;
  }
}

.recruit-main__table {
  margin-top: 40px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .recruit-main__table {
    margin-top: 20px;
  }
}
.recruit-main__table th {
  width: 25%;
  padding: 24px 0;
  font-size: 1rem;
  font-weight: 700;
  color: #000;
  font-family: "Zen Kaku Gothic New", sans-serif;
  vertical-align: top;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .recruit-main__table th {
    font-size: 0.875rem;
    padding: 15px 0 10px 0;
    width: 100%;
  }
}
.recruit-main__table td {
  width: 75%;
  padding: 24px 0;
  font-size: 1rem;
  font-weight: 300;
  color: #000;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.8;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .recruit-main__table td {
    font-size: 0.875rem;
    padding: 0 0 15px 0;
    width: 100%;
  }
}
.recruit-main__table tr {
  display: flex;
  border-bottom: 1px solid #cccccc;
}
@media screen and (max-width: 768px) {
  .recruit-main__table tr {
    flex-direction: column;
  }
}
.recruit-main__table tr:last-child {
  border-bottom: none;
}

.recruit-main-tab__link.is-active {
  padding-left: 15px;
  transform: translateX(10px);
  position: relative;
  opacity: 1;
  font-weight: 700;
}
.recruit-main-tab__link.is-active::before {
  content: "-";
  position: absolute;
  left: 0;
  top: 50%;
  margin-right: 5px;
  transform: translateY(-50%);
  font-weight: 700;
}

.contact-top {
  background-color: #F5F5F5;
  position: relative;
  padding-top: 180px;
}
@media screen and (max-width: 768px) {
  .contact-top {
    padding-top: 80px;
  }
}

.contact__inner {
  position: relative;
}

.contact-top__text {
  margin-top: 40px;
  font-size: 1rem;
  color: #000;
  font-weight: 300;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.7em;
}
@media screen and (max-width: 768px) {
  .contact-top__text {
    font-size: 0.875rem;
  }
}

.contact-form-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 200px;
}
@media screen and (max-width: 1024px) {
  .contact-form-wrapper {
    gap: 100px;
    flex-direction: column;
    align-items: center;
  }
}

.contact-main {
  padding-top: 100px;
  background-color: #F5F5F5;
}
@media screen and (max-width: 768px) {
  .contact-main {
    padding-top: 60px;
  }
}

.contact-form {
  max-width: 600px;
  width: 100%;
  padding: 0 20px;
  background-color: #F5F5F5;
}
@media screen and (max-width: 768px) {
  .contact-form {
    padding: 20px;
  }
}

.form-required {
  font-size: 0.875rem;
  color: #E75151;
  margin-bottom: 24px;
  font-weight: 500;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.2em;
}

.form-group {
  margin-bottom: 24px;
}
.form-group label {
  display: block;
  margin-bottom: 15px;
  font-weight: 500;
  color: #000;
}
.form-group .required::after {
  content: "*";
  color: #E75151;
  margin-left: 8px;
  font-size: 0.75rem;
}
.form-group input[type=text],
.form-group input[type=email],
.form-group input[type=tel],
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
  background-color: #FFFEFA;
}

.radio {
  display: flex;
  flex-direction: column;
}

.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  flex-direction: column;
  padding-top: 10px;
}
.radio-group label {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.radio-group label input[type=radio] {
  margin-right: 8px;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 16px;
  height: 16px;
  border: 1px solid #000;
  border-radius: 50%;
  position: relative;
}
.radio-group label input[type=radio]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background-color: #000;
  border-radius: 50%;
}

.privacy-check label {
  display: flex;
  align-items: center;
  cursor: pointer;
  background-color: #FFFEFA;
  padding: 12px;
  border-radius: 4px;
}
@media screen and (max-width: 768px) {
  .privacy-check label {
    padding: 0;
    font-size: 0.75rem;
  }
}
.privacy-check label input[type=checkbox] {
  margin-right: 8px;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 16px;
  height: 16px;
  border: 1px solid #000;
  position: relative;
}
.privacy-check label input[type=checkbox]:checked {
  background-color: #000;
}
.privacy-check label input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  top: 1px;
  left: 4px;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.form-button {
  text-align: center;
  margin-top: 32px;
}

.contact-form-info-wrap {
  display: flex;
  gap: 233px;
}
@media screen and (max-width: 1024px) {
  .contact-form-info-wrap {
    gap: 100px;
    flex-direction: column;
  }
}

.form-step {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 45px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .form-step {
    flex-direction: row;
  }
}

.form-step__number {
  display: block;
  width: 15px;
  height: 15px;
  background-color: #fff;
  border-radius: 50%;
}
@media screen and (max-width: 1024px) {
  .form-step__number {
    margin-top: 10px;
  }
}

.form-step__item:first-child .form-step__number::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 93%;
  transform: translateX(-50%);
  width: 1px;
  height: 24px;
  background-color: #ffffff;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .form-step__item:first-child .form-step__number::before {
    top: 80%;
    left: 91%;
    width: 100px;
    height: 1px;
  }
}
@media screen and (max-width: 768px) {
  .form-step__item:first-child .form-step__number::before {
    width: 125%;
  }
}

.form-step__item:nth-child(2) .form-step__number::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 93%;
  transform: translateX(-50%);
  width: 1px;
  height: 24px;
  background-color: #ffffff;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .form-step__item:nth-child(2) .form-step__number::before {
    top: 83%;
    left: 94%;
    width: 100px;
    height: 1px;
  }
}
@media screen and (max-width: 768px) {
  .form-step__item:nth-child(2) .form-step__number::before {
    width: 135%;
  }
}
.form-step__item:nth-child(2) .form-step__number::after {
  content: "";
  position: absolute;
  top: -24px;
  left: 93%;
  transform: translateX(-50%);
  width: 1px;
  height: 24px;
  background-color: #ffffff;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .form-step__item:nth-child(2) .form-step__number::after {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .form-step__item:nth-child(2) .form-step__number::after {
    width: 80%;
  }
}

.form-step__item:last-child .form-step__number::after {
  content: "";
  position: absolute;
  top: -24px;
  left: 93%;
  transform: translateX(-50%);
  width: 1px;
  height: 24px;
  background-color: #ffffff;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .form-step__item:last-child .form-step__number::after {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .form-step__item:last-child .form-step__number::after {
    width: 80%;
  }
}

.form-step__item {
  display: flex;
  position: relative;
  text-align: center;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .form-step__item {
    align-items: center;
    display: block;
  }
}
.form-step__item.is-current .form-step__number {
  background-color: #000;
}
.form-step__item.is-current .form-step__number::before, .form-step__item.is-current .form-step__number::after {
  background-color: #000;
}
.form-step__item.is-current .form-step__text {
  color: #000;
}

.form-step__text {
  font-size: 0.875rem;
  color: #999;
  font-weight: 500;
  padding-right: 30px;
  line-height: 1.2em;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .form-step__text {
    padding-right: 0;
    padding-left: 0;
    white-space: nowrap;
  }
}
@media screen and (max-width: 768px) {
  .form-step__text {
    font-size: 0.75rem;
  }
}

.privacy-check label {
  background-color: #F5F5F5;
}

.submit-btn {
  width: 100%;
}

.thanks-page-main {
  padding-top: 180px;
}
@media screen and (max-width: 768px) {
  .thanks-page-main {
    padding-top: 99px;
  }
}

.thanks-content {
  max-width: 600px;
  width: 100%;
  padding: 60px 20px;
  text-align: center;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .thanks-content {
    padding: 40px 20px;
  }
}

.thanks-content__text {
  font-size: 1.375rem;
  line-height: 1.7;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .thanks-content__text {
    font-size: 1rem;
    margin-bottom: 32px;
    text-align: left;
  }
}

.confirm-content {
  max-width: 600px;
  width: 100%;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .confirm-content {
    padding: 0 20px;
  }
}

.confirm-content__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .confirm-content__title {
    font-size: 1.25rem;
  }
}

.confirm-content__text {
  font-size: 1rem;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .confirm-content__text {
    font-size: 0.875rem;
  }
}

.confirm-form {
  margin-bottom: 40px;
}

.confirm-group {
  padding: 24px 0;
  border-bottom: 1px solid #ddd;
}
.confirm-group:first-child {
  border-top: 1px solid #ddd;
}

.confirm-group__title {
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #000;
}

.confirm-group__text {
  font-size: 1rem;
  line-height: 1.7;
	overflow-wrap: break-word;
}
@media screen and (max-width: 768px) {
  .confirm-group__text {
    font-size: 0.875rem;
  }
}

.wpcf7-spinner {
  display: none;
}

.button [type=submit] {
  color: #FFFEFA;
  cursor: pointer;
}
.button [type=submit]:hover {
  color: #000;
}

.button-wrap {
  cursor: pointer;
}
.button-wrap:hover .button [type=submit] {
  color: #000;
}
.button-wrap:hover .button {
  background-color: #FFFEFA;
  color: #000;
}
.button-wrap:hover .button [type=submit], .button-wrap:hover .button input[type=submit] {
  color: #000;
}
.button-wrap:hover .button-white {
  background-color: #000;
  color: #FFFEFA;
}
.button-wrap:hover .button-white [type=submit], .button-wrap:hover .button-white input[type=submit] {
  color: #FFFEFA;
}

.wpcf7-form .button-wrap .button input[type=submit] {
  width: 100%;
  background: none;
  border: none;
  color: #FFFEFA;
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  cursor: pointer;
  padding: 0;
}
.wpcf7-form .button-wrap .button input[type=submit]:hover {
  color: #000;
}
.wpcf7-form .button-wrap:hover .button {
  background-color: #FFFEFA;
  color: #000;
}
.wpcf7-form .button-wrap:hover .button input[type=submit] {
  color: #000;
}
.wpcf7-form .wpcf7-not-valid-tip {
  color: #E75151;
  font-size: 0.75rem;
  margin-top: 8px;
  display: block;
}
.wpcf7-form .wpcf7-validation-errors {
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
  padding: 12px;
  border-radius: 4px;
  margin-bottom: 16px;
}
.wpcf7-form .wpcf7-mail-sent-ok {
  background-color: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
  padding: 12px;
  border-radius: 4px;
  margin-bottom: 16px;
}

.button-view-wrap, .button-wrap-white, .button-view-wrap-white {
  cursor: pointer;
}
.button-view-wrap:hover .button, .button-wrap-white:hover .button, .button-view-wrap-white:hover .button {
  background-color: #FFFEFA;
  color: #000;
}
.button-view-wrap:hover .button [type=submit], .button-view-wrap:hover .button input[type=submit], .button-wrap-white:hover .button [type=submit], .button-wrap-white:hover .button input[type=submit], .button-view-wrap-white:hover .button [type=submit], .button-view-wrap-white:hover .button input[type=submit] {
  color: #000;
}
.button-view-wrap:hover .button-white, .button-wrap-white:hover .button-white, .button-view-wrap-white:hover .button-white {
  background-color: #000;
  color: #FFFEFA;
}
.button-view-wrap:hover .button-white [type=submit], .button-view-wrap:hover .button-white input[type=submit], .button-wrap-white:hover .button-white [type=submit], .button-wrap-white:hover .button-white input[type=submit], .button-view-wrap-white:hover .button-white [type=submit], .button-view-wrap-white:hover .button-white input[type=submit] {
  color: #FFFEFA;
}

.top-under__img {
  margin-top: 90px;
  max-width: 1200px;
  width: 100%;
  height: auto;
  aspect-ratio: 1200/480;
}
@media screen and (max-width: 768px) {
  .top-under__img {
    margin-top: 25px;
    aspect-ratio: 360/190;
  }
}

.top-under__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
  -o-object-position: top;
     object-position: top;
}

.button-wrap {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 32px;
  background-color: #000;
  border-radius: 30px;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: #FFFEFA;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  max-width: 170px;
  width: 100%;
}
.button-wrap-white {
  background-color: #FFFEFA;
  color: #000;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 32px;
  border-radius: 30px;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 300;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}
.button-wrap-white:hover {
  background-color: #000;
  border-color: #FFFEFA;
  color: #FFFEFA;
  transform: translateY(-3px);
}
.button-wrap-white:hover .button-white {
  color: #FFFEFA;
  background-color: #000;
}
.button-wrap-white:hover .button-white::before {
  background-color: #FFFEFA;
}
.button-wrap-white:hover .button-white::after {
  border-color: #FFFEFA;
}
.button-wrap:hover {
  background-color: #FFFEFA;
  border-color: #000;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.button-wrap:hover .button {
  color: #000;
}
.button-wrap:hover .button::before {
  background-color: #000;
}
.button-wrap:hover .button::after {
  border-color: #000;
}

.button-view-wrap {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 60px;
  background-color: #000;
  border-radius: 30px;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: #FFFEFA;
  text-decoration: none;
  max-width: 170px;
  width: 100%;
}
.button-view-wrap-white {
  background-color: #FFFEFA;
  color: #000;
}
.button-view-wrap-white:hover {
  background-color: #000;
  color: #FFFEFA;
}
.button-view-wrap:hover {
  background-color: #FFFEFA;
  border: 1px solid #000;
}
.button-view-wrap:hover .button {
  color: #000;
}
.button-view-wrap:hover .button::before {
  background-color: #000;
}
.button-view-wrap:hover .button::after {
  border-color: #000;
}

.button {
  color: #FFFEFA;
  text-decoration: none;
  transition: color 0.3s;
  padding-right: 20px;
  position: relative;
  transition: all 0.3s ease;
}
.button::before, .button::after {
  content: "";
  position: absolute;
  top: 50%;
  transition: border-color 0.3s, background-color 0.3s, transform 0.3s;
}
.button::before {
  right: -10px;
  width: 14px;
  height: 1px;
  background-color: #FFFEFA;
  transform: translateX(-10px) translateY(-7px) rotate(-45deg);
  transform-origin: right center;
}
.button::after {
  right: -8px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #FFFEFA;
  border-right: 1px solid #FFFEFA;
  transform: translateX(-130%) translateY(-75%) rotate(-5deg);
  margin-top: -2px;
}
.button:hover {
  color: #000;
}
.button:hover::before {
  background-color: #000;
}
.button:hover::after {
  border-color: #000;
}
.button-white {
  background-color: #FFFEFA;
  color: #000;
  transition: all 0.3s ease;
}
.button-white::before {
  background-color: #000;
}
.button-white::after {
  border-color: #000;
}
.button-white:hover {
  color: #FFFEFA;
  background-color: #000;
}
.button-white:hover::before {
  background-color: #FFFEFA;
}
.button-white:hover::after {
  border-color: #FFFEFA;
}
@media screen and (max-width: 768px) {
  .button {
    font-size: 14px;
  }
}

.inner {
  max-width: 1250px;
  width: 100%;
  padding-left: 25px;
  padding-right: 25px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .inner {
    padding-left: 15px;
    padding-right: 15px;
  }
}

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

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

@media screen and (max-width: 480px) {
  .sp3-none {
    display: none;
  }
}

.sp3-show {
  display: none;
}
@media screen and (max-width: 480px) {
  .sp3-show {
    display: block;
  }
}

.md3-show {
  display: none;
}
@media screen and (max-width: 900px) {
  .md3-show {
    display: block;
  }
}

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

.lg-show {
  display: none;
}
@media screen and (max-width: 1024px) {
  .lg-show {
    display: block;
  }
}

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

.mask {
  background-image: url(../images/mask-img.webp);
  background-size: cover;
  background-position: center;
  width: 100vw;
  height: auto;
}

.text {
  color: #000;
  font-size: 15px;
  font-weight: 300;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.5em;
}
.text-en {
  font-family: "Poppins", sans-serif;
}

.mask-bg {
  position: relative;
}

.inner-mask-bg {
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  max-width: 1500px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: blur(35px);
  opacity: 0.8;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .inner-mask-bg {
    top: -13%;
  }
}
.inner-mask-bg-mv {
  top: -6%;
}
.inner-mask-bg-service {
  top: -2%;
}
.inner-mask-bg-service-detail {
  top: -16%;
}
.inner-mask-bg-works {
  top: -9%;
}

.main-breadcrumb {
  position: absolute;
  right: 0;
  top: 65%;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .main-breadcrumb {
    position: static;
    padding-top: 30px;
  }
}

.breadcrumb__between {
  display: inline-block;
  width: 12px;
  height: 2px;
  margin: 0 8px;
  font-size: 12px;
  font-weight: 500;
  background-color: #000;
}

.breadcrumb span {
  font-size: 12px;
  font-weight: 500;
  color: #000;
  font-family: "Zen Kaku Gothic New", sans-serif;
}