@charset "UTF-8";
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

li {
  list-style-type: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

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

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

/* ============================================
  ⭐ ここから下を編集してください ⭐
  ============================================ */
html {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 62.5%;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

li {
  list-style-type: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

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

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

/* ============================================
  ⭐ ここから下を編集してください ⭐
  ============================================ */
html {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 62.5%;
}

.about-page {
  background-color: #F6F6F6;
}
.about-page .js-about-reveal {
  --about-reveal-y: 2.4rem;
  opacity: 0;
  transform: translate3d(0, var(--about-reveal-y), 0);
  transition: opacity 0.7s ease var(--about-reveal-delay, 0s), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1) var(--about-reveal-delay, 0s);
  will-change: opacity, transform;
}
.about-page .js-about-reveal.is-revealed {
  --about-reveal-y: 0px;
  opacity: 1;
}
.about-page .js-about-parallax {
  --about-card-y: 0px;
  will-change: transform;
}

@keyframes aboutMessageTextReveal {
  from {
    opacity: 1;
    clip-path: inset(0 100% 0 0);
  }
  to {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
}
@keyframes aboutMessageMarkerReveal {
  0% {
    left: 0;
    width: 0;
    opacity: 1;
  }
  42% {
    left: 0;
    width: 100%;
    opacity: 1;
  }
  82% {
    left: 100%;
    width: 0;
    opacity: 1;
  }
  100% {
    left: 100%;
    width: 0;
    opacity: 0;
  }
}
.about-message {
  padding: 14rem 0;
  background: #F6F6F6;
}
.about-message .about-message-inner {
  display: flex;
  flex-direction: column;
  gap: 4.8rem;
}
.about-message .about-message-reveal {
  --about-message-reveal-delay: 0s;
  display: block;
  width: fit-content;
  max-width: 100%;
  position: relative;
  overflow: hidden;
}
.about-message .about-message-reveal-inner {
  display: block;
  opacity: 0;
  clip-path: inset(0 100% 0 0);
}
.about-message .about-message-reveal::after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(45deg, #FDD23E 0%, #F1BE0F 100%);
  pointer-events: none;
}
.about-message.is-visible .about-message-reveal-inner {
  animation: aboutMessageTextReveal 0.62s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: calc(var(--about-message-reveal-delay, 0s) + 0.22s);
}
.about-message.is-visible .about-message-reveal::after {
  animation: aboutMessageMarkerReveal 0.92s cubic-bezier(0.76, 0, 0.24, 1) forwards;
  animation-delay: var(--about-message-reveal-delay, 0s);
}
.about-message .about-message-lead {
  font-size: 2.4rem;
  font-weight: 700;
  color: #141730;
  line-height: 1.4;
  margin: 3.2rem 0 2.4rem;
}
.about-message .about-message-text {
  max-width: 99rem;
}
.about-message .about-message-text p {
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.05em;
  color: #3D3D3D;
}
.about-message .about-message-text p + p {
  margin-top: 2rem;
}
.about-message .about-message-text .about-message-reveal + .about-message-reveal {
  margin-top: 0.4rem;
}
.about-message .about-message-image-frame {
  width: 52rem;
  height: 25rem;
  overflow: hidden;
}
.about-message .about-message-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: translate3d(0, var(--about-card-y, 0px), 0) scale(1.34);
  transform-origin: center;
  will-change: transform;
}
@media (max-width: 960px) {
  .about-message {
    padding: 6rem 0;
  }
  .about-message .about-message-inner {
    gap: 3.2rem;
  }
  .about-message .about-message-lead {
    font-size: 1.8rem;
    margin-top: 0;
  }
  .about-message .about-message-text p {
    font-size: 1.4rem;
  }
  .about-message .about-message-image-frame {
    width: 100%;
    height: 22rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-page .js-about-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .about-page .js-about-parallax,
  .about-page .about-message-image-frame img,
  .about-page .about-concept-item,
  .about-page .about-playbook-card {
    transform: none;
  }
  .about-message .about-message-reveal-inner {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    animation: none;
  }
  .about-message .about-message-reveal::after {
    display: none;
  }
}
.about-concept {
  background: linear-gradient(45deg, #FDD23E 0%, #F1BE0F 100%);
  padding: calc(10rem + 6vw) 0 calc(10rem + 6vw);
  clip-path: polygon(0 6vw, 100% 0, 100% calc(100% - 6vw), 0 100%);
}
.about-concept .about-concept-inner {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}
.about-concept .about-concept-inner .c-section-heading-sub {
  color: rgba(20, 23, 48, 0.6);
}
.about-concept .about-concept-inner .c-section-heading-main {
  color: #141730;
}
.about-concept .about-concept-list {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.about-concept .about-concept-item {
  background: #FFFFFF;
  border-radius: 1.2rem;
  padding: 5.6rem 7.2rem;
}
@media (max-width: 960px) {
  .about-concept .about-concept-item {
    padding: 3.2rem 2.4rem;
  }
}
.about-concept .about-concept-item-meta {
  font-family: "Jost", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: #3D3D3D;
  letter-spacing: 0.08em;
  margin-bottom: 1.2rem;
}
.about-concept .about-concept-item-num {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  margin-right: 1.2rem;
}
.about-concept .about-concept-item-title {
  font-size: 3.2rem;
  font-weight: 700;
  color: #3D3D3D;
  line-height: 1.2;
  margin-bottom: 3.2rem;
}
@media (max-width: 960px) {
  .about-concept .about-concept-item-title {
    font-size: 2.2rem;
  }
}
.about-concept .about-concept-item-text {
  font-size: 1.5rem;
  line-height: 1.8;
  font-weight: 400;
  color: #3D3D3D;
}
@media (max-width: 960px) {
  .about-concept {
    padding: calc(6rem + 6vw) 0 calc(6rem + 6vw);
  }
  .about-concept .about-concept-inner {
    gap: 4rem;
  }
}

.about-playbook {
  padding: 12rem 10rem;
  background: #F6F6F6;
}
.about-playbook .about-playbook-inner {
  display: flex;
  flex-direction: column;
  gap: 6rem;
  padding: 14rem 15.3rem;
  background: #FFFFFF;
  border-radius: 9.6rem;
  box-shadow: 4px 4px rgba(20, 23, 48, 0.05);
}
.about-playbook .about-playbook-lead {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.about-playbook .about-playbook-lead p {
  font-size: 1.5rem;
  line-height: 1.8;
  color: #3D3D3D;
}
.about-playbook .about-playbook-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.about-playbook .about-playbook-card {
  padding: 2.4rem 2rem;
  border: 1px solid #DEDEDE;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.about-playbook .about-playbook-card-icon {
  width: 13.2rem;
  height: 13.2rem;
}
.about-playbook .about-playbook-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.about-playbook .about-playbook-card-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #141730;
  line-height: 1.3;
}
.about-playbook .about-playbook-card-text {
  font-size: 1.4rem;
  line-height: 1.8;
  color: #66697F;
  margin-top: 0.2rem;
}
@media (max-width: 960px) {
  .about-playbook {
    padding: 6rem 0;
  }
  .about-playbook .about-playbook-inner {
    padding: 8rem 2rem;
    border-radius: 6.5rem;
    gap: 3.2rem;
  }
  .about-playbook .about-playbook-grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }
  .about-playbook .about-playbook-card {
    padding: 1.8rem;
    flex-direction: row;
  }
  .about-playbook .about-playbook-card-body {
    gap: 0.8rem;
  }
  .about-playbook .about-playbook-card-icon {
    width: 9rem;
    height: 9rem;
  }
  .about-playbook .about-playbook-card-icon img {
    width: 100%;
    height: 100%;
  }
}