@charset "UTF-8";
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.opening {
  position: fixed;
  inset: 0;
  background-color: #901422;
  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;
  z-index: 9999;
  -webkit-transition: opacity 0.4s ease 0.5s, -webkit-transform 0.9s cubic-bezier(0.76, 0, 0.24, 1);
  transition: opacity 0.4s ease 0.5s, -webkit-transform 0.9s cubic-bezier(0.76, 0, 0.24, 1);
  transition: transform 0.9s cubic-bezier(0.76, 0, 0.24, 1), opacity 0.4s ease 0.5s;
  transition: transform 0.9s cubic-bezier(0.76, 0, 0.24, 1), opacity 0.4s ease 0.5s, -webkit-transform 0.9s cubic-bezier(0.76, 0, 0.24, 1);
  pointer-events: auto;
}
.opening__logo img {
  width: 220px;
  height: auto;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.opening.is-hidden {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  z-index: 100;
  -webkit-box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
          box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}
.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;
  max-width: 1440px;
  margin: 0 auto;
  padding: 10px 24px;
  gap: clamp(8px, 1.11vw, 16px);
}
.header__logo {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.header__logo a {
  display: block;
}
.header__logo img {
  height: clamp(38px, 3.61vw, 52px);
  width: auto;
}
@media screen and (max-width: 768px) {
  .header__logo img {
    height: 42px;
  }
}
.header__nav {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 768px) {
  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100dvh;
    background-color: #ffffff;
    padding: 80px 24px 40px;
    -webkit-box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
            box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
    z-index: 200;
    -webkit-transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .header__nav.is-open {
    right: 0;
  }
}
.header__nav-list {
  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: clamp(0px, 0.28vw, 4px);
}
@media screen and (max-width: 768px) {
  .header__nav-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0;
  }
}
@media screen and (max-width: 768px) {
  .header__nav-item {
    width: 100%;
    border-bottom: 1px solid #eeeeee;
  }
}
.header__nav-item a {
  display: block;
  padding: 8px clamp(6px, 0.83vw, 12px);
  font-size: clamp(1.1rem, 0.97vw, 1.4rem);
  font-weight: 500;
  color: #333333;
  white-space: nowrap;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
@media screen and (max-width: 768px) {
  .header__nav-item a {
    padding: 18px 8px;
    font-size: 1.6rem;
  }
}
.header__nav-item a:hover {
  color: #901422;
}
.header__nav-footer {
  display: none;
}
@media screen and (max-width: 768px) {
  .header__nav-footer {
    display: block;
    margin-top: auto;
    padding-top: 32px;
  }
  .header__nav-footer img {
    width: 140px;
    height: auto;
  }
}
.header__cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(4px, 0.56vw, 8px);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .header__cta {
    display: none;
  }
}
.header__cta-btn {
  display: block;
  -webkit-transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, transform 0.2s ease;
  transition: opacity 0.2s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
}
.header__cta-btn:hover {
  opacity: 0.8;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.header__cta-btn img {
  height: clamp(34px, 3.19vw, 46px);
  width: auto;
}
.header__hamburger {
  display: none;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  z-index: 300;
  position: relative;
  padding: 4px;
}
@media screen and (max-width: 768px) {
  .header__hamburger {
    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;
  }
}
.header__hamburger img {
  width: 36px;
  height: auto;
  display: block;
}
.header__hamburger.is-open img {
  opacity: 0;
}
.header__hamburger.is-open::before, .header__hamburger.is-open::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 2px;
  background-color: #333333;
  border-radius: 2px;
}
.header__hamburger.is-open::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.header__hamburger.is-open::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 150;
}
.nav-overlay.is-active {
  display: block;
}

.fv {
  position: relative;
  overflow: hidden;
  background-image: url("../image/fv/pc-back.webp");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .fv {
    background-image: none;
    background-color: #f5f5f5;
  }
}
.fv__inner {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  min-height: min(680px, 47.22vw);
}
@media screen and (max-width: 768px) {
  .fv__inner {
    min-height: 0;
  }
}
.fv__content {
  position: relative;
  z-index: 2;
  max-width: min(880px, 61.11vw);
  padding-top: min(60px, 4.17vw);
  padding-right: 0;
  padding-bottom: min(56px, 3.89vw);
  padding-left: min(80px, 5.56vw);
}
@media screen and (max-width: 768px) {
  .fv__content {
    max-width: 100%;
    padding: 32px 20px;
  }
}
.fv__text {
  margin-bottom: min(32px, 2.22vw);
}
@media screen and (max-width: 768px) {
  .fv__text {
    margin-bottom: 24px;
  }
}
.fv__text img {
  width: 100%;
  max-width: min(800px, 55.56vw);
  height: auto;
}
@media screen and (max-width: 768px) {
  .fv__text img {
    max-width: 100%;
  }
}
.fv__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: min(16px, 1.11vw);
}
@media screen and (max-width: 768px) {
  .fv__buttons {
    display: none;
  }
}
.fv__btn {
  display: block;
  -webkit-transition: opacity 0.25s ease, -webkit-transform 0.25s ease;
  transition: opacity 0.25s ease, -webkit-transform 0.25s ease;
  transition: opacity 0.25s ease, transform 0.25s ease;
  transition: opacity 0.25s ease, transform 0.25s ease, -webkit-transform 0.25s ease;
}
.fv__btn:hover {
  opacity: 0.8;
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
}
.fv__btn img {
  height: min(60px, 4.17vw);
  width: auto;
}
.fv__image {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(700px, 48.61vw);
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .fv__image {
    position: static;
    width: 100%;
    padding: 0;
  }
}
.fv__image img {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (max-width: 768px) {
  .fv__image img {
    max-height: none;
    -o-object-fit: initial;
       object-fit: initial;
  }
}

.bottom-bar {
  display: none;
}
@media screen and (max-width: 768px) {
  .bottom-bar {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 80;
    padding-bottom: env(safe-area-inset-bottom);
  }
  .bottom-bar__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0;
    padding: 0;
  }
  .bottom-bar__item {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .bottom-bar__item--contact {
    background-color: #901422;
  }
  .bottom-bar__item--line {
    background-color: #06c755;
  }
  .bottom-bar__btn {
    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: 8px;
    padding: 14px 8px;
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    -webkit-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
  }
  .bottom-bar__btn:hover {
    opacity: 0.8;
  }
  .bottom-bar__icon {
    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: 1.6rem;
    line-height: 1;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .bottom-bar__text {
    white-space: nowrap;
  }
  .bottom-bar__arrow {
    font-size: 1.4rem;
    font-weight: 900;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.about {
  background-color: #ffffff;
  padding-bottom: 55px;
}
@media screen and (max-width: 768px) {
  .about {
    padding-bottom: 40px;
  }
}

.about__bg {
  background-image: url("../image/section-about/pc-back.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .about__bg {
    background-image: url("../image/section-about/sp-back.webp");
  }
}

.about__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 80px 80px 0;
}
@media screen and (max-width: 768px) {
  .about__inner {
    padding: 60px 0 0;
  }
}

.about__heading {
  text-align: center;
  margin-bottom: 36px;
}
@media screen and (max-width: 768px) {
  .about__heading {
    margin-bottom: 28px;
  }
}
.about__heading img {
  width: min(931px, 64.65vw);
  height: auto;
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .about__heading img {
    width: 79.47vw;
    margin: 0 auto;
  }
}

.about__text {
  text-align: center;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .about__text {
    text-align: left;
    padding: 0 8vw;
  }
}
.about__text p {
  font-size: 1.7rem;
  line-height: 2.1;
  color: #333333;
}
@media screen and (max-width: 768px) {
  .about__text p {
    font-size: 1.5rem;
    line-height: 1.9;
  }
}

.about__accent {
  color: #901422;
  font-weight: 700;
}

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

.about__icons {
  width: min(1240px, 86.11vw);
  margin: -100px auto 0;
  position: relative;
  z-index: 1;
}
.about__icons img {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (max-width: 768px) {
  .about__icons {
    width: auto;
    padding: 0 4vw;
    margin-top: -30px;
    position: relative;
    z-index: 1;
  }
}

.problem {
  background-color: #ffffff;
}

.problem__inner {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: 120px 80px 0;
}
.problem__inner::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: min(450px, 31.25vw);
  height: min(400px, 27.78vw);
  background-image: url("../image/section-problem/back-clane-image.webp");
  background-size: contain;
  background-position: right top;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .problem__inner {
    padding: 48px 0 0;
  }
  .problem__inner::after {
    display: none;
  }
}

.problem__heading {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .problem__heading {
    margin-bottom: 20px;
    padding: 0 20px;
  }
}
.problem__heading img {
  width: min(733px, 50.9vw);
  height: auto;
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .problem__heading img {
    width: 100%;
    max-width: 460px;
  }
}

.problem__content {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 60px;
}
@media screen and (max-width: 768px) {
  .problem__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}

.problem__text-area {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 768px) {
  .problem__text-area {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    padding: 32px 20px 0;
  }
}

.problem__h3 {
  margin-bottom: 28px;
}
.problem__h3 p {
  font-size: clamp(1.8rem, 2.361vw, 3.4rem);
  font-weight: 900;
  line-height: 1.75;
  color: #333333;
}
@media screen and (max-width: 768px) {
  .problem__h3 p {
    font-size: 3rem;
    line-height: 1.65;
  }
}

.problem__accent {
  color: #901422;
}

.problem__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  padding: 0 0 48px;
}
.problem__list .problem__list-item:nth-child(n+5) {
  display: none;
}
.problem__list.is-expanded .problem__list-item:nth-child(n+5) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .problem__list {
    padding: 0;
  }
}

.problem__list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
  font-size: clamp(1.3rem, 1.25vw, 1.8rem);
  line-height: 1.65;
  color: #333333;
}
@media screen and (max-width: 768px) {
  .problem__list-item {
    font-size: 2rem;
  }
}

