@charset "UTF-8";
/** @format */
/** @format */
/* News リンク下線の ::before（初期 width:0。ホバー or 現在地で 100%） */
/* PC グロナビ・コースカード見出しなど：アクセント色の手描き風下線（::before） */
@keyframes accent-handwriting-underline {
  0% {
    background: #305C89;
    transform-origin: left center;
    width: 0;
  }
  50%, 100% {
    background: #305C89;
    width: calc(100% - 1.4em);
  }
}
/** @format */
@font-face {
  font-family: "Baloo Chettan 2";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../../assets/fonts/BalooChettan2-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Baloo Chettan 2";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../../assets/fonts/BalooChettan2-Medium.woff2");
}
@font-face {
  font-family: "YakuHanJP";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../../assets/fonts/YakuHanJP-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "YakuHanJP";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../../assets/fonts/YakuHanJP-Medium.woff2") format("woff2");
}
@font-face {
  font-family: "YakuHanJP";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../../assets/fonts/YakuHanJP-SemiBold.woff2") format("woff2");
}
@font-face {
  font-family: "YakuHanJP";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../../assets/fonts/YakuHanJP-Bold.woff2") format("woff2");
}
/** @format */
html {
  font-family: "YakuHanJP", "Noto Sans JP", sans-serif;
  font-size: 16px;
}
@media screen and (min-width: 769px) {
  html {
    font-size: clamp(15.52px, 14.97px + 0.07154vw, 16.343px);
  }
}
html {
  line-height: 1.5;
  font-weight: 400;
  color: #2D313F;
  text-align: justify;
  text-align-last: left;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  scrollbar-width: 10px;
  scrollbar-color: #B7A47E #F0F3F4;
}
html::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
html::-webkit-scrollbar-track {
  background: #F0F3F4;
  border-radius: 12px;
}
html::-webkit-scrollbar-thumb {
  background: #B7A47E;
  border-radius: 12px;
}
html::-webkit-scrollbar-thumb:hover {
  background: #305C89;
}
html::-webkit-scrollbar-thumb:active {
  background: #F8F7F3;
}

body {
  overflow-x: hidden;
  width: 100%;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
  color: #2D313F;
}

body.admin-bar {
  min-height: 100vh;
  min-height: 100dvh;
}

main {
  flex: 1;
}

img {
  vertical-align: bottom;
}

a:hover,
a.focus-visible {
  text-decoration: none;
}

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

.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;
  }
}

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

.external-link {
  display: inline-block;
  vertical-align: middle;
  width: 18px;
  height: 18px;
  margin-left: 8px;
  flex-shrink: 0;
  color: inherit;
}

.works__actions .external-link {
  margin-left: 0;
}

.breadcrumb {
  padding-top: 24px;
  padding-bottom: clamp(45.12px, 41.819px + 0.42921vw, 50.06px);
  padding-inline: clamp(74.4px, 67.982px + 0.83458vw, 84.006px);
}
@media screen and (max-width: 768px) {
  .breadcrumb {
    padding-inline: 24px;
  }
}

.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em 0;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.breadcrumb__item {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  font-family: "Baloo Chettan 2", "YakuHanJP", "Noto Sans JP", sans-serif;
}

.breadcrumb__item + .breadcrumb__item {
  margin-inline-start: 0.5em;
}

.breadcrumb__item:not(:first-child)::before {
  content: "";
  display: inline-block;
  width: 0.45em;
  height: 1em;
  flex-shrink: 0;
  margin-inline-end: 0.5em;
  vertical-align: middle;
  background: url("../../assets/img/common/icon-arrow/icon-pagination-next.svg") no-repeat center/contain;
}

.breadcrumb__link {
  color: inherit;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.breadcrumb__link:hover {
  text-decoration: underline;
  opacity: 0.85;
}

.breadcrumb__current {
  font-size: 14px;
}

/*------------------------------------------
* 小文字化
------------------------------------------*/
.text-lowercase {
  text-transform: lowercase;
}

/*------------------------------------------
* タグ
------------------------------------------*/
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(7.68px, 7.313px + 0.04769vw, 8.229px);
  list-style: none;
}

.tag-item {
  font-size: clamp(14.4px, 13.712px + 0.08942vw, 15.429px);
  line-height: 1.6;
  letter-spacing: 0.03em;
  color: #2D313F;
  padding: 0.26em 0.53em;
  border-radius: 4px;
}

.tag-list.-primary30 .tag-item {
  background: #D6DEE7;
}

.tag-list.-secondary30 .tag-item {
  background: #F8F7F3;
}

