:root {
  --sans: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  --serif: "Noto Serif JP", serif;
  --white: #fff;
  --black: #000;
  --link: #1a5be1;
  --gray1: #cccccc;
  --gray2: #f0f0f0;
  --gray3: #b3b3b3;
  --gray4: #999999;
  --marukin: #a58022;
  --industry1: #249494;
  --industry2: #cc5500;
  --industry3: #208428;
  --xs: 12px;
  --sm: 14px;
  --md: 16px;
  --lg: 18px;
  --xl: 20px;
  --header: 120px;
}
@media screen and (max-width: 1024px) {
  :root {
    --xs: 10px;
    --sm: 12px;
    --md: 14px;
    --lg: 16px;
    --xl: 18px;
    --header: 70px;
  }
}

html {
  width: 100%;
  font-size: 100%;
  font-family: var(--sans);
  font-feature-settings: "palt" 1;
  line-height: 1.25;
  color: var(--black);
  background-color: var(--white);
}

body {
  width: 100%;
}

main {
  margin: var(--header) auto 0;
}

#wrapper {
  width: 100%;
  text-align: left;
  position: relative;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  font-style: italic;
  background-repeat: no-repeat;
  background-size: cover;
  shape-margin: 0.75rem;
  will-change: transform;
}

.notoR {
  font-family: var(--serif);
  font-weight: 400;
}

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

@media screen and (min-width: 769px) {
  .sp {
    display: none;
  }
}

.mv {
  width: 100%;
  margin: 0 auto;
  padding: 80px 0 0;
}
@media screen and (max-width: 768px) {
  .mv {
    padding: 40px 0 0;
  }
}
.mv__ttl {
  width: min(90%, 1300px);
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  row-gap: 10px;
}
.mv__ttl-ja {
  font-size: var(--lg);
  color: rgba(0, 0, 0, 0.4);
}
.mv__ttl-en {
  font-size: 110px;
  color: var(--black);
  font-family: var(--serif);
  line-height: 0.9;
}
@media screen and (max-width: 1024px) {
  .mv__ttl-en {
    font-size: 64px;
  }
}
@media screen and (max-width: 768px) {
  .mv__ttl-en {
    font-size: 42px;
  }
}