.problem__list-icon {
  width: 22px;
  height: auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 2px;
}

.problem__more-btn {
  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: 8px;
  width: 100%;
  padding: 14px 20px;
  margin-top: 20px;
  background: none;
  border: 2px solid #901422;
  border-radius: 4px;
  color: #901422;
  font-size: 1.6rem;
  font-weight: 700;
  cursor: pointer;
  -webkit-transition: background-color 0.2s ease, color 0.2s ease;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.problem__more-btn:hover {
  background-color: #901422;
  color: #fff;
}

.problem__more-icon {
  display: inline-block;
  font-size: 1.2rem;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
.problem__more-btn.is-expanded .problem__more-icon {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.problem__image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 768px) {
  .problem__image {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 100%;
  }
}
.problem__image img {
  width: 100%;
  height: auto;
  display: block;
}

.problem__arrow {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 48px 0 48px;
}
@media screen and (max-width: 768px) {
  .problem__arrow {
    padding: 32px 0 32px;
  }
}
.problem__arrow img {
  width: min(168px, 11.67vw);
  height: auto;
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .problem__arrow img {
    width: min(108px, 28.8vw);
    height: auto;
  }
}

.problem__bottom {
  background-image: url("../image/section-problem/pc-problem-back.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #901422;
  padding: 40px 0;
}
@media screen and (max-width: 768px) {
  .problem__bottom {
    background-image: url("../image/section-problem/sp-problem-back.webp");
    padding: 32px 20px;
  }
}

.problem__bottom-inner {
  max-width: 1440px;
  margin: 0 auto;
  text-align: center;
}
.problem__bottom-inner img {
  width: min(791px, 54.93vw);
  height: auto;
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .problem__bottom-inner img {
    width: 100%;
    max-width: 460px;
  }
}

.before-after {
  background-color: #ffffff;
}

.before-after__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 120px 80px 120px;
}
@media screen and (max-width: 768px) {
  .before-after__inner {
    padding: 60px 20px 60px;
  }
}

.before-after__heading {
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .before-after__heading {
    margin-bottom: 40px;
  }
}
.before-after__heading img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

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

.before-after__sample-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 48px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .before-after__sample-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    margin-bottom: 16px;
  }
}

.before-after__text-col {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.before-after__sample-h3 {
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .before-after__sample-h3 {
    margin-bottom: 16px;
  }
}
.before-after__sample-h3 img {
  width: 100%;
  height: auto;
  display: block;
}

.before-after__desc {
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .before-after__desc {
    margin-bottom: 16px;
  }
}

.before-after__lead {
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1.65;
  color: #333333;
  margin-bottom: 14px;
}
@media screen and (max-width: 768px) {
  .before-after__lead {
    font-size: 1.7rem;
  }
}
.before-after__lead strong {
  color: #901422;
  font-weight: 900;
}

.before-after__body-text {
  font-size: 1.5rem;
  line-height: 1.8;
  color: #666666;
}
@media screen and (max-width: 768px) {
  .before-after__body-text {
    font-size: 1.4rem;
  }
}

.before-after__sample-middle {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .before-after__sample-middle {
    margin-top: 16px;
  }
}
.before-after__sample-middle img {
  width: 100%;
  height: auto;
  display: block;
}

.before-after__img-col {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.before-after__img-col img {
  width: 100%;
  height: auto;
  display: block;
}

.before-after__sample-bottom img {
  width: 100%;
  height: auto;
  display: block;
}

.before-after__iconset {
  margin-top: 16px;
}
.before-after__iconset img {
  width: 100%;
  height: auto;
  display: block;
}

.before-after__s3-cols {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 24px;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .before-after__s3-cols {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
    margin-top: 16px;
  }
}

.before-after__s3-left {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 67%;
          flex: 0 0 67%;
}
@media screen and (max-width: 768px) {
  .before-after__s3-left {
    width: 100%;
  }
}

.before-after__s3-right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 768px) {
  .before-after__s3-right {
    width: 100%;
  }
}
.before-after__s3-right .before-after__sample-bottom {
  margin-top: 0;
  height: 100%;
}
.before-after__s3-right .before-after__sample-bottom img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.before-after__plus {
  text-align: center;
  padding: 64px 0;
}
@media screen and (max-width: 768px) {
  .before-after__plus {
    padding: 40px 0;
  }
}
.before-after__plus img {
  width: 52px;
  height: auto;
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .before-after__plus img {
    width: 40px;
  }
}

.before-after__arrow {
  text-align: center;
  padding: 56px 0 40px;
}
@media screen and (max-width: 768px) {
  .before-after__arrow {
    padding: 36px 0 28px;
  }
}
.before-after__arrow img {
  width: 160px;
  height: auto;
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .before-after__arrow img {
    width: 100px;
  }
}

.before-after__bottom {
  text-align: center;
}
.before-after__bottom p {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.9;
  color: #333333;
}
@media screen and (max-width: 768px) {
  .before-after__bottom p {
    font-size: 1.7rem;
    text-align: left;
  }
}

.before-after__quote {
  font-weight: 900;
  color: #901422;
}

.service {
  background-color: #f5f5f5;
  padding: 120px 0;
}
@media screen and (max-width: 768px) {
  .service {
    padding: 60px 0;
  }
}

.service__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
}
@media screen and (max-width: 768px) {
  .service__inner {
    padding: 0 20px;
  }
}

