﻿*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-size: 1.6rem;
  background-color: var(--color-bg);
  color: var(--color-brown);
  font-family: var(--font-ja);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}
input,
button,
textarea,
select {
  font: inherit;
}
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}
ul,
ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  cursor: pointer;
  border: none;
  background: none;
}
table {
  border-collapse: collapse;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-en);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.04em;
  color: var(--color-brown);
}
.section-title {
  font-family: var(--font-en);
  font-size: clamp(3.2rem, 5vw, 6.4rem);
  font-weight: 300;
  letter-spacing: 0.06em;
  line-height: 1.1;
  color: var(--color-brown);
}
.section-title__sub {
  display: block;
  font-family: var(--font-ja);
  font-size: clamp(1.2rem, 1.5vw, 1.4rem);
  font-weight: 400;
  letter-spacing: 0.12em;
  margin-top: 12px;
  opacity: 0.7;
}
p {
  font-family: var(--font-ja);
  font-weight: 400;
  line-height: 1.8;
  color: var(--color-brown);
  font-size: clamp(1.4rem, 1.5vw, 1.6rem);
}
a {
  transition: opacity var(--transition-base);
}
a:hover {
  opacity: 0.7;
}
.text-en {
  font-family: var(--font-en);
}
.text-ja {
  font-family: var(--font-ja);
}
.text-terracotta {
  color: var(--color-terracotta);
}
body.js-loaded .fade-in {
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.9s ease,
    transform 0.9s ease;
}
body.js-loaded .fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}
body.js-loaded .fade-in--delay-1 {
  transition-delay: 0.15s;
}
body.js-loaded .fade-in--delay-2 {
  transition-delay: 0.2s;
}
body.js-loaded .fade-in--delay-3 {
  transition-delay: 0.3s;
}
.entry-content {
  max-width: 800px;
  margin-inline: auto;
  padding-inline: 40px;
  font-family: var(--font-ja);
  color: var(--color-brown);
  line-height: 1.8;
}
.entry-content h1 {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 1.5em;
}
.entry-content h2 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-top: 2.5em;
  margin-bottom: 1em;
  padding-bottom: 0.5em;
  border-bottom: 1px solid var(--color-brown);
}
.entry-content h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-top: 2em;
  margin-bottom: 0.8em;
}
.entry-content h4 {
  font-size: 1.8rem;
  font-weight: 500;
  margin-top: 1.5em;
  margin-bottom: 0.6em;
}
.entry-content p {
  font-size: 1.6rem;
  margin-bottom: 1.5em;
}
.entry-content a {
  color: var(--color-brown);
  text-decoration: underline;
  text-decoration-thickness: 2px;
}
.entry-content a:hover {
  color: var(--color-accent);
}
.entry-content ul,
.entry-content ol {
  margin-bottom: 1.5em;
  padding-left: 2em;
}
.entry-content ul {
  list-style: disc;
}
.entry-content ol {
  list-style: decimal;
}
.entry-content li {
  font-size: 1.6rem;
  margin-bottom: 0.5em;
}
.entry-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin-bottom: 1.5em;
}
.entry-content hr {
  border: none;
  border-top: 1px solid var(--color-border, #ddd);
  margin: 3em 0;
}
.entry-content strong {
  font-weight: 700;
}
.entry-content em {
  font-style: italic;
}
@media screen and (max-width: 767px) {
  .entry-content {
    padding-inline: 20px;
  }
  .entry-content h1 {
    font-size: 2.4rem;
  }
  .entry-content h2 {
    font-size: 2rem;
  }
  .entry-content h3 {
    font-size: 1.8rem;
  }
  .entry-content h4 {
    font-size: 1.6rem;
  }
  .entry-content p,
  .entry-content li {
    font-size: 1.5rem;
  }
}
.view-more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-en);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--color-brown);
  transition: opacity var(--transition-base);
}
.view-more__arrow {
  width: 11px;
  height: 13px;
  flex-shrink: 0;
}
.view-more:hover {
  opacity: 0.7;
}
.section-divider {
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 100px;
  background-repeat: repeat-x;
  background-position: center top;
  background-size: auto 100%;
  pointer-events: none;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .section-divider {
    height: 55px;
    top: -27px;
  }
}
.section-divider--light {
  background-image: url("../img/secton_bg.svg");
}
.section-divider--main {
  background-image: url("data:image/svg+xml,%3Csvg width='1440' height='100' viewBox='0 0 1440 100' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1400 0L1360 25L1320 0L1280 25L1240 0L1200 25L1160 0L1120 25L1080 0L1040 25L1000 0L960 25L920 0L880 25L840 0L800 25L760 0L720 25L680 0L640 25L600 0L560 25L520 0L480 25L440 0L400 25L360 0L320 25L280 0L240 25L200 0L160 25L120 0L80 25L40 0L0 25V75L40 100L80 75L120 100L160 75L200 100L240 75L280 100L320 75L360 100L400 75L440 100L480 75L520 100L560 75L600 100L640 75L680 100L720 75L760 100L800 75L840 100L880 75L920 100L960 75L1000 100L1040 75L1080 100L1120 75L1160 100L1200 75L1240 100L1280 75L1320 100L1360 75L1400 100L1440 75V25L1400 0Z' fill='%23E1DBD3'/%3E%3C/svg%3E");
}
.section-divider--dark {
  background-image: url("data:image/svg+xml,%3Csvg width='1440' height='100' viewBox='0 0 1440 100' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1400 0L1360 25L1320 0L1280 25L1240 0L1200 25L1160 0L1120 25L1080 0L1040 25L1000 0L960 25L920 0L880 25L840 0L800 25L760 0L720 25L680 0L640 25L600 0L560 25L520 0L480 25L440 0L400 25L360 0L320 25L280 0L240 25L200 0L160 25L120 0L80 25L40 0L0 25V75L40 100L80 75L120 100L160 75L200 100L240 75L280 100L320 75L360 100L400 75L440 100L480 75L520 100L560 75L600 100L640 75L680 100L720 75L760 100L800 75L840 100L880 75L920 100L960 75L1000 100L1040 75L1080 100L1120 75L1160 100L1200 75L1240 100L1280 75L1320 100L1360 75L1400 100L1440 75V25L1400 0Z' fill='%23362a2e'/%3E%3C/svg%3E");
}
.view-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 36px;
  font-family: var(--font-en);
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--color-brown);
  border: 2px solid var(--color-brown);
  border-radius: 18px;
  filter: drop-shadow(4px 4px 0px var(--color-accent));
  transition: opacity var(--transition-base);
  white-space: nowrap;
  flex-shrink: 0;
}
.view-all:hover {
  opacity: 0.7;
}
.view-all--bg-light {
  background-color: var(--color-bg-light);
}
.view-all--bg-main {
  background-color: var(--color-bg);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-en);
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1;
  padding: 14px 32px;
  border: 1px solid currentColor;
  transition:
    background-color var(--transition-base),
    color var(--transition-base),
    border-color var(--transition-base);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}