.tag-list.-bgbeige01 .tag-item {
  background: #F0E8DA;
}

/*! destyle.css v3.0.2 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Replaced content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable.
 * 1. Make form elements stylable across systems iOS especially.
 * 2. Inherit text-transform from parent.
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none; /* 1 */
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit; /* 2 */
}

/**
 * Reset radio and checkbox appearance to preserve their look in iOS.
 */
[type=checkbox] {
  -webkit-appearance: checkbox;
  appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  appearance: radio;
}

/**
 * Correct cursors for clickable elements.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

/**
 * Improve outlines for Firefox and unify style with input elements & buttons.
 */
:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the outline style in Safari.
 */
[type=search] {
  outline-offset: -2px; /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Fix font inheritance.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable]:focus {
  outline: auto;
}

/* Tables */
/* ============================================ */
/**
1. Correct table border color inheritance in all Chrome and Safari.
*/
table {
  border-color: inherit; /* 1 */
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

.firstView {
  position: relative;
  width: 100%;
  height: calc(100svh - 80px);
  min-height: 420px;
  overflow: hidden;
}

.firstView__swiper,
.firstView__swiper .swiper-wrapper,
.firstView__swiper .swiper-slide {
  height: 100%;
}

.firstView__slideBg {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

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

.firstView__slideBg--ken img {
  animation: firstViewKen 5s linear 0s 1 normal both;
}

@keyframes firstViewKen {
  0% {
    transform: scale(1.08);
  }
  100% {
    transform: scale(1);
  }
}
@media (prefers-reduced-motion: reduce) {
  .firstView__slideBg--ken img {
    animation: none;
  }
}
.firstView__logo {
  position: absolute;
  top: 20%;
  left: 50%;
  z-index: 2;
  width: 40%;
  max-width: 260px;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

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

.firstView__pagination {
  position: absolute;
  right: auto;
  bottom: 24px;
  left: 50%;
  z-index: 2;
  transform: translateX(-50%);
}

/*
------------------------------------------
Concept
------------------------------------------
*/
.section--concept {
  position: relative;
  z-index: 0;
  padding-block: 80px;
}
@media screen and (max-width: 768px) {
  .section--concept {
    padding-block: 64px;
  }
}

.concept__container {
  max-width: 1016px;
  margin-inline: auto;
  padding-inline: clamp(74.4px, 67.982px + 0.83458vw, 84.006px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .concept__container {
    padding-inline: 24px;
    gap: 32px;
  }
}

.concept__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-transform: uppercase;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .concept__title {
    gap: 16px;
  }
}
.concept__title .heading2-inner:nth-child(1) .heading2-mask {
  font-family: "Baloo Chettan 2", "YakuHanJP", "Noto Sans JP", sans-serif;
  font-size: 64px;
}
@media screen and (min-width: 769px) {
  .concept__title .heading2-inner:nth-child(1) .heading2-mask {
    font-size: clamp(55.04px, 44.771px + 1.33532vw, 70.41px);
  }
}
.concept__title .heading2-inner:nth-child(1) .heading2-mask {
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.12em;
  color: #B7A47E;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .concept__title .heading2-inner:nth-child(1) .heading2-mask {
    font-size: 48px;
  }
}
.concept__title .heading2-inner:nth-child(2) .heading2-mask {
  font-family: "YakuHanJP", "Noto Sans JP", sans-serif;
  font-size: 18px;
}
@media screen and (min-width: 769px) {
  .concept__title .heading2-inner:nth-child(2) .heading2-mask {
    font-size: clamp(16.92px, 15.682px + 0.16095vw, 18.773px);
  }
}
.concept__title .heading2-inner:nth-child(2) .heading2-mask {
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.03em;
  color: #2D313F;
}

.concept__lead {
  margin: 0;
  max-width: 36em;
  font-size: 18px;
}
@media screen and (min-width: 769px) {
  .concept__lead {
    font-size: clamp(16.92px, 15.682px + 0.16095vw, 18.773px);
  }
}
.concept__lead {
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.02em;
  color: #2D313F;
}

.concept__text {
  margin: 0;
  max-width: 40em;
  font-size: 16px;
}
@media screen and (min-width: 769px) {
  .concept__text {
    font-size: clamp(15.52px, 14.97px + 0.07154vw, 16.343px);
  }
}
.concept__text {
  line-height: 1.9;
  letter-spacing: 0.02em;
  color: #2D313F;
}

/*
------------------------------------------
Strength
------------------------------------------
*/
.section--strength {
  position: relative;
  z-index: 0;
  padding-block: 80px;
  background-color: #F0E8DA;
}
@media screen and (max-width: 768px) {
  .section--strength {
    padding-block: 64px;
  }
}

.strength__container {
  max-width: 1920px;
  margin-inline: auto;
  padding: 0 clamp(74.4px, 67.982px + 0.83458vw, 84.006px);
  display: flex;
  flex-direction: column;
  gap: 80px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1920px) {
  .strength__container {
    max-width: 1440px;
  }
}
@media screen and (max-width: 768px) {
  .strength__container {
    padding: 0 24px;
  }
}

.strength__title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  text-align: left;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .strength__title {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
.strength__title .heading2-inner:nth-child(1) .heading2-mask {
  font-family: "Baloo Chettan 2", "YakuHanJP", "Noto Sans JP", sans-serif;
  font-size: 64px;
}
@media screen and (min-width: 769px) {
  .strength__title .heading2-inner:nth-child(1) .heading2-mask {
    font-size: clamp(55.04px, 44.771px + 1.33532vw, 70.41px);
  }
}
.strength__title .heading2-inner:nth-child(1) .heading2-mask {
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.12em;
  color: #B7A47E;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .strength__title .heading2-inner:nth-child(1) .heading2-mask {
    font-size: 48px;
  }
}
.strength__title .heading2-inner:nth-child(2) .heading2-mask {
  font-family: "YakuHanJP", "Noto Sans JP", sans-serif;
  font-size: 18px;
}
@media screen and (min-width: 769px) {
  .strength__title .heading2-inner:nth-child(2) .heading2-mask {
    font-size: clamp(16.92px, 15.682px + 0.16095vw, 18.773px);
  }
}
.strength__title .heading2-inner:nth-child(2) .heading2-mask {
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.03em;
  color: #2D313F;
}

.c-card__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 80px 48px;
  align-items: start;
}
@media screen and (max-width: 1160px) {
  .c-card__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 480px) {
  .c-card__list {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.c-card__item {
  container-type: inline-size;
  width: 100%;
}
.c-card__item:nth-child(2) {
  margin-top: 64px;
}
@media screen and (max-width: 1160px) {
  .c-card__item:nth-child(2) {
    margin-top: 0;
  }
}
.c-card__item:nth-child(3) {
  margin-top: 128px;
}
@media screen and (max-width: 1160px) {
  .c-card__item:nth-child(3) {
    margin-top: 0;
  }
}

.c-card__inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  min-width: 0;
}

.c-card__content {
  order: 1;
}

.c-card__title {
  font-size: 18px;
}
@media screen and (min-width: 769px) {
  .c-card__title {
    font-size: clamp(16.92px, 15.682px + 0.16095vw, 18.773px);
  }
}
.c-card__title {
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0;
  color: #2D313F;
  margin-bottom: 8px;
}

.c-card__title-en {
  order: -1;
  font-family: "Baloo Chettan 2", "YakuHanJP", "Noto Sans JP", sans-serif;
  font-size: 48px;
}
@media screen and (min-width: 769px) {
  .c-card__title-en {
    font-size: clamp(42.24px, 35.639px + 0.85842vw, 52.12px);
  }
}
.c-card__title-en {
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #2D313F;
}
@media screen and (max-width: 1160px) {
  .c-card__title-en {
    font-size: min(12cqw, 44px);
  }
}

.c-card__title-en-char {
  display: inline-block;
  white-space: pre;
  opacity: 0;
  transform: translateY(0);
}

.c-card__item.is-in-view .c-card__title-en-char {
  animation: strength-title-en-char-pop 0.2s ease-out forwards;
  animation-delay: calc(var(--strength-char-i, 0) * 0.05s);
}

@keyframes strength-title-en-char-pop {
  from {
    opacity: 0;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.c-card__description {
  font-size: 15px;
}
@media screen and (min-width: 769px) {
  .c-card__description {
    font-size: clamp(14.4px, 13.712px + 0.08942vw, 15.429px);
  }
}
.c-card__description {
  line-height: 1.8;
  letter-spacing: 0;
  color: #2D313F;
}

.c-card__image {
  order: 0;
  border-radius: 12px;
  box-shadow: 0 4px 30px 0 rgba(45, 49, 63, 0.03);
  overflow: hidden;
  width: 100%;
}
.c-card__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 4/3;
}

@media (prefers-reduced-motion: reduce) {
  .c-card__item .c-card__title-en-char {
    animation: none !important;
    opacity: 1;
    transform: none;
  }
}
/*
------------------------------------------
Works
------------------------------------------
*/
.section--works {
  position: relative;
}

.section--works:not(.section--subpage) {
  padding-block: 0;
}

.works__container {
  max-width: 1920px;
  margin-inline: auto;
  padding: 0 clamp(74.4px, 67.982px + 0.83458vw, 84.006px);
  display: flex;
  flex-direction: column;
  gap: 96px;
}
@media screen and (max-width: 1920px) {
  .works__container {
    max-width: 1440px;
  }
}
@media screen and (max-width: 768px) {
  .works__container {
    padding: 0 24px;
    gap: 48px;
  }
}

.works-card__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 64px 48px;
  align-items: start;
}
@media screen and (max-width: 1160px) {
  .works-card__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 768px) {
  .works-card__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 480px) {
  .works-card__list {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.works-card__item {
  list-style: none;
  width: 100%;
  min-width: 0;
}

.works-card__inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 8px;
}

.works-card__image {
  overflow: hidden;
  width: 100%;
  margin: 0 0 8px;
  border-radius: 12px;
  position: relative;
}
.works-card__image img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: all 0.3s ease;
}

.works-card__heading-link:hover .works-card__image img {
  transform: scale(1.04);
  filter: brightness(0.9);
  transition: all 0.3s ease;
}

/**
**************************************************
* カードの文字情報
**************************************************
*/
.works-card__heading {
  margin: 0;
}

.works-card__heading-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.works-card__title01,
.works-card__title02 {
  font-family: "YakuHanJP", "Noto Sans JP", sans-serif;
  font-size: 18px;
}
@media screen and (min-width: 769px) {
  .works-card__title01,
  .works-card__title02 {
    font-size: clamp(16.92px, 15.682px + 0.16095vw, 18.773px);
  }
}
.works-card__title01,
.works-card__title02 {
  font-weight: 500;
  line-height: 1.5;
  color: #2D313F;
}

.works-card__dot {
  font-weight: 700;
  color: #B7A47E;
  margin-inline: 0.2em;
}

.works-card__description {
  margin: 0;
  font-size: 15px;
}
@media screen and (min-width: 769px) {
  .works-card__description {
    font-size: clamp(14.4px, 13.712px + 0.08942vw, 15.429px);
  }
}
.works-card__description {
  line-height: 1.8;
  color: #2D313F;
}

.works__actions {
  display: flex;
  justify-content: center;
  gap: 24px;
}

/*
**************************************************
* アニメーション
**************************************************
* カード
**************************************************
*/
.section--works[data-in-view].is-in-view .works-card__list > .works-card__item {
  opacity: 0;
  transform: translateY(20px);
  animation: works-in-view-cards 0.5s ease-out forwards;
}

@keyframes works-in-view-cards {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.section--works[data-in-view].is-in-view .works-card__list > .works-card__item:nth-child(1) {
  animation-delay: 0.95s;
}

.section--works[data-in-view].is-in-view .works-card__list > .works-card__item:nth-child(2) {
  animation-delay: 1.12s;
}

.section--works[data-in-view].is-in-view .works-card__list > .works-card__item:nth-child(3) {
  animation-delay: 1.29s;
}

.section--works[data-in-view].is-in-view .works__actions {
  opacity: 0;
  transform: translateY(20px);
  animation: works-in-view-cards 0.5s ease-out 1.46s forwards;
}

@media (prefers-reduced-motion: reduce) {
  .section--works[data-in-view].is-in-view .works-card__list > .works-card__item,
  .section--works[data-in-view].is-in-view .works__actions {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
/** @format */
/*
------------------------------------------
About
------------------------------------------
*/
.section--about {
  display: flex;
  justify-content: center;
  gap: min(7.5%, 96px);
  padding-block: 0;
  padding-bottom: clamp(147.2px, 132.531px + 1.9076vw, 169.156px);
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .section--about {
    padding-bottom: 80px;
  }
}

.about__container {
  max-width: min(80%, 1016px);
  display: grid;
  grid-template-columns: minmax(0, 480fr) minmax(0, 440fr);
  position: relative;
  gap: min(7.5%, 96px);
  padding-inline: clamp(74.4px, 67.982px + 0.83458vw, 84.006px);
}
@media screen and (max-width: 960px) {
  .about__container {
    padding-inline: clamp(30.4px, 28.566px + 0.23845vw, 33.145px);
  }
}
@media screen and (max-width: 768px) {
  .about__container {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 32px;
    padding-inline: 24px;
    max-width: 100%;
  }
}

.about-text-container {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
@media screen and (max-width: 768px) {
  .about-text-container {
    display: contents;
  }
}

.about-illust-wrapper {
  position: relative;
  z-index: 2;
  align-self: flex-start;
}
.about-illust-wrapper.about-illust-wrapper--pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .about-illust-wrapper.about-illust-wrapper--pc {
    display: none;
  }
}
.about-illust-wrapper--sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .about-illust-wrapper--sp {
    display: block;
    order: 2;
  }
}

.about-illust {
  border-radius: 24px;
  box-shadow: 0 4px 30px 0 rgba(183, 164, 126, 0.3);
  overflow: hidden;
}
.about-illust img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center;
}

/*
------------------------------------------
タイトル内のレイアウト
------------------------------------------
*/
.about__title {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-transform: uppercase;
  position: relative;
}
@media screen and (max-width: 768px) {
  .about__title {
    order: 1;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
@media screen and (max-width: 480px) {
  .about__title {
    flex-direction: column;
    align-items: center;
  }
}
.about__title .heading2-inner:nth-child(1) .heading2-mask {
  font-family: "Baloo Chettan 2", "YakuHanJP", "Noto Sans JP", sans-serif;
  font-size: 64px;
}
@media screen and (min-width: 769px) {
  .about__title .heading2-inner:nth-child(1) .heading2-mask {
    font-size: clamp(55.04px, 44.771px + 1.33532vw, 70.41px);
  }
}
.about__title .heading2-inner:nth-child(1) .heading2-mask {
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.12em;
  color: #B7A47E;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .about__title .heading2-inner:nth-child(1) .heading2-mask {
    font-size: 48px;
  }
}
.about__title .heading2-inner:nth-child(2) .heading2-mask {
  font-family: "YakuHanJP", "Noto Sans JP", sans-serif;
  font-size: 18px;
}
@media screen and (min-width: 769px) {
  .about__title .heading2-inner:nth-child(2) .heading2-mask {
    font-size: clamp(16.92px, 15.682px + 0.16095vw, 18.773px);
  }
}
.about__title .heading2-inner:nth-child(2) .heading2-mask {
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.03em;
  color: #2D313F;
  text-transform: none;
  padding-bottom: 0.2em;
}

.about-text {
  font-size: clamp(14.72px, 13.253px + 0.19076vw, 16.916px);
  font-weight: 400;
  word-break: auto-phrase;
  line-height: 2em;
  letter-spacing: 0.03em;
  color: #2D313F;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .about-text {
    order: 3;
    font-size: 15px;
  }
}

@media screen and (max-width: 768px) {
  .about__actions {
    margin-inline: auto;
  }
  .about__actions .c-button {
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .about__actions {
    width: 100%;
  }
}

/*
**************************************************
* アニメーション
**************************************************
* タイトル 文字情報 図表
**************************************************
*/
.section--about[data-in-view]:not(.is-in-view) .about__title .heading2-mask {
  animation: none;
  opacity: 0;
  transform: translateY(110%);
}

.section--about[data-in-view].is-in-view .about__title .heading2-inner:nth-child(1) .heading2-mask {
  animation: fvTitleMaskIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0.22s;
}

.section--about[data-in-view].is-in-view .about__title .heading2-inner:nth-child(2) .heading2-mask {
  animation: fvTitleMaskIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0.34s;
}

.section--about[data-in-view].is-in-view .about-text-container .about-text {
  opacity: 0;
  transform: translateY(20px);
  animation: about-text-in-view 0.5s ease-out 0.55s forwards;
}

@keyframes about-text-in-view {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.section--about[data-in-view].is-in-view .about__actions {
  opacity: 0;
  transform: translateY(20px);
  animation: about-in-view-buttons 0.5s ease-out 1.1s forwards;
}
@media screen and (max-width: 768px) {
  .section--about[data-in-view].is-in-view .about__actions {
    order: 4;
  }
}

@keyframes about-in-view-buttons {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.section--about[data-in-view].is-in-view .about-illust-wrapper .about-illust {
  opacity: 0;
  transform: translateY(20px);
  animation: about-illust-in-view 0.5s ease-out 1.1s forwards;
}

@keyframes about-illust-in-view {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .section--about[data-in-view].is-in-view .about__title .heading2-mask,
  .section--about[data-in-view].is-in-view .about-illust-wrapper .about-illust,
  .section--about[data-in-view].is-in-view .about-text-container .about-text,
  .section--about[data-in-view].is-in-view .about__actions {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
