@charset "utf-8";
@font-face {
  font-family: "Noto Sans JP";
  src:
    url("../fonts/noto-sans-jp-v56-japanese-regular.woff2") format("woff2"),
    url("../fonts/noto-sans-jp-v56-japanese-regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Noto Sans JP";
  src:
    url("../fonts/noto-sans-jp-v56-japanese-700.woff2") format("woff2"),
    url("../fonts/noto-sans-jp-v56-japanese-700.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src:
    url("../fonts/inter-v20-latin-regular.woff2") format("woff2"),
    url("../fonts/inter-v20-latin-regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src:
    url("../fonts/inter-v20-latin-700.woff2") format("woff2"),
    url("../fonts/inter-v20-latin-700.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
.animation {
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}

.fade,
.fadeup,
.fadedown,
.fadeleft,
.faderight,
.blur {
  opacity: 0;
}

.fade.animated {
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-name: fadein;
  animation-name: fadein;
}
.fadeup.animated {
  -webkit-animation-name: fadeup;
  animation-name: fadeup;
  -webkit-transform: translateY(20%);
  transform: translateY(20%);
}
.fadedown.animated,
.fadeup.animated {
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
}
.fadedown.animated {
  -webkit-animation-name: fadedown;
  animation-name: fadedown;
  -webkit-transform: translateY(-20%);
  transform: translateY(-20%);
}
.fadeleft.animated {
  -webkit-animation-name: fadeleft;
  animation-name: fadeleft;
  -webkit-transform: translateX(-20%);
  transform: translateX(-20%);
}
.fadeleft.animated,
.faderight.animated {
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
}
.faderight.animated {
  -webkit-animation-name: faderight;
  animation-name: faderight;
  -webkit-transform: translateX(20%);
  transform: translateX(20%);
}
.blur.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: blur-in;
  animation-name: blur-in;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.text-marker {
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#fbf3aa),
    to(#fff7ad)
  ) !important;
  background-image: linear-gradient(90deg, #fff7ad, #fff7ad) !important;
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0 30%;
  display: inline;
  font-weight: 700;
  opacity: 1;
  position: relative;
}
.text-marker.animated {
  background-size: 100% 30%;
}

.bouncein.animated {
  -webkit-animation: bounce 3s ease-in-out infinite;
  animation: bounce 3s ease-in-out infinite;
  opacity: 1;
}

.zoomin.animated {
  -webkit-animation: zoomIn 0.6s ease-in-out;
  animation: zoomIn 0.6s ease-in-out;
  opacity: 1;
}

@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeup {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20%);
    transform: translateY(20%);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeup {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20%);
    transform: translateY(20%);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes fadedown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20%);
    transform: translateY(-20%);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadedown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20%);
    transform: translateY(-20%);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes fadeleft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20%);
    transform: translateX(-20%);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeleft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20%);
    transform: translateX(-20%);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@-webkit-keyframes faderight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20%);
    transform: translateX(20%);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes faderight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20%);
    transform: translateX(20%);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@-webkit-keyframes blur-in {
  0% {
    -webkit-filter: blur(10px);
    filter: blur(10px);
    opacity: 0;
  }
  to {
    -webkit-filter: blur(0);
    filter: blur(0);
    opacity: 1;
  }
}
@keyframes blur-in {
  0% {
    -webkit-filter: blur(10px);
    filter: blur(10px);
    opacity: 0;
  }
  to {
    -webkit-filter: blur(0);
    filter: blur(0);
    opacity: 1;
  }
}

