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

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  box-sizing: border-box;
  font-weight: 500;
  line-height: 1.6;
  font-feature-settings: "palt" on;
  font-variant-east-asian: proportional-width;
  color: #010101;
  background-color: #e6d8bc;
  background-image: radial-gradient(ellipse 90% 55% at 50% 0%, rgba(255, 248, 230, 0.72), transparent 70%), radial-gradient(ellipse 70% 50% at 50% 100%, rgba(148, 118, 48, 0.14), transparent 65%), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='72' height='36' viewBox='0 0 72 36'%3E%3Cg fill='none' stroke='%23b49300' stroke-width='1'%3E%3Cpath d='M-18 36c9.9 0 18-9 18-18S-8.1 0-18 0' opacity='.22'/%3E%3Cpath d='M0 36c9.9 0 18-9 18-18S9.9 0 0 0' opacity='.22'/%3E%3Cpath d='M18 36c9.9 0 18-9 18-18S27.9 0 18 0' opacity='.22'/%3E%3Cpath d='M36 36c9.9 0 18-9 18-18S45.9 0 36 0' opacity='.22'/%3E%3Cpath d='M54 36c9.9 0 18-9 18-18S63.9 0 54 0' opacity='.22'/%3E%3Cpath d='M72 36c9.9 0 18-9 18-18S81.9 0 72 0' opacity='.22'/%3E%3Cpath d='M-18 36c6.6 0 12-6 12-12s-5.4-12-12-12' opacity='.14'/%3E%3Cpath d='M0 36c6.6 0 12-6 12-12S6.6 12 0 12' opacity='.14'/%3E%3Cpath d='M18 36c6.6 0 12-6 12-12s-5.4-12-12-12' opacity='.14'/%3E%3Cpath d='M36 36c6.6 0 12-6 12-12s-5.4-12-12-12' opacity='.14'/%3E%3Cpath d='M54 36c6.6 0 12-6 12-12s-5.4-12-12-12' opacity='.14'/%3E%3Cpath d='M72 36c6.6 0 12-6 12-12s-5.4-12-12-12' opacity='.14'/%3E%3C/g%3E%3C/svg%3E");
  background-attachment: fixed, fixed, fixed;
  background-size: auto, auto, 72px 36px;
  background-repeat: no-repeat, no-repeat, repeat;
}
@media screen and ( max-width: 768px ) {
  body {
    background-attachment: scroll, scroll, scroll;
  }
}

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

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

a:hover {
  opacity: 0.7;
}

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

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

.main {
  position: relative;
  z-index: 1;
  max-width: 640px;
  width: 100%;
  margin: 0 auto;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(180, 147, 0, 0.12), 0 18px 48px rgba(0, 20, 51, 0.22), 0 6px 16px rgba(68, 48, 12, 0.12);
}
@media screen and (min-width: 680px) {
  .main {
    margin: 28px auto;
    box-shadow: 0 0 0 1px rgba(180, 147, 0, 0.14), 0 24px 64px rgba(0, 20, 51, 0.26), 0 8px 20px rgba(68, 48, 12, 0.14);
  }
}

.cta {
  position: relative;
  overflow: hidden;
  background: #001433 url("../img/cta-back.webp") center/cover no-repeat;
  padding: 4.2% 2.8% 5.8%;
  font-feature-settings: "palt" on;
  font-variant-east-asian: proportional-width;
}

.cta__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.cta__lead {
  width: 100%;
  margin: 0;
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-weight: 900;
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  line-height: 1;
  text-align: center;
  font-feature-settings: "palt" on;
  font-variant-east-asian: proportional-width;
  animation: cta-fade-up 0.8s ease-out both;
}

.cta__box {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: clamp(1.2rem, 3vw, 1.9rem);
  border: 4px solid #fff;
  border-radius: clamp(1.2rem, 3.75vw, 2.4rem);
  padding: 2.8% 3.3% 3.3% 3.8%;
  box-sizing: border-box;
  animation: cta-fade-up 0.9s ease-out 0.12s both;
}

.cta__title {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  max-width: 72%;
  margin: 0;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: clamp(1.5rem, 4.4vw, 2.8rem);
  line-height: 1.5;
  white-space: nowrap;
  font-feature-settings: "palt" on;
  font-variant-east-asian: proportional-width;
  animation: cta-fade-up 1s ease-out 0.22s both;
}

.cta__title-line {
  display: block;
}

.cta__accent {
  display: inline-block;
  margin-left: 0.15em;
  padding: 0 0.12em;
  color: #d61303;
  background-color: #ffdf29;
  line-height: 1.15;
  vertical-align: baseline;
}

.cta__btn {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  width: 100%;
  min-height: clamp(4.8rem, 12.5vw, 8rem);
  margin: 0;
  padding: 1.2rem 1.6rem;
  box-sizing: border-box;
  overflow: hidden;
  isolation: isolate;
  border: 3px solid #fff;
  border-radius: 9999px;
  background: linear-gradient(180deg, #03d70a 0%, #017105 100%);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
  animation: cta-fade-up 1s ease-out 0.35s both, cta-btn-bounce 1.8s ease-in-out 1.4s infinite, cta-btn-pulse 1.8s ease-in-out 1.4s infinite;
}

.cta__btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -40%;
  z-index: 0;
  width: 35%;
  height: 100%;
  background: linear-gradient(100deg, transparent 0%, rgba(255, 255, 255, 0.15) 35%, rgba(255, 255, 255, 0.55) 50%, rgba(255, 255, 255, 0.15) 65%, transparent 100%);
  transform: skewX(-20deg);
  pointer-events: none;
  animation: cta-btn-flash 2.8s ease-in-out 1.8s infinite;
}

.cta__btn-text,
.cta__btn-icon {
  position: relative;
  z-index: 1;
}

.cta__btn:hover {
  opacity: 1;
  animation-play-state: paused;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.35);
  filter: brightness(1.08);
}

.cta__btn:hover::before {
  animation: cta-btn-flash-fast 0.7s ease-out;
}

.cta__btn:active {
  transform: translateY(0) scale(0.99);
}

.cta__btn-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: clamp(1.6rem, 5vw, 3.2rem);
  line-height: 1;
  white-space: nowrap;
  font-feature-settings: "palt" on;
  font-variant-east-asian: proportional-width;
}

.cta__btn-icon {
  display: inline-flex;
  flex-shrink: 0;
  width: clamp(2.2rem, 4.8vw, 3.1rem);
  height: clamp(2.2rem, 4.8vw, 3.1rem);
  animation: cta-btn-arrow 1.8s ease-in-out 1.4s infinite;
}

.cta__btn:hover .cta__btn-icon {
  animation: none;
  transform: translateX(5px);
}

.cta__btn-icon img {
  display: block;
  width: 100%;
  height: 100%;
}