.service__title {
  text-align: center;
  margin-bottom: 64px;
}
@media screen and (max-width: 768px) {
  .service__title {
    margin-bottom: 40px;
  }
}
.service__title img {
  width: min(572px, 39.72vw);
  height: auto;
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .service__title img {
    width: 100%;
    max-width: 460px;
  }
}

.service__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 72px;
}
@media screen and (max-width: 768px) {
  .service__list {
    gap: 56px;
  }
}

.service__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 64px;
}
.service__item--reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .service__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 20px;
  }
  .service__item--reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.service__info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}

.service__num {
  font-size: 4rem;
  font-weight: 900;
  color: #901422;
  line-height: 1;
  margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .service__num {
    font-size: 3.2rem;
  }
}

.service__h3 {
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .service__h3 {
    margin-bottom: 14px;
  }
}
.service__h3 img {
  width: 100%;
  height: auto;
  display: block;
}

.service__desc {
  font-size: 2rem;
  line-height: 1.85;
  color: #333333;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .service__desc {
    font-size: 1.6rem;
    margin-bottom: 18px;
  }
}

.service__check-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .service__check-list {
    gap: 8px;
  }
}
.service__check-list li {
  position: relative;
  padding-left: 38px;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.7;
  color: #333333;
}
@media screen and (max-width: 768px) {
  .service__check-list li {
    font-size: 1.6rem;
    padding-left: 34px;
  }
}
.service__check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 26px;
  height: 26px;
  background-image: url("../image/section-service/icon-check.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 768px) {
  .service__check-list li::before {
    width: 22px;
    height: 22px;
  }
}

.service__pic {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 48%;
          flex: 0 0 48%;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .service__pic {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 100%;
  }
}
.service__pic img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

.strength {
  background-color: #ffffff;
  padding: 120px 0;
}
@media screen and (max-width: 768px) {
  .strength {
    padding: 60px 0;
  }
}

.strength__inner {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
}
.strength__inner::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: min(420px, 30vw);
  height: min(380px, 27vw);
  background-image: url("../image/section-strength/midashi-back.webp");
  background-size: contain;
  background-position: right top;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .strength__inner {
    padding: 0 20px;
  }
  .strength__inner::after {
    display: none;
  }
}

.strength__title-area {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .strength__title-area {
    margin-bottom: 40px;
  }
}

.strength__subtitle {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  color: #901422;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
}

.strength__title {
  font-size: 4.8rem;
  font-weight: 900;
  line-height: 1.25;
  color: #333333;
}
.strength__title span {
  color: #901422;
}
.strength__title::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background-color: #901422;
  margin: 18px auto 0;
}
@media screen and (max-width: 768px) {
  .strength__title {
    font-size: 3.4rem;
  }
  .strength__title::after {
    margin-top: 14px;
  }
}

.strength__list {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media screen and (max-width: 1160px) and (min-width: 769px) {
  .strength__list .strength__card {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(50% - 15px);
            flex: 0 0 calc(50% - 15px);
  }
}
@media screen and (max-width: 768px) {
  .strength__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 32px;
  }
}

.strength__card {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #ffffff;
  border-radius: 8px;
  -webkit-box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.strength__card-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 24px 20px 16px;
  gap: 12px;
}

.strength__card-header-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 12px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.strength__card-num {
  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;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: #901422;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1;
}

.strength__card-title {
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1.55;
  color: #333333;
}
@media screen and (max-width: 768px) {
  .strength__card-title {
    font-size: 1.8rem;
  }
}

.strength__card-image {
  margin: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.strength__card-image img {
  width: 100%;
  height: 220px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media screen and (max-width: 768px) {
  .strength__card-image img {
    height: 240px;
  }
}

.strength__card-body {
  padding: 20px 20px 28px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.strength__card-body::before {
  content: "";
  display: block;
  width: 36px;
  height: 3px;
  background-color: #901422;
  margin-bottom: 14px;
}

.strength__card-subtitle {
  font-size: 1.6rem;
  font-weight: 700;
  color: #901422;
  margin-bottom: 10px;
  line-height: 1.5;
}

.strength__card-desc {
  font-size: 1.4rem;
  line-height: 1.85;
  color: #666666;
}

.team {
  background-image: url("../image/section-team/pc-team-section-back.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 120px 0;
}
@media screen and (max-width: 768px) {
  .team {
    background-image: url("../image/section-team/sp-team-section-back.webp");
    padding: 60px 0;
  }
}

.team__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
}
@media screen and (max-width: 768px) {
  .team__inner {
    padding: 0 20px;
  }
}

.team__heading {
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .team__heading {
    margin-bottom: 16px;
  }
}
.team__heading img {
  width: min(648px, 45vw);
  height: auto;
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .team__heading img {
    width: 80vw;
    max-width: 320px;
  }
}

.team__desc {
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.8;
  color: #333333;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .team__desc {
    font-size: 1.4rem;
    text-align: left;
    margin-bottom: 28px;
  }
}

.team__swiper-outer {
  position: relative;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .team__swiper-outer {
    margin-bottom: 16px;
  }
}

.team__swiper-outer .swiper-button-prev,
.team__swiper-outer .swiper-button-next {
  position: absolute;
  top: 35%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 10;
  width: 64px;
  height: 64px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  border: none;
  cursor: pointer;
  margin: 0;
}
.team__swiper-outer .swiper-button-prev::after,
.team__swiper-outer .swiper-button-next::after {
  display: none;
}
@media screen and (max-width: 768px) {
  .team__swiper-outer .swiper-button-prev,
  .team__swiper-outer .swiper-button-next {
    display: block;
    width: 48px;
    height: 48px;
  }
}

.team__swiper-outer .swiper-button-prev {
  left: 8px;
  background-image: url("../image/section-team/icon-left-arrow.webp");
}

.team__swiper-outer .swiper-button-next {
  right: 8px;
  background-image: url("../image/section-team/icon-right-arrow.webp");
}

.team__slider {
  width: 100%;
  overflow: hidden;
}

.team .swiper-pagination {
  position: static;
  margin-top: 20px;
}
.team .swiper-pagination .swiper-pagination-bullet {
  background: #ccc;
  opacity: 1;
}
.team .swiper-pagination .swiper-pagination-bullet-active {
  background: #901422;
}

.team__note {
  text-align: center;
  margin-top: 16px;
}
@media screen and (max-width: 768px) {
  .team__note {
    text-align: left;
  }
}

.team__note-icon {
  height: 24px;
  width: auto;
  display: inline-block;
}

.team__card {
  background: #ffffff;
  border-radius: 8px;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: auto;
  border-top: 4px solid #901422;
}
.team__card--dark {
  border-top-color: #1a1a1a;
}
.team__card--dark .team__card-copy {
  color: #1a1a1a;
}
.team__card--dark .team__card-tags li {
  border-color: #1a1a1a;
  color: #1a1a1a;
}
.team__card--blue {
  border-top-color: #1a4fa0;
}
.team__card--blue .team__card-copy {
  color: #1a4fa0;
}
.team__card--blue .team__card-tags li {
  border-color: #1a4fa0;
  color: #1a4fa0;
}
.team__card--orange {
  border-top-color: #d97706;
}
.team__card--orange .team__card-copy {
  color: #d97706;
}
.team__card--orange .team__card-tags li {
  border-color: #d97706;
  color: #d97706;
}
.team__card--green {
  border-top-color: #22a642;
}
.team__card--green .team__card-copy {
  color: #22a642;
}
.team__card--green .team__card-tags li {
  border-color: #22a642;
  color: #22a642;
}

.team__card-thumb {
  margin: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.team__card-thumb img {
  width: 100%;
  height: 240px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
  display: block;
}

.team__card-info {
  padding: 16px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.team__card-role {
  font-size: 1.2rem;
  font-weight: 500;
  color: #666666;
  margin-bottom: 4px;
}

.team__card-name {
  font-size: 3.2rem;
  font-weight: 900;
  color: #333333;
  line-height: 1.15;
  margin-bottom: 12px;
}

.team__card-copy {
  font-size: 1.4rem;
  font-weight: 700;
  color: #901422;
  line-height: 1.55;
  margin-bottom: 8px;
}

.team__card-text {
  font-size: 1.3rem;
  line-height: 1.75;
  color: #666666;
  margin-bottom: 14px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.team__card-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 6px;
}
.team__card-tags li {
  padding: 4px 10px;
  border: 1px solid #901422;
  color: #901422;
  font-size: 1.1rem;
  font-weight: 500;
  border-radius: 3px;
  white-space: nowrap;
  line-height: 1.5;
}

.works {
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
  padding-top: 120px;
  padding-bottom: 60px;
}
.works::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: min(420px, 30vw);
  height: min(380px, 27vw);
  background-image: url("../image/section-works/works-midashi-back.webp");
  background-size: contain;
  background-position: right top;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .works {
    padding-top: 60px;
    padding-bottom: 40px;
  }
  .works::before {
    display: none;
  }
}

.works__inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
}
@media screen and (max-width: 768px) {
  .works__inner {
    padding: 0 20px;
  }
}

.works__title-area {
  text-align: center;
}
.works__title-area img {
  width: min(290px, 20.14vw);
  height: auto;
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .works__title-area img {
    width: min(240px, 60vw);
  }
}

.works__desc {
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.8;
  color: #333333;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .works__desc {
    font-size: 1.4rem;
    text-align: left;
  }
}

.works__tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin-top: 32px;
}
@media screen and (max-width: 768px) {
  .works__tabs {
    gap: 8px;
    margin-top: 24px;
  }
}