@keyframes bounce {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  30% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  70% {
    -webkit-transform: scale(1.025);
    transform: scale(1.025);
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.stroke__line {
  height: 70px;
  width: 1px;
  margin: 5% auto;
}

.stroke {
  position: relative;
}
.stroke .border {
  content: "";
  position: absolute;
  opacity: 0;
}
.stroke .border.top,
.stroke .border.bottom {
  width: 100%;
}

.stroke .border.top {
  border-top: 1px solid #4c4948;
  right: 0;
  top: 0;
}
.stroke .border.bottom {
  border-bottom: 1px solid #4c4948;
  left: 0;
  bottom: 0;
}

.stroke .border.right,
.stroke .border.left {
  height: 100%;
}

.animation.animated .border {
  opacity: 1;
}

.stroke .border.right {
  border-right: 1px solid #4c4948;
  right: 0;
  top: 0;
}
.stroke .border.left {
  border-left: 1px solid #4c4948;
  left: 0;
  top: 0;
}

.stroke .border.line-left {
  width: 50%;
  border-bottom: 1px solid #4c4948;
  left: 50%;
  top: 0;
}
.stroke .border.line-right {
  width: 50%;
  border-bottom: 1px solid #4c4948;
  right: 50%;
  top: 0;
}

.stroke .border.down {
  height: 100%;
  border-left: 1px solid #4c4948;
  left: 0;
  top: 0;
}

.stroke.animated .border {
  opacity: 1;
}
.stroke.animated .border.top,
.stroke.animated .border.bottom {
  animation: stroke-width 1.8s;
}
.stroke.animated .border.right,
.stroke.animated .border.left {
  animation: stroke-height 1.8s;
}

.stroke.animated .border.line-left {
  animation: stroke-line-left 1.8s;
}
.stroke.animated .border.line-right {
  animation: stroke-line-right 1.8s;
}

.stroke.animated .border.down {
  animation: stroke-down 1.8s infinite;
}

@keyframes stroke-width {
  0% {
    width: 0;
    opacity: 1;
  }
  100% {
    width: 100%;
    opacity: 1;
  }
}
@keyframes stroke-height {
  0% {
    height: 0;
    opacity: 1;
  }
  100% {
    height: 100%;
    opacity: 1;
  }
}

@keyframes stroke-line-left {
  0% {
    width: 0;
    opacity: 1;
  }
  50% {
    width: 50%;
    opacity: 1;
  }
}
@keyframes stroke-line-right {
  0% {
    width: 0;
    opacity: 1;
  }
  50% {
    width: 50%;
    opacity: 1;
  }
}

@keyframes stroke-down {
  0% {
    height: 0;
    opacity: 0;
  }
  90% {
    height: 90%;
    opacity: 1;
  }
  100% {
    height: 100%;
    opacity: 0;
  }
}

.delay-02 {
  animation-delay: 0.6s;
}
.delay-04 {
  animation-delay: 0.7s;
}
.delay-06 {
  animation-delay: 0.8s;
}

/* ---------- Box Model ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* ---------- Root ---------- */
html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  color: #000000;
  font-family:
    "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro",
    "Meiryo", "Yu Gothic", "MS PGothic", sans-serif;

  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

/* ---------- Media ---------- */
img,
svg,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

.block_header {
  margin-bottom: 1.2em;
}

.block_body p + p,
.block_body ul + p,
.block_body p + ul {
  margin-top: 1em;
}

.block_body ul {
  padding-left: 1.2em;
}

.block_body ul li + li {
  margin-top: 0.5em;
}

.block_body ol {
  padding-left: 0em;
}

.block_body ol li + li {
  margin-top: 2em;
}

.block_body p + .unit_block {
  margin-top: 2.5em;
}

.block_section {
  margin-top: 2em;
}

.block_section + p {
  margin-top: 1em;
}

.block_unit {
  margin-top: 1.5em;
}

.block_unit + p {
  margin-top: 1em;
}

.block_body .unit_block + p {
  margin-top: 2em;
}

.block_body .unit_block + .unit_block {
  margin-top: 2em;
}

.block_cta {
  margin-top: 2.5em;
}

h1 {
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.4;
}

h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.3;
}

h1,
h2,
h3,
h4 {
  margin: 0;
}

/* ---------- h1 ---------- */
h1 {
  font-size: clamp(2rem, 4vw, 2.4rem);
}

/* ---------- h2 ---------- */
h2 {
  font-size: clamp(1.5rem, 3vw, 1.8rem);
}

@media (max-width: 768px) {
  h2 {
    font-size: 1.3em;
  }
}

/* ---------- h3 ---------- */
h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.45rem);
}

@media (max-width: 768px) {
  h3 {
    font-size: 1.1em;
  }
}

/* ---------- h4 ---------- */
h4 {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
}

/* ---------- Relationship with following text ---------- */
h1 + p,
h2 + p,
h3 + p,
h4 + p {
  margin-top: 0.6em;
}

p {
  margin: 0;
  margin-bottom: 1.25em;
  font-size: 1rem;
  line-height: 1.9;
  color: #1b1b1b;
}

@media (max-width: 767px) {
  p {
    margin-bottom: 1.5em;
    line-height: 2;
    font-size: 0.95rem;
  }
}

p.lead {
  font-size: 1.15rem;
  line-height: 3;
}

@media (max-width: 767px) {
  p.lead {
    font-size: 1.05rem;
    line-height: 2.5;
  }
}

p + p {
  margin-top: 1em;
}

ul + p,
p + ul,
p + ol,
ol + p,
p + table {
  margin-top: 1em;
}

h1 + ul,
h2 + ul,
h3 + ul,
h4 + ul {
  margin-top: 0.6em;
}

h1 + ol,
h2 + ol,
h3 + ol,
h4 + ol {
  margin-top: 0.6em;
}

h1 + table,
h2 + table,
h3 + table,
h4 + table {
  margin-top: 0.6em;
}

/* ---------- Links ---------- */
a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s linear;
}

a:hover,
a:focus-visible {
  opacity: 0.75;
}

/* ---------- Lists ---------- */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 1rem;
}

/* ---------- Emphasis ---------- */
strong,
em {
  font-style: normal;
  font-weight: 700;
}

small {
  opacity: 0.8;
}

/* ---------- English / Small Caps ---------- */
.en {
  display: block;
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
}

/* ---------- Forms ---------- */
input,
textarea,
button,
select {
  font: inherit;
  color: inherit;
}

/* ---------- SVG ---------- */
.svg-symbol {
  display: none;
}

/* ---------- Scrollbar (WebKit only / optional) ---------- */
@supports selector(::-webkit-scrollbar) {
  html::-webkit-scrollbar {
    width: 4px;
  }
  html::-webkit-scrollbar-thumb {
    background-color: #cacaca;
  }
  html::-webkit-scrollbar-track {
    background: transparent;
  }
}

.link-button--secondary {
  display: inline-block;
  /* width: 200px; */
  padding: 8px 32px;
  border-radius: 999px;
  background-color: #795548;
  color: #fff;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-align: center;
  transition:
    background-color 0.25s ease,
    transform 0.2s ease;
}

.link-button--secondary:hover,
.link-button--secondary:focus-visible {
  background-color: #ab7b6a;
  text-decoration: none;
  opacity: 1;
}

.link-button--primary {
  display: block;
  padding: 10px 20px 10px 20px;
  background: #000;
  width: 200px;
  color: #fff;
  text-align: center;
  font-size: 1rem;
  letter-spacing: 0.1em;
  transition: 0.25s;
  border-radius: 6px;
  margin: 0 auto;
}

.link-button--primary:hover,
.link-button--primary:focus-visible {
  color: #fff;
  text-decoration: none;
  opacity: 0.8;
}

.block_body .link-button--secondary {
  margin-top: 2em;
}

.block_body .link-button--primary {
  margin-top: 1.2em;
}