.cta__doc {
  position: absolute;
  top: -6%;
  right: -3%;
  z-index: 2;
  width: clamp(12rem, 32vw, 18.2rem);
  margin: 0;
  filter: drop-shadow(4px 4px 8px rgba(0, 0, 0, 0.25));
  animation: cta-doc-in 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.28s both, cta-doc-float 3.6s ease-in-out 1.4s infinite;
}

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

@keyframes cta-fade-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes cta-doc-in {
  from {
    opacity: 0;
    transform: translate(28px, -20px) scale(0.88);
  }
  to {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
}
@keyframes cta-doc-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
@keyframes cta-btn-bounce {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  40% {
    transform: translateY(-4px) scale(1.025);
  }
  60% {
    transform: translateY(-2px) scale(1.015);
  }
}
@keyframes cta-btn-pulse {
  0%, 100% {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.28);
  }
  50% {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.32), 0 0 0 7px rgba(3, 215, 10, 0.2), 0 0 18px rgba(255, 255, 180, 0.35);
  }
}
@keyframes cta-btn-flash {
  0%, 55% {
    left: -40%;
    opacity: 0;
  }
  60% {
    opacity: 1;
  }
  85% {
    left: 120%;
    opacity: 1;
  }
  100% {
    left: 120%;
    opacity: 0;
  }
}
@keyframes cta-btn-flash-fast {
  from {
    left: -40%;
    opacity: 1;
  }
  to {
    left: 120%;
    opacity: 0;
  }
}
@keyframes cta-btn-arrow {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(5px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .cta__lead,
  .cta__box,
  .cta__title,
  .cta__btn,
  .cta__btn-icon,
  .cta__doc {
    animation: none;
  }
  .cta__btn::before {
    display: none;
  }
}
@media screen and ( max-width: 768px ) {
  .cta__title {
    max-width: 74%;
    font-size: clamp(1.4rem, 4.2vw, 2.6rem);
  }
  .cta__doc {
    right: -5%;
    width: 34%;
  }
}
.mascot {
  position: absolute;
  top: clamp(1.6rem, 4vw, 3.2rem);
  z-index: 5;
  display: block;
  width: clamp(9.6rem, 22vw, 14.4rem);
  pointer-events: none;
  opacity: 0;
  transform: translateY(24px) scale(0.84);
  filter: drop-shadow(0 10px 16px rgba(0, 0, 0, 0.2));
}

.mascot img {
  display: block;
  width: 100%;
  height: auto;
  transform-origin: center 60%;
}

.mascot--1 {
  right: -3%;
  --mascot-rotate: 8deg;
}

.mascot--2 {
  left: -4%;
  --mascot-rotate: -10deg;
}

.mascot--3 {
  right: -4%;
  --mascot-rotate: 6deg;
}

.mascot--4 {
  left: -3%;
  --mascot-rotate: -8deg;
}

.about.is-visible .mascot--1,
.brand.is-visible .mascot--2,
.strengths.is-visible .mascot--3,
.review.is-visible .mascot--4 {
  animation: mascot-in 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.25s both;
}

.about.is-visible .mascot--1 img {
  animation: mascot-float 4.6s ease-in-out 1.1s infinite;
}

.brand.is-visible .mascot--2 img {
  animation: mascot-float 5.2s ease-in-out 1.2s infinite reverse;
}

.strengths.is-visible .mascot--3 img {
  animation: mascot-sway 4.8s ease-in-out 1.3s infinite;
}

.review.is-visible .mascot--4 img {
  animation: mascot-float 5.6s ease-in-out 1.4s infinite;
}

@keyframes mascot-in {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.84) rotate(calc(var(--mascot-rotate, 0deg) - 8deg));
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(var(--mascot-rotate, 0deg));
  }
}
@keyframes mascot-float {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  50% {
    transform: translate3d(0, -10px, 0) rotate(3deg);
  }
}
@keyframes mascot-sway {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(-2deg);
  }
  50% {
    transform: translate3d(4px, -8px, 0) rotate(4deg);
  }
}
@media (prefers-reduced-motion: reduce) {
  .mascot,
  .mascot img {
    animation: none !important;
  }
  .mascot {
    opacity: 1;
    transform: rotate(var(--mascot-rotate, 0deg));
  }
}
@media screen and ( max-width: 768px ) {
  .mascot {
    top: clamp(1.2rem, 3.5vw, 2.4rem);
    width: clamp(7.2rem, 28vw, 10rem);
  }
  .mascot--1,
  .mascot--3 {
    right: -8%;
  }
  .mascot--2,
  .mascot--4 {
    left: -8%;
  }
}
.about {
  position: relative;
  overflow: hidden;
  background: #f3ead6 url("../img/about-back-img.webp") center top/cover no-repeat;
  font-feature-settings: "palt" on;
  font-variant-east-asian: proportional-width;
}

.about__head {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: clamp(3.2rem, 6.55vw, 4.2rem);
  overflow: hidden;
  transform: translateY(-110%);
  opacity: 0;
}

.about.is-visible .about__head {
  animation: about-head-drop 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.about__head img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.about__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 48px 23px 28px 23px;
  box-sizing: border-box;
}

.about__features,
.about__intro {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

.about__heading {
  margin: 0;
  color: #010101;
  font-family: "Noto Serif JP", serif;
  font-weight: 900;
  font-size: clamp(2.2rem, 6.2vw, 4.2rem);
  line-height: 1.2;
  text-align: center;
  letter-spacing: -0.04em;
  font-feature-settings: "palt" on;
  font-variant-east-asian: proportional-width;
  opacity: 0;
  transform: translateY(24px);
}

.about__heading-line {
  display: block;
  white-space: nowrap;
}

.about__heading--intro {
  width: 100%;
  font-size: clamp(2rem, 5.8vw, 3.8rem);
  white-space: nowrap;
  letter-spacing: -0.04em;
  font-feature-settings: "palt" on;
  font-variant-east-asian: proportional-width;
}

.about__features.is-visible .about__heading {
  animation: about-fade-up 0.8s ease-out 0.15s both;
}

.about__intro.is-visible .about__heading {
  animation: about-fade-up 0.8s ease-out 0.1s both;
}

.about__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 20px;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about__card {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  min-height: 128px;
  padding: 29px 19px 29px 15px;
  box-sizing: border-box;
  background: #fef9f1;
  border: 1.5px solid #b31306;
  border-radius: 14px;
  box-shadow: 2px 3px 8px rgba(179, 19, 6, 0.1);
  opacity: 0;
  transform: translateY(28px);
}

.about__features.is-visible .about__card:nth-child(1) {
  animation: about-fade-up 0.75s ease-out 0.28s both;
}

.about__features.is-visible .about__card:nth-child(2) {
  animation: about-fade-up 0.75s ease-out 0.38s both;
}

.about__features.is-visible .about__card:nth-child(3) {
  animation: about-fade-up 0.75s ease-out 0.48s both;
}

.about__features.is-visible .about__card:nth-child(4) {
  animation: about-fade-up 0.75s ease-out 0.58s both;
}

.about__card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #b31306;
}