.btn--primary {
  color: var(--color-white);
  background-color: var(--color-terracotta);
  border-color: var(--color-terracotta);
}
.btn--primary:hover {
  background-color: var(--color-brown);
  border-color: var(--color-brown);
  opacity: 1;
}
.btn--outline {
  color: var(--color-brown);
  background-color: rgba(0, 0, 0, 0);
  border-color: var(--color-brown);
}
.btn--outline:hover {
  color: var(--color-white);
  background-color: var(--color-brown);
  opacity: 1;
}
.btn--outline-accent {
  color: var(--color-terracotta);
  background-color: rgba(0, 0, 0, 0);
  border-color: var(--color-terracotta);
}
.btn--outline-accent:hover {
  color: var(--color-white);
  background-color: var(--color-terracotta);
  opacity: 1;
}
.btn--text {
  padding: 0;
  border: none;
  color: var(--color-brown);
  background: none;
  position: relative;
}
.btn--text::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width var(--transition-base);
}
.btn--text:hover::after {
  width: 100%;
}
.btn--text:hover {
  opacity: 1;
}
.btn--arrow::after {
  content: "→";
  font-family: var(--font-en);
  transition: transform var(--transition-base);
}
.btn--arrow:hover::after {
  transform: translateX(4px);
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-image: url("../img/header_background.png");
  background-size: 91.2px 108px;
  background-position: top left;
}
@media screen and (max-width: 767px) {
  .header {
    background-size: 57.76px 68.4px;
  }
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 17.5px;
  padding-inline: 30px;
  max-width: 1440px;
  margin-inline: auto;
  position: relative;
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  .header__inner {
    padding-block: 27.5px;
  }
}
@media screen and (max-width: 767px) {
  .header__inner {
    height: 60px;
    padding-block: 0;
    padding-inline: 20px;
  }
}
.header__logo {
  display: block;
  flex-shrink: 0;
}
.header__logo--full {
  height: 70px;
  width: auto;
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  .header__logo--full {
    height: 50px;
  }
}
@media screen and (max-width: 767px) {
  .header__logo--full {
    display: none;
  }
}
.header__logo--mark {
  display: none;
}
@media screen and (max-width: 767px) {
  .header__logo--mark {
    display: block;
    width: 56px;
    height: 30px;
  }
}
.header__logotype {
  display: none;
}
@media screen and (max-width: 767px) {
  .header__logotype {
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .header__logotype img {
    width: 159px;
    height: 12px;
  }
}
.gnav {
  display: flex;
  align-items: center;
  gap: 50px;
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  .gnav {
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .gnav {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    background-color: var(--color-bg);
    z-index: 100;
    gap: 48px;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-slow);
  }
}
@media screen and (max-width: 767px) {
  .gnav.is-open {
    opacity: 1;
    pointer-events: auto;
  }
}
.gnav__list {
  display: flex;
  align-items: center;
  gap: 50px;
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  .gnav__list {
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .gnav__list {
    flex-direction: column;
    gap: 40px;
  }
}
.gnav__link {
  font-family: var(--font-en);
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-brown);
  position: relative;
}
.gnav__link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width var(--transition-base);
}
.gnav__link:hover::after {
  width: 100%;
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  .gnav__link {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .gnav__link {
    font-size: 2.4rem;
  }
}
.gnav__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 36px;
  background-color: var(--color-brown);
  color: var(--color-bg);
  font-family: var(--font-en);
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 18px;
  filter: drop-shadow(4px 4px 0px var(--color-accent));
  transition: opacity var(--transition-base);
  white-space: nowrap;
  flex-shrink: 0;
}
.gnav__cta:hover {
  opacity: 0.8;
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  .gnav__cta {
    width: auto;
    height: auto;
    font-size: 1.6rem;
    padding: 5px 10px;
  }
}
@media screen and (max-width: 767px) {
  .gnav__cta {
    width: 200px;
    height: 36px;
    font-size: 1.8rem;
    border-radius: 26px;
  }
}
.hamburger {
  display: none;
  width: 26px;
  height: 14px;
  position: relative;
  z-index: 110;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .hamburger {
    display: block;
  }
}
.hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--color-brown);
  transition:
    transform var(--transition-base),
    opacity var(--transition-base),
    top var(--transition-base);
}
.hamburger span:nth-child(1) {
  top: 0;
}
.hamburger span:nth-child(2) {
  top: 50%;
}
.hamburger span:nth-child(3) {
  top: 100%;
}
.hamburger.is-open span:nth-child(1) {
  top: 50%;
  transform: rotate(45deg);
}
.hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
.hamburger.is-open span:nth-child(3) {
  top: 50%;
  transform: rotate(-45deg);
}
.swiper {
  width: 100%;
  overflow: hidden;
}
.swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  background: var(--color-brown);
  opacity: 0.3;
  border-radius: 50%;
  transition:
    opacity var(--transition-base),
    transform var(--transition-base);
}
.swiper-pagination-bullet-active {
  opacity: 1;
  transform: scale(1.4);
  background: var(--color-terracotta);
}
.swiper-button-prev,
.swiper-button-next {
  width: 48px;
  height: 48px;
  background: var(--color-bg);
  border: 1px solid var(--color-brown);
  border-radius: 50%;
  color: var(--color-brown);
  transition:
    background-color var(--transition-base),
    color var(--transition-base);
}
.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 1.4rem;
  font-weight: 400;
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: var(--color-brown);
  color: var(--color-bg);
}
.works-swiper .swiper-slide {
  width: 100%;
}
.hero-swiper .swiper-slide {
  width: 100%;
  height: 100svh;
}
.hero {
  background-color: var(--color-bg);
  padding-top: 105px;
}
@media screen and (max-width: 767px) {
  .hero {
    padding-top: 60px;
  }
}
.hero__kv {
  position: relative;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .hero__kv {
    aspect-ratio: 750/1334;
    overflow: hidden;
  }
}
.hero__kv img {
  width: 100%;
  height: auto;
  aspect-ratio: 2880/1430;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .hero__kv img {
    width: 100% !important;
    height: 100% !important;
    aspect-ratio: unset !important;
    object-fit: cover;
    object-position: center top;
  }
}
.hero__catch {
  position: absolute;
  font-family: var(--font-ja);
  font-weight: 700;
  color: var(--color-bg);
  writing-mode: vertical-rl;
  white-space: nowrap;
  font-size: 2.4rem;
  letter-spacing: 0.2em;
  left: 69.6%;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  .hero__catch {
    font-size: 1.8rem;
    letter-spacing: 0.05em;
  }
}
@media screen and (max-width: 767px) {
  .hero__catch {
    writing-mode: horizontal-tb;
    white-space: nowrap;
    font-size: 1.9rem;
    letter-spacing: 0.05em;
    left: 0;
    width: 100%;
    text-align: center;
    top: 44%;
    transform: translateY(-50%);
  }
}
.service {
  position: relative;
  background-color: var(--color-bg-light);
  padding: 100px 0 140px;
}
@media screen and (max-width: 549px) {
  .service {
    padding: 40px 20px 100px;
  }
}
.service__inner {
  max-width: 1100px;
  margin-inline: auto;
  width: 100%;
  padding-inline: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 70px;
}
@media screen and (max-width: 549px) {
  .service__inner {
    padding-inline: 0;
    gap: 50px;
  }
}
.service__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.service__title {
  font-family: var(--font-en);
  font-size: 5rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--color-brown);
  line-height: 1;
}
@media screen and (max-width: 549px) {
  .service__title {
    font-size: 3.5rem;
  }
}
.service__subtitle {
  font-family: var(--font-ja);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--color-brown);
}
@media screen and (max-width: 549px) {
  .service__subtitle {
    font-size: 1.4rem;
  }
}
.service__cards {
  display: flex;
  gap: 40px;
  width: 100%;
  justify-content: center;
}
@media screen and (max-width: 1100px) {
  .service__cards {
    flex-direction: column;
    align-items: center;
  }
}
.service__card {
  width: 510px;
  flex-shrink: 0;
  border-radius: 255px 255px 10px 10px;
  overflow: hidden;
  padding: 50px 50px 70px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
}
@media screen and (max-width: 1100px) {
  .service__card {
    width: 100%;
    max-width: 510px;
    margin-inline: auto;
  }
}
@media screen and (max-width: 549px) {
  .service__card {
    padding: 50px 25px;
    gap: 30px;
  }
}
.service__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/service_background.png");
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
  pointer-events: none;
}
.service__card-heading {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  height: 110px;
  text-align: center;
}
@media screen and (max-width: 549px) {
  .service__card-heading {
    height: auto;
  }
}
.service__card-tag {
  display: inline-block;
  background-color: var(--color-accent);
  font-family: var(--font-ja);
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-brown);
  line-height: 1;
  padding: 4px 8px;
}
@media screen and (max-width: 549px) {
  .service__card-tag {
    font-size: 2.2rem;
  }
}
.service__card-title {
  position: relative;
  font-family: var(--font-ja);
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-brown);
  line-height: 1;
}
@media screen and (max-width: 549px) {
  .service__card-title {
    font-size: 2.2rem;
  }
}
.service__card-body {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.service__card-lead {
  font-family: var(--font-ja);
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-brown);
  line-height: 22px;
}
@media screen and (max-width: 549px) {
  .service__card-lead {
    font-size: 1.7rem;
    line-height: 18px;
  }
}
.service__card-desc {
  font-family: var(--font-ja);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 26px;
  color: var(--color-brown);
  width: 410px;
}
@media screen and (max-width: 1100px) {
  .service__card-desc {
    width: 100%;
  }
}
@media screen and (max-width: 549px) {
  .service__card-desc {
    font-size: 1.4rem;
    line-height: 24px;
  }
}
.service__card-list {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.service__card-list dt,
.service__card-list dd {
  font-family: var(--font-ja);
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  color: var(--color-brown);
}
@media screen and (max-width: 549px) {
  .service__card-list dt,
  .service__card-list dd {
    font-size: 1.2rem;
  }
}
.service__card-item {
  display: flex;
  align-items: baseline;
  gap: 0;
  border-top: 1px solid var(--color-brown);
  padding-block: 10px;
}
.service__card-item:last-child {
  border-bottom: 1px solid var(--color-brown);
}
@media screen and (max-width: 549px) {
  .service__card-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
.service__card-item dt {
  font-weight: 700;
  width: 85px;
  flex-shrink: 0;
}
.service__card-item dd {
  font-weight: 500;
  flex: 1;
}
@media screen and (max-width: 549px) {
  .service__card-item dd {
    font-size: 1.2rem;
    line-height: 20px;
  }
}
.service__cta {
  display: flex;
  justify-content: center;
}
.works {
  position: relative;
  background-color: var(--color-bg);
  padding: 100px 40px 140px;
}
@media screen and (max-width: 767px) {
  .works {
    padding: 40px 20px 100px;
  }
}
.works__inner {
  max-width: 1100px;
  margin-inline: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 70px;
}
@media screen and (max-width: 767px) {
  .works__inner {
    gap: 50px;
  }
}
.works__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .works__header {
    gap: 20px;
  }
}
.works__title {
  font-family: var(--font-en);
  font-size: 5rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--color-brown);
  line-height: 64px;
}
@media screen and (max-width: 767px) {
  .works__title {
    font-size: 3.5rem;
    line-height: 1;
  }
}
.works__subtitle {
  font-family: var(--font-ja);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--color-brown);
  line-height: 32px;
}
@media screen and (max-width: 767px) {
  .works__subtitle {
    font-size: 1.4rem;
    line-height: 1;
  }
}
.works__slider {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .works__slider {
    gap: 5px;
    padding-inline: 5px;
  }
}
.works__btn {
  flex-shrink: 0;
  width: 28px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  transition: opacity var(--transition-base);
}
@media screen and (max-width: 767px) {
  .works__btn {
    width: 14px;
    height: 28px;
  }
}
.works__btn img {
  display: block;
  width: 100%;
  height: 100%;
}
.works__btn--next img {
  transform: scaleX(-1);
}
.works__btn.is-disabled {
  opacity: 0.3;
  cursor: default;
}
.works__btn:not(.is-disabled):hover {
  opacity: 0.7;
}
.works .works-swiper {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}
.works__card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 4rem;
  padding: 40px;
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .works__card {
    flex-direction: column;
    gap: 25px;
    padding: 0;
    border-radius: 0;
    max-width: 510px;
    margin-inline: auto;
  }
}
.works__card-img {
  width: 43%;
  flex-shrink: 0;
}
.works__card-img img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .works__card-img {
    width: 100%;
  }
  .works__card-img img {
    border-radius: 5px;
  }
}
.works__card-caption {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .works__card-caption {
    gap: 15px;
  }
}
.works__card-name-wrap {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  background-color: var(--color-white);
  padding: 5px 10px;
}
@media screen and (max-width: 767px) {
  .works__card-name-wrap {
    padding: 3px 5px;
  }
}
.works__card-name {
  font-family: var(--font-ja);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--color-brown);
  white-space: nowrap;
  line-height: 20px;
}
@media screen and (max-width: 767px) {
  .works__card-name {
    font-size: 1.8rem;
    line-height: 18px;
  }
}
.works__card-tags {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .works__card-tags {
    flex-direction: row;
    gap: 10px;
  }
}
.works__card-tag {
  display: flex;
  align-items: center;
  font-family: var(--font-ja);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--color-brown);
  line-height: 20px;
}
.works__card-tag::before {
  content: "・";
  font-family: var(--font-ja);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 20px;
}
@media screen and (max-width: 767px) {
  .works__card-tag {
    font-size: 1.2rem;
    line-height: 12px;
  }
  .works__card-tag::before {
    font-size: 2rem;
    line-height: 12px;
  }
}
.works__card-desc {
  font-family: var(--font-ja);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--color-brown);
  line-height: 24px;
}
@media screen and (max-width: 767px) {
  .works__card-desc {
    font-size: 1.3rem;
    line-height: 24px;
  }
}
.works__cta {
  display: flex;
  justify-content: center;
}
.concept {
  background-color: var(--color-bg);
  padding: 100px 0 140px;
}
@media screen and (max-width: 767px) {
  .concept {
    padding: 75px 20px 100px;
  }
}
.concept__inner {
  max-width: 1100px;
  margin-inline: auto;
  width: 100%;
  padding-inline: 40px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  .concept__inner {
    flex-direction: column;
    gap: 50px;
    max-width: 800px;
  }
}
@media screen and (max-width: 1100px) {
  .concept__inner {
    flex-direction: column;
    gap: 40px;
  }
}
@media screen and (max-width: 767px) {
  .concept__inner {
    padding-inline: 0;
  }
}
.concept__heading {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-block: 5px;
  width: 378px;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .concept__heading {
    width: 100%;
    gap: 10px;
    padding-block: 0;
  }
}
.concept__heading-line {
  display: inline-block;
  width: fit-content;
  background-color: var(--color-white);
  font-family: var(--font-ja);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1em;
  color: var(--color-brown);
  letter-spacing: 0.1em;
  padding: 5px 10px 5px 0;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .concept__heading-line {
    font-size: 1.8rem;
    padding: 2px 10px 2px 0;
  }
}
.concept__body {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-end;
  width: 600px;
}
@media screen and (max-width: 1100px) {
  .concept__body {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .concept__body {
    align-items: center;
  }
}
.concept__text p {
  font-family: var(--font-ja);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--color-brown);
  line-height: 34px;
  letter-spacing: 0.05em;
}
.concept__text p + p {
  margin-top: 34px;
}
@media screen and (max-width: 767px) {
  .concept__text p {
    font-size: 1.4rem;
    line-height: 28px;
  }
  .concept__text p + p {
    margin-top: 28px;
  }
}
.about {
  position: relative;
  background-color: var(--color-bg-light);
  padding: 100px 0 140px;
}
@media screen and (max-width: 767px) {
  .about {
    padding: 40px 0 100px;
  }
}
.about__inner {
  max-width: 1100px;
  margin-inline: auto;
  width: 100%;
  padding-inline: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 70px;
}
@media screen and (max-width: 767px) {
  .about__inner {
    padding-inline: 20px;
    gap: 50px;
  }
}
.about__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.about__title {
  font-family: var(--font-en);
  font-size: 5rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--color-brown);
  line-height: 64px;
}
@media screen and (max-width: 767px) {
  .about__title {
    font-size: 3.5rem;
    line-height: 1;
  }
}
.about__subtitle {
  font-family: var(--font-ja);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--color-brown);
  line-height: 32px;
}
@media screen and (max-width: 767px) {
  .about__subtitle {
    font-size: 1.4rem;
    line-height: 1;
  }
}
.about__content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .about__content {
    flex-direction: column;
    gap: 40px;
  }
}
.about__photo {
  width: 450px;
  flex-shrink: 0;
}
.about__photo picture {
  display: block;
}
.about__photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 10px;
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  .about__photo {
    flex-shrink: 1;
    width: clamp(250px, 35%, 450px);
  }
}
@media screen and (max-width: 767px) {
  .about__photo {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    border-radius: 5px;
  }
  .about__photo img {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 4/3 !important;
    object-fit: cover !important;
    object-position: center;
    display: block;
    border-radius: 0;
  }
}
.about__profile {
  width: 510px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  .about__profile {
    width: auto;
    flex: 1;
    max-width: 540px;
    margin-left: 40px;
  }
}
@media screen and (max-width: 767px) {
  .about__profile {
    width: 100%;
    gap: 30px;
  }
}
.about__profile .view-more {
  align-self: flex-end;
}
.about__name {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.about__name-ja {
  font-family: var(--font-ja);
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-brown);
  line-height: 1;
}
.about__name-kana {
  font-family: var(--font-ja);
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--color-brown);
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .about__name-kana {
    font-size: 1.4rem;
  }
}
.about__bio p {
  font-family: var(--font-ja);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--color-brown);
  line-height: 34px;
}
@media screen and (max-width: 767px) {
  .about__bio p {
    font-size: 1.4rem;
    line-height: 28px;
  }
}
.about__sns {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.about__sns-title {
  font-family: var(--font-en);
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--color-brown);
  line-height: 1;
}
.about__sns-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  list-style: none;
}
.about__sns-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.about__sns-item img {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.about__sns-link {
  font-family: var(--font-ja);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--color-brown);
  line-height: 1;
  transition: opacity var(--transition-base);
}
.about__sns-link:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .about__sns-link {
    font-size: 1.4rem;
  }
}
.log {
  position: relative;
  background-color: var(--color-bg);
  padding: 100px 0 140px;
}
@media screen and (max-width: 767px) {
  .log {
    padding: 40px 0 100px;
  }
}
.log__inner {
  max-width: 1100px;
  margin-inline: auto;
  width: 100%;
  padding-inline: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 70px;
}
@media screen and (max-width: 767px) {
  .log__inner {
    padding-inline: 20px;
    gap: 50px;
  }
}
.log__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.log__title {
  font-family: var(--font-en);
  font-size: 5rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--color-brown);
  line-height: 64px;
}
@media screen and (max-width: 767px) {
  .log__title {
    font-size: 3.5rem;
    line-height: 1;
  }
}
.log__subtitle {
  font-family: var(--font-ja);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--color-brown);
  line-height: 32px;
}
@media screen and (max-width: 767px) {
  .log__subtitle {
    font-size: 1.4rem;
    line-height: 1;
  }
}
.log__cards {
  display: flex;
  justify-content: space-between;
  width: 100%;
  list-style: none;
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  .log__cards {
    flex-wrap: wrap;
    justify-content: center;
    gap: 60px 40px;
  }
}
@media screen and (max-width: 767px) {
  .log__cards {
    flex-direction: column;
    gap: 30px;
    max-width: 600px;
    margin-inline: auto;
  }
}
.log__card {
  width: 300px;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  .log__card {
    flex: 1 0 200px;
    max-width: 300px;
  }
}
@media screen and (max-width: 767px) {
  .log__card {
    width: 100%;
  }
}
.log__card-link {
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: opacity var(--transition-base);
}
.log__card-link:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .log__card-link {
    flex-direction: row;
    align-items: center;
  }
}
.log__card-img {
  width: 300px;
  height: 300px;
  flex-shrink: 0;
  border-radius: 150px 150px 10px 10px;
  overflow: hidden;
}
.log__card-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  .log__card-img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
  }
}
@media screen and (max-width: 767px) {
  .log__card-img {
    width: 100px;
    height: 100px;
  }
}
.log__card-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .log__card-body {
    flex: 1;
    min-width: 0;
  }
}
.log__card-category {
  font-family: var(--font-ja);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--color-brown);
  line-height: 20px;
}
@media screen and (max-width: 767px) {
  .log__card-category {
    font-size: 1rem;
    line-height: 1;
  }
}
.log__card-title {
  font-family: var(--font-ja);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--color-brown);
  line-height: 24px;
}
@media screen and (max-width: 767px) {
  .log__card-title {
    font-size: 1.2rem;
    line-height: 18px;
  }
}
.log__cta {
  display: flex;
  justify-content: center;
}
.contact {
  position: relative;
  background-color: var(--color-bg-light);
  padding: 100px 0 140px;
}
@media screen and (max-width: 767px) {
  .contact {
    padding: 40px 0 100px;
  }
}
.contact__inner {
  max-width: 1100px;
  margin-inline: auto;
  width: 100%;
  padding-inline: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}