.breadcrumb {
  width: 100%;
  margin: 60px auto 0;
}
@media screen and (max-width: 768px) {
  .breadcrumb {
    margin: 40px auto 0;
  }
}
.breadcrumb__list {
  width: min(90%, 1300px);
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  -moz-column-gap: 15px;
       column-gap: 15px;
  row-gap: 10px;
}
@media screen and (max-width: 768px) {
  .breadcrumb__list {
    -moz-column-gap: 10px;
         column-gap: 10px;
    row-gap: 5px;
  }
}
.breadcrumb__item {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 15px;
       column-gap: 15px;
}
@media screen and (max-width: 768px) {
  .breadcrumb__item {
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
}
.breadcrumb__item:nth-child(n+2)::before {
  content: "";
  width: 2px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: var(--black);
}
.breadcrumb__text {
  font-size: var(--sm);
  color: var(--black);
}
.breadcrumb__link {
  font-size: var(--sm);
  color: rgba(0, 0, 0, 0.6);
  transition: color 0.3s ease;
}
@media (hover) {
  .breadcrumb__link:hover {
    color: var(--marukin);
  }
}

.contact {
  width: 100%;
  margin: 100px auto 180px;
}
@media screen and (max-width: 768px) {
  .contact {
    margin: 80px auto 100px;
  }
}
.contact--other {
  margin-top: 190px;
}
@media screen and (max-width: 768px) {
  .contact--other {
    margin-top: 95px;
  }
}
.contact__inner {
  width: min(90%, 1200px);
  margin: 0 auto;
}
.contact-title {
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 40px;
  font-family: var(--serif);
  color: var(--marukin);
  text-align: center;
}
@media screen and (max-width: 768px) {
  .contact-title {
    font-size: 28px;
  }
}
.contact-text {
  width: 100%;
  margin: 30px auto 0;
  text-align: center;
  font-size: var(--xl);
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .contact-text {
    margin: 20px auto 0;
    font-size: var(--lg);
    line-height: 1.5555555556;
  }
}
.contact-btn {
  width: 100%;
  margin: 80px auto 0;
  padding: 70px 7%;
  background: var(--black);
  border-radius: 20px;
  transition: opacity 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (hover) {
  .contact-btn:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 768px) {
  .contact-btn {
    margin: 30px auto 0;
    padding: 50px 5%;
    border-radius: 10px;
  }
}
@media screen and (max-width: 500px) {
  .contact-btn {
    padding: 30px 5%;
  }
}
.contact-btn__title {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  -moz-column-gap: 30px;
       column-gap: 30px;
}
@media screen and (max-width: 768px) {
  .contact-btn__title {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 5px;
  }
}
.contact-btn__title-en {
  font-size: 54px;
  color: var(--white);
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .contact-btn__title-en {
    font-size: 32px;
  }
}
.contact-btn__title-jp {
  font-size: var(--xl);
  color: var(--gray4);
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .contact-btn__title-jp {
    font-size: var(--lg);
  }
}
.contact-btn__arrow {
  width: 80px;
  aspect-ratio: 1/1;
  background: var(--white);
  border-radius: 50%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .contact-btn__arrow {
    width: 40px;
  }
}
.contact-btn__arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  aspect-ratio: 24/11;
  -webkit-mask-image: url("/common/img/icon_arrow.svg");
          mask-image: url("/common/img/icon_arrow.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: var(--black);
}
@media screen and (max-width: 768px) {
  .contact-btn__arrow::before {
    width: 18px;
  }
}
.contact-btn__archive {
  position: relative;
  width: 160px;
  margin: 50px auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100vmax;
  background: var(--black);
  padding: 15px 0;
  font-size: var(--sm);
  font-weight: 700;
  color: var(--white);
  transition: opacity 0.3s ease;
}
@media (hover) {
  .contact-btn__archive:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 768px) {
  .contact-btn__archive {
    width: 140px;
    margin: 30px auto 0;
    padding: 12px 0;
  }
}
.contact-btn__archive::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  width: 15px;
  aspect-ratio: 15/7;
  -webkit-mask-image: url("/common/img/icon_arrow.svg");
          mask-image: url("/common/img/icon_arrow.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: var(--white);
}
.contact-btn__archive.is-works {
  width: 180px;
}
@media screen and (max-width: 768px) {
  .contact-btn__archive.is-works {
    width: 160px;
  }
}
.contact-btn__archive.is-works::before {
  right: auto;
  left: 10%;
  transform: translateY(-35%) rotate(180deg);
}

.intro__inner {
  width: 90%;
  margin-inline: auto;
}
.intro__contents {
  max-width: 920px;
  margin-top: 100px;
  text-align: center;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .intro__contents {
    margin-top: 50px;
    text-align: left;
  }
}
.intro__lead {
  line-height: 1.625;
  letter-spacing: 0em;
}
.intro__lead::before, .intro__lead::after {
  content: "";
  display: block flow;
  inline-size: 0;
  block-size: 1px;
}
.intro__lead::before {
  margin-block-end: calc((1 - 1.625) * 0.5em);
}
.intro__lead::after {
  margin-block-start: calc((1 - 1.625) * 0.5em);
}
.intro__lead {
  font-size: 40px;
  font-family: var(--serif);
  color: var(--marukin);
}
@media screen and (max-width: 768px) {
  .intro__lead {
    font-size: 28px;
  }
}
.intro__disc {
  margin-top: 30px;
  line-height: 2;
  letter-spacing: 0em;
}
.intro__disc::before, .intro__disc::after {
  content: "";
  display: block flow;
  inline-size: 0;
  block-size: 1px;
}
.intro__disc::before {
  margin-block-end: calc((1 - 2) * 0.5em);
}
.intro__disc::after {
  margin-block-start: calc((1 - 2) * 0.5em);
}
.intro__disc {
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .intro__disc {
    font-size: 14px;
    margin-top: 30px;
  }
}
.intro__btn {
  width: 185px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100vmax;
  background: var(--black);
  padding: 15px 0;
  font-size: var(--sm);
  color: var(--white);
  font-weight: 700;
  position: relative;
  transition: opacity 0.3s ease;
  margin-inline: auto;
  margin-top: 40px;
}
@media (hover) {
  .intro__btn:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 1024px) {
  .intro__btn {
    width: 200px;
  }
}
@media screen and (max-width: 768px) {
  .intro__btn {
    width: 150px;
  }
}
.intro__btn::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 12.5%;
  transform: translateY(-50%);
  width: 15px;
  aspect-ratio: 15/7;
  -webkit-mask-image: url("/common/img/icon_arrow.svg");
          mask-image: url("/common/img/icon_arrow.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: var(--white);
}

.solution {
  margin-top: 80px;
  background: #f0f0f0;
  padding-block: 100px;
}
@media screen and (max-width: 1024px) {
  .solution {
    margin-top: 40px;
    padding-block: 50px;
  }
}
.solution__inner {
  width: 90%;
  max-width: 1200px;
  margin-inline: auto;
}
.solution__container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.solution__contents {
  max-width: 1000px;
  width: 100%;
  margin-top: 80px;
  border-radius: 20px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 14% 1fr;
}
@media screen and (max-width: 768px) {
  .solution__contents {
    margin-top: 30px;
    grid-template-columns: 1fr;
  }
}
.solution__top {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 50px;
}
@media screen and (max-width: 768px) {
  .solution__top {
    flex-direction: column;
    gap: 20px;
  }
}
.solution__top .solution__lead {
  text-align: left;
}
.solution__top .solution__disc {
  margin-top: 0;
  text-align: left;
}
.solution__lead {
  line-height: 1.6666666667;
  letter-spacing: 0em;
}
.solution__lead::before, .solution__lead::after {
  content: "";
  display: block flow;
  inline-size: 0;
  block-size: 1px;
}
.solution__lead::before {
  margin-block-end: calc((1 - 1.6666666667) * 0.5em);
}
.solution__lead::after {
  margin-block-start: calc((1 - 1.6666666667) * 0.5em);
}
.solution__lead {
  font-size: 36px;
  font-family: var(--serif);
  color: var(--marukin);
  word-break: keep-all;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .solution__lead {
    font-size: 24px;
  }
}
.solution__list {
  padding: 30px 50px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 40px;
  background: var(--white);
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .solution__list {
    padding: 20px;
    grid-template-columns: 1fr;
  }
}
.solution__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: center;
  padding: 20px 0;
}
.solution__item::before {
  content: "";
  background: url("/common/img/icon_dot.png") center/cover no-repeat;
  width: 24px;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 768px) {
  .solution__item::before {
    width: 20px;
  }
}
.solution__item:nth-child(n+3) {
  border-top: 1px solid var(--gray1);
}
@media screen and (max-width: 768px) {
  .solution__item {
    gap: 10px;
    font-size: 14px;
    padding: 10px 0;
  }
  .solution__item:nth-child(2) {
    border-top: 1px solid var(--gray1);
  }
}
.solution__head {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  background: var(--black);
  margin: 0 auto;
  padding-block: 10px;
}
.solution__disc {
  margin-top: 40px;
  line-height: 1.875;
  letter-spacing: 0em;
}
.solution__disc::before, .solution__disc::after {
  content: "";
  display: block flow;
  inline-size: 0;
  block-size: 1px;
}
.solution__disc::before {
  margin-block-end: calc((1 - 1.875) * 0.5em);
}
.solution__disc::after {
  margin-block-start: calc((1 - 1.875) * 0.5em);
}
.solution__disc {
  font-size: 16px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .solution__disc {
    margin-top: 20px;
    font-size: 14px;
  }
}

.strength {
  max-width: 1400px;
  margin-inline: auto;
  border-radius: 20px;
  background: var(--marukin);
  padding: 100px;
  margin-top: 80px;
  width: 90%;
}
@media screen and (max-width: 1024px) {
  .strength {
    padding: 50px 5% 30px;
    margin-top: 40px;
  }
}
@media screen and (max-width: 1024px) and (max-width: 768px) {
  .strength {
    padding: 30px 5%;
  }
}
.strength__lead {
  line-height: 1.7222222222;
  letter-spacing: 0em;
}
.strength__lead::before, .strength__lead::after {
  content: "";
  display: block flow;
  inline-size: 0;
  block-size: 1px;
}
.strength__lead::before {
  margin-block-end: calc((1 - 1.7222222222) * 0.5em);
}
.strength__lead::after {
  margin-block-start: calc((1 - 1.7222222222) * 0.5em);
}
.strength__lead {
  font-size: 36px;
  font-family: var(--serif);
  color: var(--white);
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  word-break: keep-all;
}
@media screen and (max-width: 768px) {
  .strength__lead {
    font-size: 24px;
    margin-left: 0;
  }
}
.strength__lead-sub {
  margin: 30px auto 0;
  text-align: center;
  font-size: var(--md);
  line-height: 1.5;
  color: var(--white);
}
@media screen and (max-width: 768px) {
  .strength__lead-sub {
    text-align: left;
    margin: 20px auto 0;
    margin-left: 0;
  }
}
.strength__list {
  margin-top: 60px;
  display: grid;
  grid-auto-rows: auto;
  grid-auto-rows: auto auto 1fr;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .strength__list {
    grid-template-rows: auto;
    gap: 15px;
    margin-top: 30px;
  }
}
.strength__list--3 {
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 768px) {
  .strength__list--3 {
    grid-template-columns: 1fr;
  }
}
.strength__list--4 {
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 1024px) {
  .strength__list--4 {
    gap: 15px;
  }
}
@media screen and (max-width: 768px) {
  .strength__list--4 {
    grid-template-columns: 1fr;
  }
}

.card {
  position: relative;
  background: var(--white);
  border-radius: 20px;
  padding: 54px 30px 40px;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 15px 0;
}
@media screen and (max-width: 1024px) {
  .card {
    padding: 30px 5% 20px;
    gap: 15px 0;
  }
}
.card__index {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--marukin);
  color: var(--white);
  border-radius: 10px;
  padding-inline: 18px;
  font-size: var(--sm);
}
.card__image {
  margin-bottom: 40px;
  grid-row: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .card__image {
    margin-bottom: 10px;
  }
}
.card__image img {
  width: auto;
  height: 75px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 1024px) {
  .card__image img {
    height: 55px;
  }
}
.card__lead {
  grid-row: 2;
  font-size: var(--xl);
  line-height: 1.3333333333;
  margin-block: calc((1em - 1lh) / 2);
}
@media screen and (max-width: 768px) {
  .card__lead br {
    display: none;
  }
}
.card__disc {
  grid-row: 3;
  font-size: var(--sm);
  line-height: 1.7857142857;
}