.works__tab {
  padding: 8px 20px;
  border: 1px solid #333333;
  border-radius: 100px;
  font-size: 1.4rem;
  font-weight: 500;
  cursor: pointer;
  background: #ffffff;
  color: #333333;
  -webkit-transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  -webkit-user-select: none;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  white-space: nowrap;
}
.works__tab.is-active, .works__tab:hover {
  background: #901422;
  color: #fff;
  border-color: #901422;
}
@media screen and (max-width: 768px) {
  .works__tab {
    font-size: 1.3rem;
    padding: 7px 16px;
  }
}

.works__swiper-outer {
  position: relative;
  margin-top: 32px;
}
@media screen and (max-width: 768px) {
  .works__swiper-outer {
    margin-top: 20px;
  }
}

.works__swiper-outer .swiper-button-prev,
.works__swiper-outer .swiper-button-next {
  position: absolute;
  top: 42%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 10;
  width: 64px;
  height: 64px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  border: none;
  cursor: pointer;
  margin: 0;
}
.works__swiper-outer .swiper-button-prev::after,
.works__swiper-outer .swiper-button-next::after {
  display: none;
}
@media screen and (max-width: 768px) {
  .works__swiper-outer .swiper-button-prev,
  .works__swiper-outer .swiper-button-next {
    width: 48px;
    height: 48px;
    top: 40%;
  }
}

.works__swiper-outer .swiper-button-prev {
  left: -56px;
  background-image: url("../image/section-team/icon-left-arrow.webp");
}
@media screen and (max-width: 768px) {
  .works__swiper-outer .swiper-button-prev {
    left: 4px;
  }
}

.works__swiper-outer .swiper-button-next {
  right: -56px;
  background-image: url("../image/section-team/icon-right-arrow.webp");
}
@media screen and (max-width: 768px) {
  .works__swiper-outer .swiper-button-next {
    right: 4px;
  }
}

.works__slider {
  width: 100%;
  overflow: hidden;
}

.works .swiper-pagination {
  position: static;
  margin-top: 20px;
}
.works .swiper-pagination .swiper-pagination-bullet {
  background: #ccc;
  opacity: 1;
}
.works .swiper-pagination .swiper-pagination-bullet-active {
  background: #901422;
}

.works__card {
  background: #ffffff;
  border-radius: 8px;
  -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.works__card-thumb {
  position: relative;
  margin: 0;
  overflow: hidden;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.works__card-thumb img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  -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 (max-width: 768px) {
  .works__card-thumb img {
    height: 220px;
  }
}
.works__card-thumb:hover img {
  -webkit-transform: scale(1.04);
          transform: scale(1.04);
}

.works__card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #901422;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 4px;
  z-index: 1;
  line-height: 1.5;
}

.works__card-info {
  padding: 16px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.works__card-title {
  font-size: 2rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 10px;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .works__card-title {
    font-size: 1.8rem;
  }
}

.works__card-catch {
  font-size: 1.3rem;
  line-height: 1.7;
  color: #666666;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .works__card-catch {
    font-size: 1.2rem;
  }
}

.works__card-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 6px;
}
.works__card-tags li {
  padding: 4px 10px;
  border: 1px solid #333333;
  color: #333333;
  font-size: 1.1rem;
  border-radius: 4px;
  line-height: 1.5;
  white-space: nowrap;
}

.works__card--soon .works__card-info {
  display: none;
}

.works__card-thumb--soon {
  background: #f0f0f0;
  height: 280px;
  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;
}
.works__card-thumb--soon img {
  display: none;
}

.works__coming-soon {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #bbb;
  letter-spacing: 0.05em;
  line-height: 1.5;
}

.works__btn-wrap {
  text-align: center;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .works__btn-wrap {
    margin-top: 32px;
  }
}

.works__btn {
  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;
  gap: 8px;
  padding: 16px 56px;
  border: 2px solid #901422;
  border-radius: 8px;
  color: #901422;
  font-size: 1.6rem;
  font-weight: 700;
  background: transparent;
  -webkit-transition: background-color 0.25s ease, color 0.25s ease;
  transition: background-color 0.25s ease, color 0.25s ease;
}
.works__btn:hover {
  background: #901422;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .works__btn {
    padding: 14px 40px;
    font-size: 1.5rem;
    width: 100%;
    max-width: 320px;
  }
}

.flow {
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
  padding-top: 60px;
  padding-bottom: 120px;
}
.flow::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: min(420px, 30vw);
  height: min(380px, 27vw);
  background-image: url("../image/section-flow/flow-midashi-back.webp");
  background-size: contain;
  background-position: right top;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .flow {
    padding-top: 48px;
    padding-bottom: 64px;
  }
  .flow::before {
    display: none;
  }
}

.flow__inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
}
@media screen and (max-width: 768px) {
  .flow__inner {
    padding: 0 20px;
  }
}

.flow__title-area {
  text-align: center;
}
.flow__title-area img {
  width: min(324px, 22.5vw);
  height: auto;
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .flow__title-area img {
    width: min(280px, 68vw);
  }
}

.flow__desc {
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.85;
  color: #333333;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .flow__desc {
    font-size: 1.4rem;
    text-align: left;
    margin-top: 14px;
  }
  .flow__desc br {
    display: none;
  }
}