.about__card-icon img {
  display: block;
  width: auto;
  max-width: 50px;
  height: auto;
  max-height: 46px;
}

.about__card-body {
  display: flex;
  flex-direction: column;
  gap: 9px;
  min-width: 0;
  padding-top: 2px;
}

.about__card-title {
  margin: 0;
  color: #010101;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.2;
  font-feature-settings: "palt" on;
  font-variant-east-asian: proportional-width;
}

.about__card-text {
  margin: 0;
  color: #232323;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: clamp(1.3rem, 2.5vw, 1.6rem);
  line-height: 1.2;
  font-feature-settings: "palt" on;
  font-variant-east-asian: proportional-width;
}

.about__intro-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
}

.about__lead {
  flex: 1 1 auto;
  max-width: 351px;
  margin: 0;
  color: #232323;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: clamp(1.4rem, 2.8vw, 1.8rem);
  line-height: 1.8;
  font-feature-settings: "palt" on;
  font-variant-east-asian: proportional-width;
  opacity: 0;
  transform: translateY(20px);
}

.about__intro.is-visible .about__lead {
  animation: about-fade-up 0.85s ease-out 0.22s both;
}

.about__photo {
  margin: 0;
  overflow: hidden;
  border-radius: 24px 0 24px 0;
  flex-shrink: 0;
  opacity: 0;
}

.about__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: translateY(-18%);
  transition: none;
}

.about__photo--square {
  width: clamp(14rem, 36vw, 23.1rem);
  height: clamp(14rem, 36vw, 23.1rem);
  transform: translateY(24px);
}

.about__intro.is-visible .about__photo--square {
  animation: about-fade-up 0.9s ease-out 0.32s both;
}

.about__intro.is-visible .about__photo--square img {
  animation: about-img-drop 1.05s cubic-bezier(0.22, 1, 0.36, 1) 0.38s both;
}

.about__story {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
}

.about__story-photos {
  position: relative;
  flex-shrink: 0;
  width: clamp(18rem, 36.8vw, 23.5rem);
  height: clamp(38rem, 75vw, 48rem);
}

.about__photo--store,
.about__photo--staff {
  position: absolute;
  width: clamp(14rem, 31.9vw, 20.4rem);
  height: clamp(18rem, 40vw, 25.6rem);
  transform: translateY(28px);
}

.about__photo--store {
  top: 0;
  left: 0;
}

.about__photo--staff {
  top: clamp(15rem, 35vw, 22.4rem);
  left: clamp(2rem, 4.8vw, 3.1rem);
}

.about__story.is-visible .about__photo--store {
  animation: about-fade-up 0.85s ease-out 0.15s both;
}

.about__story.is-visible .about__photo--staff {
  animation: about-fade-up 0.85s ease-out 0.35s both;
}

.about__story.is-visible .about__photo--store img,
.about__story.is-visible .about__photo--staff img {
  animation: about-img-drop 1.05s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.about__story.is-visible .about__photo--store img {
  animation-delay: 0.2s;
}

.about__story.is-visible .about__photo--staff img {
  animation-delay: 0.42s;
}

.about__story-body {
  display: flex;
  flex-direction: column;
  gap: 17px;
  flex: 1 1 auto;
  max-width: 331px;
  min-width: 0;
}

.about__story-title {
  margin: 0;
  color: #010101;
  font-family: "Noto Serif JP", serif;
  font-weight: 900;
  font-size: clamp(1.8rem, 4.6vw, 2.8rem);
  line-height: 1.5;
  letter-spacing: -0.04em;
  font-feature-settings: "palt" on;
  font-variant-east-asian: proportional-width;
  opacity: 0;
  transform: translateY(20px);
}

.about__story.is-visible .about__story-title {
  animation: about-fade-up 0.8s ease-out 0.2s both;
}

.about__story-text {
  color: #232323;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: clamp(1.4rem, 2.8vw, 1.8rem);
  line-height: 1.8;
  font-feature-settings: "palt" on;
  font-variant-east-asian: proportional-width;
  opacity: 0;
  transform: translateY(20px);
}

.about__story.is-visible .about__story-text {
  animation: about-fade-up 0.9s ease-out 0.38s both;
}

.about__story-text p {
  margin: 0 0 1em;
}
.about__story-text p:last-child {
  margin-bottom: 0;
}

@keyframes about-head-drop {
  from {
    opacity: 0;
    transform: translateY(-110%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes about-fade-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes about-img-drop {
  from {
    transform: translateY(-18%) scale(1.06);
  }
  to {
    transform: translateY(0) scale(1);
  }
}
@media (prefers-reduced-motion: reduce) {
  .about__head,
  .about__heading,
  .about__card,
  .about__lead,
  .about__photo,
  .about__photo img,
  .about__story-title,
  .about__story-text {
    opacity: 1;
    transform: none;
    animation: none !important;
  }
}
@media screen and ( max-width: 768px ) {
  .about__inner {
    padding: 48px 16px 28px;
    gap: 28px;
  }
  .about__cards {
    gap: 16px 12px;
  }
  .about__card {
    gap: 6px;
    padding: 18px 10px 18px 10px;
    min-height: 0;
  }
  .about__card-icon {
    width: 52px;
    height: 52px;
  }
  .about__card-icon img {
    max-width: 34px;
    max-height: 34px;
  }
  .about__intro-row {
    align-items: flex-start;
  }
  .about__story {
    gap: 12px;
  }
}
.brand {
  position: relative;
  overflow: hidden;
  background: #f6efdc url("../img/brand-back-img.webp") center/cover no-repeat;
  font-feature-settings: "palt" on;
  font-variant-east-asian: proportional-width;
}

.brand__head,
.brand__foot {
  position: absolute;
  left: 0;
  z-index: 2;
  width: 100%;
  overflow: hidden;
  opacity: 0;
}

.brand__head {
  top: 0;
  height: clamp(4.6rem, 9.6vw, 6.2rem);
  transform: translateY(-110%);
}

.brand__foot {
  bottom: 0;
  height: clamp(2.6rem, 5.4vw, 3.5rem);
  transform: translateY(110%);
}

.brand.is-visible .brand__head {
  animation: brand-fade-down 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.brand.is-visible .brand__foot {
  animation: brand-fade-up 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.12s both;
}

.brand__head img,
.brand__foot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.brand__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 94px 28px 52px 28px;
  box-sizing: border-box;
}

.brand__copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
}

.brand__heading {
  margin: 0;
  color: #010101;
  font-family: "Noto Serif JP", serif;
  font-weight: 900;
  font-size: clamp(2.2rem, 6.2vw, 4.2rem);
  line-height: 1.2;
  text-align: center;
  letter-spacing: -0.04em;
  font-feature-settings: "palt" on;
  font-variant-east-asian: proportional-width;
  opacity: 0;
  transform: translateY(24px);
}

.brand__heading-line {
  display: block;
  white-space: nowrap;
}

.brand__copy.is-visible .brand__heading {
  animation: about-fade-up 0.85s ease-out 0.1s both;
}

.brand__lead {
  margin: 0;
  color: #232323;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: clamp(1.4rem, 2.8vw, 1.8rem);
  line-height: 1.8;
  font-feature-settings: "palt" on;
  font-variant-east-asian: proportional-width;
  opacity: 0;
  transform: translateY(20px);
}

.brand__copy.is-visible .brand__lead {
  animation: about-fade-up 0.9s ease-out 0.28s both;
}

.brand__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  justify-content: center;
  gap: 16px;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.brand__card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: none;
  min-height: 159px;
  padding: 24px 16px 23px;
  box-sizing: border-box;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  opacity: 0;
  transform: translateY(28px);
}

.brand__cards.is-visible .brand__card:nth-child(1) {
  animation: about-fade-up 0.75s ease-out 0.15s both;
}

.brand__cards.is-visible .brand__card:nth-child(2) {
  animation: about-fade-up 0.75s ease-out 0.25s both;
}

.brand__cards.is-visible .brand__card:nth-child(3) {
  animation: about-fade-up 0.75s ease-out 0.35s both;
}

.brand__cards.is-visible .brand__card:nth-child(4) {
  animation: about-fade-up 0.75s ease-out 0.45s both;
}

.brand__cards.is-visible .brand__card:nth-child(5) {
  animation: about-fade-up 0.75s ease-out 0.55s both;
}

.brand__card-mask {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  display: block;
  width: 64px;
  height: 41px;
  overflow: hidden;
  border-radius: 0 16px 0 0;
  pointer-events: none;
  transform: scaleY(-1);
}

.brand__card-mask img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top right;
  mix-blend-mode: screen;
}

.brand__card-top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  gap: 9px;
}