.works {
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  .works {
    margin-top: 50px;
  }
}
.works__inner {
  margin-inline: auto;
}
.works__title {
  line-height: 1.6666666667;
  letter-spacing: 0em;
}
.works__title::before, .works__title::after {
  content: "";
  display: block flow;
  inline-size: 0;
  block-size: 1px;
}
.works__title::before {
  margin-block-end: calc((1 - 1.6666666667) * 0.5em);
}
.works__title::after {
  margin-block-start: calc((1 - 1.6666666667) * 0.5em);
}
.works__title {
  font-size: 36px;
  font-family: var(--serif);
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  word-break: keep-all;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .works__title {
    font-size: 24px;
    width: 90%;
  }
}
.works__text {
  width: 100%;
  margin: 20px auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: var(--md);
  line-height: 1.875;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .works__text {
    margin: 15px auto 0;
  }
}
.works__contents:first-of-type {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .works__contents:first-of-type {
    margin-top: 40px;
  }
}
.works__contents:nth-child(n+3) {
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  .works__contents:nth-child(n+3) {
    margin-top: 50px;
  }
}
.works__heading {
  display: flex;
  align-items: center;
  gap: 17px;
  margin-left: 6.6666666667vw;
}
@media screen and (max-width: 768px) {
  .works__heading {
    gap: 10px;
    margin-left: 5%;
    font-size: 14px;
  }
}
.works__heading::before {
  content: "";
  display: inline-block;
  width: 8px;
  aspect-ratio: 1/1;
  background: var(--black);
  border-radius: 50%;
}
.works__list {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.3333333333vw;
}
@media screen and (max-width: 768px) {
  .works__list {
    gap: 15px;
    margin-top: 25px;
  }
}
.works__item {
  position: relative;
  display: grid;
  grid-template-columns: 46fr 29fr;
  height: min(29.3333333333vw, 440px);
  height: 29.3333333333vw;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .works__item {
    grid-template-columns: 1fr;
    height: auto;
  }
}
.works__item::after {
  content: "";
  position: absolute;
  background: url("/common/img/bg_works.png") center bottom/contain no-repeat;
  width: 100%;
  aspect-ratio: 1500/217;
  bottom: 0;
  left: 0;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .works__item::after {
    background-size: contain;
  }
}
.works__image {
  height: 100%;
  background-repeat: no-repeat;
  background-position: center right;
  background-size: cover;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 1024px) {
  .works__image {
    aspect-ratio: 920/440;
  }
}
.works__textbox {
  padding-left: 80px;
  padding-top: 10vw;
  padding-inline: 5.3333333333vw 6.6666666667vw;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1500px) {
  .works__textbox {
    padding-left: clamp(2.5rem, -2.878rem + 8.4vw, 5rem);
    padding-top: clamp(5rem, -4.412rem + 14.71vw, 9.375rem);
  }
}
@media screen and (max-width: 1500px) and (max-width: 1024px) {
  .works__textbox {
    padding-left: 40px;
    padding-top: 20px;
    padding-inline: 5%;
    padding-bottom: 20px;
  }
}
.works__lead {
  line-height: 1.4583333333;
  letter-spacing: 0em;
}
.works__lead::before, .works__lead::after {
  content: "";
  display: block flow;
  inline-size: 0;
  block-size: 1px;
}
.works__lead::before {
  margin-block-end: calc((1 - 1.4583333333) * 0.5em);
}
.works__lead::after {
  margin-block-start: calc((1 - 1.4583333333) * 0.5em);
}
.works__lead {
  font-size: 24px;
  font-family: var(--serif);
}
@media screen and (max-width: 1500px) {
  .works__lead {
    font-size: clamp(1.125rem, 0.318rem + 1.26vw, 1.5rem);
  }
}
@media screen and (max-width: 1500px) and (max-width: 1024px) {
  .works__lead {
    font-size: 18px;
  }
}
@media screen and (max-width: 1500px) {
  .works__lead br.pc {
    display: none !important;
  }
}
.works__disc {
  line-height: 1.875;
  letter-spacing: 0em;
}
.works__disc::before, .works__disc::after {
  content: "";
  display: block flow;
  inline-size: 0;
  block-size: 1px;
}
.works__disc::before {
  margin-block-end: calc((1 - 1.875) * 0.5em);
}
.works__disc::after {
  margin-block-start: calc((1 - 1.875) * 0.5em);
}
.works__disc {
  font-size: 16px;
  margin-top: 40px;
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  display: none;
}
@media screen and (max-width: 1500px) {
  .works__disc {
    font-size: clamp(0.875rem, 0.606rem + 0.42vw, 1rem);
    margin-top: clamp(1.25rem, -1.439rem + 4.2vw, 2.5rem);
  }
}
@media screen and (max-width: 1500px) and (max-width: 1024px) {
  .works__disc {
    font-size: 14px;
    margin-top: 20px;
  }
}
.works__btn {
  width: 156px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100vmax;
  background: var(--black);
  padding: 15px 0;
  font-size: var(--sm);
  color: var(--white);
  font-weight: 700;
  position: relative;
  transition: opacity 0.3s ease;
  margin-inline: auto 0;
  margin-top: 40px;
}
@media (hover) {
  .works__btn:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 1500px) {
  .works__btn {
    margin-top: clamp(1.25rem, -1.439rem + 4.2vw, 2.5rem);
  }
}
@media screen and (max-width: 1500px) and (max-width: 1024px) {
  .works__btn {
    width: 200px;
    margin-top: 20px;
  }
}
@media screen and (max-width: 1500px) and (max-width: 1024px) and (max-width: 768px) {
  .works__btn {
    width: 150px;
  }
}
.works__btn::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 12.5%;
  transform: translateY(-50%);
  width: 15px;
  aspect-ratio: 15/7;
  -webkit-mask-image: url("/common/img/icon_arrow.svg");
          mask-image: url("/common/img/icon_arrow.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: var(--white);
}
.works-btn__back {
  position: fixed;
  left: 20px;
  top: calc(var(--header) + 20px);
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  aspect-ratio: 44/41;
  -webkit-mask-image: url("/common/img/icon_arrow-back.svg");
          mask-image: url("/common/img/icon_arrow-back.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: var(--gray3);
  transition: opacity 0.3s ease;
}
@media (hover) {
  .works-btn__back:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 768px) {
  .works-btn__back {
    top: calc(var(--header) + 20px);
    left: 10px;
    width: min(10%, 40px);
  }
}

.faq {
  margin-block: 120px 160px;
}
@media screen and (max-width: 1024px) {
  .faq {
    margin-block: 60px 80px;
  }
}
.faq__inner {
  width: 90%;
  max-width: 1000px;
  margin-inline: auto;
}
.faq__title {
  line-height: 1.6666666667;
  letter-spacing: 0em;
}
.faq__title::before, .faq__title::after {
  content: "";
  display: block flow;
  inline-size: 0;
  block-size: 1px;
}
.faq__title::before {
  margin-block-end: calc((1 - 1.6666666667) * 0.5em);
}
.faq__title::after {
  margin-block-start: calc((1 - 1.6666666667) * 0.5em);
}
.faq__title {
  font-size: 36px;
  font-family: var(--serif);
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .faq__title {
    font-size: 24px;
  }
}
.faq__list {
  margin-top: 80px;
}
@media screen and (max-width: 1024px) {
  .faq__list {
    margin-top: 40px;
  }
}
.faq__item:not(:last-child) {
  border-bottom: 1px solid var(--gray1);
}
.faq__item:not(:last-child) .faq__contents {
  padding-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .faq__item:not(:last-child) .faq__contents {
    padding-bottom: 15px;
  }
}
.faq__item:not(:first-child) .faq__question {
  padding-top: 30px;
}
@media screen and (max-width: 768px) {
  .faq__item:not(:first-child) .faq__question {
    padding-top: 15px;
  }
}
.faq__item.is-opened .faq__plus::after {
  rotate: 0deg;
}
.faq__question {
  position: relative;
  cursor: pointer;
  list-style-type: none;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  -moz-column-gap: 40px;
       column-gap: 40px;
  padding-bottom: 30px;
  list-style: none;
}
.faq__question::-webkit-details-marker {
  display: none;
}
@media screen and (max-width: 768px) {
  .faq__question {
    -moz-column-gap: 10px;
         column-gap: 10px;
    padding-bottom: 15px;
  }
}
.faq__answer {
  display: flex;
  align-items: flex-start;
  padding-right: 21px;
}
.faq__contents {
  display: grid;
  grid-template-columns: auto 1fr;
  -moz-column-gap: 40px;
       column-gap: 40px;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .faq__contents {
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
}
.faq__index {
  font-size: 30px;
  font-family: var(--serif);
  color: var(--marukin);
  align-self: start;
  margin-top: 5px;
}
@media screen and (max-width: 768px) {
  .faq__index {
    font-size: 20px;
  }
}
.faq__text {
  margin-top: 0.5em;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .faq__text {
    margin-top: 0.25em;
    font-size: 14px;
  }
  .faq__text br {
    display: none;
  }
}
.faq__plus {
  position: relative;
  display: inline-block;
  width: 21px;
  aspect-ratio: 21/18;
  margin-inline: auto 0;
  flex-shrink: 0;
}
.faq__plus::before, .faq__plus::after {
  content: "";
  position: absolute;
  background: var(--marukin);
  height: 1px;
  top: 50%;
}
.faq__plus::before {
  content: "";
  width: 100%;
}
.faq__plus::after {
  content: "";
  width: 18px;
  transition: rotate 0.3s;
  rotate: 90deg;
  transform-origin: center;
  left: 50%;
  translate: -50% 0;
}

*[data-scroll=fade-up] {
  opacity: 0;
  translate: 0 1vw;
  transition: opacity 1.5s, translate 1.5s !important;
}
*.fade-up {
  opacity: 1;
  translate: 0 0;
}
*[data-scroll=fade-in] {
  opacity: 0;
  filter: blur(16px);
  transition: opacity 1.5s, filter 1.5s !important;
}
*.fade-in {
  filter: blur(0px);
  opacity: 1;
}

/* ------ old style ------ */
#contentsWrapper {
  padding-top: var(--header);
  position: relative;
}
#contentsWrapper .banners {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

#pagetitle {
  width: 100%;
  background-color: #fff;
  padding: 60px 0 42px;
  text-align: left;
  position: relative;
}
@media screen and (max-width: 768px) {
  #pagetitle {
    padding: 30px 0 24px;
  }
}
#pagetitle h1 {
  font-family: "Noto Serif JP", serif;
  font-feature-settings: "palt" 1;
  line-height: 1;
  letter-spacing: 0.04em;
}
#pagetitle h1::before, #pagetitle h1::after {
  content: "";
  display: block flow;
  inline-size: 0;
  block-size: 1px;
}
#pagetitle h1::before {
  margin-block-end: calc((1 - 1) * 0.5em);
}
#pagetitle h1::after {
  margin-block-start: calc((1 - 1) * 0.5em);
}
#pagetitle h1 {
  font-size: 46px;
  color: #000;
}
@media screen and (max-width: 768px) {
  #pagetitle h1 {
    font-size: 34px;
  }
}

.contactBtn {
  width: 100%;
  padding: 30px 0;
  text-align: center;
}
.contactBtn a {
  display: inline-block;
  padding: 15px 30px;
  margin: 0 auto;
  text-align: center;
  line-height: 1;
  font-size: 16px;
  color: #fff;
  text-decoration: none;
  border-radius: 7px;
  background-image: linear-gradient(90deg, rgb(0, 0, 0) 0%, rgb(68, 68, 68) 100%);
  box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.1);
}
.contactBtn a:hover {
  background-image: linear-gradient(90deg, rgb(30, 30, 30) 0%, rgb(90, 90, 90) 100%);
}
/*# sourceMappingURL=layout.css.map */