.flow__scroll-wrapper {
  margin-top: 20px;
  overflow-x: auto;
  overflow-y: visible;
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 20px;
  scrollbar-width: none;
}
.flow__scroll-wrapper::-webkit-scrollbar {
  display: none;
}
@media screen and (max-width: 1325px) {
  .flow__scroll-wrapper {
    scrollbar-width: thin;
    scrollbar-color: #901422 #f0f0f0;
  }
  .flow__scroll-wrapper::-webkit-scrollbar {
    display: block;
    height: 5px;
  }
  .flow__scroll-wrapper::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 4px;
  }
  .flow__scroll-wrapper::-webkit-scrollbar-thumb {
    background: #901422;
    border-radius: 4px;
  }
}

.flow__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 32px;
  list-style: none;
  padding-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .flow__list {
    gap: 20px;
  }
}

.flow__item {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 265px;
          flex: 1 0 265px;
  min-width: 265px;
  scroll-snap-align: start;
  position: relative;
}
.flow__item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -24px;
  top: 120px;
  width: 16px;
  height: 22px;
  background-image: url("../image/section-flow/icon-porigon.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .flow__item:not(:last-child)::after {
    right: -16px;
    top: 110px;
    width: 12px;
    height: 18px;
  }
}
@media screen and (max-width: 768px) {
  .flow__item {
    min-width: 260px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 260px;
            flex: 0 0 260px;
  }
}

.flow__item-visual {
  margin: 0 auto 16px;
  text-align: center;
}
.flow__item-visual img {
  width: 100%;
  max-width: 200px;
  height: auto;
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .flow__item-visual img {
    max-width: 180px;
  }
}

.flow__item-title {
  font-size: 1.8rem;
  font-weight: 900;
  color: #333333;
  margin-bottom: 10px;
  line-height: 1.4;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .flow__item-title {
    font-size: 1.6rem;
  }
}

.flow__item-text {
  font-size: 1.4rem;
  line-height: 1.75;
  color: #666666;
  margin-bottom: 16px;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .flow__item-text {
    font-size: 1.3rem;
  }
}

.flow__item-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  padding: 10px 22px;
  border: 2px solid #901422;
  border-radius: 6px;
  color: #901422;
  font-size: 1.4rem;
  font-weight: 700;
  background: transparent;
  -webkit-transition: background-color 0.22s ease, color 0.22s ease;
  transition: background-color 0.22s ease, color 0.22s ease;
  white-space: nowrap;
}
.flow__item-btn:hover {
  background: #901422;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .flow__item-btn {
    font-size: 1.4rem;
    padding: 10px 20px;
  }
}

.flow__swipe-hint {
  display: none;
}
@media screen and (max-width: 1325px) {
  .flow__swipe-hint {
    display: block;
    text-align: center;
    margin-top: 16px;
  }
  .flow__swipe-hint img {
    height: 22px;
    width: auto;
    display: inline-block;
  }
}

.faq {
  background-color: #f5f5f5;
  padding: 120px 0;
}
@media screen and (max-width: 768px) {
  .faq {
    padding: 60px 0;
  }
}

.faq__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 170px;
}
@media screen and (max-width: 768px) {
  .faq__inner {
    padding: 0 20px;
  }
}

.faq__title-area {
  text-align: center;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .faq__title-area {
    margin-bottom: 40px;
  }
}
.faq__title-area img {
  width: min(378px, 26.25vw);
  height: auto;
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .faq__title-area img {
    width: min(280px, 70vw);
  }
}

.faq__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.faq__item {
  background: #fff;
  border-radius: 12px;
  -webkit-box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
          box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  padding: 24px 32px;
}
@media screen and (max-width: 768px) {
  .faq__item {
    padding: 20px;
    border-radius: 10px;
  }
}

.faq__q {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px dashed #ddd;
  margin-bottom: 18px;
}
@media screen and (max-width: 768px) {
  .faq__q {
    gap: 12px;
    padding-bottom: 14px;
    margin-bottom: 14px;
  }
}

.faq__a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .faq__a {
    gap: 12px;
  }
}

.faq__icon {
  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;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  font-size: 1.9rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-top: 2px;
}
@media screen and (max-width: 768px) {
  .faq__icon {
    width: 36px;
    height: 36px;
    font-size: 1.7rem;
  }
}
.faq__icon--q {
  background: #901422;
}
.faq__icon--a {
  background: #1a1a1a;
}

.faq__q .faq__text {
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.55;
  color: #333333;
  padding-top: 6px;
}
@media screen and (max-width: 768px) {
  .faq__q .faq__text {
    font-size: 1.5rem;
    padding-top: 4px;
  }
}

.faq__a .faq__text {
  font-size: 1.5rem;
  line-height: 1.85;
  color: #666666;
  padding-top: 6px;
}
@media screen and (max-width: 768px) {
  .faq__a .faq__text {
    font-size: 1.4rem;
    padding-top: 4px;
  }
}

.faq__btn-wrap {
  text-align: center;
  margin-top: 48px;
}
@media screen and (max-width: 768px) {
  .faq__btn-wrap {
    margin-top: 32px;
  }
}

.faq__btn {
  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;
  gap: 8px;
  padding: 16px 48px;
  border: 2px solid #901422;
  border-radius: 8px;
  color: #901422;
  font-size: 1.6rem;
  font-weight: 700;
  background: transparent;
  -webkit-transition: background-color 0.25s ease, color 0.25s ease;
  transition: background-color 0.25s ease, color 0.25s ease;
}
.faq__btn:hover {
  background: #901422;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .faq__btn {
    padding: 14px 32px;
    font-size: 1.5rem;
    width: 100%;
    max-width: 360px;
  }
}

.message {
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
  padding: 120px 0;
}
.message::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: min(420px, 30vw);
  height: min(380px, 27vw);
  background-image: url("../image/section-strength/midashi-back.webp");
  background-size: contain;
  background-position: right top;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .message {
    padding: 60px 0;
  }
  .message::before {
    display: none;
  }
}

.message__inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
}
@media screen and (max-width: 768px) {
  .message__inner {
    padding: 0 20px;
  }
}

.message__title-area {
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .message__title-area {
    margin-bottom: 36px;
  }
}
.message__title-area img {
  width: min(400px, 27.78vw);
  height: auto;
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .message__title-area img {
    width: min(280px, 65vw);
  }
}

.message__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 60px;
}
@media screen and (max-width: 768px) {
  .message__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 28px;
  }
}

.message__image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 46%;
          flex: 0 0 46%;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .message__image {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 100%;
  }
}
.message__image img {
  width: 100%;
  height: auto;
  display: block;
}

.message__info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.message__subtitle {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.6;
  color: #333333;
  margin-bottom: 28px;
}
@media screen and (max-width: 768px) {
  .message__subtitle {
    font-size: 2rem;
    line-height: 1.55;
    margin-bottom: 20px;
  }
}

.message__text {
  font-size: 1.55rem;
  line-height: 1.9;
  color: #333333;
  letter-spacing: 0.03em;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.message__text p {
  margin-bottom: 10px;
}
.message__text p:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .message__text {
    font-size: 1.4rem;
    line-height: 1.85;
  }
}

.message__sign {
  text-align: right;
  font-size: 1.5rem;
  font-weight: 500;
  color: #333333;
  margin-top: 32px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .message__sign {
    font-size: 1.4rem;
    margin-top: 24px;
  }
}