.brand__card-logo {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  margin: 0;
  overflow: hidden;
  border-radius: 50%;
}

.brand__card-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand__card-name {
  display: flex;
  align-items: center;
  min-height: 58px;
  margin: 0;
  color: #010101;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 3.75vw, 2.4rem);
  line-height: 1.2;
  font-feature-settings: "palt" on;
  font-variant-east-asian: proportional-width;
}

.brand__card-tag {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 38px;
  margin: 0;
  padding: 9px 12px 10px;
  box-sizing: border-box;
  background: #b31306;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: clamp(1.3rem, 2.5vw, 1.6rem);
  line-height: 1.2;
  text-align: center;
  font-feature-settings: "palt" on;
  font-variant-east-asian: proportional-width;
}

@keyframes brand-fade-down {
  from {
    opacity: 0;
    transform: translateY(-110%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes brand-fade-up {
  from {
    opacity: 0;
    transform: translateY(110%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .brand__head,
  .brand__foot,
  .brand__heading,
  .brand__lead,
  .brand__card {
    opacity: 1;
    transform: none;
    animation: none !important;
  }
}
@media screen and ( max-width: 768px ) {
  .brand__inner {
    padding: 88px 16px 48px;
  }
  .brand__cards {
    gap: 12px;
  }
  .brand__card {
    width: 100%;
    min-height: 0;
    padding: 18px 10px 16px;
    gap: 8px;
  }
  .brand__card-logo {
    width: 48px;
    height: 48px;
  }
  .brand__card-name {
    min-height: 48px;
    font-size: clamp(1.4rem, 3.4vw, 2rem);
  }
  .brand__card-mask {
    width: 48px;
    height: 31px;
  }
}
.why {
  position: relative;
  overflow: hidden;
  background: #f7f1e3 url("../img/why-back-img.webp") center/cover no-repeat;
  font-feature-settings: "palt" on;
  font-variant-east-asian: proportional-width;
}

.why__deco {
  position: absolute;
  top: 0;
  left: -2%;
  z-index: 2;
  width: clamp(14rem, 32vw, 20.5rem);
  opacity: 0;
  transform: translateY(-24px);
  pointer-events: none;
}

.why.is-visible .why__deco {
  animation: about-fade-up 0.9s ease-out 0.05s both;
}

.why__deco img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.why__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 17px;
  padding: 48px 16px;
  box-sizing: border-box;
}

.why__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
}

.why__heading {
  margin: 0;
  color: #010101;
  font-family: "Noto Serif JP", serif;
  font-weight: 900;
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  line-height: 1.4;
  text-align: center;
  letter-spacing: -0.04em;
  font-feature-settings: "palt" on;
  font-variant-east-asian: proportional-width;
  opacity: 0;
  transform: translateY(-24px);
}

.why__heading-line {
  display: block;
  white-space: nowrap;
}

.why__header.is-visible .why__heading {
  animation: brand-fade-down 0.85s ease-out 0.1s both;
}

.why__banner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 121px;
  padding: 15px 20px 20px 15px;
  box-sizing: border-box;
  border: 4px solid #214066;
  background: #04234b url("../img/why-back-2.webp") center/cover no-repeat;
  opacity: 0;
  transform: translateY(-20px);
}

.why__header.is-visible .why__banner {
  animation: brand-fade-down 0.9s ease-out 0.25s both;
}

.why__banner-text {
  margin: 0;
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: clamp(1.4rem, 3.4vw, 2.4rem);
  line-height: 1.8;
  text-align: center;
  letter-spacing: -0.03em;
  font-feature-settings: "palt" on;
  font-variant-east-asian: proportional-width;
}

.why__points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 14px;
  width: 100%;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.why__point {
  position: relative;
  padding-top: 27px;
  opacity: 0;
  transform: translateY(28px);
}

.why__points.is-visible .why__point:nth-child(1) {
  animation: about-fade-up 0.75s ease-out 0.1s both;
}

.why__points.is-visible .why__point:nth-child(2) {
  animation: about-fade-up 0.75s ease-out 0.22s both;
}

.why__points.is-visible .why__point:nth-child(3) {
  animation: about-fade-up 0.75s ease-out 0.34s both;
}

.why__points.is-visible .why__point:nth-child(4) {
  animation: about-fade-up 0.75s ease-out 0.46s both;
}

.why__point-num {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-left: -27px;
  border-radius: 50%;
  background: linear-gradient(126deg, #04234b 25%, #0c3364 50%, #04234b 75%);
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 1;
}

.why__point-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 11px;
  min-height: 176px;
  padding: 36px 13px 15px;
  box-sizing: border-box;
  background: #fff;
  border: 2px solid #ce9e31;
  border-radius: 16px;
  box-shadow: 0 8px 0 rgba(206, 158, 49, 0.18), 0 10px 16px rgba(0, 0, 0, 0.08);
}

.why__point-title {
  position: relative;
  width: 100%;
  margin: 0;
  padding-bottom: 8px;
  font-family: "Noto Serif JP", serif;
  font-weight: 900;
  font-size: clamp(1.6rem, 3.6vw, 2.4rem);
  line-height: 1.2;
  text-align: center;
  letter-spacing: -0.03em;
  background: linear-gradient(171deg, #04234b 25%, #0c3364 50%, #04234b 75%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-feature-settings: "palt" on;
  font-variant-east-asian: proportional-width;
}
.why__point-title::after {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #ce9e31 20%, #f0d48a 50%, #ce9e31 80%, transparent);
}

.why__point-text {
  margin: 0;
  color: #232323;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: clamp(1.4rem, 2.8vw, 1.8rem);
  line-height: 1.5;
  font-feature-settings: "palt" on;
  font-variant-east-asian: proportional-width;
}

.why__position {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(170px, 219px) minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  width: 100%;
  margin-top: 9px;
  padding: 15px 12px 17px;
  box-sizing: border-box;
  border: 3px solid #ce9e31;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(28px);
}

.why__position.is-visible {
  animation: about-fade-up 0.9s ease-out 0.1s both;
}

.why__pos-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  box-sizing: border-box;
  border-radius: 12px;
  box-shadow: 0 0 4px #ce9e31;
}

.why__pos-card--side {
  width: 100%;
  min-height: 132px;
  height: auto;
  padding: 18px 10px;
  background: #fff;
}

.why__pos-card--center {
  width: 100%;
  min-height: 178px;
  padding: 17px 12px 15px;
  background: #b31306;
  box-shadow: 0 0 8px rgba(206, 158, 49, 0.55), 0 6px 14px rgba(179, 19, 6, 0.28);
  transform: scale(1.02);
}

.why__pos-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  padding: 4px 8px;
  border-radius: 12px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  font-feature-settings: "palt" on;
  font-variant-east-asian: proportional-width;
}

.why__pos-label--navy {
  background: #04234b;
  color: #fff;
  font-size: clamp(1rem, 1.9vw, 1.3rem);
}

.why__pos-label--white {
  background: #fff;
  color: #b31306;
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  white-space: nowrap;
}

.why__pos-title {
  margin: 0;
  color: #010101;
  font-family: "Noto Serif JP", serif;
  font-weight: 900;
  font-size: clamp(1.5rem, 3.2vw, 2.2rem);
  line-height: 1.2;
  text-align: center;
  letter-spacing: -0.04em;
  white-space: nowrap;
  font-feature-settings: "palt" on;
  font-variant-east-asian: proportional-width;
}

.why__pos-main {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-weight: 900;
  font-size: clamp(1.8rem, 4.4vw, 3.2rem);
  line-height: 1.2;
  text-align: center;
  letter-spacing: -0.04em;
  background: linear-gradient(133deg, #fff1b5 21%, #ffba44 43%, #ffefa9 67%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-feature-settings: "palt" on;
  font-variant-east-asian: proportional-width;
}

.why__pos-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
  border-radius: 4px;
  background: #e5e9ee;
  color: #010101;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(1.1rem, 2.1vw, 1.4rem);
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  font-feature-settings: "palt" on;
  font-variant-east-asian: proportional-width;
}

.why__pos-chip--yellow {
  background: #ffde4f;
}

.why__note {
  width: 100%;
  margin: 0;
  color: #232323;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 1.5;
  text-align: center;
  font-feature-settings: "palt" on;
  font-variant-east-asian: proportional-width;
  opacity: 0;
  transform: translateY(16px);
}

.why__note.is-visible {
  animation: about-fade-up 0.8s ease-out 0.15s both;
}

@media (prefers-reduced-motion: reduce) {
  .why__deco,
  .why__heading,
  .why__banner,
  .why__point,
  .why__position,
  .why__note {
    opacity: 1;
    transform: none;
    animation: none !important;
  }
}
@media screen and ( max-width: 768px ) {
  .why__inner {
    padding: 40px 12px;
  }
  .why__points {
    gap: 24px 10px;
  }
  .why__point-body {
    padding: 32px 10px 12px;
    min-height: 0;
  }
  .why__position {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.18fr) minmax(0, 1fr);
    gap: 4px;
    padding: 10px 6px 12px;
  }
  .why__pos-card {
    gap: 6px;
  }
  .why__pos-card--side {
    min-height: 0;
    padding: 10px 4px;
  }
  .why__pos-card--center {
    min-height: 0;
    padding: 10px 6px 8px;
    transform: none;
  }
  .why__pos-title {
    font-size: clamp(1.1rem, 2.8vw, 1.5rem);
    white-space: normal;
  }
  .why__pos-main {
    font-size: clamp(1.3rem, 3.4vw, 1.8rem);
  }
  .why__pos-label {
    padding: 3px 5px;
  }
  .why__pos-label--navy {
    font-size: 0.9rem;
  }
  .why__pos-label--white {
    font-size: clamp(1rem, 2.6vw, 1.3rem);
  }
  .why__pos-chip {
    padding: 3px 5px;
    font-size: clamp(0.9rem, 2.2vw, 1.2rem);
    white-space: normal;
  }
}
.strengths {
  position: relative;
  overflow: hidden;
  background: #f4ead6 url("../img/strengths-back.webp") center top/cover no-repeat;
  font-feature-settings: "palt" on;
  font-variant-east-asian: proportional-width;
}

