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

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

img,
picture,
video,
svg {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

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

button {
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

address {
  font-style: normal;
}

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

body {
  position: relative;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.9;
  color: #2b2823;
  background-color: #fffdf9;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  background-image: radial-gradient(rgba(200, 170, 130, 0.05) 1px, transparent 1px);
  background-size: 4px 4px;
}

a {
  transition: opacity 0.35s cubic-bezier(0.22, 0.61, 0.36, 1), color 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}
@media (hover: hover) {
  a:hover {
    opacity: 0.7;
  }
}

img {
  width: 100%;
}

::selection {
  color: #ffffff;
  background-color: #ff7a00;
}

.fade-up {
  opacity: 0;
  transform: translateY(3rem);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

.u-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  white-space: nowrap;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
}

.u-nb {
  display: inline-block;
}

.inner {
  width: 100%;
  max-width: calc(1120px + 1.5rem * 2);
  margin-right: auto;
  margin-left: auto;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}

.inner--narrow {
  width: 100%;
  max-width: calc(860px + 1.5rem * 2);
  margin-right: auto;
  margin-left: auto;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}

.section {
  padding-top: 10rem;
  padding-bottom: 10rem;
}
@media screen and (max-width: 767px) {
  .section {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

.wave-divider {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
  pointer-events: none;
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: 9rem;
}
@media screen and (max-width: 767px) {
  .wave-divider svg {
    height: 5rem;
  }
}

.wave-divider--top {
  top: -1px;
  bottom: auto;
}

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

.script-heading {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1;
  color: #ff7a00;
}

.hand-heading {
  display: inline-block;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  line-height: 1.5;
}

.marker-lines {
  position: relative;
  display: block;
  width: 4rem;
  height: 1.4rem;
  margin-right: auto;
  margin-left: auto;
}

.marker-lines::before,
.marker-lines::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 0.3rem;
  height: 1.4rem;
  background-color: #ff7a00;
  border-radius: 2px;
}

.marker-lines::before {
  left: 1.2rem;
  transform: rotate(-20deg);
}

.marker-lines::after {
  right: 1.2rem;
  transform: rotate(20deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  min-width: 20rem;
  padding: 1.5rem 3rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  border-radius: 5rem;
  transition: background-color 0.35s cubic-bezier(0.22, 0.61, 0.36, 1), color 0.35s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.btn--lg {
  min-width: 34rem;
  padding: 2rem 4rem;
  font-size: 1.9rem;
}
@media screen and (max-width: 767px) {
  .btn--lg {
    min-width: 100%;
  }
}

.btn--primary {
  color: #ffffff;
  background-color: #ff7a00;
  box-shadow: 0 0.6rem 1.4rem rgba(255, 122, 0, 0.35);
}
@media (hover: hover) {
  .btn--primary:hover {
    background-color: #e56d00;
    transform: translateY(-0.3rem);
    opacity: 1;
  }
}

.btn--outline {
  min-width: 24rem;
  color: #2b2823;
  background-color: #ffffff;
  border: 2px solid #2b2823;
}
@media (hover: hover) {
  .btn--outline:hover {
    color: #ffffff;
    background-color: #2b2823;
    opacity: 1;
  }
}

.btn--white {
  color: #ff7a00;
  background-color: #ffffff;
  box-shadow: 0 0.8rem 2rem rgba(0, 0, 0, 0.12);
}
@media (hover: hover) {
  .btn--white:hover {
    background-color: #fdf4e8;
    transform: translateY(-0.3rem);
    opacity: 1;
  }
}

.btn__icon {
  flex-shrink: 0;
}

.btn__arrow {
  margin-left: 0.4rem;
  transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.btn:hover .btn__arrow {
  transform: translateX(0.4rem);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(6px);
  box-shadow: 0 0.2rem 1rem rgba(43, 40, 35, 0.05);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1440px;
  height: 7.6rem;
  margin-right: auto;
  margin-left: auto;
  padding-right: 3rem;
  padding-left: 3rem;
}
@media screen and (max-width: 767px) {
  .header__inner {
    height: 6rem;
    padding-right: 1.6rem;
    padding-left: 1.6rem;
  }
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  line-height: 1;
}

.header__logo a {
  display: block;
  height: 5.2rem;
}
@media screen and (max-width: 767px) {
  .header__logo a {
    height: 4rem;
  }
}

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

.header__logo-sub {
  padding-left: 1rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: #6f665d;
  border-left: 1px solid #e7ded2;
}
@media screen and (max-width: 767px) {
  .header__logo-sub {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .header__nav {
    position: fixed;
    top: 6rem;
    right: 0;
    display: flex;
    align-items: center;
    width: 100%;
    height: calc(100dvh - 6rem);
    background-color: #fdf4e8;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
  }
}

@media screen and (max-width: 767px) {
  .header__nav.is-open {
    transform: translateX(0);
  }
}

.header__list {
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .header__list {
    flex-direction: column;
    gap: 0;
    width: 100%;
    padding-right: 8vw;
    padding-left: 8vw;
  }
}

.header__item {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .header__item {
    width: 100%;
    border-bottom: 1px solid #e7ded2;
  }
}

@media screen and (max-width: 767px) {
  .header__link {
    display: block;
    padding-top: 1.8rem;
    padding-bottom: 1.8rem;
  }
}

.header__entry {
  display: flex;
  align-items: center;
  margin-left: 0.8rem;
}
@media screen and (max-width: 767px) {
  .header__entry {
    justify-content: center;
    margin-top: 3rem;
    margin-left: 0;
    border-bottom: none;
  }
}

.header__entry .btn {
  min-width: auto;
  padding: 1.1rem 2.2rem;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .header__entry .btn {
    width: 100%;
    padding: 1.7rem;
    font-size: 1.6rem;
  }
}

.hamburger {
  display: none;
}
@media screen and (max-width: 767px) {
  .hamburger {
    position: relative;
    z-index: 1100;
    display: block;
    width: 3rem;
    height: 2.2rem;
  }
}

.hamburger__bar {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #2b2823;
  border-radius: 2px;
  transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.hamburger__bar:nth-child(1) {
  top: 0;
}

.hamburger__bar:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.hamburger__bar:nth-child(3) {
  bottom: 0;
}

.hamburger.is-open .hamburger__bar:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.hamburger.is-open .hamburger__bar:nth-child(2) {
  opacity: 0;
}

.hamburger.is-open .hamburger__bar:nth-child(3) {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

@media screen and (max-width: 767px) {
  .is-nav-open {
    overflow: hidden;
  }
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100vh;
  min-height: 100svh;
  padding-top: 7.6rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .hero {
    min-height: 92vh;
    align-items: flex-end;
    padding-bottom: 24vh;
  }
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  clip-path: polygon(0 0, 100% 0, 100% 70%, 58% 100%, 5% 100%, 0 90%);
}
@media screen and (max-width: 767px) {
  .hero__bg {
    clip-path: polygon(0 0, 100% 0, 100% 94%, 0 100%);
  }
}

.hero__bg picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero__slide.is-active {
  opacity: 1;
}

.hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__inner {
  width: 100%;
  max-width: 1280px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 5vw;
  padding-left: 5vw;
}
@media screen and (max-width: 767px) {
  .hero__inner {
    padding-right: 6vw;
    padding-left: 6vw;
  }
}

.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(98deg, rgba(0, 0, 0, 0.66) 0%, rgba(0, 0, 0, 0.34) 30%, rgba(0, 0, 0, 0) 56%);
  clip-path: polygon(0 0, 100% 0, 100% 70%, 58% 100%, 5% 100%, 0 90%);
}
@media screen and (max-width: 767px) {
  .hero__scrim {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.32) 0%, rgba(0, 0, 0, 0.08) 36%, rgba(0, 0, 0, 0.74) 100%);
    clip-path: polygon(0 0, 100% 0, 100% 94%, 0 100%);
  }
}

.hero__catch {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  line-height: 1.14;
  letter-spacing: -0.02em;
  color: #ffffff;
  text-shadow: 0 0.2rem 1.4rem rgba(0, 0, 0, 0.45), 0 0.1rem 0.3rem rgba(0, 0, 0, 0.4);
}

.hero__catch-line {
  display: block;
}

.hero__catch-line--1 {
  font-size: 6.6rem;
  font-size: clamp(6.6rem, 3.4181818182rem + 0.8484848485vw, 13.6rem);
}
@media screen and (max-width: 767px) {
  .hero__catch-line--1 {
    font-size: 4.8rem;
  }
}

.hero__catch-line--2 {
  margin-top: 0.4rem;
  font-size: 5.6rem;
  font-size: clamp(5.6rem, 2.9636363636rem + 0.703030303vw, 11.4rem);
}
@media screen and (max-width: 767px) {
  .hero__catch-line--2 {
    font-size: 4.8rem;
  }
}

.hero__catch .accent {
  color: #ff7a00;
}

.hero__lead {
  max-width: 46rem;
  margin-top: 3.6rem;
}
@media screen and (max-width: 767px) {
  .hero__lead {
    margin-top: 2.6rem;
  }
}

.hero__lead-line {
  position: relative;
  padding: 1.2rem 0 1.2rem 1.8rem;
  font-size: 1.9rem;
  font-weight: 500;
  line-height: 1.6;
  color: #ffffff;
  text-shadow: 0 0.1rem 0.6rem rgba(0, 0, 0, 0.55);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}
@media screen and (max-width: 767px) {
  .hero__lead-line {
    padding-top: 0.9rem;
    padding-bottom: 0.9rem;
    font-size: 1.5rem;
  }
}

.hero__lead-line::before {
  content: "";
  position: absolute;
  top: 1.2rem;
  bottom: 1.2rem;
  left: 0;
  width: 3px;
  background-color: #ff7a00;
}
@media screen and (max-width: 767px) {
  .hero__lead-line::before {
    top: 0.9rem;
    bottom: 0.9rem;
  }
}

.hero__sticker {
  position: absolute;
  top: 44%;
  right: 6%;
  z-index: 2;
  width: 16rem;
  transform: rotate(-8deg);
  animation: stickerPop 3s ease-in-out infinite;
}
@media screen and (max-width: 767px) {
  .hero__sticker {
    top: auto;
    bottom: 9rem;
    right: 4%;
    width: 11rem;
  }
}

.hero__sticker img {
  width: 100%;
}

.hero__sticker::after {
  content: "";
  position: absolute;
  inset: 14%;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  pointer-events: none;
}

@keyframes stickerPop {
  0%, 100% {
    transform: rotate(-8deg) scale(1);
  }
  50% {
    transform: rotate(-8deg) scale(1.06);
  }
}
.hero__dots {
  position: absolute;
  z-index: 2;
  bottom: 12rem;
  left: 5vw;
  display: flex;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .hero__dots {
    bottom: 8rem;
  }
}

.hero__dots li {
  line-height: 0;
}

.hero__dots button {
  width: 1rem;
  height: 1rem;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  box-shadow: 0 0 0.4rem rgba(43, 40, 35, 0.25);
  transition: width 0.35s cubic-bezier(0.22, 0.61, 0.36, 1), background-color 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.hero__dots button.is-active {
  width: 2.6rem;
  background-color: #ff7a00;
  border-radius: 1rem;
}

.hero__deco {
  position: absolute;
  z-index: 2;
  bottom: 3rem;
  left: 3rem;
  width: 9rem;
  height: 5.5rem;
  color: rgba(43, 40, 35, 0.28);
  background-image: radial-gradient(currentColor 1.4px, transparent 1.5px);
  background-size: 1.5rem 1.5rem;
}
@media screen and (max-width: 767px) {
  .hero__deco {
    left: 1.6rem;
    bottom: 1.6rem;
    width: 6rem;
    height: 4rem;
  }
}

.hero__scroll {
  position: absolute;
  z-index: 2;
  right: 3.4rem;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: #6f665d;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 767px) {
  .hero__scroll {
    right: 1.4rem;
  }
}

.hero__scroll::after {
  content: "";
  width: 1px;
  height: 7rem;
  background-color: #2b2823;
  animation: scrollLine 2.2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  45% {
    transform: scaleY(1);
    transform-origin: top;
  }
  55% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}
.message {
  position: relative;
  background-color: #fdf4e8;
}

.message__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 5rem;
}
@media screen and (max-width: 767px) {
  .message__inner {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

.message__title {
  margin-top: 1.5rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  line-height: 1.4;
  font-size: 2.8rem;
  font-size: clamp(2.8rem, 2.0727272727rem + 0.1939393939vw, 4.4rem);
}

.message__text {
  margin-top: 2.4rem;
  line-height: 2.1;
}

.message__text + .message__text {
  margin-top: 1.6rem;
}

.message__photos {
  position: relative;
  min-height: 44rem;
}
@media screen and (max-width: 767px) {
  .message__photos {
    min-height: 40rem;
  }
}

.polaroid {
  position: absolute;
  width: 54%;
  padding: 1rem 1rem 2.6rem;
  background-color: #ffffff;
  box-shadow: 0 1.2rem 2.6rem rgba(43, 40, 35, 0.14);
}

.polaroid img {
  display: block;
}

.polaroid--1 {
  top: 0;
  left: 4%;
  transform: rotate(-5deg);
  z-index: 1;
}

.polaroid--2 {
  top: 6%;
  right: 2%;
  width: 46%;
  transform: rotate(4deg);
  z-index: 2;
}

.polaroid--3 {
  bottom: 0;
  left: 22%;
  transform: rotate(-2deg);
  z-index: 3;
}

.tape {
  position: absolute;
  top: -1.2rem;
  left: 50%;
  width: 6rem;
  height: 2.4rem;
  transform: translateX(-50%) rotate(-4deg);
}

.tape--blue {
  background-color: rgba(188, 216, 232, 0.75);
}

.tape--orange {
  background-color: rgba(255, 178, 102, 0.7);
}

.doodle {
  position: absolute;
  z-index: 4;
}

.doodle--sparkle {
  top: -2rem;
  left: 0;
}

.doodle--swirl {
  right: -1rem;
  bottom: 4rem;
}

.values {
  background-color: #fdf4e8;
}

.values__head {
  text-align: center;
}

.values__title {
  position: relative;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  line-height: 1.5;
  font-size: 2.4rem;
  font-size: clamp(2.4rem, 1.8545454545rem + 0.1454545455vw, 3.6rem);
}

.values__num {
  margin-right: 0.2rem;
  margin-left: 0.2rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.7em;
  color: #ff7a00;
}

.values__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .values__list {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3.5rem;
  }
}

.value-card {
  padding: 4rem 3rem;
  text-align: center;
  background-color: #ffffff;
  border-radius: 2rem;
  box-shadow: 0 1rem 2.4rem rgba(43, 40, 35, 0.07);
  transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.value-card:hover {
  transform: translateY(-0.8rem);
  box-shadow: 0 1.8rem 3.6rem rgba(43, 40, 35, 0.12);
}

.value-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-card__icon img {
  width: 9rem;
  height: auto;
}

.value-card__title {
  margin-top: 2rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #ff7a00;
}

.value-card__text {
  margin-top: 1.4rem;
  font-size: 1.5rem;
  line-height: 1.9;
  color: #6f665d;
}

.check {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.check__inner {
  display: flex;
  align-items: center;
  gap: 4rem;
  padding: 4rem 5rem;
  background-color: #fdf4e8;
  border-radius: 3rem;
}
@media screen and (max-width: 767px) {
  .check__inner {
    flex-direction: column;
    gap: 2.5rem;
    padding: 3rem 6vw;
  }
}

.check__lead {
  flex-shrink: 0;
  position: relative;
}

.check__lead .hand-heading {
  font-size: 2.6rem;
  color: #2b2823;
}

.check__underline {
  display: block;
  width: 100%;
  height: 0.6rem;
  margin-top: 0.6rem;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='8' viewBox='0 0 120 8'%3E%3Cpath d='M2 5c30-5 88-5 116 0' fill='none' stroke='%23ff7a00' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center/contain;
}

.check__list {
  display: flex;
  flex-grow: 1;
  justify-content: space-between;
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .check__list {
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem 1rem;
  }
}

.check-item {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .check-item {
    flex: 0 0 28%;
  }
}

.check-item__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.check-item__link:hover {
  opacity: 1;
}

.check-item__circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 8rem;
  height: 8rem;
  color: #2b2823;
  background-color: #ffffff;
  border-radius: 50%;
  box-shadow: 0 1rem 2.4rem rgba(43, 40, 35, 0.07);
  transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1), background-color 0.35s cubic-bezier(0.22, 0.61, 0.36, 1), color 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}
@media screen and (max-width: 767px) {
  .check-item__circle {
    width: 6.6rem;
    height: 6.6rem;
  }
}

.check-item__link:hover .check-item__circle {
  color: #ffffff;
  background-color: #ff7a00;
  transform: translateY(-0.5rem);
}

.check-item__link.is-current .check-item__circle {
  color: #ffffff;
  background-color: #ff7a00;
}

.check-item__label {
  position: relative;
  padding-right: 1.4rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .check-item__label {
    font-size: 1.2rem;
  }
}

.check-item__label::after {
  content: "›";
  position: absolute;
  top: 50%;
  right: 0;
  color: #ff7a00;
  transform: translateY(-50%);
}

.staff {
  background-color: #fdf4e8;
}

.staff__inner {
  display: grid;
  grid-template-columns: 30% 1fr;
  align-items: center;
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .staff__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.staff__title {
  margin-top: 1.5rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  line-height: 1.4;
  font-size: 2.6rem;
  font-size: clamp(2.6rem, 2.0545454545rem + 0.1454545455vw, 3.8rem);
}

.staff__text {
  margin-top: 2rem;
  font-size: 1.5rem;
  line-height: 2;
  color: #6f665d;
}

.staff__text-area .btn {
  margin-top: 2.6rem;
}

.staff__cards {
  position: relative;
  display: flex;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .staff__cards {
    gap: 1.2rem;
  }
}

.staff-card {
  flex: 1;
  padding: 1.2rem;
  background-color: #ffffff;
  border-radius: 2rem;
  box-shadow: 0 1rem 2.4rem rgba(43, 40, 35, 0.07);
  transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.staff-card--1 {
  transform: rotate(-1.5deg);
}

.staff-card--2 {
  z-index: 2;
  transform: translateY(-1.2rem);
}

.staff-card--3 {
  transform: rotate(1.5deg);
}

.staff-card:hover {
  transform: translateY(-0.8rem) rotate(0);
  z-index: 3;
}

.staff-card__thumb {
  aspect-ratio: 5/6;
  border-radius: 1.2rem;
  overflow: hidden;
}

.staff-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.staff-card__bubble {
  position: relative;
  margin-top: 1.6rem;
  padding: 0.6rem 1rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.5rem;
  text-align: center;
  color: #ff7a00;
  background-color: #ffede0;
  border-radius: 5rem;
}
@media screen and (max-width: 767px) {
  .staff-card__bubble {
    font-size: 1.2rem;
  }
}

.staff-card__bubble::after {
  content: "";
  position: absolute;
  bottom: -0.6rem;
  left: 50%;
  border-width: 0.6rem 0.5rem 0;
  border-style: solid;
  border-color: #ffede0 transparent transparent;
  transform: translateX(-50%);
}

.staff-card__comment {
  margin-top: 1.2rem;
  padding-bottom: 0.6rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .staff-card__comment {
    font-size: 1.3rem;
  }
}

.staff__next {
  position: absolute;
  top: 42%;
  right: -2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5.2rem;
  height: 5.2rem;
  font-size: 2rem;
  color: #ffffff;
  background-color: #ff7a00;
  border-radius: 50%;
  box-shadow: 0 0.6rem 1.6rem rgba(255, 122, 0, 0.35);
  transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1), background-color 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}
@media screen and (max-width: 767px) {
  .staff__next {
    display: none;
  }
}

.staff__next:hover {
  background-color: #e56d00;
  transform: scale(1.08);
}

.cta {
  position: relative;
  padding-top: 12rem;
  padding-bottom: 10rem;
  color: #ffffff;
  background-color: #ff7a00;
}
@media screen and (max-width: 767px) {
  .cta {
    padding-top: 8rem;
    padding-bottom: 7rem;
  }
}

.cta__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}
@media screen and (max-width: 767px) {
  .cta__inner {
    flex-direction: column;
    gap: 2rem;
  }
}

.cta__hand {
  flex-shrink: 0;
}

.cta__hand .hand-heading {
  font-size: 2.2rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .cta__hand .hand-heading {
    font-size: 1.8rem;
  }
}

.cta__hand--left {
  text-align: right;
}
@media screen and (max-width: 767px) {
  .cta__hand--left {
    text-align: center;
  }
}

.cta__center {
  text-align: center;
}

.cta__lead {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.7rem;
  font-weight: 500;
}

.cta__center .btn {
  margin-top: 1.6rem;
}

.cta__tel {
  margin-top: 1.8rem;
}

.cta__tel a {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 2rem;
  font-weight: 700;
}

.cta__tel-note {
  margin-top: 0.4rem;
  font-size: 1.3rem;
}

.footer {
  padding-top: 6rem;
  padding-bottom: 3rem;
  color: #ffffff;
  background-color: #2b2823;
}

.footer__body {
  display: flex;
  justify-content: space-between;
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .footer__body {
    flex-direction: column;
    gap: 3rem;
  }
}

.footer__logo {
  line-height: 0;
}

.footer__logo img {
  width: auto;
  height: 6rem;
  filter: brightness(0) invert(1);
}

.footer__address {
  margin-top: 2rem;
  font-size: 1.4rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.8);
}

.footer__tel {
  margin-top: 1.2rem;
}

.footer__tel a {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
}

.footer__sns {
  display: flex;
  gap: 1.4rem;
  margin-top: 2rem;
}

.footer__sns-item {
  width: 4rem;
}

.footer__nav-list {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 1rem 4rem;
}
@media screen and (max-width: 767px) {
  .footer__nav-list {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.footer__nav-item {
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .footer__nav-item {
    padding-top: 1.3rem;
    padding-bottom: 1.3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }
}

.footer__copy {
  margin-top: 5rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.4rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}

.page-hero {
  position: relative;
  padding-top: 15rem;
  padding-bottom: 9rem;
  text-align: center;
  background-color: #fdf4e8;
}
@media screen and (max-width: 767px) {
  .page-hero {
    padding-top: 11rem;
    padding-bottom: 6rem;
  }
}

.page-hero__en {
  display: block;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #ff7a00;
  text-transform: uppercase;
}

.page-hero__title {
  margin-top: 0.8rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  line-height: 1.3;
  font-size: 2.8rem;
  font-size: clamp(2.8rem, 2.0727272727rem + 0.1939393939vw, 4.4rem);
}

.breadcrumb {
  padding-top: 1.6rem;
  padding-bottom: 1.6rem;
  background-color: #fdf4e8;
}

.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-size: 1.3rem;
  color: #6f665d;
}

.breadcrumb__list li:not(:last-child)::after {
  content: "›";
  margin-left: 0.6rem;
  color: #ff7a00;
}

.breadcrumb__list a {
  color: #ff7a00;
}

.page-section {
  padding-top: 8rem;
  padding-bottom: 8rem;
}
@media screen and (max-width: 767px) {
  .page-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

.page-section--cream {
  background-color: #fdf4e8;
}

.sec-head {
  margin-bottom: 4rem;
  text-align: center;
}

.sec-head__title {
  margin-top: 0.6rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  line-height: 1.4;
  font-size: 2.4rem;
  font-size: clamp(2.4rem, 1.9454545455rem + 0.1212121212vw, 3.4rem);
}

.lead-block {
  max-width: 76rem;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.lead-block__catch {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  line-height: 1.5;
  color: #ff7a00;
  font-size: 2.4rem;
  font-size: clamp(2.4rem, 1.9454545455rem + 0.1212121212vw, 3.4rem);
}

.lead-block__text {
  margin-top: 2.4rem;
  line-height: 2.1;
  text-align: left;
}

.want-list {
  max-width: 78rem;
  margin-top: 5rem;
  margin-right: auto;
  margin-left: auto;
}

.want-list__item {
  display: flex;
  align-items: flex-start;
  gap: 1.6rem;
  padding: 2.2rem 2.6rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  background-color: #ffffff;
  border-radius: 2rem;
  box-shadow: 0 1rem 2.4rem rgba(43, 40, 35, 0.07);
}
@media screen and (max-width: 767px) {
  .want-list__item {
    padding: 1.8rem 2rem;
    font-size: 1.6rem;
  }
}

.want-list__item + .want-list__item {
  margin-top: 1.6rem;
}

.want-list__check {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.2rem;
  height: 3.2rem;
  color: #ffffff;
  background-color: #ff7a00;
  border-radius: 50%;
}

.boss-message {
  position: relative;
  max-width: 84rem;
  margin-right: auto;
  margin-left: auto;
  padding: 5rem;
  background-color: #ffffff;
  border-radius: 3rem;
  box-shadow: 0 1.2rem 3rem rgba(43, 40, 35, 0.08);
}
@media screen and (max-width: 767px) {
  .boss-message {
    padding: 3rem 2.4rem;
  }
}

.boss-message__label {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 2.4rem;
  color: #ff7a00;
}

.boss-message__text {
  margin-top: 1.6rem;
  line-height: 2.1;
}

.boss-message__name {
  margin-top: 2.4rem;
  font-size: 1.4rem;
  text-align: right;
  color: #6f665d;
}

.boss-message__name strong {
  margin-left: 0.6rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.8rem;
  color: #2b2823;
}

.flow {
  max-width: 80rem;
  margin-right: auto;
  margin-left: auto;
}

.flow__item {
  position: relative;
  display: grid;
  grid-template-columns: 8rem 1fr;
  column-gap: 3.4rem;
  align-items: start;
  padding-bottom: 3.6rem;
}
@media screen and (max-width: 767px) {
  .flow__item {
    grid-template-columns: 6rem 1fr;
    column-gap: 2rem;
    padding-bottom: 2.6rem;
  }
}

.flow__item::before {
  content: "";
  position: absolute;
  top: 1.1rem;
  left: 9.7rem;
  width: 2px;
  height: 100%;
  background-color: #e7ded2;
  transform: translateX(-1px);
}
@media screen and (max-width: 767px) {
  .flow__item::before {
    left: 7rem;
  }
}

.flow__item::after {
  content: "";
  position: absolute;
  top: 0.5rem;
  left: 9.7rem;
  width: 1.4rem;
  height: 1.4rem;
  background-color: #ff7a00;
  border: 3px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 0 0 2px #ff7a00;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .flow__item::after {
    display: none;
  }
}

.flow__item:last-child {
  padding-bottom: 0;
}

.flow__item:last-child::before {
  display: none;
}

.flow__time {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.4;
  color: #ff7a00;
  text-align: right;
}

.flow__body {
  padding-left: 0;
}

.flow__title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1.4;
}

.flow__text {
  margin-top: 0.6rem;
  font-size: 1.5rem;
  color: #6f665d;
}

.note-block {
  max-width: 84rem;
  margin-right: auto;
  margin-left: auto;
  padding: 4rem 5rem;
  background-color: #ffede0;
  border-radius: 3rem;
}
@media screen and (max-width: 767px) {
  .note-block {
    padding: 3rem 2.4rem;
  }
}

.note-block__title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: #ff7a00;
}

.note-block__text {
  margin-top: 1.6rem;
  line-height: 2.1;
}

.info-table {
  width: 100%;
  max-width: 92rem;
  margin-right: auto;
  margin-left: auto;
  background-color: #ffffff;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 1rem 2.4rem rgba(43, 40, 35, 0.07);
}

.info-table th,
.info-table td {
  padding: 2.2rem 2.6rem;
  font-size: 1.5rem;
  line-height: 1.9;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid #e7ded2;
}
@media screen and (max-width: 767px) {
  .info-table th,
  .info-table td {
    display: block;
    padding: 1.4rem 1.8rem;
  }
}

.info-table th {
  width: 24rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  color: #2b2823;
  background-color: #fdf4e8;
}
@media screen and (max-width: 767px) {
  .info-table th {
    width: 100%;
    padding-bottom: 0.4rem;
    border-bottom: none;
    color: #ff7a00;
  }
}

.info-table tr:last-child th,
.info-table tr:last-child td {
  border-bottom: none;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5.6rem;
  max-width: 96rem;
  margin-top: 3rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .steps {
    grid-template-columns: 1fr;
    gap: 3.4rem;
  }
}

.step-card {
  position: relative;
  padding: 3.6rem 2.6rem 2.6rem;
  text-align: center;
  background-color: #ffffff;
  border-radius: 2rem;
  box-shadow: 0 1rem 2.4rem rgba(43, 40, 35, 0.07);
}

.step-card__num {
  position: absolute;
  top: -1.8rem;
  left: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 8rem;
  padding: 0.4rem 1.4rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #ffffff;
  background-color: #ff7a00;
  border-radius: 5rem;
  transform: translateX(-50%);
}

.step-card__title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
}

.step-card__text {
  margin-top: 1.2rem;
  font-size: 1.4rem;
  line-height: 1.9;
  color: #6f665d;
}

.staff-detail {
  display: grid;
  gap: 5rem;
  max-width: 96rem;
  margin-right: auto;
  margin-left: auto;
}

.staff-detail__item {
  display: grid;
  grid-template-columns: 34% 1fr;
  gap: 3.5rem;
  align-items: center;
  padding: 3rem;
  background-color: #ffffff;
  border-radius: 3rem;
  box-shadow: 0 1rem 2.4rem rgba(43, 40, 35, 0.07);
}
@media screen and (max-width: 767px) {
  .staff-detail__item {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem;
  }
}

.staff-detail__item:nth-child(even) {
  direction: rtl;
}
@media screen and (max-width: 767px) {
  .staff-detail__item:nth-child(even) {
    direction: ltr;
  }
}

.staff-detail__item:nth-child(even) > * {
  direction: ltr;
}

.staff-detail__photo {
  border-radius: 2rem;
  overflow: hidden;
}

.staff-detail__role {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.6rem;
  color: #ff7a00;
}

.staff-detail__name {
  margin-top: 0.4rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
}

.staff-detail__name span {
  margin-left: 0.8rem;
  font-size: 1.4rem;
  font-weight: 500;
  color: #6f665d;
}

.qa {
  margin-top: 2rem;
}

.qa + .qa {
  margin-top: 1.6rem;
}

.qa__q {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #ff7a00;
}

.qa__a {
  margin-top: 0.4rem;
  font-size: 1.5rem;
  line-height: 1.9;
}

.form {
  max-width: 72rem;
  margin-right: auto;
  margin-left: auto;
}

.form__row {
  padding-top: 2.4rem;
}

.form__label {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
}

.form__required {
  padding: 0.2rem 0.8rem;
  font-size: 1.1rem;
  color: #ffffff;
  background-color: #ff7a00;
  border-radius: 0.4rem;
}

.form__input,
.form__textarea,
.form__select {
  width: 100%;
  margin-top: 0.8rem;
  padding: 1.4rem 1.6rem;
  font-size: 1.6rem;
  background-color: #ffffff;
  border: 1px solid #e7ded2;
  border-radius: 1rem;
  transition: border-color 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.form__input:focus,
.form__textarea:focus,
.form__select:focus {
  border-color: #ff7a00;
  outline: none;
}

.form__textarea {
  min-height: 14rem;
  resize: vertical;
}

.form__privacy {
  margin-top: 3rem;
  text-align: center;
}

.form__privacy label {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.4rem;
}

.form__submit {
  margin-top: 3rem;
  text-align: center;
}

.form__note {
  max-width: 72rem;
  margin-right: auto;
  margin-left: auto;
  margin-top: 2rem;
  padding: 1.6rem 2rem;
  font-size: 1.3rem;
  line-height: 1.8;
  color: #6f665d;
  background-color: #fdf4e8;
  border-radius: 1rem;
}

.cta-band {
  padding-top: 6rem;
  padding-bottom: 6rem;
  text-align: center;
  color: #ffffff;
  background-color: #ff7a00;
}

.cta-band__title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-size: 2.2rem;
  font-size: clamp(2.2rem, 1.7454545455rem + 0.1212121212vw, 3.2rem);
}

.cta-band__text {
  margin-top: 1.4rem;
  font-size: 1.5rem;
}

.cta-band__btn {
  margin-top: 2.6rem;
}

.note-small {
  max-width: 80rem;
  margin-top: 3rem;
  margin-right: auto;
  margin-left: auto;
  font-size: 1.3rem;
  text-align: center;
  color: #6f665d;
}

.job-list {
  display: grid;
  gap: 2.4rem;
  max-width: 96rem;
  margin-right: auto;
  margin-left: auto;
}

.job-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  align-items: flex-start;
  padding: 3.2rem 3.6rem;
  background-color: #ffffff;
  border-radius: 2rem;
  box-shadow: 0 1rem 2.4rem rgba(43, 40, 35, 0.07);
  transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}
@media screen and (max-width: 767px) {
  .job-card {
    grid-template-columns: 1fr;
    gap: 1.6rem;
    padding: 2.4rem 2rem;
  }
}

.job-card:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 1.6rem 3.2rem rgba(43, 40, 35, 0.12);
}

.job-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 8rem;
  height: 8rem;
  color: #ff7a00;
  background-color: #ffede0;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .job-card__icon {
    width: 6rem;
    height: 6rem;
  }
}

.job-card__no {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #ff7a00;
}

.job-card__title {
  margin-top: 0.4rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .job-card__title {
    font-size: 1.9rem;
  }
}

.job-card__text {
  margin-top: 1.2rem;
  line-height: 2;
  color: #6f665d;
}

.job-list + .note-block {
  margin-top: 4rem;
}