.cta {
  background-image: url("../image/section-cta/pc-cta-back.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 120px 0;
}
@media screen and (max-width: 768px) {
  .cta {
    background-image: url("../image/section-cta/sp-cta-back.webp");
    padding: 64px 0;
  }
}

.cta__inner {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
}
@media screen and (max-width: 768px) {
  .cta__inner {
    padding: 0 20px;
  }
}

.cta__content {
  position: relative;
}
.cta__content::after {
  content: "";
  position: absolute;
  right: -60px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: min(600px, 41.67vw);
  height: min(580px, 40.28vw);
  background-image: url("../image/section-cta/pc-cta-image-rigth.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .cta__content::after {
    display: none;
  }
}

@media screen and (min-width: 769px) {
  .cta__info {
    max-width: 56%;
  }
}
@media screen and (max-width: 768px) {
  .cta__info {
    width: 100%;
  }
}

.cta__title {
  margin-bottom: 20px;
}
.cta__title img {
  width: min(830px, 57.64vw);
  height: auto;
  display: block;
}
@media screen and (max-width: 768px) {
  .cta__title img {
    width: 100%;
  }
}

.cta__text {
  font-size: 1.5rem;
  line-height: 1.85;
  color: #fff;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .cta__text {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }
}

.cta__tags-img {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .cta__tags-img {
    display: none;
  }
}

@media screen and (min-width: 769px) {
  .cta__visual {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .cta__visual {
    width: 100%;
    margin-top: 24px;
  }
  .cta__visual img {
    display: block;
    width: 100%;
    height: auto;
  }
}

.cta__buttons {
  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: 60px;
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .cta__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    margin-top: 36px;
  }
}

.cta__btn {
  display: block;
  -webkit-transition: opacity 0.2s ease, -webkit-transform 0.22s ease;
  transition: opacity 0.2s ease, -webkit-transform 0.22s ease;
  transition: opacity 0.2s ease, transform 0.22s ease;
  transition: opacity 0.2s ease, transform 0.22s ease, -webkit-transform 0.22s ease;
}
.cta__btn:hover {
  opacity: 0.8;
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
}
.cta__btn img {
  display: block;
  height: 72px;
  width: auto;
}
@media screen and (max-width: 768px) {
  .cta__btn img {
    height: auto;
    width: 100%;
    max-width: 380px;
  }
}

.cta__assurances {
  margin-top: 60px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .cta__assurances {
    margin-top: 40px;
  }
}
.cta__assurances img {
  display: block;
  height: auto;
  margin: 0 auto;
  width: min(700px, 48.61vw);
}
@media screen and (max-width: 768px) {
  .cta__assurances img {
    width: 220px;
  }
}

.footer {
  background-color: #901422;
  color: #fff;
  padding: 120px 0;
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 60px 0 116px;
  }
}

.footer__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
}
@media screen and (max-width: 768px) {
  .footer__inner {
    padding: 0 20px;
  }
}

.footer__logo-wrap {
  text-align: center;
  margin-bottom: 20px;
}