.strengths__deco {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
}

.strengths__deco img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  mix-blend-mode: screen;
}

.strengths__deco--1 {
  top: 0;
  left: 0;
  width: clamp(18rem, 50vw, 32.4rem);
}

.strengths__deco--2 {
  top: 8px;
  right: 0;
  width: clamp(12rem, 31vw, 19.8rem);
  transform: translateX(28px);
}

.strengths.is-visible .strengths__deco--1 {
  animation: strengths-fade-in 1.1s ease-out 0.1s both;
}

.strengths.is-visible .strengths__deco--2 {
  animation: strengths-fade-in-right 1s ease-out 0.25s both;
}

.strengths__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 48px 19px;
  box-sizing: border-box;
}

.strengths__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.strengths__heading {
  position: relative;
  z-index: 1;
  margin: 0 0 16px;
  color: #010101;
  font-family: "Noto Serif JP", serif;
  font-weight: 900;
  text-align: center;
  letter-spacing: -0.04em;
  font-feature-settings: "palt" on;
  font-variant-east-asian: proportional-width;
  opacity: 0;
  transform: translateY(20px);
}

.strengths__header.is-visible .strengths__heading {
  animation: about-fade-up 0.85s ease-out 0.15s both;
}

.strengths__heading-line {
  display: block;
  font-size: clamp(2.2rem, 5.6vw, 4.2rem);
  line-height: 1;
  white-space: nowrap;
}

.strengths__heading-line--accent {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  margin-top: 0.08em;
  padding: 0 0.2em 0.15em;
}
.strengths__heading-line--accent::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 4%;
  bottom: 0.12em;
  z-index: -1;
  height: 0.42em;
  background: linear-gradient(90deg, rgba(206, 158, 49, 0.15), rgba(240, 200, 90, 0.75), rgba(206, 158, 49, 0.2));
  border-radius: 2px;
  transform: rotate(-2deg);
}