@media screen and (max-width: 1100px) {
  .contact__inner {
    padding-inline: 20px;
  }
}
.contact__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contact__header {
    gap: 20px;
  }
}
.contact__title {
  font-family: var(--font-en);
  font-size: 5rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--color-brown);
  line-height: 64px;
}
@media screen and (max-width: 767px) {
  .contact__title {
    font-size: 3.5rem;
    line-height: 1;
  }
}
.contact__subtitle {
  font-family: var(--font-ja);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--color-brown);
  line-height: 32px;
}
@media screen and (max-width: 767px) {
  .contact__subtitle {
    font-size: 1.4rem;
    line-height: 1;
  }
}
.contact__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}
@media screen and (max-width: 767px) {
  .contact__body {
    gap: 40px;
  }
}
.contact__lead {
  text-align: center;
}
.contact__lead p {
  font-family: var(--font-ja);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--color-brown);
  line-height: 32px;
}
@media screen and (max-width: 767px) {
  .contact__lead p {
    font-size: 1.4rem;
    line-height: 28px;
  }
}
.contact__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-brown);
  color: var(--color-bg);
  font-family: var(--font-ja);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 10px 25px;
  border-radius: 200px;
  filter: drop-shadow(4px 4px 0px var(--color-accent));
  transition: opacity var(--transition-base);
  white-space: nowrap;
}
.contact__btn:hover {
  opacity: 0.8;
}
.footer {
  position: relative;
  background-color: var(--color-brown);
}
.footer .section-divider {
  z-index: 0;
}
.footer__inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin-inline: auto;
  padding: 30px 30px 40px;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .footer__inner {
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 20px 20px 40px;
  }
}
.footer__logo {
  display: block;
  flex-shrink: 0;
}
.footer__logo img {
  display: block;
  height: 70px;
  width: auto;
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  .footer__logo img {
    height: 50px;
  }
}
@media screen and (max-width: 767px) {
  .footer__logo img {
    height: 40px;
  }
}
.footer__nav {
  display: flex;
  align-items: center;
  gap: 50px;
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  .footer__nav {
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .footer__nav {
    flex-direction: column;
    align-items: center;
    gap: 40px;
    width: 100%;
  }
}
.footer__nav-list {
  display: flex;
  align-items: center;
  gap: 50px;
  list-style: none;
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  .footer__nav-list {
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .footer__nav-list {
    gap: 30px;
    justify-content: center;
  }
}
.footer__nav-link {
  font-family: var(--font-en);
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--color-bg);
  transition: opacity var(--transition-base);
}
.footer__nav-link:hover {
  opacity: 0.7;
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  .footer__nav-link {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .footer__nav-link {
    font-size: 1.4rem;
  }
}
.footer__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 36px;
  background-color: var(--color-accent);
  color: var(--color-brown);
  font-family: var(--font-en);
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  border-radius: 30px;
  transition: opacity var(--transition-base);
  white-space: nowrap;
  flex-shrink: 0;
}
.footer__cta:hover {
  opacity: 0.8;
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  .footer__cta {
    font-size: 1.6rem;
    width: auto;
    height: auto;
    padding: 5px 10px;
  }
}
@media screen and (max-width: 767px) {
  .footer__cta {
    background-color: var(--color-bg);
    width: 200px;
    height: 36px;
    font-size: 1.8rem;
    border-radius: 26px;
  }
}
.page-head {
  background-color: var(--color-bg);
  padding-top: 250px;
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  .page-head {
    padding-top: 200px;
  }
}
@media screen and (max-width: 767px) {
  .page-head {
    padding-top: 120px;
  }
}
.page-head__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  padding-inline: 40px;
}
@media screen and (max-width: 767px) {
  .page-head__inner {
    gap: 30px;
    padding-inline: 20px;
  }
}
.page-head__title-wrap {
  position: relative;
  padding-inline: 20px;
}
.page-head__title-wrap::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 25px;
  background-image: url("../img/bg_dot_white.png");
  background-repeat: repeat;
  background-size: 14px 14px;
  pointer-events: none;
}
.page-head__title {
  position: relative;
  font-family: var(--font-en);
  font-size: 6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--color-brown);
  text-align: center;
  line-height: 64px;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .page-head__title {
    font-size: 4rem;
    line-height: 1;
  }
}
.page-head__catch {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  padding-block: 5px;
}
@media screen and (max-width: 767px) {
  .page-head__catch {
    gap: 10px;
  }
}
.page-head__catch-line {
  display: inline-block;
  background-color: var(--color-white);
  font-family: var(--font-ja);
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-brown);
  padding: 5px 10px 5px 0;
  white-space: nowrap;
  line-height: 1;
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  .page-head__catch-line {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 767px) {
  .page-head__catch-line {
    font-size: 1.8rem;
  }
}
.ab-profile {
  background-color: var(--color-bg);
  padding: 100px 40px 140px;
}
@media screen and (max-width: 767px) {
  .ab-profile {
    padding: 50px 0 90px;
  }
}
.ab-profile__inner {
  max-width: 1100px;
  margin-inline: auto;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .ab-profile__inner {
    flex-direction: column;
    gap: 50px;
    padding-inline: 20px;
  }
}
.ab-profile__photo {
  width: 450px;
  flex-shrink: 0;
}
.ab-profile__photo img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 10px;
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  .ab-profile__photo {
    flex-shrink: 1;
    width: clamp(250px, 35%, 450px);
  }
  .ab-profile__photo img {
    aspect-ratio: 1 !important;
  }
}
@media screen and (max-width: 767px) {
  .ab-profile__photo {
    width: 100%;
    overflow: hidden;
    border-radius: 5px;
  }
  .ab-profile__photo img {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 4/3 !important;
    object-fit: cover !important;
    object-position: center;
    border-radius: 0;
  }
}
.ab-profile__content {
  width: 540px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 80px;
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  .ab-profile__content {
    flex: 1;
    flex-shrink: 1;
    width: auto;
    max-width: 540px;
    margin-left: 40px;
  }
}
@media screen and (max-width: 767px) {
  .ab-profile__content {
    width: 100%;
    gap: 50px;
  }
}
.ab-profile__outline {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .ab-profile__outline {
    gap: 30px;
  }
}
.ab-profile__name {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.ab-profile__name-ja {
  font-family: var(--font-ja);
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-brown);
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .ab-profile__name-ja {
    font-size: 1.8rem;
  }
}
.ab-profile__name-kana {
  font-family: var(--font-ja);
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--color-brown);
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .ab-profile__name-kana {
    font-size: 1.2rem;
  }
}
.ab-profile__bio p {
  font-family: var(--font-ja);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--color-brown);
  line-height: 34px;
}
@media screen and (max-width: 767px) {
  .ab-profile__bio p {
    font-size: 1.4rem;
    line-height: 28px;
  }
}
.ab-profile__history,
.ab-profile__media,
.ab-profile__links,
.ab-profile__sns {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .ab-profile__history,
  .ab-profile__media,
  .ab-profile__links,
  .ab-profile__sns {
    gap: 20px;
  }
}
.ab-profile__section-title {
  font-family: var(--font-ja);
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-brown);
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .ab-profile__section-title {
    font-size: 1.6rem;
  }
}
.ab-profile__section-title-en {
  font-family: var(--font-en);
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--color-brown);
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .ab-profile__section-title-en {
    font-size: 1.6rem;
  }
}
.ab-profile__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .ab-profile__list {
    gap: 15px;
  }
}
.ab-profile__row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.ab-profile__row-year {
  font-family: var(--font-ja);
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-brown);
  line-height: 22px;
  width: 85px;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .ab-profile__row-year {
    font-size: 1.4rem;
    width: 65px;
    line-height: 18px;
  }
}
.ab-profile__row-text {
  font-family: var(--font-ja);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--color-brown);
  line-height: 22px;
  flex: 1;
}
@media screen and (max-width: 767px) {
  .ab-profile__row-text {
    font-size: 1.3rem;
    line-height: 18px;
  }
}
.ab-profile__row-link {
  font-family: var(--font-ja);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--color-brown);
  line-height: 22px;
  flex: 1;
  text-decoration: underline;
  text-decoration-color: var(--color-accent);
  text-decoration-thickness: 2px;
  transition: opacity var(--transition-base);
}
.ab-profile__row-link:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .ab-profile__row-link {
    font-size: 1.3rem;
    line-height: 18px;
  }
}
.ab-profile__link-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ab-profile__link-name {
  font-family: var(--font-ja);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--color-brown);
  text-decoration: underline;
  text-decoration-color: var(--color-accent);
  text-decoration-thickness: 2px;
  line-height: 22px;
  transition: opacity var(--transition-base);
}
.ab-profile__link-name:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .ab-profile__link-name {
    font-size: 1.4rem;
  }
}
.ab-profile__link-desc {
  font-family: var(--font-ja);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--color-brown);
  line-height: 24px;
}
@media screen and (max-width: 767px) {
  .ab-profile__link-desc {
    font-size: 1.3rem;
    line-height: 18px;
  }
}
.ab-profile__sns-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  list-style: none;
}
.ab-profile__sns-item {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 22px;
}
.ab-profile__sns-item img {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  display: block;
}
@media screen and (max-width: 767px) {
  .ab-profile__sns-item img {
    width: 18px;
    height: 18px;
  }
}
.ab-profile__sns-link {
  font-family: var(--font-ja);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--color-brown);
  line-height: 1;
  transition: opacity var(--transition-base);
}
.ab-profile__sns-link:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .ab-profile__sns-link {
    font-size: 1.3rem;
  }
}
.ab-office {
  position: relative;
  background-color: var(--color-bg-light);
  padding: 100px 40px 140px;
}
@media screen and (max-width: 767px) {
  .ab-office {
    padding: 40px 0 100px;
  }
}
.ab-office__inner {
  max-width: 1100px;
  margin-inline: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 70px;
}
@media screen and (max-width: 767px) {
  .ab-office__inner {
    padding-inline: 20px;
    gap: 50px;
  }
}
.ab-office__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.ab-office__title {
  font-family: var(--font-en);
  font-size: 5rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--color-brown);
  line-height: 64px;
}
@media screen and (max-width: 767px) {
  .ab-office__title {
    font-size: 3.5rem;
    line-height: 1;
  }
}
.ab-office__subtitle {
  font-family: var(--font-ja);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--color-brown);
  line-height: 32px;
}
@media screen and (max-width: 767px) {
  .ab-office__subtitle {
    font-size: 1.4rem;
    line-height: 1;
  }
}
.ab-office__content {
  display: flex;
  align-items: flex-start;
  gap: 100px;
  width: 100%;
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  .ab-office__content {
    gap: 50px;
  }
}
@media screen and (max-width: 767px) {
  .ab-office__content {
    flex-direction: column;
    gap: 40px;
  }
}
.ab-office__photo {
  width: 450px;
  flex-shrink: 0;
}
.ab-office__photo img {
  display: block;
  width: 100%;
  aspect-ratio: 450/350;
  object-fit: cover;
  border-radius: 10px;
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  .ab-office__photo {
    flex-shrink: 1;
    width: clamp(200px, 35%, 350px);
  }
}
@media screen and (max-width: 767px) {
  .ab-office__photo {
    width: 100%;
    overflow: hidden;
    border-radius: 5px;
  }
  .ab-office__photo img {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 4/3 !important;
    object-fit: cover !important;
    object-position: center;
    border-radius: 0;
  }
}
.ab-office__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .ab-office__info {
    gap: 30px;
  }
}
.ab-office__name {
  font-family: var(--font-ja);
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-brown);
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .ab-office__name {
    font-size: 1.8rem;
  }
}
.ab-office__address {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ab-office__address p {
  font-family: var(--font-ja);
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--color-brown);
  line-height: 34px;
}
@media screen and (max-width: 767px) {
  .ab-office__address p {
    font-size: 1.4rem;
    line-height: 24px;
  }
}
.svc-heading {
  background-color: var(--color-bg);
  padding-top: 250px;
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  .svc-heading {
    padding-top: 200px;
  }
}
@media screen and (max-width: 767px) {
  .svc-heading {
    padding-top: 120px;
  }
}
.svc-heading__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  padding-inline: 40px;
}
@media screen and (max-width: 767px) {
  .svc-heading__inner {
    gap: 30px;
    padding-inline: 20px;
  }
}
.svc-heading__title-wrap {
  position: relative;
  padding-inline: 20px;
}
.svc-heading__title-wrap::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 25px;
  background-image: url("../img/bg_dot_white.png");
  background-repeat: repeat;
  background-size: 14px 14px;
  pointer-events: none;
}
.svc-heading__title {
  position: relative;
  font-family: var(--font-en);
  font-size: 6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--color-brown);
  text-align: center;
  line-height: 64px;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .svc-heading__title {
    font-size: 4rem;
    line-height: 1;
  }
}
.svc-heading__lead {
  font-family: var(--font-ja);
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-brown);
  line-height: 34px;
  text-align: center;
  max-width: 1100px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .svc-heading__lead {
    font-size: 1.4rem;
    line-height: 28px;
  }
}
.svc-main {
  background-color: var(--color-bg);
  padding: 100px 40px 140px;
}
@media screen and (max-width: 767px) {
  .svc-main {
    padding: 50px 20px 100px;
  }
}
.svc-main__inner {
  max-width: 1100px;
  margin-inline: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.svc-main__point {
  border-top: 1px solid var(--color-brown);
  border-bottom: 1px solid var(--color-brown);
  padding: 40px 20px;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media screen and (max-width: 1100px) {
  .svc-main__point {
    flex-direction: column;
    gap: 40px;
  }
}
.svc-main__point-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 300px;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  .svc-main__point-block {
    flex-direction: row;
    width: 100%;
    align-items: flex-start;
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .svc-main__point-block {
    width: 100%;
    flex-direction: column;
    gap: 15px;
  }
}
.svc-main__point-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding-block: 5px;
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  .svc-main__point-heading {
    width: 260px;
    flex-shrink: 0;
    align-items: flex-start;
  }
}
@media screen and (max-width: 767px) {
  .svc-main__point-heading {
    align-items: flex-start;
  }
}
.svc-main__point-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-white);
  font-family: var(--font-ja);
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-brown);
  padding: 3px 10px;
  line-height: 23px;
  white-space: nowrap;
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  .svc-main__point-label {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .svc-main__point-label {
    font-size: 1.8rem;
  }
}
.svc-main__point-text {
  font-family: var(--font-ja);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--color-brown);
  line-height: 30px;
  flex: 1;
}
@media screen and (max-width: 767px) {
  .svc-main__point-text {
    font-size: 1.3rem;
    line-height: 23px;
  }
}
.svc-main__tool {
  border-bottom: 1px solid var(--color-brown);
  padding: 40px 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .svc-main__tool {
    gap: 40px;
  }
}
.svc-main__tool-row {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .svc-main__tool-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}
.svc-main__tool-name {
  font-family: var(--font-en);
  font-size: 2.3rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--color-brown);
  line-height: 23px;
  width: 155px;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .svc-main__tool-name {
    width: auto;
  }
}
.svc-main__tool-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex: 1;
  align-items: center;
}
.svc-main__tool-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-white);
  font-family: var(--font-ja);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--color-brown);
  padding: 5px 15px;
  border-radius: 13px;
  line-height: 1;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .svc-main__tool-tag {
    font-size: 1.4rem;
  }
}
.svc-main__cards {
  padding-top: 100px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .svc-main__cards {
    padding-top: 70px;
  }
}
.svc-flow {
  position: relative;
  background-color: var(--color-bg-light);
  padding: 100px 40px 140px;
}
@media screen and (max-width: 767px) {
  .svc-flow {
    padding: 40px 20px 100px;
  }
}
.svc-flow__inner {
  max-width: 800px;
  margin-inline: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 70px;
}
@media screen and (max-width: 767px) {
  .svc-flow__inner {
    gap: 50px;
  }
}
.svc-flow__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.svc-flow__title {
  font-family: var(--font-en);
  font-size: 5rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--color-brown);
  line-height: 64px;
}
@media screen and (max-width: 767px) {
  .svc-flow__title {
    font-size: 3.5rem;
    line-height: 1;
  }
}
.svc-flow__subtitle {
  font-family: var(--font-ja);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--color-brown);
  line-height: 32px;
}
@media screen and (max-width: 767px) {
  .svc-flow__subtitle {
    font-size: 1.4rem;
    line-height: 1;
  }
}
.svc-flow__steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .svc-flow__steps {
    gap: 20px;
  }
}
.svc-flow__step {
  position: relative;
  width: 100%;
  padding: 30px 50px 50px;
  border-radius: 5px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.svc-flow__step::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/service_background.png");
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .svc-flow__step {
    padding: 25px 25px 35px;
    gap: 15px;
  }
}
.svc-flow__step-title {
  position: relative;
  font-family: var(--font-ja);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-brown);
  line-height: 22px;
}
@media screen and (max-width: 767px) {
  .svc-flow__step-title {
    font-size: 1.6rem;
  }
}
.svc-flow__step-text {
  position: relative;
  font-family: var(--font-ja);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--color-brown);
  line-height: 26px;
}
@media screen and (max-width: 767px) {
  .svc-flow__step-text {
    font-size: 1.3rem;
    line-height: 23px;
  }
}
.svc-flow__arrow {
  display: flex;
  justify-content: center;
  flex-shrink: 0;
}
.svc-flow__arrow img {
  display: block;
  width: 28px;
  height: 52px;
  transform: rotate(-90deg);
}
@media screen and (max-width: 767px) {
  .svc-flow__arrow img {
    width: 20px;
    height: 36px;
  }
}
.svc-works {
  position: relative;
  background-color: var(--color-bg);
  padding: 100px 40px 140px;
}
@media screen and (max-width: 767px) {
  .svc-works {
    padding: 40px 20px 100px;
  }
}
.svc-works__inner {
  max-width: 1100px;
  margin-inline: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 70px;
}
@media screen and (max-width: 767px) {
  .svc-works__inner {
    gap: 50px;
  }
}
.svc-works__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.svc-works__title {
  font-family: var(--font-en);
  font-size: 5rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--color-brown);
  line-height: 64px;
}
@media screen and (max-width: 767px) {
  .svc-works__title {
    font-size: 3.5rem;
    line-height: 1;
  }
}
.svc-works__subtitle {
  font-family: var(--font-ja);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--color-brown);
  line-height: 32px;
}
@media screen and (max-width: 767px) {
  .svc-works__subtitle {
    font-size: 1.4rem;
    line-height: 1;
  }
}
.svc-works__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  width: 100%;
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  .svc-works__grid {
    gap: 30px;
  }
}
@media screen and (max-width: 767px) {
  .svc-works__grid {
    flex-direction: column;
    gap: 30px;
  }
}
.svc-works__card {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: clamp(200px, 30%, 330px);
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .svc-works__card {
    flex-direction: row;
    width: 100%;
    align-items: flex-start;
    gap: 15px;
  }
}
.svc-works__card-img {
  width: 100%;
  aspect-ratio: 1;
  flex-shrink: 0;
  border-radius: 5px;
  overflow: hidden;
}
.svc-works__card-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .svc-works__card-img {
    width: 130px;
    height: 130px;
    aspect-ratio: unset;
  }
}
.svc-works__card-caption {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  min-width: 0;
}
.svc-works__card-name {
  font-family: var(--font-ja);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--color-brown);
  line-height: 20px;
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  .svc-works__card-name {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .svc-works__card-name {
    font-size: 1.3rem;
  }
}
.svc-works__card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
}
.svc-works__card-tag {
  display: inline-flex;
  align-items: center;
  background-color: var(--color-white);
  font-family: var(--font-ja);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--color-brown);
  padding: 4px 10px;
  border-radius: 14px;
  line-height: 1;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .svc-works__card-tag {
    font-size: 1.2rem;
  }
}
.svc-works__cta {
  display: flex;
  justify-content: center;
}
.wrk-heading {
  background-color: var(--color-bg);
  padding-top: 250px;
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  .wrk-heading {
    padding-top: 200px;
  }
}
@media screen and (max-width: 767px) {
  .wrk-heading {
    padding-top: 120px;
  }
}
.wrk-heading__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  padding-inline: 40px;
}
@media screen and (max-width: 767px) {
  .wrk-heading__inner {
    gap: 30px;
    padding-inline: 20px;
  }
}
.wrk-heading__title-wrap {
  position: relative;
  padding-inline: 20px;
}
.wrk-heading__title-wrap::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 25px;
  background-image: url("../img/bg_dot_white.png");
  background-repeat: repeat;
  background-size: 14px 14px;
  pointer-events: none;
}
.wrk-heading__title {
  position: relative;
  font-family: var(--font-en);
  font-size: 6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--color-brown);
  text-align: center;
  line-height: 64px;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .wrk-heading__title {
    font-size: 4rem;
    line-height: 1;
  }
}
.wrk-heading__lead {
  font-family: var(--font-ja);
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-brown);
  line-height: 34px;
  text-align: center;
  max-width: 1100px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .wrk-heading__lead {
    font-size: 1.4rem;
    line-height: 28px;
  }
}
.wrk-main {
  background-color: var(--color-bg);
  padding: 100px 40px 140px;
}
@media screen and (max-width: 767px) {
  .wrk-main {
    padding: 50px 20px 100px;
  }
}
.wrk-main__inner {
  max-width: 1100px;
  margin-inline: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 70px;
}
@media screen and (max-width: 767px) {
  .wrk-main__inner {
    gap: 40px;
  }
}
.wrk-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .wrk-filter {
    gap: 15px;
  }
}
.wrk-filter__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-white);
  font-family: var(--font-ja);
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--color-brown);
  padding: 5px 15px;
  border-radius: 13px;
  line-height: 1;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  transition: opacity var(--transition-base);
}
.wrk-filter__tag:hover {
  opacity: 0.7;
}
.wrk-filter__tag--active {
  background-color: var(--color-brown);
  color: var(--color-white);
}
@media screen and (max-width: 767px) {
  .wrk-filter__tag {
    font-size: 1.2rem;
    padding: 3px 15px;
  }
}
.wrk-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.wrk-pagination__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--color-white);
  text-decoration: none;
  flex-shrink: 0;
  transition: opacity var(--transition-base);
}
.wrk-pagination__arrow::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--color-brown);
  border-right: 2px solid var(--color-brown);
  transform: rotate(-135deg) translate(1px, -1px);
}
.wrk-pagination__arrow--next::before {
  transform: rotate(45deg) translate(-1px, 1px);
}
.wrk-pagination__arrow--disabled {
  opacity: 0.3;
  pointer-events: none;
}
.wrk-pagination__arrow:hover {
  opacity: 0.7;
}
.wrk-pagination__page {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 15px;
  background-color: var(--color-white);
  font-family: var(--font-en);
  font-size: 2rem;
  font-weight: 500;
  color: var(--color-bg);
  line-height: 1;
  text-decoration: none;
  flex-shrink: 0;
  transition: opacity var(--transition-base);
}
.wrk-pagination__page--active {
  background-color: var(--color-brown);
  color: var(--color-bg);
}
.wrk-pagination__page:hover {
  opacity: 0.7;
}
.wrk-pagination__dots {
  font-family: var(--font-en);
  font-size: 2rem;
  font-weight: 500;
  color: var(--color-white);
  line-height: 1;
}
.wss-heading {
  background-color: var(--color-bg);
  padding-top: 250px;
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  .wss-heading {
    padding-top: 200px;
  }
}
@media screen and (max-width: 767px) {
  .wss-heading {
    padding-top: 120px;
  }
}
.wss-heading__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-inline: 40px;
}
@media screen and (max-width: 767px) {
  .wss-heading__inner {
    padding-inline: 20px;
  }
}
.wss-heading__title-wrap {
  position: relative;
  padding-inline: 20px;
}
.wss-heading__title-wrap::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 25px;
  background-image: url("../img/bg_dot_white.png");
  background-repeat: repeat;
  background-size: 14px 14px;
  pointer-events: none;
}
.wss-heading__title {
  position: relative;
  font-family: var(--font-en);
  font-size: 6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--color-brown);
  text-align: center;
  line-height: 64px;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .wss-heading__title {
    font-size: 4rem;
    line-height: 1;
  }
}
.wss-content {
  background-color: var(--color-bg);
  padding: 100px 40px 140px;
}
@media screen and (max-width: 767px) {
  .wss-content {
    padding: 50px 20px 100px;
  }
}
.wss-content__inner {
  max-width: 800px;
  margin-inline: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 70px;
}
.works-single {
  display: flex;
  flex-direction: column;
  gap: 70px;
}
@media screen and (max-width: 767px) {
  .works-single {
    gap: 50px;
  }
}
.works-single__outline {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media screen and (max-width: 767px) {
  .works-single__outline {
    gap: 30px;
  }
}
.works-single__cover {
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .works-single__cover {
    border-radius: 5px;
  }
}
.works-single__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.works-single__heading {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .works-single__heading {
    gap: 15px;
  }
}
.works-single__title {
  font-family: var(--font-ja);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--color-brown);
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .works-single__title {
    font-size: 1.5rem;
  }
}
.works-single__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
}
.works-single__tag {
  display: inline-flex;
  align-items: center;
  background-color: var(--color-white);
  font-family: var(--font-ja);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--color-brown);
  padding: 4px 10px;
  border-radius: 14px;
  line-height: 1;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .works-single__tag {
    font-size: 1.2rem;
    padding: 3px 10px;
  }
}
.works-single__desc {
  font-family: var(--font-ja);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--color-brown);
  line-height: 24px;
}
@media screen and (max-width: 767px) {
  .works-single__desc {
    font-size: 1.3rem;
    line-height: 23px;
  }
}
.works-single__data {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.works-single__data-label {
  font-family: var(--font-en);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--color-brown);
  line-height: 24px;
}
.works-single__data-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}
.works-single__data-list li {
  font-family: var(--font-ja);
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--color-brown);
  line-height: 24px;
}
@media screen and (max-width: 767px) {
  .works-single__data-list li {
    font-size: 1.2rem;
    line-height: 22px;
  }
}
.works-single__body {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .works-single__body {
    gap: 30px;
  }
}
.works-single__body img {
  width: 100%;
  height: auto;
  display: block;
}
.works-single__body-img {
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .works-single__body-img {
    border-radius: 5px;
  }
}
.works-single__body-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.works-single__body-h {
  font-family: var(--font-ja);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--color-brown);
  line-height: 24px;
}
@media screen and (max-width: 767px) {
  .works-single__body-h {
    font-size: 1.4rem;
  }
}
.works-single__body-p {
  font-family: var(--font-ja);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--color-brown);
  line-height: 24px;
}
@media screen and (max-width: 767px) {
  .works-single__body-p {
    font-size: 1.3rem;
    line-height: 23px;
  }
}
.wss-other {
  position: relative;
  background-color: var(--color-bg-light);
  padding: 100px 40px 140px;
}
@media screen and (max-width: 767px) {
  .wss-other {
    padding: 40px 20px 100px;
  }
}
.wss-other__inner {
  max-width: 1100px;
  margin-inline: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 70px;
}
@media screen and (max-width: 767px) {
  .wss-other__inner {
    gap: 50px;
  }
}
.wss-other__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.wss-other__title {
  font-family: var(--font-en);
  font-size: 5rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--color-brown);
  line-height: 64px;
}
@media screen and (max-width: 767px) {
  .wss-other__title {
    font-size: 3.5rem;
    line-height: 1;
  }
}
.wss-other__subtitle {
  font-family: var(--font-ja);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--color-brown);
  line-height: 32px;
}
@media screen and (max-width: 767px) {
  .wss-other__subtitle {
    font-size: 1.4rem;
    line-height: 1;
  }
}
.wss-other__cta {
  display: flex;
  justify-content: center;
}
.lg-heading {
  background-color: var(--color-bg);
  padding-top: 250px;
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  .lg-heading {
    padding-top: 200px;
  }
}
@media screen and (max-width: 767px) {
  .lg-heading {
    padding-top: 120px;
  }
}
.lg-heading__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  padding-inline: 40px;
}
@media screen and (max-width: 767px) {
  .lg-heading__inner {
    gap: 30px;
    padding-inline: 20px;
  }
}
.lg-heading__title-wrap {
  position: relative;
  padding-inline: 20px;
}
.lg-heading__title-wrap::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 25px;
  background-image: url("../img/bg_dot_white.png");
  background-repeat: repeat;
  background-size: 14px 14px;
  pointer-events: none;
}
.lg-heading__title {
  position: relative;
  font-family: var(--font-en);
  font-size: 6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--color-brown);
  text-align: center;
  line-height: 64px;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .lg-heading__title {
    font-size: 4rem;
    line-height: 1;
  }
}
.lg-heading__lead {
  font-family: var(--font-ja);
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-brown);
  line-height: 34px;
  text-align: center;
  max-width: 1100px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .lg-heading__lead {
    font-size: 1.4rem;
    line-height: 28px;
  }
}
.lg-main {
  background-color: var(--color-bg);
  padding: 100px 40px 140px;
}
@media screen and (max-width: 767px) {
  .lg-main {
    padding: 50px 20px 100px;
  }
}
.lg-main__inner {
  max-width: 1100px;
  margin-inline: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 70px;
}
@media screen and (max-width: 767px) {
  .lg-main__inner {
    gap: 40px;
  }
}
.lg-main .log__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 100px;
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  .lg-main .log__cards {
    gap: 50px 40px;
  }
}
@media screen and (max-width: 767px) {
  .lg-main .log__cards {
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 600px;
    margin-inline: auto;
  }
}
.lg-main .log__card {
  width: 100%;
  max-width: none;
}
.lg-main .log__card-img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
}
@media screen and (max-width: 767px) {
  .lg-main .log__card-img {
    width: 100px;
    height: 100px;
    aspect-ratio: unset;
  }
}
.lgs-heading {
  background-color: var(--color-bg);
  padding-top: 250px;
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  .lgs-heading {
    padding-top: 200px;
  }
}
@media screen and (max-width: 767px) {
  .lgs-heading {
    padding-top: 120px;
  }
}
.lgs-heading__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-inline: 40px;
}
@media screen and (max-width: 767px) {
  .lgs-heading__inner {
    padding-inline: 20px;
  }
}
.lgs-heading__title-wrap {
  position: relative;
  padding-inline: 20px;
}
.lgs-heading__title-wrap::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 25px;
  background-image: url("../img/bg_dot_white.png");
  background-repeat: repeat;
  background-size: 14px 14px;
  pointer-events: none;
}
.lgs-heading__title {
  position: relative;
  font-family: var(--font-en);
  font-size: 6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--color-brown);
  text-align: center;
  line-height: 64px;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .lgs-heading__title {
    font-size: 4rem;
    line-height: 1;
  }
}
.lgs-content {
  background-color: var(--color-bg);
  padding: 100px 40px 140px;
}
@media screen and (max-width: 767px) {
  .lgs-content {
    padding: 50px 20px 100px;
  }
}
.lgs-content__inner {
  max-width: 800px;
  margin-inline: auto;
  width: 100%;
}
.lgs-article {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media screen and (max-width: 767px) {
  .lgs-article {
    gap: 30px;
  }
}
.lgs-article__heading {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .lgs-article__heading {
    gap: 15px;
  }
}
.lgs-article__meta {
  display: flex;
  align-items: baseline;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .lgs-article__meta {
    gap: 20px;
  }
}
.lgs-article__date {
  font-family: var(--font-en);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--color-brown);
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .lgs-article__date {
    font-size: 1.3rem;
  }
}
.lgs-article__tag {
  font-family: var(--font-ja);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--color-brown);
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .lgs-article__tag {
    font-size: 1.2rem;
  }
}
.lgs-article__title {
  font-family: var(--font-ja);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--color-brown);
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .lgs-article__title {
    font-size: 1.5rem;
  }
}
.lgs-article__cover {
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .lgs-article__cover {
    border-radius: 5px;
  }
}
.lgs-article__cover img {
  display: block;
  width: 100%;
  height: auto;
}
.lgs-article__body {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.lgs-article__text {
  font-family: var(--font-ja);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--color-brown);
  line-height: 24px;
}
@media screen and (max-width: 767px) {
  .lgs-article__text {
    font-size: 1.3rem;
    line-height: 23px;
  }
}
.lgs-article__link {
  font-family: var(--font-ja);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--color-brown);
  line-height: 24px;
  text-decoration: underline;
  text-decoration-color: var(--color-accent);
  text-decoration-thickness: 2px;
  transition: opacity var(--transition-base);
}
.lgs-article__link:hover {
  opacity: 0.7;
}
.lgs-article__body a {
  font-family: var(--font-ja);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--color-brown);
  line-height: 24px;
  text-decoration: underline;
  text-decoration-color: var(--color-accent);
  text-decoration-thickness: 2px;
  transition: opacity var(--transition-base);
}
.lgs-article__body a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .lgs-article__link {
    font-size: 1.3rem;
    line-height: 23px;
    text-decoration-thickness: 1px;
  }
}
.lgs-archive {
  position: relative;
  background-color: var(--color-bg-light);
  padding: 100px 40px 140px;
}
@media screen and (max-width: 767px) {
  .lgs-archive {
    padding: 40px 20px 100px;
  }
}
.lgs-archive__inner {
  max-width: 1100px;
  margin-inline: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 70px;
}
@media screen and (max-width: 767px) {
  .lgs-archive__inner {
    gap: 50px;
  }
}
.lgs-archive__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.lgs-archive__title {
  font-family: var(--font-en);
  font-size: 5rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--color-brown);
  line-height: 64px;
}
@media screen and (max-width: 767px) {
  .lgs-archive__title {
    font-size: 3.5rem;
    line-height: 1;
  }
}
.lgs-archive__subtitle {
  font-family: var(--font-ja);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--color-brown);
  line-height: 32px;
}
@media screen and (max-width: 767px) {
  .lgs-archive__subtitle {
    font-size: 1.4rem;
    line-height: 1;
  }
}
.lgs-archive__cta {
  display: flex;
  justify-content: center;
}
.lgs-archive .log__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 100px;
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  .lgs-archive .log__cards {
    gap: 50px 40px;
  }
}
@media screen and (max-width: 767px) {
  .lgs-archive .log__cards {
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 600px;
    margin-inline: auto;
  }
}
.lgs-archive .log__card {
  width: 100%;
  max-width: none;
}
.lgs-archive .log__card-img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
}
@media screen and (max-width: 767px) {
  .lgs-archive .log__card-img {
    width: 100px;
    height: 100px;
    aspect-ratio: unset;
  }
}
.ctr-heading {
  background-color: var(--color-bg);
  padding-top: 250px;
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  .ctr-heading {
    padding-top: 200px;
  }
}
@media screen and (max-width: 767px) {
  .ctr-heading {
    padding-top: 120px;
  }
}
.ctr-heading__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  padding-inline: 40px;
}
@media screen and (max-width: 767px) {
  .ctr-heading__inner {
    gap: 30px;
    padding-inline: 20px;
  }
}
.ctr-heading__title-wrap {
  position: relative;
  padding-inline: 20px;
}
.ctr-heading__title-wrap::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 25px;
  background-image: url("../img/bg_dot_white.png");
  background-repeat: repeat;
  background-size: 14px 14px;
  pointer-events: none;
}
.ctr-heading__title {
  position: relative;
  font-family: var(--font-en);
  font-size: 6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--color-brown);
  text-align: center;
  line-height: 64px;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .ctr-heading__title {
    font-size: 4rem;
    line-height: 1;
  }
}
.ctr-heading__lead {
  font-family: var(--font-ja);
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-brown);
  line-height: 34px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .ctr-heading__lead {
    font-size: 1.4rem;
    line-height: 28px;
  }
}
.ctr-form {
  background-color: var(--color-bg);
  padding: 100px 40px 140px;
}
@media screen and (max-width: 767px) {
  .ctr-form {
    padding: 50px 20px 100px;
  }
}
.ctr-form__inner {
  max-width: 600px;
  margin-inline: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.ctr-form__form {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.ctr-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ctr-field__label-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ctr-field__label {
  font-family: var(--font-ja);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--color-brown);
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .ctr-field__label {
    font-size: 1.4rem;
  }
}
.ctr-field__required {
  display: inline-flex;
  align-items: center;
  background-color: var(--color-accent);
  font-family: var(--font-ja);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--color-brown);
  padding: 2px 6px;
  border-radius: 4px;
  line-height: 14px;
  white-space: nowrap;
  flex-shrink: 0;
}
.ctr-field__optional {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--color-brown);
  font-family: var(--font-ja);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--color-brown);
  padding: 2px 6px;
  border-radius: 4px;
  line-height: 14px;
  white-space: nowrap;
  flex-shrink: 0;
}
.ctr-input,
.ctr-select,
.ctr-textarea {
  width: 100%;
  background-color: var(--color-white);
  border: 2px solid rgba(0, 0, 0, 0);
  border-radius: 5px;
  padding: 10px;
  font-family: var(--font-ja);
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--color-brown);
  appearance: none;
  outline: none;
  transition: border-color var(--transition-base);
}
.ctr-input::placeholder,
.ctr-select::placeholder,
.ctr-textarea::placeholder {
  color: color-mix(in srgb, var(--color-brown) 50%, transparent);
}
.ctr-input:focus,
.ctr-select:focus,
.ctr-textarea:focus {
  border-color: var(--color-accent);
}
@media screen and (max-width: 767px) {
  .ctr-input,
  .ctr-select,
  .ctr-textarea {
    font-size: 1.4rem;
  }
}
.ctr-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23362a2e' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
}
.ctr-textarea {
  height: 150px;
  resize: vertical;
  line-height: 1.8;
}
.ctr-privacy {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.ctr-privacy__checkbox {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  accent-color: var(--color-brown);
  flex-shrink: 0;
  cursor: pointer;
}
.ctr-privacy__text {
  font-family: var(--font-ja);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--color-brown);
  line-height: 24px;
}
@media screen and (max-width: 767px) {
  .ctr-privacy__text {
    font-size: 1.3rem;
  }
}
.ctr-privacy__link {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: var(--color-accent);
  transition: opacity var(--transition-base);
}
.ctr-privacy__link:hover {
  opacity: 0.7;
}
.ctr-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-brown);
  font-family: var(--font-ja);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-bg);
  padding: 10px 30px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  box-shadow: 4px 4px 0 var(--color-accent);
  transition: opacity var(--transition-base);
  white-space: nowrap;
}
.ctr-btn:hover {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  .ctr-btn {
    font-size: 1.6rem;
    padding: 10px 24px;
  }
}
:root {
  --color-bg: #e1dbd3;
  --color-bg-light: #ede9e5;
  --color-brown: #362a2e;
  --color-accent: #ccff33;
  --color-terracotta: #d4552a;
  --color-white: #ffffff;
  --font-ja: "Zen Kaku Gothic New", sans-serif;
  --font-en: "Outfit", sans-serif;
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 64px;
  --space-2xl: 96px;
  --space-3xl: 128px;
  --transition-base: 0.3s ease;
  --transition-slow: 0.6s ease;
}
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.ctr-form__form .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 select,
.wpcf7 textarea {
  width: 100%;
  background-color: var(--color-white);
  border: 2px solid rgba(0, 0, 0, 0);
  border-radius: 5px;
  padding: 10px;
  font-family: var(--font-ja);
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--color-brown);
  appearance: none;
  outline: none;
  transition: border-color var(--transition-base);
}
.wpcf7 input[type="text"]::placeholder,
.wpcf7 input[type="email"]::placeholder,
.wpcf7 textarea::placeholder {
  color: color-mix(in srgb, var(--color-brown) 50%, transparent);
}
.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
  border-color: var(--color-accent);
}
.wpcf7 select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23362a2e' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
}
.wpcf7 textarea {
  height: 150px;
  resize: vertical;
  line-height: 1.8;
}
.wpcf7 input[type="submit"],
.wpcf7-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-brown);
  font-family: var(--font-ja);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-bg);
  padding: 10px 30px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  box-shadow: 4px 4px 0 var(--color-accent);
  transition: opacity var(--transition-base);
  white-space: nowrap;
}
.wpcf7 input[type="submit"]:hover,
.wpcf7-submit:hover {
  opacity: 0.8;
}
.wpcf7-acceptance {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.wpcf7-acceptance input[type="checkbox"] {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  accent-color: var(--color-brown);
  flex-shrink: 0;
  cursor: pointer;
}
.wpcf7-acceptance .wpcf7-list-item-label {
  font-family: var(--font-ja);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--color-brown);
  line-height: 24px;
}
.wpcf7-acceptance .wpcf7-list-item-label a {
  color: inherit;
  transition: opacity var(--transition-base);
}
.wpcf7-acceptance .wpcf7-list-item-label a:hover {
  opacity: 0.7;
}
.wpcf7-form-control-wrap {
  display: block;
}
.wpcf7-not-valid-tip {
  display: block;
  font-family: var(--font-ja);
  font-size: 1.2rem;
  color: var(--color-terracotta);
  margin-top: 5px;
}
.wpcf7 .wpcf7-response-output {
  font-family: var(--font-ja);
  font-size: 1.4rem;
  margin-top: 20px;
  padding: 10px;
  border-radius: 5px;
}
@media screen and (max-width: 767px) {
  .wpcf7 input[type="text"],
  .wpcf7 input[type="email"],
  .wpcf7 select,
  .wpcf7 textarea {
    font-size: 1.4rem;
  }
  .wpcf7 input[type="submit"] {
    font-size: 1.6rem;
    padding: 10px 24px;
  }
  .wpcf7-acceptance .wpcf7-list-item-label {
    font-size: 1.3rem;
  }
}
.ctr-form__form br {
  display: none;
}
.wpcf7-acceptance .wpcf7-list-item {
  margin-left: 0;
}
@media screen and (max-width: 767px) {
}
.ctr-submit {
  display: block;
  width: 100%;
}
.ctr-submit p {
  display: block;
  width: 100%;
  margin: 0;
}
.ctr-submit .wpcf7-form-control,
.ctr-submit .wpcf7-submit {
  display: block;
  width: 100%;
  box-sizing: border-box;
}
.service__title a,
.works__title a,
.about__title a,
.log__title a,
.lgs-archive__title a,
.wss-other__title a {
  color: inherit;
  text-decoration: none;
}
.service__title a:hover,
.works__title a:hover,
.about__title a:hover,
.log__title a:hover,
.lgs-archive__title a:hover,
.wss-other__title a:hover {
  opacity: 0.7;
}
a,
button,
[role="button"],
input[type="submit"],
input[type="button"],
input[type="reset"],
label[for],
select,
.wpcf7-submit {
  cursor: pointer;
}
.p404 {
  min-height: 70vh;
  padding-bottom: 140px;
}
.p404__inner {
  padding: 40px 20px;
}
.p404__code {
  font-size: clamp(6rem, 20vw, 12rem);
  font-family: var(--font-en);
  font-weight: 600;
  color: var(--color-brown);
  line-height: 1;
  margin-bottom: 24px;
}
.p404__title {
  font-family: var(--font-en);
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 500;
  color: var(--color-brown);
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}
.p404__text {
  font-family: var(--font-ja);
  font-size: 1.5rem;
  color: var(--color-brown);
  line-height: 1.8;
  margin-bottom: 40px;
}
.p404__btn {
  display: inline-block;
  padding: 16px 40px;
  border-radius: 100px;
  background-color: var(--color-brown);
  color: var(--color-white);
  font-family: var(--font-ja);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: opacity var(--transition-base);
}
.p404__btn:hover {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  .p404 {
    padding-bottom: 100px;
  }
}
.works-single__body a {
  font-family: var(--font-ja);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--color-brown);
  line-height: 24px;
  text-decoration: underline;
  text-decoration-color: var(--color-accent);
  text-decoration-thickness: 2px;
  transition: opacity var(--transition-base);
}
.works-single__body a:hover {
  opacity: 0.7;
}
.p-page {
  padding-top: 180px;
  padding-bottom: 140px;
}
.p-page__inner {
  max-width: 800px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 40px);
}
.p-page__title {
  margin-bottom: 40px;
  font-family: var(--font-ja);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--color-brown);
}
.p-page__content {
  line-height: 2;
  font-family: var(--font-ja);
  color: var(--color-brown);
}
.p-page__content h2 {
  font-family: var(--font-ja);
  font-size: 1.8rem;
  font-weight: 700;
  margin-block: 40px 16px;
}
.p-page__content p {
  margin-bottom: 16px;
}
.p-page__content a {
  color: var(--color-brown);
  text-decoration: underline;
  text-decoration-color: var(--color-accent);
  text-decoration-thickness: 2px;
  transition: opacity var(--transition-base);
}
.p-page__content a:hover {
  opacity: 0.7;
}
.footer__copyright {
  color: var(--color-bg);
  font-size: 1.2rem;
  text-align: center;
}
.footer__copyright {
  padding-bottom: 1em;
}
@media screen and (max-width: 767px) {
  .footer__copyright {
    font-size: 1rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  .p-page {
    padding-top: 150px;
  }
}
@media screen and (max-width: 767px) {
  .p-page {
    padding-top: 100px;
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 767px) {
  .p-page__content h2 {
    font-size: 1.4rem;
  }
}