.footer__logo {
  display: inline-block;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.footer__logo:hover {
  opacity: 0.8;
}
.footer__logo img {
  width: 230px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.footer__border {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  margin: 0;
}

.footer__contact {
  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;
  gap: 80px;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .footer__contact {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    gap: 40px;
  }
}

.footer__tel-text {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .footer__tel-text {
    font-size: 1.4rem;
  }
}

.footer__tel-num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
  font-size: 4.2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: 0.02em;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.footer__tel-num:hover {
  opacity: 0.8;
}
@media screen and (max-width: 900px) {
  .footer__tel-num {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 768px) {
  .footer__tel-num {
    font-size: 3rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.footer__tel-icon-css {
  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;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}
.footer__tel-icon-css::before {
  content: "☎";
  font-size: 2.2rem;
  color: #fff;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .footer__tel-icon-css {
    width: 54px;
    height: 54px;
  }
  .footer__tel-icon-css::before {
    font-size: 2.6rem;
  }
}

.footer__tel-time {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.03em;
}
@media screen and (max-width: 768px) {
  .footer__tel-time {
    font-size: 1.3rem;
  }
}

.footer__btn {
  display: block;
  -webkit-transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, transform 0.2s ease;
  transition: opacity 0.2s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
}
.footer__btn:hover {
  opacity: 0.8;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}
.footer__btn img {
  display: block;
  height: 64px;
  width: auto;
}
@media screen and (max-width: 768px) {
  .footer__btn img {
    height: auto;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
  }
}

.footer__copyright {
  margin-top: 60px;
  text-align: center;
}
.footer__copyright small {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.03em;
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #901422;
  color: #fff;
  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: 2.2rem;
  line-height: 1;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
  z-index: 90;
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.back-to-top.is-visible:hover {
  opacity: 0.8;
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
}
@media screen and (max-width: 768px) {
  .back-to-top {
    bottom: 72px;
    right: 16px;
    width: 44px;
    height: 44px;
    font-size: 2rem;
  }
}

.page-header {
  background-color: #901422;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .page-header {
    padding: 56px 20px;
  }
}

.page-header__inner {
  max-width: 1440px;
  margin: 0 auto;
}

.page-header__label {
  display: block;
  font-size: 1.2rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 12px;
}

.page-header__title {
  font-size: clamp(2rem, 2.2vw, 3.2rem);
  font-weight: 900;
  line-height: 1.5;
  max-width: 800px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .page-header__title {
    font-size: 2rem;
  }
}

.archive-section {
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  .archive-section {
    padding: 48px 0;
  }
}

.archive-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
}
@media screen and (max-width: 768px) {
  .archive-container {
    padding: 0 20px;
  }
}

.works-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media screen and (max-width: 1024px) and (min-width: 769px) {
  .works-archive-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .works-archive-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.works-archive-grid .works__card {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.works-archive-grid .works__card-thumb a {
  display: block;
  overflow: hidden;
}
.works-archive-grid .works__card-thumb a img {
  width: 100%;
  height: auto;
  -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;
}
.works-archive-grid .works__card-thumb a:hover img {
  -webkit-transform: scale(1.04);
          transform: scale(1.04);
}
.works-archive-grid .works__card-title a {
  color: inherit;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.works-archive-grid .works__card-title a:hover {
  color: #901422;
}

.member-archive-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media screen and (max-width: 1160px) and (min-width: 769px) {
  .member-archive-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .member-archive-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
.member-archive-grid .team__card {
  width: 100%;
}
.member-archive-grid .team__card-thumb a {
  display: block;
  overflow: hidden;
}
.member-archive-grid .team__card-thumb a img {
  width: 100%;
  height: auto;
  -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;
}
.member-archive-grid .team__card-thumb a:hover img {
  -webkit-transform: scale(1.04);
          transform: scale(1.04);
}
.member-archive-grid .team__card-name a {
  color: inherit;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.member-archive-grid .team__card-name a:hover {
  opacity: 0.8;
}

.faq-archive-list {
  max-width: 860px;
  margin: 0 auto;
}

.navigation.pagination {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .navigation.pagination {
    margin-top: 40px;
  }
}
.navigation.pagination .nav-links {
  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;
  gap: 8px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.navigation.pagination .page-numbers {
  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;
  min-width: 44px;
  height: 44px;
  padding: 0 14px;
  border-radius: 4px;
  font-size: 1.5rem;
  font-weight: 500;
  color: #333333;
  background-color: #f5f5f5;
  -webkit-transition: background-color 0.2s ease, color 0.2s ease;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.navigation.pagination .page-numbers:hover {
  background-color: #901422;
  color: #fff;
}
.navigation.pagination .page-numbers.current {
  background-color: #901422;
  color: #fff;
  pointer-events: none;
}
.navigation.pagination .page-numbers.dots {
  background: none;
  pointer-events: none;
}

.single-container {
  max-width: 860px;
  margin: 0 auto;
  padding: 80px 40px;
}
@media screen and (max-width: 768px) {
  .single-container {
    padding: 48px 20px;
  }
}

.single-category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.single-badge {
  display: inline-block;
  padding: 4px 16px;
  background-color: #901422;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  border-radius: 4px;
}

.single-thumbnail {
  margin-bottom: 40px;
  border-radius: 8px;
  overflow: hidden;
}
.single-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
}

.single-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}
.single-tags li {
  padding: 6px 14px;
  border: 1px solid #901422;
  color: #901422;
  font-size: 1.3rem;
  font-weight: 500;
  border-radius: 4px;
}

.single-content {
  font-size: 1.6rem;
  line-height: 1.9;
  color: #333333;
  margin-bottom: 60px;
}
.single-content p {
  margin-bottom: 1.5em;
}
.single-content p:last-child {
  margin-bottom: 0;
}
.single-content h2,
.single-content h3,
.single-content h4 {
  font-weight: 700;
  line-height: 1.4;
  margin: 2em 0 0.75em;
}
@media screen and (max-width: 768px) {
  .single-content {
    font-size: 1.5rem;
  }
}

.back-btn-wrap {
  text-align: center;
  margin-top: 60px;
}

.back-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 14px 40px;
  border: 2px solid #901422;
  border-radius: 6px;
  color: #901422;
  font-size: 1.5rem;
  font-weight: 700;
  -webkit-transition: background-color 0.2s ease, color 0.2s ease;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.back-btn:hover {
  background-color: #901422;
  color: #fff;
  opacity: 0.8;
}

.page-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 40px;
}
@media screen and (max-width: 768px) {
  .page-container {
    padding: 48px 20px;
  }
}
.page-container p {
  font-size: 1.6rem;
  line-height: 1.9;
  color: #333333;
  margin-bottom: 1.5em;
}
.page-container p:last-child {
  margin-bottom: 0;
}
.page-container h2,
.page-container h3 {
  font-weight: 700;
  line-height: 1.4;
  color: #333333;
  margin: 2.5em 0 0.75em;
}
.page-container h2 {
  font-size: clamp(2rem, 2.5vw, 2.6rem);
}
.page-container h3 {
  font-size: clamp(1.8rem, 2vw, 2.2rem);
}
.page-container .wpcf7 {
  margin-top: 40px;
}
.page-container .wpcf7-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
.page-container .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
.page-container input[type=text],
.page-container input[type=email],
.page-container input[type=tel],
.page-container textarea,
.page-container select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1.5rem;
  font-family: inherit;
  -webkit-transition: border-color 0.2s ease;
  transition: border-color 0.2s ease;
}
.page-container input[type=text]:focus,
.page-container input[type=email]:focus,
.page-container input[type=tel]:focus,
.page-container textarea:focus,
.page-container select:focus {
  outline: none;
  border-color: #901422;
}
.page-container textarea {
  min-height: 160px;
  resize: vertical;
}
.page-container input[type=submit] {
  -ms-flex-item-align: center;
      align-self: center;
  padding: 14px 60px;
  background-color: #901422;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 1.6rem;
  font-weight: 700;
  cursor: pointer;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.page-container input[type=submit]:hover {
  opacity: 0.8;
}

.member-single {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .member-single {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.member-single__photo {
  border-radius: 8px;
  overflow: hidden;
}
.member-single__photo img {
  width: 100%;
  height: auto;
  display: block;
}

.member-single__role {
  font-size: 1.5rem;
  color: #666666;
  margin-bottom: 8px;
}

.member-single__name {
  font-size: clamp(2.8rem, 4vw, 4.2rem);
  font-weight: 900;
  color: #333333;
  line-height: 1.3;
  margin-bottom: 20px;
}

.member-single__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.member-single__tags li {
  padding: 4px 12px;
  border: 1px solid #901422;
  color: #901422;
  font-size: 1.3rem;
  font-weight: 500;
  border-radius: 4px;
}

.blog {
  background-color: #f5f5f5;
  padding: 120px 0;
}
@media screen and (max-width: 768px) {
  .blog {
    padding: 60px 0;
  }
}

.blog__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
}
@media screen and (max-width: 768px) {
  .blog__inner {
    padding: 0 20px;
  }
}

.blog__title-area {
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .blog__title-area {
    margin-bottom: 40px;
  }
}

.blog__subtitle {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #901422;
  margin-bottom: 12px;
}

.blog__title {
  font-size: clamp(2.4rem, 3vw, 3.6rem);
  font-weight: 900;
  color: #333333;
}

.blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media screen and (max-width: 1024px) and (min-width: 769px) {
  .blog__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .blog__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.blog__card {
  display: block;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  -webkit-box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
          box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  -webkit-transition: -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
  transition: -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  transition: transform 0.25s ease, box-shadow 0.25s ease, -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
}
.blog__card:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
          box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.blog__card-thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.blog__card-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -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;
}
.blog__card:hover .blog__card-thumb img {
  -webkit-transform: scale(1.04);
          transform: scale(1.04);
}

.blog__card-body {
  padding: 20px;
}

.blog__card-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.blog__card-date {
  font-size: 1.2rem;
  color: #666666;
  letter-spacing: 0.03em;
}

.blog__card-cat {
  font-size: 1.2rem;
  color: #901422;
  font-weight: 700;
  background-color: rgba(144, 20, 34, 0.08);
  padding: 2px 8px;
  border-radius: 3px;
}

.blog__card-title {
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1.6;
  color: #333333;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.blog__card:hover .blog__card-title {
  color: #901422;
}
@media screen and (max-width: 768px) {
  .blog__card-title {
    font-size: 1.5rem;
  }
}

.blog__no-posts {
  text-align: center;
  color: #666666;
  font-size: 1.5rem;
}

.blog__btn-wrap {
  text-align: center;
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .blog__btn-wrap {
    margin-top: 40px;
  }
}

.blog__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 14px 48px;
  border: 2px solid #901422;
  border-radius: 6px;
  color: #901422;
  font-size: 1.5rem;
  font-weight: 700;
  -webkit-transition: background-color 0.2s ease, color 0.2s ease;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.blog__btn:hover {
  background-color: #901422;
  color: #fff;
  opacity: 0.8;
}

.post-container {
  max-width: 860px;
  margin: 0 auto;
  padding: 80px 40px;
}
@media screen and (max-width: 768px) {
  .post-container {
    padding: 48px 20px;
  }
}

.post-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 28px;
}

.post-meta__date {
  font-size: 1.3rem;
  color: #666666;
  letter-spacing: 0.03em;
}

.post-meta__cat {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  background-color: #901422;
  padding: 3px 12px;
  border-radius: 4px;
}

.post-thumbnail {
  margin-bottom: 48px;
  border-radius: 8px;
  overflow: hidden;
}
.post-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
}

.post-content,
.member-single__content {
  font-size: 1.6rem;
  line-height: 1.85;
  color: #333333;
}
.post-content h2,
.member-single__content h2 {
  font-size: clamp(1.9rem, 2.5vw, 2.4rem);
  font-weight: 900;
  color: #333333;
  background-color: transparent;
  border-left: 5px solid #901422;
  border-bottom: 1px solid #ddd;
  padding: 6px 0 12px 16px;
  margin: 3em 0 1.25em;
  line-height: 1.4;
}
.post-content h3,
.member-single__content h3 {
  font-size: clamp(1.7rem, 2vw, 2.1rem);
  font-weight: 700;
  color: #333333;
  border-left: 3px solid #901422;
  border-bottom: 2px dashed #e0e0e0;
  padding: 4px 0 10px 12px;
  margin: 2.5em 0 1em;
  line-height: 1.4;
}
.post-content h4,
.member-single__content h4 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #333333;
  margin: 2em 0 0.75em;
}
.post-content p,
.member-single__content p {
  margin-bottom: 1.8em;
}
.post-content p:last-child,
.member-single__content p:last-child {
  margin-bottom: 0;
}
.post-content ul,
.member-single__content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.8em;
}
.post-content ul li,
.member-single__content ul li {
  padding-left: 1.4em;
  position: relative;
  margin-bottom: 0.6em;
}
.post-content ul li::before,
.member-single__content ul li::before {
  content: "▶";
  position: absolute;
  left: 0;
  color: #901422;
  font-size: 0.75em;
  top: 0.35em;
}
.post-content ol,
.member-single__content ol {
  list-style: decimal;
  padding-left: 2em;
  margin-bottom: 1.8em;
}
.post-content ol li,
.member-single__content ol li {
  margin-bottom: 0.6em;
}
.post-content ol li::marker,
.member-single__content ol li::marker {
  color: #901422;
  font-weight: 700;
}
.post-content img,
.member-single__content img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  margin: 1.5em auto;
}
.post-content blockquote,
.member-single__content blockquote {
  border-left: 4px solid #901422;
  padding: 16px 20px;
  margin: 2em 0;
  background-color: #f5f5f5;
  border-radius: 0 4px 4px 0;
  color: #666666;
}
.post-content blockquote p,
.member-single__content blockquote p {
  margin-bottom: 0;
}
.post-content code,
.member-single__content code {
  background-color: #f5f5f5;
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 0.9em;
  font-family: "Courier New", Courier, monospace;
}
.post-content pre,
.member-single__content pre {
  background-color: #1e1e1e;
  color: #d4d4d4;
  padding: 20px;
  border-radius: 6px;
  overflow-x: auto;
  margin-bottom: 2em;
  font-size: 1.4rem;
  line-height: 1.7;
}
.post-content pre code,
.member-single__content pre code {
  background: none;
  padding: 0;
  color: inherit;
}
.post-content a,
.member-single__content a {
  color: #901422;
  text-decoration: underline;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.post-content a:hover,
.member-single__content a:hover {
  opacity: 0.75;
}
.post-content table,
.member-single__content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2em;
  font-size: 1.5rem;
}
.post-content table th,
.member-single__content table th {
  background-color: #901422;
  color: #fff;
  padding: 10px 14px;
  text-align: left;
  font-weight: 700;
}
.post-content table td,
.member-single__content table td {
  padding: 10px 14px;
  border: 1px solid #ddd;
}
.post-content table tr:nth-child(even) td,
.member-single__content table tr:nth-child(even) td {
  background-color: #f5f5f5;
}
@media screen and (max-width: 768px) {
  .post-content,
  .member-single__content {
    font-size: 1.5rem;
  }
}

.toc,
#toc_container,
#ez-toc-container {
  background-color: #f5f5f5;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 24px 28px;
  margin: 2.5em 0;
  display: inline-block;
  min-width: 260px;
  max-width: 100%;
}
.toc .toc_title,
.toc .ez-toc-title,
.toc p.toc_title,
#toc_container .toc_title,
#toc_container .ez-toc-title,
#toc_container p.toc_title,
#ez-toc-container .toc_title,
#ez-toc-container .ez-toc-title,
#ez-toc-container p.toc_title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 12px;
  display: block;
}
.toc ul,
.toc ol,
.toc .toc_list,
#toc_container ul,
#toc_container ol,
#toc_container .toc_list,
#ez-toc-container ul,
#ez-toc-container ol,
#ez-toc-container .toc_list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.toc ul li,
.toc ol li,
.toc .toc_list li,
#toc_container ul li,
#toc_container ol li,
#toc_container .toc_list li,
#ez-toc-container ul li,
#ez-toc-container ol li,
#ez-toc-container .toc_list li {
  padding-left: 1.4em;
  position: relative;
  margin-bottom: 6px;
}
.toc ul li::before,
.toc ol li::before,
.toc .toc_list li::before,
#toc_container ul li::before,
#toc_container ol li::before,
#toc_container .toc_list li::before,
#ez-toc-container ul li::before,
#ez-toc-container ol li::before,
#ez-toc-container .toc_list li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: #901422;
  font-size: 1rem;
  top: 0.2em;
}
.toc ul a,
.toc ol a,
.toc .toc_list a,
#toc_container ul a,
#toc_container ol a,
#toc_container .toc_list a,
#ez-toc-container ul a,
#ez-toc-container ol a,
#ez-toc-container .toc_list a {
  font-size: 1.4rem;
  color: #333333;
  text-decoration: none;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.toc ul a:hover,