.strengths__num {
  font-size: clamp(3.2rem, 8.5vw, 6.4rem);
  line-height: 0.9;
  background: linear-gradient(160deg, #d5af07 10%, #b49300 45%, #f0d48a 70%, #956712 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.strengths__heading-rest {
  font-size: clamp(2.2rem, 5.6vw, 4.2rem);
  line-height: 1;
}

.strengths__banner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 600px;
  min-height: clamp(7rem, 18.6vw, 11.9rem);
  margin-top: 0;
  padding: 2.4rem 2rem 3rem;
  box-sizing: border-box;
  background: url("../img/strengths-back-3.webp") center/100% 100% no-repeat;
  opacity: 0;
  transform: translateX(36px);
}

.strengths__header.is-visible .strengths__banner {
  animation: strengths-fade-in-right 0.95s ease-out 0.28s both;
}

.strengths__banner-text {
  margin: 0;
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-weight: 900;
  font-size: clamp(2.4rem, 6.4vw, 4.8rem);
  line-height: 1;
  text-align: center;
  letter-spacing: -0.04em;
  white-space: nowrap;
  font-feature-settings: "palt" on;
  font-variant-east-asian: proportional-width;
}

.strengths__lead {
  margin: 8px 0 0;
  color: #232323;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: clamp(1.4rem, 2.8vw, 1.8rem);
  line-height: 1.5;
  text-align: center;
  font-feature-settings: "palt" on;
  font-variant-east-asian: proportional-width;
  opacity: 0;
  transform: translateY(16px);
}

.strengths__header.is-visible .strengths__lead {
  animation: about-fade-up 0.85s ease-out 0.42s both;
}

.strengths__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 584px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.strengths__item {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 162px;
  margin: 0;
  padding: 0 12px 0 0;
  box-sizing: border-box;
  border: 1px solid #efd199;
  border-radius: 12px;
  background: linear-gradient(180deg, #fffaf4 0%, #f7edde 100%);
  box-shadow: 0 4px 4px rgba(149, 103, 18, 0.5);
  overflow: hidden;
  opacity: 0;
  transform: translateY(28px);
}
.strengths__item + .strengths__item {
  margin-top: 0;
}

.strengths__list.is-visible .strengths__item:nth-child(1) {
  animation: about-fade-up 0.75s ease-out 0.1s both;
}

.strengths__list.is-visible .strengths__item:nth-child(2) {
  animation: about-fade-up 0.75s ease-out 0.2s both;
}

.strengths__list.is-visible .strengths__item:nth-child(3) {
  animation: about-fade-up 0.75s ease-out 0.3s both;
}

.strengths__list.is-visible .strengths__item:nth-child(4) {
  animation: about-fade-up 0.75s ease-out 0.4s both;
}

.strengths__list.is-visible .strengths__item:nth-child(5) {
  animation: about-fade-up 0.75s ease-out 0.5s both;
}

.strengths__item-num {
  position: relative;
  flex-shrink: 0;
  width: clamp(9.6rem, 26vw, 16.8rem);
  height: 100%;
  min-height: 162px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.strengths__item-num img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.strengths__item-num span {
  position: relative;
  z-index: 1;
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: clamp(3.6rem, 9vw, 7.2rem);
  line-height: 1;
  letter-spacing: -0.02em;
}

.strengths__item-body {
  flex: 1 1 auto;
  min-width: 0;
  padding: 0 4px 0 8px;
}

.strengths__item-title {
  margin: 0 0 12px;
  font-family: "Noto Serif JP", serif;
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.2;
  letter-spacing: -0.03em;
  background: linear-gradient(170deg, #04234b 25%, #0c3364 50%, #04234b 75%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-feature-settings: "palt" on;
  font-variant-east-asian: proportional-width;
}

.strengths__item-text {
  margin: 0;
  color: #232323;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: clamp(1.4rem, 2.8vw, 1.8rem);
  line-height: 1.5;
  font-feature-settings: "palt" on;
  font-variant-east-asian: proportional-width;
}

.strengths__item-img {
  flex-shrink: 0;
  width: clamp(7.2rem, 18.8vw, 12rem);
  height: clamp(7.2rem, 18.8vw, 12rem);
  margin: 0;
}

.strengths__item-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes strengths-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes strengths-fade-in-right {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .strengths__deco,
  .strengths__heading,
  .strengths__banner,
  .strengths__lead,
  .strengths__item {
    opacity: 1;
    transform: none;
    animation: none !important;
  }
}
@media screen and ( max-width: 768px ) {
  .strengths__inner {
    padding: 40px 12px;
  }
  .strengths__item {
    min-height: 140px;
    padding-right: 8px;
  }
  .strengths__item-num {
    width: 28%;
    min-height: 140px;
  }
  .strengths__item-num span {
    font-size: clamp(3rem, 8vw, 4.8rem);
  }
  .strengths__item-title {
    margin-bottom: 8px;
  }
}
.works {
  position: relative;
  overflow: hidden;
  background: #f7f1e4 url("../img/works-back.webp") center/cover no-repeat;
  font-feature-settings: "palt" on;
  font-variant-east-asian: proportional-width;
}

.works__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 48px 26px;
  box-sizing: border-box;
}

.works__heading {
  width: 100%;
  margin: 0;
  color: #010101;
  font-family: "Noto Serif JP", serif;
  font-weight: 900;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 1;
  text-align: center;
  letter-spacing: -0.04em;
  white-space: nowrap;
  font-feature-settings: "palt" on;
  font-variant-east-asian: proportional-width;
  opacity: 0;
  transform: translateY(20px);
}

.works__heading.is-visible {
  animation: about-fade-up 0.85s ease-out 0.1s both;
}

.works__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 23px 21px;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.works__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 19px;
  padding: 11px 11px 31px 12px;
  box-sizing: border-box;
  background: #fef9f1;
  border: 1px solid #efd199;
  border-radius: 16px;
  opacity: 0;
  transform: translateY(24px);
}

.works__grid.is-visible .works__card:nth-child(1) {
  animation: about-fade-up 0.75s ease-out 0.12s both;
}

.works__grid.is-visible .works__card:nth-child(2) {
  animation: about-fade-up 0.75s ease-out 0.22s both;
}

.works__grid.is-visible .works__card:nth-child(3) {
  animation: about-fade-up 0.75s ease-out 0.32s both;
}

.works__grid.is-visible .works__card:nth-child(4) {
  animation: about-fade-up 0.75s ease-out 0.42s both;
}

.works__card-img {
  width: 100%;
  aspect-ratio: 259/119;
  margin: 0;
  overflow: hidden;
  border-radius: 12px;
}

.works__card-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.works__card-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.works__card-label,
.works__card-note {
  margin: 0;
  color: #232323;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1;
  font-feature-settings: "palt" on;
  font-variant-east-asian: proportional-width;
}

.works__card-label {
  font-size: clamp(1.4rem, 2.8vw, 1.8rem);
}

.works__card-note {
  font-size: clamp(1.2rem, 2.2vw, 1.4rem);
}

.works__card-value {
  margin: 0;
  color: #b31306;
  font-family: "Noto Serif JP", serif;
  font-weight: 900;
  font-size: clamp(2rem, 4.2vw, 2.8rem);
  line-height: 1;
  letter-spacing: -0.03em;
  font-feature-settings: "palt" on;
  font-variant-east-asian: proportional-width;
}

@media (prefers-reduced-motion: reduce) {
  .works__heading,
  .works__card {
    opacity: 1;
    transform: none;
    animation: none !important;
  }
}
@media screen and ( max-width: 768px ) {
  .works__inner {
    padding: 40px 16px;
    gap: 24px;
  }
  .works__grid {
    gap: 16px 12px;
  }
  .works__card {
    padding: 10px 8px 20px;
    gap: 14px;
  }
}
.review {
  position: relative;
  overflow: hidden;
  background: #f7f1e3 url("../img/review-back.webp") center/cover no-repeat;
  font-feature-settings: "palt" on;
  font-variant-east-asian: proportional-width;
}

.review__top {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: clamp(2rem, 4vw, 2.6rem);
  overflow: hidden;
  opacity: 0;
  transform: translateY(-110%);
}

.review.is-visible .review__top {
  animation: brand-fade-down 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.review__top img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.review__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 64px 26px 40px;
  box-sizing: border-box;
}

.review__heading {
  width: 100%;
  margin: 0;
  color: #010101;
  font-family: "Noto Serif JP", serif;
  font-weight: 900;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 1;
  text-align: center;
  letter-spacing: -0.04em;
  white-space: nowrap;
  font-feature-settings: "palt" on;
  font-variant-east-asian: proportional-width;
  opacity: 0;
  transform: translateY(20px);
}

.review__heading.is-visible {
  animation: about-fade-up 0.85s ease-out 0.12s both;
}

.review__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.review__card {
  position: relative;
  width: 100%;
  margin: 0;
  padding-top: 12px;
  opacity: 0;
  transform: translateY(28px);
}

.review__card.is-visible {
  animation: about-fade-up 0.8s ease-out both;
}

.review__card:nth-child(1).is-visible {
  animation-delay: 0.1s;
}

.review__card:nth-child(2).is-visible {
  animation-delay: 0.22s;
}

.review__card:nth-child(3).is-visible {
  animation-delay: 0.34s;
}

.review__quote {
  position: absolute;
  z-index: 2;
  width: clamp(3.6rem, 8vw, 5.1rem);
  height: auto;
  pointer-events: none;
}

.review__quote--open {
  top: 0;
  left: 0;
}

.review__quote--close {
  right: 0;
  bottom: 0;
}

.review__card-inner {
  display: flex;
  align-items: stretch;
  gap: 20px;
  width: 100%;
  min-height: 281px;
  padding: 20px 20px 18px;
  box-sizing: border-box;
  background: #fef9f1;
  border-bottom: 5px solid #b49300;
  border-radius: 24px 0 24px 0;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.25);
}

