@charset "UTF-8";
body {
  color: #111111;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
}

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

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

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

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

.section-heading {
  text-align: center;
}

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

.section-heading__en {
  color: #d9d9d9;
  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .section-heading__en {
    font-size: 48px;
  }
}
@media screen and (min-width: 1200px) {
  .section-heading__en {
    font-size: 48px;
  }
}

.section-heading__title {
  margin-top: 10px;
  color: #111;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1.5px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .section-heading__title {
    font-size: 24px;
  }
}
@media screen and (min-width: 1200px) {
  .section-heading__title {
    margin-top: 12px;
    font-size: 18px;
  }
}

.opening {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: opacity 0.8s ease, visibility 0.8s ease;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.opening.is-hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.opening__text {
  color: #fff;
  font-family: "Noto Serif Jp", "Noto Sans JP", sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.12em;
}
@media screen and (min-width: 1200px) {
  .opening__text {
    font-size: 38px;
  }
}

.opening__cursor {
  display: inline-block;
  -webkit-animation: openingCursor 0.8s infinite;
          animation: openingCursor 0.8s infinite;
}

@-webkit-keyframes openingCursor {
  0%, 50% {
    opacity: 1;
  }
  51%, 100% {
    opacity: 0;
  }
}

@keyframes openingCursor {
  0%, 50% {
    opacity: 1;
  }
  51%, 100% {
    opacity: 0;
  }
}
.fv__image,
.fv__copy-wrap,
.fv__button,
.fv__sub-image {
  opacity: 0;
}

.fv__image.is-show {
  -webkit-animation: fvPhoto 0.9s ease forwards;
          animation: fvPhoto 0.9s ease forwards;
}

.fv__copy-wrap.is-show {
  -webkit-animation: fvFadeUp 0.8s ease forwards;
          animation: fvFadeUp 0.8s ease forwards;
}

.fv__button.is-show {
  -webkit-animation: fvFadeUp 0.8s ease forwards;
          animation: fvFadeUp 0.8s ease forwards;
}

.fv__sub-image.is-show {
  -webkit-animation: fvFadeUp 0.8s ease forwards;
          animation: fvFadeUp 0.8s ease forwards;
}

@-webkit-keyframes fvPhoto {
  0% {
    opacity: 0;
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes fvPhoto {
  0% {
    opacity: 0;
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes fvFadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fvFadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.header {
  padding-block: 16px;
  position: relative;
  z-index: 100;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 100;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media screen and (min-width: 1200px) {
  .header {
    padding: 20px 90px 20px;
  }
}

.header.is-hide {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-inline: 16px;
}
@media screen and (min-width: 1200px) {
  .header__inner {
    padding-inline: 0;
  }
}

.header__logo {
  width: 130px;
  position: relative;
  z-index: 101;
}
@media screen and (min-width: 1200px) {
  .header__logo {
    width: 181px;
  }
}

.header__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.header__button {
  width: 32px;
  height: 24px;
  padding: 0;
  background: transparent;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  z-index: 101;
}
@media screen and (min-width: 1200px) {
  .header__button {
    display: none;
  }
}

.header__bar {
  width: 32px;
  height: 2px;
  background: #111;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
}

.header__button.is-open .header__bar {
  background: #fff;
}

.header__button.is-open .header__bar:nth-child(1) {
  -webkit-transform: translateY(11px) rotate(45deg);
          transform: translateY(11px) rotate(45deg);
}

.header__button.is-open .header__bar:nth-child(2) {
  opacity: 0;
}

.header__button.is-open .header__bar:nth-child(3) {
  -webkit-transform: translateY(-11px) rotate(-45deg);
          transform: translateY(-11px) rotate(-45deg);
}

.header__nav {
  display: none;
}
@media screen and (min-width: 1200px) {
  .header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 36px;
  }
}

.drawer {
  position: fixed;
  inset: 0;
  background: #000;
  color: #fff;
  z-index: 99;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 32px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
}
@media screen and (min-width: 1200px) {
  .drawer {
    display: none;
  }
}

.drawer.is-open {
  opacity: 1;
  visibility: visible;
}

.drawer__link {
  color: #fff;
  text-decoration: none;
  font-family: "Noto Serif Jp", "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.12em;
}

.drawer__link--contact {
  margin-top: 20px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 14px 36px;
  background: #fff;
  color: #111;
  border-radius: 999px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.drawer__link--contact:hover {
  background: #f5f5f5;
}

.fv {
  position: relative;
  overflow: hidden;
  padding-bottom: 30px;
  padding-top: 80px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .fv {
    padding-top: 120px;
  }
}
@media screen and (min-width: 1200px) {
  .fv {
    padding: 20px 90px 0;
    min-height: 760px;
    padding-top: 200px;
  }
}

.fv__inner {
  max-width: 100%;
  padding-inline: 16px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .fv__inner {
    padding-inline: 32px;
  }
}
@media screen and (min-width: 1200px) {
  .fv__inner {
    max-width: 1090px;
    margin-inline: auto;
    display: grid;
    grid-template-columns: 460px 1fr;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 75px;
    padding-inline: 16px;
  }
}

.fv__image {
  width: 100%;
}

.fv__image img {
  display: block;
  width: 100%;
  height: auto;
}

.fv__content {
  margin-top: 24px;
}
@media screen and (min-width: 1200px) {
  .fv__content {
    margin-top: 0;
  }
}

.fv__copy-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
@media screen and (min-width: 1200px) {
  .fv__copy-wrap {
    gap: 30px;
  }
}

.fv__sub-copy {
  font-family: "Noto Sans JP";
  font-size: 13px;
  font-weight: 400;
  line-height: 150%; /* 19.5px */
  letter-spacing: 2.47px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .fv__sub-copy {
    font-size: 17px;
  }
}
@media screen and (min-width: 1200px) {
  .fv__sub-copy {
    font-size: 19px;
    letter-spacing: 3.61px;
  }
}

.fv__copy {
  color: #111;
  font-family: "Source Han Serif JP";
  font-size: 23px;
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: 5.52px;
}
@media screen and (max-width: 374px) {
  .fv__copy {
    font-size: 20px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .fv__copy {
    font-size: 34px;
  }
}
@media screen and (min-width: 1200px) {
  .fv__copy {
    font-size: 38px;
    line-height: normal;
    letter-spacing: 9.12px;
  }
}

.fv__button {
  margin-top: 42px;
  width: 100%;
  height: 51px;
  background: #111;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-inline: 45px 30px;
  text-decoration: none;
  font-family: "Noto Serif JP", serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.2em;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .fv__button {
    width: 60%;
    height: 70px;
    font-size: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .fv__button {
    margin-top: 80px;
    width: 382px;
    height: 62px;
    padding-inline: 50px 35px;
    font-size: 18px;
  }
}

.fv__sub-image {
  display: none;
}
@media screen and (min-width: 1200px) {
  .fv__sub-image {
    display: block;
    position: absolute;
    bottom: 0;
    width: 185px;
  }
}

.fv__sub-image img {
  display: block;
  width: 100%;
  height: auto;
}

.belief {
  background: #fff;
  padding-block: 40px 60px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .belief {
    padding-block: 80px 60px;
  }
}
@media screen and (min-width: 1200px) {
  .belief {
    padding: 80px 40px 100px;
  }
}

.belief__inner {
  max-width: 100%;
  margin-inline: auto;
  text-align: center;
  padding-inline: 16px;
}
@media screen and (min-width: 1200px) {
  .belief__inner {
    max-width: 900px;
  }
}

.belief__heading {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.belief__title {
  color: #f5f5f5;
  font-family: "Cormorant Garamond", serif;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .belief__title {
    font-size: 65px;
  }
}
@media screen and (min-width: 1200px) {
  .belief__title {
    font-size: 80px;
    letter-spacing: 0.22em;
  }
}

.belief__circle {
  position: absolute;
  width: 92px;
  height: 92px;
  -webkit-animation: rotate-circle 16s linear infinite;
          animation: rotate-circle 16s linear infinite;
}
@media screen and (min-width: 1200px) {
  .belief__circle {
    width: 120px;
    height: 120px;
  }
}

.belief__circle img {
  display: block;
  width: 100%;
  height: auto;
}

.belief__body {
  margin-top: 50px;
}
@media screen and (min-width: 1200px) {
  .belief__body {
    margin-top: 80px;
  }
}

.belief__lead {
  text-align: center;
  font-size: 17px;
  font-weight: 500;
  line-height: 170%; /* 28.9px */
  letter-spacing: 1.7px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .belief__lead {
    font-size: 23px;
  }
}
@media screen and (min-width: 1200px) {
  .belief__lead {
    font-size: 20px;
    line-height: 2;
    margin-top: 6%;
  }
}

.belief__text {
  margin-top: 25px;
  text-align: center;
  font-family: "Source Han Serif JP";
  font-size: 14px;
  font-weight: 600;
  line-height: 170%; /* 27.2px */
  letter-spacing: 1.6px;
}
@media screen and (max-width: 374px) {
  .belief__text {
    font-size: 12px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .belief__text {
    font-size: 18px;
  }
}
@media screen and (min-width: 1200px) {
  .belief__text {
    margin-top: 14px;
    font-size: 16px;
    line-height: 2.2;
  }
}

@-webkit-keyframes rotate-circle {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotate-circle {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.section-image {
  width: 100%;
}
@media screen and (min-width: 1200px) {
  .section-image {
    width: 100%;
  }
}

.section-image picture {
  display: block;
}

.section-image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 10/4;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 1200px) {
  .section-image img {
    width: 100%;
    aspect-ratio: 16/4;
    height: auto;
  }
}

.approach {
  background: #f5f5f5;
  padding-block: 60px 20px;
  overflow: hidden;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .approach {
    padding-block: 100px 20px;
  }
}
@media screen and (min-width: 1200px) {
  .approach {
    padding: 90px 56px;
  }
}

.approach__heading {
  text-align: center;
}

.approach__panel {
  position: relative;
  margin-top: 32px;
  padding: 48px 24px 48px 40px;
  z-index: 1;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .approach__panel {
    margin-top: 60px;
    padding: 48px 120px 48px 120px;
  }
}
@media screen and (min-width: 1200px) {
  .approach__panel {
    max-width: 1160px;
    margin: 60px auto 0;
    padding: 92px 120px;
  }
}

.approach__panel::before {
  content: "";
  position: absolute;
  inset: 0 0 0 16px;
  background: #fff;
  border-radius: 16px 0 0 16px;
  z-index: -1;
}
@media screen and (min-width: 1200px) {
  .approach__panel::before {
    inset: 0;
    border-radius: 6px;
  }
}

.approach__item {
  margin-top: 58px;
}
.approach__item:first-child {
  margin-top: 0;
}
@media screen and (min-width: 1200px) {
  .approach__item {
    margin-top: 82px;
  }
}

@media screen and (min-width: 1200px) {
  .approach__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 70px;
  }
}

@media screen and (min-width: 1200px) {
  .approach__item--reverse .approach__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

@media screen and (min-width: 1200px) {
  .approach__body {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.approach__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
@media screen and (min-width: 1200px) {
  .approach__head {
    gap: 24px;
  }
}

.approach__number {
  color: #d9d9d9;
  font-family: "Cormorant Garamond", serif;
  font-size: 35px;
  font-weight: 700;
  line-height: 1;
}
@media screen and (min-width: 1200px) {
  .approach__number {
    font-size: 56px;
  }
}

.approach__item-title {
  color: #111;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 1.5px;
}
@media screen and (max-width: 374px) {
  .approach__item-title {
    font-size: 14px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .approach__item-title {
    font-size: 24px;
  }
}
@media screen and (min-width: 1200px) {
  .approach__item-title {
    font-size: 20px;
  }
}

.approach__text {
  margin-top: 22px;
  color: #111;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  line-height: 170%;
  letter-spacing: 0.8px;
}
@media screen and (max-width: 374px) {
  .approach__text {
    font-size: 13px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .approach__text {
    font-size: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .approach__text {
    margin-top: 24px;
    line-height: 2;
  }
}

.approach__image {
  margin-top: 14px;
}
@media screen and (min-width: 1200px) {
  .approach__image {
    width: 440px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-top: 0;
  }
}

.approach__image img {
  display: block;
  width: 100%;
  height: auto;
}

.middle-slider {
  background: #f5f5f5;
  padding-block: 58px;
  overflow: hidden;
}
@media screen and (min-width: 1200px) {
  .middle-slider {
    padding-block: 0px 100px;
  }
}

.middle-slider__swiper {
  overflow: visible;
}

.middle-slider__slide {
  width: 220px;
}
@media screen and (min-width: 1200px) {
  .middle-slider__slide {
    width: 450px;
  }
}

.middle-slider__slide img {
  display: block;
  width: 100%;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 1200px) {
  .middle-slider__slide img {
    height: 230px;
  }
}

.middle-slider__slide--circle {
  width: 180px;
}
@media screen and (min-width: 1200px) {
  .middle-slider__slide--circle {
    width: 280px;
  }
}

.middle-slider__slide--circle img {
  display: block;
  width: 180px;
  height: 240px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 999px;
}
@media screen and (min-width: 1200px) {
  .middle-slider__slide--circle img {
    display: block;
    width: 280px;
    height: 430px;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 999px;
  }
}

.case {
  background: #8b9191;
  padding: 64px 12px 72px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .case {
    padding-inline: 120px;
  }
}
@media screen and (min-width: 1200px) {
  .case {
    padding: 90px 40px 120px;
  }
}

.case__inner {
  max-width: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 374px) {
  .case__inner {
    padding-inline: 6px;
  }
}
@media screen and (min-width: 1200px) {
  .case__inner {
    max-width: 880px;
  }
}

.case__heading {
  text-align: center;
  color: #fff;
}

.case__en {
  font-family: "Cormorant Garamond", serif;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
}
@media screen and (max-width: 374px) {
  .case__en {
    font-size: 34px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .case__en {
    font-size: 48px;
  }
}
@media screen and (min-width: 1200px) {
  .case__en {
    font-size: 40px;
  }
}

.case__title {
  margin-top: 10px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.12em;
}
@media screen and (max-width: 374px) {
  .case__title {
    font-size: 15px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .case__title {
    font-size: 24px;
  }
}
@media screen and (min-width: 1200px) {
  .case__title {
    margin-top: 14px;
    font-size: 18px;
  }
}

.case__lead {
  margin-top: 12px;
  text-align: center;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%; /* 28.9px */
  letter-spacing: 0.85px;
}
@media screen and (min-width: 1200px) {
  .case__lead {
    display: block;
    margin-top: 28px;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 14px;
    letter-spacing: 0.08em;
  }
}

.case__items {
  margin-top: 32px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .case__items {
    max-width: 700px;
    margin-inline: auto;
  }
}
@media screen and (min-width: 1200px) {
  .case__items {
    margin-top: 64px;
  }
}

.case__item {
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
  margin-top: 30px;
}
@media screen and (min-width: 1200px) {
  .case__item {
    display: grid;
    grid-template-columns: 38% 62%;
    min-height: 252px;
    border-radius: 18px;
    margin-top: 48px;
  }
}

.case__item:first-child {
  margin-top: 0;
}

.case__image {
  height: 212px;
  background: #eee9e9;
}
@media screen and (min-width: 1200px) {
  .case__image {
    height: auto;
  }
}

.case__body {
  padding: 18px 30px;
  background: #fff;
}
@media screen and (max-width: 374px) {
  .case__body {
    padding: 18px 23px;
  }
}
@media screen and (min-width: 1200px) {
  .case__body {
    padding: 78px 44px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.case__category {
  width: 112px;
  height: 25px;
  border-radius: 999px;
  background: #f4f2f2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}
@media screen and (min-width: 1200px) {
  .case__category {
    width: 96px;
    height: 22px;
    font-size: 12px;
  }
}

.case__text {
  margin-top: 10px;
  font-family: "Noto Serif Jp", "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 374px) {
  .case__text {
    font-size: 15px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .case__text {
    font-size: 22px;
  }
}
@media screen and (min-width: 1200px) {
  .case__text {
    margin-top: 22px;
    font-size: 19px;
    line-height: 1.5;
    letter-spacing: 0.08em;
  }
}

.case__text strong {
  font-weight: 700;
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .profile {
    padding-bottom: 100px;
  }
}

.profile__main {
  padding: 64px 16px 72px;
}
@media screen and (min-width: 1200px) {
  .profile__main {
    padding: 110px 40px 0;
  }
}

.profile__main-inner {
  max-width: 100%;
  margin-inline: auto;
}
@media screen and (min-width: 1200px) {
  .profile__main-inner {
    max-width: 900px;
  }
}

.profile__main-content {
  margin-top: 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  gap: 28px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .profile__main-content {
    margin-inline: auto;
  }
}
@media screen and (min-width: 1200px) {
  .profile__main-content {
    margin-top: 60px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 80px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .profile__text-area {
    margin-inline: auto;
  }
}
@media screen and (min-width: 1200px) {
  .profile__text-area {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .profile__image {
    margin-inline: 100px;
  }
}
@media screen and (min-width: 1200px) {
  .profile__image {
    width: 330px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.profile__image picture,
.profile__image img {
  display: block;
  width: 100%;
  height: auto;
}

.profile__lead {
  color: #111;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .profile__lead {
    font-size: 24px;
  }
}
@media screen and (min-width: 1200px) {
  .profile__lead {
    font-size: 18px;
  }
}

.profile__text {
  margin-top: 24px;
  color: #111;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 374px) {
  .profile__text {
    font-size: 13px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .profile__text {
    font-size: 20px;
  }
}

.profile__name {
  margin-top: 26px;
  color: #111;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .profile__name {
    font-size: 22px;
  }
}

.profile__sign {
  margin-top: 8px;
  color: #e4e4e4;
  font-family: "Oooh Baby", cursive;
  font-size: 28px;
  line-height: 1;
}
@media screen and (min-width: 1200px) {
  .profile__sign {
    margin-top: 100px;
    color: #fff;
    font-size: 34px;
  }
}

.profile__career {
  background: #f5f5f5;
  padding-inline: 40px;
  padding-block: 20px 40px;
}
@media screen and (max-width: 374px) {
  .profile__career {
    padding-inline: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .profile__career {
    padding: 0;
  }
}

.profile__career-inner {
  max-width: 100%;
  margin-inline: auto;
}
@media screen and (min-width: 1200px) {
  .profile__career-inner {
    max-width: 900px;
    padding: 64px 40px 70px;
    position: relative;
  }
}

.profile__section-label {
  color: #d9d9d9;
  font-family: "Oooh Baby", cursive;
  font-size: 42px;
  line-height: 1;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .profile__section-label {
    padding-inline: 105px;
  }
}
@media screen and (min-width: 1200px) {
  .profile__section-label {
    position: absolute;
    top: -26px;
    left: 40px;
    font-size: 44px;
  }
}

.profile__career-list {
  margin-top: 14px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .profile__career-list {
    padding-inline: 40px;
    margin-inline: 80px;
  }
}
@media screen and (min-width: 1200px) {
  .profile__career-list {
    margin-top: 0;
    padding-left: 30px;
  }
}

.profile__career-item {
  padding-block: 20px;
  border-bottom: 1px solid #d9d9d9;
}
@media screen and (min-width: 1200px) {
  .profile__career-item {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 48px;
    padding-block: 0px 18px;
    border-bottom: none;
  }
}

.profile__career-item:first-child {
  padding-top: 0;
}
@media screen and (min-width: 1200px) {
  .profile__career-item:first-child {
    padding-top: 18px;
  }
}

.profile__career-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
@media screen and (min-width: 1200px) {
  .profile__career-item:last-child {
    padding-bottom: 18px;
  }
}

@media screen and (min-width: 1200px) {
  .profile__career-item::before {
    content: "";
    position: absolute;
    left: -34px;
    top: 26px;
    width: 8px;
    height: 8px;
    background: #999;
    border-radius: 50%;
    z-index: 2;
  }
}

@media screen and (min-width: 1200px) {
  .profile__career-item::after {
    content: "";
    position: absolute;
    left: -31px;
    top: 34px;
    width: 1px;
    height: calc(100% + 0px);
    background: #999;
    z-index: 1;
  }
}

.profile__career-item:last-child::after {
  display: none;
}

.profile__year {
  color: #8f8f8f;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 1200px) {
  .profile__year {
    width: 80px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

@media screen and (min-width: 1200px) {
  .profile__career-body {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding-bottom: 18px;
    border-bottom: 1px solid #d9d9d9;
  }
}

@media screen and (min-width: 1200px) {
  .profile__career-item:last-child .profile__career-body {
    border-bottom: none;
    padding-bottom: 0;
  }
}

.profile__career-title {
  margin-top: 8px;
  color: #111;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 1.3px;
}
@media screen and (max-width: 374px) {
  .profile__career-title {
    font-size: 14px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .profile__career-title {
    font-size: 18px;
  }
}
@media screen and (min-width: 1200px) {
  .profile__career-title {
    margin-top: 0;
  }
}

.profile__career-text {
  margin-top: 6px;
  color: #111;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .profile__career-text {
    font-size: 15px;
  }
}

.profile__private {
  background: #fff;
  padding: 60px 36px 20px;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 1200px) {
  .profile__private {
    padding: 100px 40px 120px;
  }
}

.profile__private-inner {
  position: relative;
  max-width: 100%;
  margin-inline: auto;
}
@media screen and (min-width: 1200px) {
  .profile__private-inner {
    max-width: 900px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 70px;
  }
}

.profile__private-images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 18px;
}
@media screen and (min-width: 1200px) {
  .profile__private-images {
    width: 360px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 38px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.profile__private-image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.profile__private-image--01 {
  width: 138px;
  margin-top: 80px;
}
@media screen and (min-width: 1200px) {
  .profile__private-image--01 {
    width: 140px;
    margin-top: 70px;
  }
}

.profile__private-image--02 {
  width: 160px;
  margin-bottom: 80px;
}
@media screen and (min-width: 1200px) {
  .profile__private-image--02 {
    width: 170px;
    margin-bottom: 70px;
  }
}

.profile__private-image img {
  display: block;
  width: 100%;
  height: auto;
}

.profile__private-text-area {
  margin-top: 28px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .profile__private-text-area {
    padding-inline: 80px;
  }
}
@media screen and (min-width: 1200px) {
  .profile__private-text-area {
    margin-top: 0;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.profile__section-label--private {
  color: #d9d9d9;
}
@media screen and (min-width: 1200px) {
  .profile__section-label--private {
    position: static;
    font-size: 44px;
  }
}

.profile__private-text {
  margin-top: 8px;
  color: #111;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .profile__private-text {
    padding-inline: 80px;
    font-size: 15px;
  }
}
.profile__leaf {
  width: 160px;
  position: absolute;
  right: -40px;
  bottom: -50px;
  opacity: 0.35;
}
@media screen and (min-width: 1200px) {
  .profile__leaf {
    width: 300px;
    right: -40px;
    bottom: -30px;
    opacity: 1;
  }
}

.profile__leaf img {
  display: block;
  width: 100%;
  height: auto;
}

.service {
  background-color: #fff;
  background-image: url("../img/service/service_bg-sp.webp");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  padding: 64px 16px 72px;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 1200px) {
  .service {
    background-image: url("../img/service/service_bg-pc.webp");
    background-position: top center;
    background-size: cover;
    padding: 110px 40px 120px;
    padding: 110px 40px 120px;
  }
}

.service__inner {
  position: relative;
  z-index: 1;
  max-width: 100%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .service__inner {
    padding-inline: 160px;
  }
}
@media screen and (min-width: 1200px) {
  .service__inner {
    max-width: 980px;
  }
}

.service__heading {
  text-align: center;
}

.service__en {
  color: #d9d9d9;
  font-family: "Cormorant Garamond", serif;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
}
@media screen and (min-width: 1200px) {
  .service__en {
    font-size: 48px;
  }
}

.service__title {
  margin-top: 8px;
  color: #111;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.6;
}
@media screen and (min-width: 1200px) {
  .service__title {
    margin-top: 12px;
    font-size: 22px;
  }
}

.service__lead {
  margin-top: 20px;
  font-family: "Noto Sans JP", sans-serif;
  color: #111;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 1.8px;
}
@media screen and (max-width: 374px) {
  .service__lead {
    font-size: 14px;
  }
}
@media screen and (min-width: 1200px) {
  .service__lead {
    margin-top: 26px;
    font-size: 18px;
    line-height: 1.8;
  }
}

.service__content {
  margin-top: 20px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .service__content {
    margin-top: 44px;
  }
}
@media screen and (min-width: 1200px) {
  .service__content {
    margin-top: 56px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 78px;
  }
}

.service__sheet {
  width: 70%;
  max-width: 250px;
  margin-inline: auto;
}
@media screen and (min-width: 1200px) {
  .service__sheet {
    width: 470px;
    max-width: none;
    margin-inline: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.service__sheet img {
  display: block;
  width: 100%;
  height: auto;
}

.service__body {
  margin-top: 38px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .service__body {
    max-width: 500px;
    margin-inline: auto;
  }
}
@media screen and (min-width: 1200px) {
  .service__body {
    width: 400px;
    margin-top: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.service__box {
  background: #fff;
  border: 1px solid #d9d9d9;
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.16);
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.16);
}

.service__box-title {
  background: #8b9191;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-align: center;
  padding-block: 12px;
}
@media screen and (min-width: 1200px) {
  .service__box-title {
    font-size: 18px;
    padding-block: 12px;
  }
}

.service__list {
  padding: 32px 52px 34px;
}
@media screen and (max-width: 374px) {
  .service__list {
    padding: 32px 30px 34px;
  }
}
@media screen and (min-width: 1200px) {
  .service__list {
    padding: 34px 66px 36px;
  }
}

.service__item {
  position: relative;
  color: #111;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.06em;
  padding-left: 32px;
  margin-top: 18px;
  line-height: 180%; /* 30.6px */
  letter-spacing: 0.85px;
}
@media screen and (max-width: 374px) {
  .service__item {
    font-size: 14px;
  }
}
@media screen and (min-width: 1200px) {
  .service__item {
    font-size: 17px;
    margin-top: 22px;
    padding-left: 36px;
  }
}

.service__item:first-child {
  margin-top: 0;
}

.service__item::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  background: #8b8f8f;
  color: #fff;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 12px;
  line-height: 1;
}
@media screen and (max-width: 374px) {
  .service__item::before {
    width: 14px;
    height: 14px;
    font-size: 8px;
  }
}
@media screen and (min-width: 1200px) {
  .service__item::before {
    width: 22px;
    height: 22px;
  }
}

.service__point {
  margin-top: 28px;
}
@media screen and (min-width: 1200px) {
  .service__point {
    margin-top: 70px;
  }
}

.service__point-label {
  color: #bfbfbf;
  font-family: "Oooh Baby", cursive;
  font-size: 40px;
  line-height: 1;
}
@media screen and (min-width: 1200px) {
  .service__point-label {
    text-align: center;
    font-size: 42px;
  }
}

.service__point-text {
  margin-top: 10px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  text-align: center;
  font-weight: 500;
  line-height: 180%; /* 30.6px */
  letter-spacing: 0.85px;
}
@media screen and (max-width: 374px) {
  .service__point-text {
    font-size: 14px;
  }
}
@media screen and (min-width: 1200px) {
  .service__point-text {
    margin-top: 16px;
    font-size: 18px;
    line-height: 1.9;
  }
}

.service__button-wrap {
  margin-top: 36px;
}
@media screen and (min-width: 1200px) {
  .service__button-wrap {
    margin-top: 54px;
  }
}

.service__button {
  width: 100%;
  height: 62px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-inline: 84px 38px;
  text-decoration: none;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.22);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.22);
}
@media screen and (max-width: 374px) {
  .service__button {
    padding-inline: 60px 38px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .service__button {
    height: 78px;
  }
}
@media screen and (min-width: 1200px) {
  .service__button {
    width: 360px;
    height: 62px;
    margin-inline: auto;
    padding-inline: 76px 38px;
    font-size: 16px;
  }
}

.cta {
  background: #8b8f8f;
}

.cta__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 1200px) {
  .cta__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    min-height: 360px;
  }
}

.cta__image {
  width: 100%;
}
@media screen and (min-width: 1200px) {
  .cta__image {
    width: 50%;
  }
}

.cta__image picture {
  display: block;
}

.cta__image img {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (min-width: 1200px) {
  .cta__image img {
    width: 86%;
    height: 100%;
  }
}

.cta__picture {
  width: 100%;
  height: 100%;
}
.cta__picture img {
  height: 100%;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .cta__picture img {
    max-height: 300px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: 30% 20%;
       object-position: 30% 20%;
  }
}

.cta__body {
  padding: 28px 16px 34px;
  text-align: center;
  color: #fff;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .cta__body {
    padding-inline: 146px;
  }
}
@media screen and (min-width: 1200px) {
  .cta__body {
    width: 50%;
    padding: 56px 80px;
    text-align: left;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.cta__title {
  font-family: "Noto Serif Jp", "Noto Sans JP", sans-serif;
  color: #fff;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 2.94px;
}
@media screen and (max-width: 374px) {
  .cta__title {
    font-size: 16px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .cta__title {
    font-size: 28px;
  }
}
@media screen and (min-width: 1200px) {
  .cta__title {
    font-size: 32px;
    line-height: 1.45;
  }
}

.cta__line {
  width: 54px;
  height: 1px;
  background: #fff;
  margin: 8px auto 0;
}
@media screen and (min-width: 1200px) {
  .cta__line {
    margin: 14px 0 0;
    width: 48px;
  }
}

.cta__text {
  margin-top: 18px;
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 13px;
  font-style: normal;
  line-height: 170%; /* 22.1px */
  letter-spacing: 0.65px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .cta__text {
    font-size: 14px;
  }
}
@media screen and (min-width: 1200px) {
  .cta__text {
    margin-top: 34px;
    font-size: 16px;
    line-height: 1.9;
    text-align: left;
  }
}

.cta__button {
  margin-top: 24px;
  height: 64px;
  width: 100%;
  border-radius: 999px;
  background: #fff;
  color: #111;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-inline: 38px 34px;
  text-decoration: none;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .cta__button {
    max-width: 500px;
    margin-inline: auto;
  }
}
@media screen and (min-width: 1200px) {
  .cta__button {
    margin-top: 38px;
    width: 344px;
    height: 64px;
    padding-inline: 42px 32px;
    font-size: 16px;
  }
}

.cta__button-icon {
  font-size: 16px;
  line-height: 1;
}

.cta__button-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
}

.cta__button-arrow {
  font-size: 18px;
  line-height: 1;
}

.cta__note {
  margin-top: 10px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .cta__note {
    font-size: 14px;
  }
}
@media screen and (min-width: 1200px) {
  .cta__note {
    margin-top: 24px;
    font-size: 13px;
  }
}

.footer {
  background: #0a0a0a;
  padding: 34px 16px 28px;
}
@media screen and (min-width: 1200px) {
  .footer {
    padding: 32px 110px;
  }
}

.footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 1200px) {
  .footer__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.footer__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 22px;
}
@media screen and (min-width: 1200px) {
  .footer__sns {
    gap: 32px;
  }
}

.footer__sns-link {
  display: block;
  width: 24px;
  height: 24px;
}
@media screen and (min-width: 1200px) {
  .footer__sns-link {
    width: 32px;
    height: 32px;
  }
}

.footer__sns-link img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.footer__copyright {
  margin-top: 24px;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 10px;
  letter-spacing: 0.12em;
}
@media screen and (min-width: 1200px) {
  .footer__copyright {
    margin-top: 0;
    font-size: 12px;
    letter-spacing: 0.12em;
  }
}

@media screen and (min-width: 1200px) {
  .header__link {
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    font-weight: normal;
    font-family: "Noto Serif Jp", "Noto Sans JP", sans-serif;
  }
}

@media screen and (min-width: 1200px) {
  .header__contact {
    color: #fff;
    background: #111;
    padding: 11px 40px;
    font-size: 18px;
    font-weight: 500;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 230px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
    letter-spacing: 2.2px;
    font-family: "Noto Serif Jp", "Noto Sans JP", sans-serif;
  }
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .approach__items {
    max-width: 700px;
    margin-inline: auto;
  }
}

@media screen and (min-width: 1200px) {
  .approach__item--reverse {
    grid-template-columns: 440px 1fr;
  }
}

@media screen and (min-width: 1200px) {
  .approach__item--reverse .approach__text-block {
    grid-column: 2;
    grid-row: 1;
  }
}

@media screen and (min-width: 1200px) {
  .approach__item--reverse .approach__image {
    grid-column: 1;
    grid-row: 1/span 2;
  }
}

@media screen and (min-width: 1200px) {
  .approach__item--reverse .approach__text {
    grid-column: 2;
    grid-row: 2;
  }
}

@media screen and (min-width: 1200px) {
  .profile__text-area {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding-top: 24px;
    max-width: 340px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .profile__image {
    max-width: 700px;
    margin-inline: auto;
  }
}
@media screen and (min-width: 1200px) {
  .profile__image {
    width: 330px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

@media screen and (min-width: 1200px) {
  .profile__career-item::before {
    content: "";
    position: absolute;
    left: -35px;
    top: 28px;
    width: 8px;
    height: 8px;
    background: #999;
    border-radius: 50%;
  }
}

.profile__career-list::before {
  content: "";
  position: absolute;
  left: 39px;
  top: 18px;
  bottom: 18px;
  height: 325px;
  background: #999;
}

@media screen and (min-width: 1200px) {
  .profile__career-body {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

@media screen and (min-width: 1200px) {
  .service::before {
    top: 0;
    right: 0;
    width: 520px;
    height: 320px;
    opacity: 0.35;
  }
}

.fade-in-up {
  opacity: 0;
  -webkit-transform: translateY(32px);
          transform: translateY(32px);
  -webkit-transition: opacity 1s ease, -webkit-transform 1s ease;
  transition: opacity 1s ease, -webkit-transform 1s ease;
  transition: opacity 1s ease, transform 1s ease;
  transition: opacity 1s ease, transform 1s ease, -webkit-transform 1s ease;
}

.fade-in-up.is-in-view {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.fade-in {
  opacity: 0;
  -webkit-transition: opacity 1.4s ease;
  transition: opacity 1.4s ease;
}

.fade-in.is-in-view {
  opacity: 1;
}

.fade-in-soft {
  opacity: 0;
  -webkit-transform: scale(1.04);
          transform: scale(1.04);
  -webkit-filter: blur(6px);
          filter: blur(6px);
  -webkit-transition: opacity 1.2s ease, -webkit-transform 1.4s ease, -webkit-filter 1.2s ease;
  transition: opacity 1.2s ease, -webkit-transform 1.4s ease, -webkit-filter 1.2s ease;
  transition: opacity 1.2s ease, transform 1.4s ease, filter 1.2s ease;
  transition: opacity 1.2s ease, transform 1.4s ease, filter 1.2s ease, -webkit-transform 1.4s ease, -webkit-filter 1.2s ease;
}

.fade-in-soft.is-in-view {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-filter: blur(0);
          filter: blur(0);
}