.toc ol a:hover,
.toc .toc_list a:hover,
#toc_container ul a:hover,
#toc_container ol a:hover,
#toc_container .toc_list a:hover,
#ez-toc-container ul a:hover,
#ez-toc-container ol a:hover,
#ez-toc-container .toc_list a:hover {
  color: #901422;
}
.toc ul ul,
.toc ul ol,
.toc ol ul,
.toc ol ol,
.toc .toc_list ul,
.toc .toc_list ol,
#toc_container ul ul,
#toc_container ul ol,
#toc_container ol ul,
#toc_container ol ol,
#toc_container .toc_list ul,
#toc_container .toc_list ol,
#ez-toc-container ul ul,
#ez-toc-container ul ol,
#ez-toc-container ol ul,
#ez-toc-container ol ol,
#ez-toc-container .toc_list ul,
#ez-toc-container .toc_list ol {
  padding-left: 1.5em;
  margin-top: 6px;
}

.post-navigation {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid #eee;
}
.post-navigation .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .post-navigation .nav-links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.post-navigation .nav-previous,
.post-navigation .nav-next {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 48%;
}
@media screen and (max-width: 768px) {
  .post-navigation .nav-previous,
  .post-navigation .nav-next {
    max-width: 100%;
  }
}
.post-navigation .nav-next {
  text-align: right;
}
@media screen and (max-width: 768px) {
  .post-navigation .nav-next {
    text-align: left;
  }
}
.post-navigation a {
  display: block;
  color: #333333;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.post-navigation a:hover {
  color: #901422;
}
.post-navigation .nav-subtitle {
  display: block;
  font-size: 1.2rem;
  color: #666666;
  margin-bottom: 4px;
}
.post-navigation .nav-title {
  font-size: 1.4rem;
  font-weight: 700;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.works-detail {
  margin-top: 48px;
}

.works-detail__section {
  margin-bottom: 48px;
}
.works-detail__section:last-child {
  margin-bottom: 0;
}

.works-detail__heading {
  font-size: clamp(1.9rem, 2.5vw, 2.2rem);
  font-weight: 900;
  color: #333333;
  border-left: 5px solid #901422;
  border-bottom: 1px solid #ddd;
  padding: 6px 0 12px 16px;
  margin-bottom: 20px;
  line-height: 1.4;
}

.works-detail__body {
  font-size: 1.6rem;
  line-height: 1.9;
  color: #333333;
}
@media screen and (max-width: 768px) {
  .works-detail__body {
    font-size: 1.5rem;
  }
}

.u-text-red {
  color: #901422;
  font-weight: 700;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

section[id] {
  scroll-margin-top: 80px;
}
@media screen and (max-width: 768px) {
  section[id] {
    scroll-margin-top: 70px;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  color: #333333;
  background-color: #ffffff;
  padding-top: 72px;
}
@media screen and (max-width: 768px) {
  body {
    padding-top: 62px;
    font-size: 1.4rem;
  }
}