.review__photo {
  flex: 0 0 clamp(12rem, 28vw, 18rem);
  width: clamp(12rem, 28vw, 18rem);
  margin: 0;
  overflow: hidden;
  border-radius: 16px 0 16px 0;
  align-self: stretch;
}

.review__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.review__content {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
  padding-top: 8px;
}

.review__category {
  margin: 0;
  color: #010101;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: clamp(1.4rem, 2.5vw, 1.6rem);
  line-height: 1.2;
  font-feature-settings: "palt" on;
  font-variant-east-asian: proportional-width;
}

.review__body {
  flex: 1 1 auto;
  color: #010101;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.5;
  letter-spacing: -0.02em;
  font-feature-settings: "palt" on;
  font-variant-east-asian: proportional-width;
}

.review__body p {
  margin: 0;
}

.review__tag {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 66px;
  margin: 0;
  padding: 14px 12px;
  box-sizing: border-box;
  background: #f2e9da;
  border-radius: 8px;
  color: #232323;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.5;
  text-align: center;
  font-feature-settings: "palt" on;
  font-variant-east-asian: proportional-width;
}

@media (prefers-reduced-motion: reduce) {
  .review__top,
  .review__heading,
  .review__card {
    opacity: 1;
    transform: none;
    animation: none !important;
  }
}
@media screen and ( max-width: 768px ) {
  .review__inner {
    padding: 56px 16px 32px;
    gap: 24px;
  }
  .review__card-inner {
    gap: 12px;
    padding: 14px 12px 12px;
    min-height: 0;
  }
  .review__photo {
    flex-basis: clamp(9.6rem, 32vw, 12.8rem);
    width: clamp(9.6rem, 32vw, 12.8rem);
    border-radius: 12px 0 12px 0;
  }
  .review__content {
    gap: 6px;
    padding-top: 4px;
  }
  .review__tag {
    min-height: 48px;
    padding: 10px 8px;
    white-space: normal;
    font-size: clamp(1.2rem, 3vw, 1.4rem);
  }
}
.flow {
  position: relative;
  overflow: hidden;
  background: #f7f0e2;
  font-feature-settings: "palt" on;
  font-variant-east-asian: proportional-width;
}

.flow__inner {
  position: relative;
  z-index: 1;
  width: 100%;
}

.flow__heading {
  position: absolute;
  top: 4%;
  left: 50%;
  z-index: 2;
  width: 100%;
  margin: 0;
  padding: 0 20px;
  box-sizing: border-box;
  color: #010101;
  font-family: "Noto Serif JP", serif;
  font-weight: 900;
  font-size: 4.2rem;
  line-height: 1;
  text-align: center;
  letter-spacing: -0.04em;
  white-space: nowrap;
  transform: translateX(-50%) translateY(20px);
  font-feature-settings: "palt" on;
  font-variant-east-asian: proportional-width;
  opacity: 0;
}

.flow__heading.is-visible {
  animation: flow-title-in 0.85s ease-out 0.1s both;
}

.flow__visual {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0;
  opacity: 0;
  transform: translateY(24px);
}

.flow__visual.is-visible {
  animation: about-fade-up 0.95s ease-out 0.05s both;
}

.flow__visual img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

@keyframes flow-title-in {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .flow__heading,
  .flow__visual {
    opacity: 1;
    transform: none;
    animation: none !important;
  }
  .flow__heading {
    transform: translateX(-50%);
  }
}
@media screen and ( max-width: 768px ) {
  .flow__heading {
    top: 3.5%;
    font-size: clamp(2.4rem, 6.5vw, 4.2rem);
  }
}
.contact-title {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 164px;
  padding: 32px 16px;
  box-sizing: border-box;
  background: #001433 url("../img/cotanct-title-back.webp") center/cover no-repeat;
  font-feature-settings: "palt" on;
  font-variant-east-asian: proportional-width;
}

.contact-title__heading {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-weight: 900;
  font-size: 4.2rem;
  line-height: 1.2;
  text-align: center;
  letter-spacing: -0.04em;
  font-feature-settings: "palt" on;
  font-variant-east-asian: proportional-width;
  opacity: 0;
  transform: translateY(16px);
}

.contact-title.is-visible .contact-title__heading {
  animation: about-fade-up 0.85s ease-out 0.1s both;
}

.contact-title__line {
  display: block;
  white-space: nowrap;
}

.contact-title__accent {
  color: #ffdf29;
}

@media (prefers-reduced-motion: reduce) {
  .contact-title__heading {
    opacity: 1;
    transform: none;
    animation: none !important;
  }
}
@media screen and ( max-width: 768px ) {
  .contact-title {
    min-height: 140px;
    padding: 28px 12px;
  }
  .contact-title__heading {
    font-size: clamp(2.4rem, 6.5vw, 4.2rem);
  }
}
.contact {
  position: relative;
  overflow: hidden;
  background: #f7f1e4 url("../img/contact-back.webp") center/cover no-repeat;
  font-feature-settings: "palt" on;
  font-variant-east-asian: proportional-width;
}

.contact__inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  padding: 48px 27px;
  box-sizing: border-box;
}

.contact__panel {
  width: 100%;
  max-width: 586px;
  margin: 0 auto;
  padding: 16px;
  box-sizing: border-box;
  background: #fff;
  border-bottom: 5px solid #b49300;
  border-radius: 24px;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.25);
  opacity: 0;
  transform: translateY(24px);
}

.contact.is-visible .contact__panel {
  animation: about-fade-up 0.85s ease-out 0.1s both;
}

.contact form#mail_form {
  max-width: none;
  margin: 0;
  padding: 0;
  background: transparent;
  border-radius: 0;
}

.contact form#mail_form dl {
  width: 100%;
}

@media (prefers-reduced-motion: reduce) {
  .contact__panel {
    opacity: 1;
    transform: none;
    animation: none !important;
  }
}
@media screen and ( max-width: 768px ) {
  .contact__inner {
    padding: 40px 16px;
  }
}
.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 28px 20px 32px;
  box-sizing: border-box;
  background: #001433;
  color: rgba(255, 255, 255, 0.78);
  font-feature-settings: "palt" on;
  font-variant-east-asian: proportional-width;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 18px;
}

.footer__link {
  color: #f7f1e4;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.4;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.footer__link:hover,
.footer__link:focus-visible {
  color: #ffdf29;
  border-bottom-color: rgba(255, 223, 41, 0.7);
  outline: none;
}

.footer__sep {
  display: inline-block;
  width: 1px;
  height: 12px;
  background: rgba(180, 147, 0, 0.55);
}

.footer__copy {
  margin: 0;
  color: rgba(247, 241, 228, 0.55);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.02em;
}

@media screen and ( max-width: 768px ) {
  .footer {
    gap: 12px;
    padding: 24px 16px 28px;
  }
  .footer__link {
    font-size: 1.3rem;
  }
  .footer__copy {
    font-size: 1.1rem;
  }
}
.thanks {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52vh;
  padding: clamp(40px, 8vw, 64px) clamp(16px, 4vw, 27px);
  overflow: hidden;
  background: #f7f1e4 url("../img/contact-back.webp") center/cover no-repeat;
  font-feature-settings: "palt" on;
  font-variant-east-asian: proportional-width;
}

.thanks__inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  width: 100%;
}

.thanks__card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(16px, 3vw, 24px);
  width: 100%;
  max-width: 586px;
  margin: 0 auto;
  padding: clamp(36px, 7vw, 52px) clamp(20px, 4vw, 32px) clamp(40px, 8vw, 56px);
  box-sizing: border-box;
  background: #fff;
  border-bottom: 5px solid #b49300;
  border-radius: 24px;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.25);
  text-align: center;
}

.thanks__title {
  margin: 0;
  color: #001433;
  font-family: "Noto Serif JP", serif;
  font-weight: 900;
  font-size: clamp(2.4rem, 5.8vw, 3.4rem);
  line-height: 1.4;
  letter-spacing: -0.02em;
  font-feature-settings: "palt" on;
  font-variant-east-asian: proportional-width;
}

.thanks__text {
  margin: 0;
  color: #010101;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: clamp(1.4rem, 3.4vw, 1.6rem);
  line-height: 1.8;
  text-align: left;
}

.thanks__btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-top: clamp(4px, 1vw, 8px);
}

.thanks__btn {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  width: 100%;
  max-width: 480px;
  min-height: clamp(4.8rem, 12.5vw, 7.2rem);
  margin: 0;
  padding: 1.2rem 1.6rem;
  box-sizing: border-box;
  overflow: hidden;
  isolation: isolate;
  border: 3px solid #fff;
  border-radius: 9999px;
  background: linear-gradient(180deg, #03d70a 0%, #017105 100%);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.thanks__btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -40%;
  z-index: 0;
  width: 35%;
  height: 100%;
  background: linear-gradient(100deg, transparent 0%, rgba(255, 255, 255, 0.15) 35%, rgba(255, 255, 255, 0.55) 50%, rgba(255, 255, 255, 0.15) 65%, transparent 100%);
  transform: skewX(-20deg);
  pointer-events: none;
  animation: cta-btn-flash 2.8s ease-in-out 0.4s infinite;
}

.thanks__btn-text,
.thanks__btn-icon {
  position: relative;
  z-index: 1;
}

.thanks__btn-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: clamp(1.5rem, 4.2vw, 2.2rem);
  line-height: 1.2;
  font-feature-settings: "palt" on;
  font-variant-east-asian: proportional-width;
}

.thanks__btn-icon {
  display: inline-flex;
  flex-shrink: 0;
  width: clamp(2.2rem, 4.8vw, 3.1rem);
  height: clamp(2.2rem, 4.8vw, 3.1rem);
}

.thanks__btn-icon img {
  display: block;
  width: 100%;
  height: 100%;
}

.thanks__btn:hover {
  opacity: 1;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.35);
  filter: brightness(1.08);
}

.thanks__btn:hover::before {
  animation: cta-btn-flash-fast 0.7s ease-out;
}

.thanks__btn:active {
  transform: translateY(0) scale(0.99);
}

.main > .contact-title .contact-title__heading {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .thanks__btn::before {
    display: none;
  }
}
@media screen and ( max-width: 768px ) {
  .thanks {
    min-height: auto;
    padding: 32px 16px 40px;
  }
  .thanks__card {
    padding: 32px 18px 40px;
    border-radius: 20px;
  }
  .thanks__text {
    text-align: left;
  }
  .thanks__btn-text {
    white-space: normal;
    text-align: center;
  }
}
