@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Aboreto&family=Noto+Sans+JP:wght@400;500;700&family=Noto+Serif+JP:wght@400;500;700&family=Roboto+Serif:wght@400;500;700&family=Zen+Kaku+Gothic+New:wght@400;500;700&display=swap");
:root {
  --color-pink: #d8c5c1;
  --color-light-pink: rgba(216, 197, 193, 0.5);
  --color-gray: #f2f2f2;
  --color-light-gray: #fafafa;
  --color-white: #ffffff;
  --color-beige: #D9D5D2;
  --color-light-brown: #bfb2aa;
  --color-brown: #8f7d76;
  --color-black: #515151;
  --content-width: 1200px;
  --content-width-medium: 1040px;
  --content-width-small: 980px;
  --font-primary: "Zen Kaku Gothic New", sans-serif;
  --font-aboreto: "Aboreto", system-ui;
  --font-serif: "Noto Serif JP", serif;
  --font-roboto: "Roboto Serif", serif;
}

/* ボックスサイズ初期化 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* html / body 初期化 */
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  color: #000;
  background: #fff;
  margin: 0;
  padding: 0;
}

/* 各要素の余白をリセット */
body,
h1, h2, h3, h4, h5, h6,
p, ul, ol, li,
figure, blockquote, dl, dd {
  margin: 0;
  padding: 0;
}

/* テキスト要素のフォント系リセット */
address, caption, cite, code, dfn, em, strong, th, var {
  font-style: normal;
  font-weight: normal;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}

/* リストのデフォルトスタイルを削除 */
ul, ol {
  list-style: none;
}

/* テーブルの見た目を初期化 */
table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

/* フォーム要素をフラットに＆継承設定 */
input,
textarea,
select,
button {
  font: inherit;
  color: inherit;
  background: transparent;
  border: none;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}

/* テキストエリアは縦リサイズ可 */
textarea {
  resize: vertical;
  display: block;
}

/* チェックボックスやラジオボタンはデザイン前提で非表示に */
input[type=checkbox],
input[type=radio] {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}

/* 操作可能な要素にカーソル */
button,
label,
select,
input[type=submit],
input[type=button] {
  cursor: pointer;
}

/* select の三角形を非表示（モダンブラウザ） */
select::-ms-expand {
  display: none;
}

/* aタグの初期スタイルを削除 */
a {
  text-decoration: none;
  color: inherit;
}

/* imgタグの余白・幅の制御 */
img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* SVGもblockで扱いやすく */
svg {
  display: block;
}

/* mainタグをblockに（IE対応不要なら削除してOK） */
main {
  display: block;
}

/* なめらかなフォント表示（Mac用） */
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html.is-visited .loading {
  display: none;
}

body {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.03em;
  color: var(--color-black);
  background-color: var(--color-white);
}
@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
  }
}

a[href^="tel:"] {
  pointer-events: auto;
}
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

.loading {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: var(--color-light-brown);
  opacity: 1;
  visibility: visible;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.loading.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loading__inner {
  display: flex;
  flex-direction: column;
  gap: 55px;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .loading__inner {
    gap: 40px;
  }
}

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

.loading__dot {
  width: 29px;
  height: 29px;
  margin: 0 16px;
  background-color: var(--color-white);
  border-radius: 50%;
  animation: dot-pulse 1.5s ease-in-out infinite;
}
.loading__dot:nth-child(1) {
  animation-delay: 0s;
}
.loading__dot:nth-child(2) {
  animation-delay: 0.2s;
}
.loading__dot:nth-child(3) {
  animation-delay: 0.4s;
}
@media screen and (max-width: 768px) {
  .loading__dot {
    width: 12px;
    height: 12px;
    margin: 0 6px;
  }
}

@keyframes dot-pulse {
  0%, 100% {
    transform: scale(0.7);
    opacity: 0.7;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
}
.sns__list {
  display: flex;
  align-items: center;
  gap: 30px;
}

.sns__link {
  display: block;
  width: 30px;
  transition: transform 0.3s ease;
}
.sns__link:hover {
  transform: scale(1.1);
}

.section-title {
  font-family: var(--font-aboreto);
  font-size: 54px;
  line-height: 1.5;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .section-title {
    font-size: 34px;
  }
}

.work-card {
  width: 100%;
  max-width: 400px;
  padding: 20px;
  background-color: var(--color-white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .work-card {
    padding: 20px;
    gap: 24px;
  }
}

.work-card__img {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.work-card__img img {
  object-fit: cover;
  aspect-ratio: 280/180;
}

.work-card__body {
  font-family: var(--font-serif);
}

.work-card__category {
  width: fit-content;
  display: block;
  padding: 4px 20px;
  border-radius: 20px;
  background-color: var(--color-pink);
  display: grid;
  place-items: center;
  font-weight: 600;
}

.work-card__title {
  margin-top: 16px;
  padding-left: 16px;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .work-card__title {
    font-size: 18px;
  }
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  height: 45px;
  padding: 6px 20px;
  background-color: var(--color-pink);
  border: 1px solid var(--color-pink);
  transition: all 0.4s;
}
.button:hover {
  color: var(--color-pink);
  background-color: var(--color-white);
}

.cta {
  background-color: var(--color-gray);
}

.cta__boxes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media screen and (max-width: 1023px) {
  .cta__boxes {
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
  }
}

.cta__box {
  background-color: var(--color-white);
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
@media screen and (max-width: 540px) {
  .cta__box {
    padding-inline: 20px;
  }
}

.cta__box-head {
  font-family: var(--font-aboreto);
  font-size: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.cta__box-head::before, .cta__box-head::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--color-pink);
}
@media screen and (max-width: 768px) {
  .cta__box-head {
    font-size: 22px;
  }
}

.cta__box-title {
  margin-top: 4px;
  text-align: center;
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .cta__box-title {
    font-size: 20px;
  }
}

.cta__box-text {
  margin-top: 16px;
  text-align: center;
}

.cta__box-button {
  margin-top: 16px;
  width: 100%;
  height: 60px;
  display: grid;
  place-items: center;
  background-color: var(--color-white);
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}
.cta__box-button:hover {
  transform: translateY(-4px);
  background-color: #f7f2ef;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.page-kv {
  width: 100%;
  height: 380px;
  display: grid;
  place-items: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .page-kv {
    height: 240px;
  }
}

.page-kv__img {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.page-kv__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom center;
}

.page-title {
  position: relative;
  z-index: 5;
  font-family: var(--font-aboreto);
  color: var(--color-white);
  font-size: 64px;
}
@media screen and (max-width: 768px) {
  .page-title {
    font-size: 40px;
  }
}

.header {
  position: fixed;
  inset: 0;
  height: 75px;
  width: 100%;
  background-color: var(--color-light-brown);
  z-index: 100;
}
@media screen and (max-width: 1023px) {
  .header {
    height: 60px;
  }
}

.header__inner {
  padding-inline: 30px;
  max-width: calc(var(--content-width) + 60px);
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .header__inner {
    padding-inline: 20px;
  }
}

.header__logo {
  width: 100px;
}

.header__logo-img {
  aspect-ratio: 100/57;
}

.header__icon {
  display: none;
}
@media screen and (max-width: 1023px) {
  .header__icon {
    display: block;
    width: 38px;
    height: 26px;
    position: relative;
  }
  .header__icon.is-checked .header__icon-bar:nth-child(1) {
    top: 12px;
    transform: rotate(45deg);
  }
  .header__icon.is-checked .header__icon-bar:nth-child(2) {
    display: none;
  }
  .header__icon.is-checked .header__icon-bar:nth-child(3) {
    top: 12px;
    transform: rotate(-45deg);
  }
}

.header__icon-bar {
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-black);
  transition: transform 0.3s ease;
}
.header__icon-bar:nth-child(1) {
  top: 0;
}
.header__icon-bar:nth-child(2) {
  top: 12px;
}
.header__icon-bar:nth-child(3) {
  top: 24px;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 48px;
}
@media screen and (max-width: 1280px) {
  .header__nav {
    gap: 40px;
  }
}
@media screen and (max-width: 1023px) {
  .header__nav {
    position: fixed;
    padding: 80px 40px;
    right: 0;
    top: 60px;
    width: 100%;
    height: calc(100% - 60px);
    background-color: var(--color-light-brown);
    flex-direction: column;
    overflow-y: scroll;
    transform: translateX(100%);
    transition: transform 0.4s ease;
  }
  .header__nav.is-checked {
    transform: translateX(0);
  }
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 1023px) {
  .header__nav-list {
    flex-direction: column;
    gap: 24px;
  }
}

.header__nav-link {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: color 0.3s, opacity 0.3s;
}
@media screen and (max-width: 1280px) {
  .header__nav-link {
    font-size: 18px;
  }
}
.header__nav-link:hover {
  color: var(--color-white);
  opacity: 0.8;
}

.footer {
  padding-block: 30px;
  background-color: var(--color-light-brown);
}

.footer__inner {
  padding-inline: 30px;
  max-width: calc(var(--content-width) + 60px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}
@media screen and (max-width: 768px) {
  .footer__inner {
    padding-inline: 20px;
    max-width: 100%;
  }
}

.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid;
}
@media screen and (max-width: 1023px) {
  .footer__top {
    display: flex;
    align-items: start;
    flex-direction: column;
    gap: 24px;
  }
}

.footer__logo {
  width: 100px;
}
.footer__logo img {
  aspect-ratio: 100/57;
}

.footer__nav {
  display: flex;
  align-items: center;
  gap: 60px;
}
@media screen and (max-width: 1280px) {
  .footer__nav {
    gap: 40px;
  }
}
@media screen and (max-width: 1023px) {
  .footer__nav {
    flex-direction: column;
    align-items: start;
    gap: 10px;
  }
}

.footer__nav-list {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .footer__nav-list {
    flex-wrap: wrap;
    column-gap: 36px;
    row-gap: 20px;
  }
}
@media screen and (max-width: 540px) {
  .footer__nav-list {
    column-gap: 32px;
    row-gap: 16px;
  }
}

.footer__nav-link {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: color 0.3s, opacity 0.3s;
}
@media screen and (max-width: 1280px) {
  .footer__nav-link {
    font-size: 18px;
  }
}
@media screen and (max-width: 1023px) {
  .footer__nav-link {
    font-size: 16px;
  }
}
.footer__nav-link:hover {
  color: var(--color-white);
  opacity: 0.8;
}

.footer__bottom {
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__copyright {
  font-weight: 500;
}

.inner {
  padding-inline: 30px;
  margin-inline: auto;
  width: 100%;
  max-width: var(--content-width);
}
@media screen and (max-width: 768px) {
  .inner {
    padding-inline: 20px;
  }
}

.inner-m {
  padding-inline: 30px;
  margin-inline: auto;
  width: 100%;
  max-width: var(--content-width-medium);
}
@media screen and (max-width: 768px) {
  .inner-m {
    padding-inline: 20px;
  }
}

.inner-s {
  padding-inline: 30px;
  margin-inline: auto;
  width: 100%;
  max-width: var(--content-width-small);
}
@media screen and (max-width: 768px) {
  .inner-s {
    padding-inline: 20px;
  }
}

@media screen and (max-width: 768px) {
  .inner-nolimit {
    max-width: none;
  }
}

.page {
  padding-top: 75px;
}
@media screen and (max-width: 1023px) {
  .page {
    padding-top: 60px;
  }
}

.t-fv {
  min-height: 100svh;
  background: url("../images/top/fv.webp") no-repeat bottom center/cover;
}
@media screen and (max-width: 768px) {
  .t-fv {
    background-position: bottom right;
    position: relative;
  }
  .t-fv::after {
    content: "";
    position: absolute;
    inset: 0;
    background-color: var(--color-white);
    opacity: 0.4;
    z-index: 0;
  }
}
@media screen and (max-width: 540px) {
  .t-fv {
    background-image: url("../images/top/fv-sp.webp");
  }
}

.t-fv__inner {
  min-height: 100svh;
  position: relative;
  padding-inline: 30px;
  max-width: calc(var(--content-width) + 60px);
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .t-fv__inner {
    padding-inline: 20px;
    z-index: 5;
  }
}

.t-fv__content {
  position: absolute;
  left: 30px;
  inset-block: 0;
  margin-block: auto;
  height: -moz-fit-content;
  height: fit-content;
}
@media screen and (max-width: 768px) {
  .t-fv__content {
    left: 20px;
  }
}
@media screen and (max-width: 540px) {
  .t-fv__content {
    padding-block: 100px 80px;
    margin-block: 0;
  }
}

.t-fv__lead {
  font-family: var(--font-serif);
  font-size: 44px;
  letter-spacing: 0.03em;
  padding-bottom: 20px;
  position: relative;
}
.t-fv__lead::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 240px;
  height: 1px;
  background-color: var(--color-brown);
}
@media screen and (max-width: 1023px) {
  .t-fv__lead {
    font-size: 32px;
  }
}
@media screen and (max-width: 768px) {
  .t-fv__lead {
    font-size: 30px;
  }
}
@media screen and (max-width: 540px) {
  .t-fv__lead {
    padding-bottom: 16px;
    font-size: 24px;
  }
}

.t-fv__text {
  margin-top: 20px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 2;
}
@media screen and (max-width: 1023px) {
  .t-fv__text {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .t-fv__text {
    font-size: 14px;
  }
}
@media screen and (max-width: 540px) {
  .t-fv__text {
    margin-top: 16px;
  }
}

.t-fv__button {
  margin-top: 60px;
  padding: 16px 24px;
  max-width: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border: 1px solid;
  font-weight: 500;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.t-fv__button svg {
  transition: transform 0.3s ease;
}
.t-fv__button:hover {
  background-color: rgba(216, 197, 193, 0.18);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
}
.t-fv__button:hover svg {
  transform: translateX(12px);
}
@media screen and (max-width: 1023px) {
  .t-fv__button {
    max-width: 280px;
  }
}
@media screen and (max-width: 540px) {
  .t-fv__button {
    margin-top: 200px;
    background-color: rgba(255, 255, 255, 0.3);
  }
}

.t-concept {
  position: relative;
}
.t-concept::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 34%;
  height: 100%;
  background-color: var(--color-brown);
  z-index: 0;
}
@media screen and (max-width: 1023px) {
  .t-concept {
    background: linear-gradient(to right, #ffffff, #d0c7c4);
  }
  .t-concept::after {
    display: none;
  }
}

.t-concept__inner {
  position: relative;
  z-index: 5;
}

.t-concept__content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6%;
}
@media screen and (max-width: 1023px) {
  .t-concept__content {
    flex-direction: column-reverse;
    gap: 40px;
  }
}
@media screen and (max-width: 768px) {
  .t-concept__content {
    gap: 24px;
  }
}

.t-concept__body {
  width: 45%;
  flex-shrink: 0;
}
@media screen and (max-width: 1023px) {
  .t-concept__body {
    width: 100%;
  }
}

.t-concept-lead {
  font-family: var(--font-serif);
  font-size: 26px;
  line-height: 2;
  letter-spacing: 0;
}
.t-concept-lead span {
  display: block;
}
@media screen and (max-width: 768px) {
  .t-concept-lead {
    font-size: 20px;
    line-height: 2;
  }
}

.t-concept-message {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.t-concept-text {
  line-height: 1.6;
  letter-spacing: 0.05em;
}

.t-concept-button-wrapper {
  margin-top: 65px;
}
@media screen and (max-width: 1023px) {
  .t-concept-button-wrapper {
    margin-top: 40px;
  }
}

.t-concept__image {
  flex-grow: 1;
}
@media screen and (max-width: 1023px) {
  .t-concept__image {
    width: 100%;
  }
}

.t-service {
  background-color: var(--color-light-pink);
}

.t-service__cards {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .t-service__cards {
    gap: 24px;
  }
}

.t-service__card {
  min-height: 260px;
  padding: 40px 80px 40px 100px;
  background-color: var(--color-white);
  border-radius: 10px;
  box-shadow: 0 18px 40px rgba(86, 67, 58, 0.06);
  display: flex;
  align-items: center;
  gap: 8%;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .t-service__card {
    padding: 40px 40px 40px 60px;
    gap: 6%;
  }
}
@media screen and (max-width: 768px) {
  .t-service__card {
    padding: 60px 40px 40px;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}
@media screen and (max-width: 540px) {
  .t-service__card {
    padding-inline: 20px;
  }
}

.t-service__card-num {
  position: absolute;
  top: 10px;
  left: 10px;
  font-family: var(--font-serif);
  font-size: 80px;
  font-weight: 600;
  font-style: italic;
  line-height: 1;
  color: var(--color-light-pink);
  opacity: 0.6;
  z-index: 0;
}
@media screen and (max-width: 1023px) {
  .t-service__card-num {
    font-size: 60px;
  }
}

.t-service__card-icon,
.t-service__card-body {
  position: relative;
  z-index: 5;
}

.t-service__card-icon {
  width: 200px;
  aspect-ratio: 1/1;
  border-radius: 9999px;
  background: #f4efec;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  box-shadow: inset 0 0 0 1px rgba(172, 150, 140, 0.14), 0 10px 24px rgba(86, 67, 58, 0.08);
}
.t-service__card-icon img {
  width: 50%;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 1023px) {
  .t-service__card-icon {
    width: 20%;
  }
}
@media screen and (max-width: 768px) {
  .t-service__card-icon {
    width: 30%;
  }
}

.t-service__card-body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .t-service__card-body {
    align-items: center;
  }
}

.t-service__card-title {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .t-service__card-title {
    font-size: 20px;
  }
}

@media screen and (max-width: 768px) {
  .t-service__card-disc {
    max-width: 520px;
    margin-inline: auto;
  }
}

.t-works {
  background-color: var(--color-gray);
  text-align: center;
}

.t-works__inner {
  max-width: 1400px;
}

.swiper-slide {
  width: 31% !important;
  flex-shrink: 0;
  overflow: visible;
  opacity: 0.4;
  transform: scale(0.9) !important;
  transition: 1.5s;
  padding-inline: 15px;
}
@media screen and (max-width: 1280px) {
  .swiper-slide {
    width: 31%;
  }
}
@media screen and (max-width: 1023px) {
  .swiper-slide {
    width: 45%;
  }
}
@media screen and (max-width: 768px) {
  .swiper-slide {
    width: 71%;
  }
}
@media screen and (max-width: 540px) {
  .swiper-slide {
    width: 70% !important;
    min-width: 320px !important;
  }
}

.swiper-slide-active {
  opacity: 1;
  transform: scale(1) !important;
}

.t-message {
  background-color: var(--color-light-pink);
}

.t-message__list {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 1023px) {
  .t-message__list {
    gap: 40px;
  }
}

.t-message__item {
  display: flex;
  align-items: stretch;
  background-color: var(--color-white);
}
.t-message__item:nth-of-type(2) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 1023px) {
  .t-message__item {
    position: relative;
    display: grid;
    place-items: center;
    height: auto;
    padding: 20px;
  }
}
@media screen and (max-width: 540px) {
  .t-message__item {
    padding: 16px;
  }
}

.t-message__item-image {
  width: 50%;
  overflow: hidden;
}
.t-message__item-image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1023px) {
  .t-message__item-image {
    position: absolute;
    inset: 0;
    width: 100%;
    z-index: 1;
  }
}

.t-message__item-body {
  width: 50%;
  padding: 60px 40px;
}
@media screen and (max-width: 1023px) {
  .t-message__item-body {
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.85);
    position: relative;
    z-index: 5;
  }
}
@media screen and (max-width: 540px) {
  .t-message__item-body {
    padding: 40px 20px;
  }
}

.t-message__item-title {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--color-brown);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.t-message__item-title::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: var(--color-brown);
}
@media screen and (max-width: 768px) {
  .t-message__item-title {
    font-size: 20px;
  }
}

.t-message__item-text {
  margin-top: 24px;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 768px) {
  .t-message__item-text {
    margin-top: 16px;
  }
}

.a-about {
  position: relative;
  overflow: hidden;
}
.a-about::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -12%;
  width: 55%;
  aspect-ratio: 1/1;
  border-radius: 9999px;
  background-color: var(--color-light-pink);
  z-index: 1;
  opacity: 0.2;
}
@media screen and (max-width: 1280px) {
  .a-about::before {
    width: 58%;
    left: -15%;
  }
}
@media screen and (max-width: 1023px) {
  .a-about::before {
    width: 62%;
  }
}
@media screen and (max-width: 768px) {
  .a-about::before {
    display: none;
  }
}

.a-about__content {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 768px) {
  .a-about__content {
    margin-top: 10px;
    flex-direction: column-reverse;
    gap: 44px;
  }
}

@media screen and (max-width: 768px) {
  .a-about__body {
    width: 100%;
  }
}

.a-about__title {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 8px;
  font-family: var(--font-aboreto);
  font-size: 20px;
}
.a-about__title::after {
  content: "";
  margin-top: 4px;
  width: 80px;
  height: 1px;
  background-color: var(--color-brown);
}
@media screen and (max-width: 768px) {
  .a-about__title {
    font-size: 18px;
  }
}

.a-about__name {
  padding-left: 20px;
  font-family: var(--font-serif);
  font-size: 68px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.2;
}
@media screen and (max-width: 1280px) {
  .a-about__name {
    font-size: 48px;
  }
}
@media screen and (max-width: 1023px) {
  .a-about__name {
    font-size: 44px;
  }
}
@media screen and (max-width: 768px) {
  .a-about__name {
    padding-left: 14px;
    font-size: 38px;
  }
}

.a-about__message {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.a-about__lead {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 1023px) {
  .a-about__lead {
    font-size: 16px;
  }
}

.a-about__lead-2 {
  padding-left: 1.2rem;
}

.a-about__text {
  margin-top: 16px;
}

.a-about__img {
  width: 45%;
  flex-shrink: 0;
  padding-bottom: 20px;
  padding-right: 30px;
  position: relative;
  opacity: 0.85;
}
.a-about__img::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 90%;
  height: 90%;
  background-color: #a89283;
  opacity: 0.2;
  z-index: 1;
}
.a-about__img img {
  width: 100%;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 1023px) {
  .a-about__img {
    width: 42%;
  }
}
@media screen and (max-width: 768px) {
  .a-about__img {
    width: 100%;
    padding-bottom: 10px;
    padding-right: 10px;
  }
}

.a-profile {
  background-color: var(--color-light-gray);
}

.a-profile__content {
  margin-top: 20px;
  display: flex;
  align-items: stretch;
  gap: 8%;
}
@media screen and (max-width: 1023px) {
  .a-profile__content {
    gap: 5%;
  }
}
@media screen and (max-width: 768px) {
  .a-profile__content {
    flex-direction: column;
    align-items: center;
  }
}

.a-profile__left {
  width: 45%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: end;
  position: relative;
}
.a-profile__left::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 75%;
  height: 100%;
  background-color: rgba(166, 151, 146, 0.4);
  z-index: 0;
}
@media screen and (max-width: 1023px) {
  .a-profile__left {
    width: 40%;
  }
}
@media screen and (max-width: 768px) {
  .a-profile__left {
    width: 100%;
  }
}

.a-profile__img {
  width: 73%;
  position: relative;
  z-index: 5;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .a-profile__img {
    width: 100%;
  }
  .a-profile__img img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
  }
}

.a-profile__right {
  flex-grow: 1;
  padding-block: 60px;
}
@media screen and (max-width: 768px) {
  .a-profile__right {
    padding: 0;
    margin-top: 24px;
    width: 100%;
  }
}

.a-profile__name {
  font-family: var(--font-serif);
  color: var(--color-brown);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
@media screen and (max-width: 768px) {
  .a-profile__name {
    gap: 0;
  }
}

.a-profile__name-en {
  font-size: 32px;
}
@media screen and (max-width: 768px) {
  .a-profile__name-en {
    font-size: 28px;
  }
}

.a-profile__message {
  margin-top: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-light-brown);
}
@media screen and (max-width: 768px) {
  .a-profile__message {
    margin-top: 20px;
  }
}

.a-profile__list {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .a-profile__list {
    gap: 8px;
  }
}

.a-profile__item {
  padding: 4px 16px;
  border-radius: 30px;
  background-color: var(--color-light-brown);
  display: grid;
  place-items: center;
}
@media screen and (max-width: 768px) {
  .a-profile__item {
    padding-inline: 10px;
  }
}

.a-skill {
  background-color: var(--color-pink);
}

.a-skill__box {
  background-color: var(--color-white);
  padding: 72px;
}
@media screen and (max-width: 768px) {
  .a-skill__box {
    padding: 40px 20px;
  }
}

.a-skill__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 8%;
  row-gap: 40px;
}
@media screen and (max-width: 768px) {
  .a-skill__list {
    column-gap: 20px;
    row-gap: 32px;
  }
}
@media screen and (max-width: 540px) {
  .a-skill__list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.a-skill__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.a-skill__item-name {
  font-size: 18px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .a-skill__item-name {
    font-size: 14px;
  }
}

.a-skill__item-icon {
  width: 100px;
  aspect-ratio: 1/1;
  background-color: var(--color-pink);
  border-radius: 9999px;
  display: grid;
  place-items: center;
}
.a-skill__item-icon img {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .a-skill__item-icon {
    width: 80px;
  }
}

.a-skill__box-etc {
  margin-top: 32px;
  text-align: right;
  font-size: 20px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .a-skill__box-etc {
    margin-top: 6px;
    font-size: 18px;
  }
}

.a-vision__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: var(--font-serif);
}

.a-vision__head-jp {
  font-size: 38px;
}
@media screen and (max-width: 768px) {
  .a-vision__head-jp {
    font-size: 24px;
  }
}

.a-vision__head-en {
  font-weight: 600;
  color: var(--color-brown);
}

.a-vision__content {
  display: flex;
  align-items: center;
  gap: 8%;
}
@media screen and (max-width: 768px) {
  .a-vision__content {
    flex-direction: column-reverse;
    gap: 40px;
  }
}

.a-vision__message {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .a-vision__message {
    width: 100%;
  }
}

.a-vision__img {
  width: 38%;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .a-vision__img {
    width: 100%;
  }
}

.a-value {
  background: var(--color-light-gray);
}

.a-value__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: var(--font-serif);
}

.a-value__head-jp {
  font-size: 38px;
}
@media screen and (max-width: 768px) {
  .a-value__head-jp {
    font-size: 24px;
  }
}

.a-value__head-en {
  font-weight: 600;
  color: var(--color-brown);
}

.a-value__list {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 1023px) {
  .a-value__list {
    gap: 40px;
  }
}

.a-value__item {
  display: flex;
  align-items: stretch;
  background-color: var(--color-white);
}
.a-value__item:nth-of-type(2n) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 1023px) {
  .a-value__item {
    position: relative;
    display: grid;
    place-items: center;
    padding: 20px;
  }
}
@media screen and (max-width: 540px) {
  .a-value__item {
    padding: 16px;
  }
}

.a-value__item-img {
  width: 50%;
  flex-shrink: 0;
  overflow: hidden;
}
.a-value__item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 1023px) {
  .a-value__item-img {
    position: absolute;
    inset: 0;
    width: 100%;
    z-index: 1;
  }
}

.a-value__item-body {
  flex-grow: 1;
  padding: 56px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
@media screen and (max-width: 1023px) {
  .a-value__item-body {
    padding: 40px;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 5;
    gap: 24px;
  }
}
@media screen and (max-width: 540px) {
  .a-value__item-body {
    padding: 40px 20px;
  }
}

.a-value__item-title {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .a-value__item-title {
    font-size: 20px;
  }
}

.work__title {
  font-family: var(--font-serif);
  font-size: 32px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .work__title {
    font-size: 24px;
  }
}

.work__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 38px;
  row-gap: 54px;
}
@media screen and (max-width: 1023px) {
  .work__cards {
    grid-template-columns: repeat(2, 1fr);
    place-items: center;
    column-gap: 32px;
    row-gap: 40px;
  }
  .work__cards .work-card {
    max-width: 100%;
  }
}
@media screen and (max-width: 540px) {
  .work__cards {
    grid-template-columns: repeat(1, 1fr);
    gap: 32px;
  }
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.pagination-item {
  width: 30px;
  aspect-ratio: 1/1;
  background-color: var(--color-white);
  display: grid;
  place-items: center;
  border: 1px solid #b8b8b8;
  font-family: var(--font-serif);
}

.pagination-active {
  width: 30px;
  aspect-ratio: 1/1;
  background-color: var(--color-white);
  display: grid;
  place-items: center;
  border: 1px solid #b8b8b8;
  background-color: #b8b8b8;
  color: var(--color-white);
}

.pagination-prev {
  position: relative;
}
.pagination-prev::before {
  content: "";
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 6px;
  height: 6px;
  border-top: 1px solid var(--color-black);
  border-right: 1px solid var(--color-black);
  transform: rotate(-135deg);
}

.pagination-next {
  position: relative;
}
.pagination-next::before {
  content: "";
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 6px;
  height: 6px;
  border-top: 1px solid var(--color-black);
  border-right: 1px solid var(--color-black);
  transform: rotate(45deg);
}

.pagination-spacer {
  width: 30px;
  aspect-ratio: 1/1;
  display: block;
}

.w-single__head {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.w-single__category {
  width: fit-content;
  display: block;
  padding: 4px 20px;
  border-radius: 20px;
  background-color: var(--color-pink);
  display: grid;
  place-items: center;
  font-weight: 600;
}

.w-single__title {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .w-single__title {
    font-size: 22px;
  }
}
@media screen and (max-width: 540px) {
  .w-single__title {
    font-size: 20px;
  }
}

.w-single__img {
  margin-top: 40px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .w-single__img {
    margin-top: 24px;
  }
}

.w-single__info {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .w-single__info {
    margin-top: 24px;
  }
}

.w-single__info-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (max-width: 540px) {
  .w-single__info-list {
    gap: 16px;
  }
}

.w-single__info-item {
  display: flex;
  gap: 46px;
}
@media screen and (max-width: 540px) {
  .w-single__info-item {
    flex-direction: column;
    align-items: start;
    gap: 8px;
  }
}

.w-single__info-term {
  width: 15%;
  flex-shrink: 0;
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-brown);
}
@media screen and (max-width: 768px) {
  .w-single__info-term {
    font-size: 16px;
    width: auto;
    min-width: 100px;
  }
}
@media screen and (max-width: 540px) {
  .w-single__info-term {
    width: 100%;
    min-width: none;
  }
}

.w-single__info-desc {
  flex-grow: 1;
  font-family: var(--font-serif);
  font-weight: 600;
}

.w-single__info-url {
  text-decoration: underline;
}

.w-single__info-skills {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.w-single__pagination {
  margin-top: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .w-single__pagination {
    margin-top: 60px;
  }
}

.w-single__top {
  min-width: 220px;
  height: 30px;
  display: grid;
  place-items: center;
  background-color: var(--color-brown);
  color: var(--color-white);
}

.w-single__pagination-prev,
.w-single__pagination-next {
  width: 30px;
  aspect-ratio: 1/1;
  display: grid;
  place-items: center;
  border: 1px solid var(--color-brown);
}

.w-single__pagination-prev {
  position: relative;
}
.w-single__pagination-prev::before {
  content: "";
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 6px;
  height: 6px;
  border-top: 1px solid var(--color-black);
  border-right: 1px solid var(--color-black);
  transform: rotate(-135deg);
}

.w-single__pagination-next {
  position: relative;
}
.w-single__pagination-next::before {
  content: "";
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 6px;
  height: 6px;
  border-top: 1px solid var(--color-black);
  border-right: 1px solid var(--color-black);
  transform: rotate(45deg);
}

.w-single__pagination-spacer {
  width: 30px;
  aspect-ratio: 1/1;
  display: block;
}

.price {
  background-color: var(--color-light-gray);
}

.price__boxes {
  display: flex;
  flex-direction: column;
  gap: 120px;
}
@media screen and (max-width: 768px) {
  .price__boxes {
    gap: 64px;
  }
}

.price__box {
  padding: 80px 60px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .price__box {
    padding: 40px 20px;
  }
}

.price__box-head {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 32px;
  color: var(--color-light-brown);
}
@media screen and (max-width: 768px) {
  .price__box-head {
    font-size: 24px;
  }
}

.price__list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .price__list {
    gap: 32px;
  }
}

.price__item {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .price__item {
    gap: 10px;
  }
}

.price__item-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--color-light-brown);
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 600;
}
@media screen and (max-width: 1023px) {
  .price__item-head {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .price__item-head {
    flex-direction: column;
    font-size: 18px;
    padding-bottom: 0;
    border: none;
  }
}

@media screen and (max-width: 768px) {
  .price__item-title {
    width: 100%;
    text-align: left;
    padding-bottom: 4px;
    border-bottom: 1px solid var(--color-light-brown);
  }
}

@media screen and (max-width: 768px) {
  .price__item-price {
    width: 100%;
    text-align: right;
  }
}

.price__item-body {
  display: flex;
  align-items: start;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .price__item-body {
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 8px;
  }
}

.price__attention {
  margin-top: 40px;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .price__attention {
    margin-top: 16px;
  }
}

.price__message {
  margin-top: 80px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .price__message {
    margin-top: 40px;
  }
}

.price__action {
  margin-top: 40px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .price__action {
    margin-top: 24px;
  }
}

.contact {
  background-color: var(--color-gray);
}

.contact__box {
  max-width: 1100px;
  margin: 0 auto;
  padding: 100px 60px;
  background-color: var(--color-white);
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .contact__box {
    padding: 40px 20px;
  }
}

.contact__message {
  text-align: center;
}

.contact__form {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .contact__form {
    margin-top: 48px;
  }
}

.contact__fields {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .contact__fields {
    gap: 20px;
  }
}

.contact__field {
  display: flex;
  align-items: center;
  gap: 4%;
}
.contact__field.-start {
  align-items: start;
}
@media screen and (max-width: 1023px) {
  .contact__field {
    flex-direction: column;
    align-items: start;
    gap: 8px;
  }
}

.contact__field-head {
  width: 225px;
  flex-shrink: 0;
}
@media screen and (max-width: 1023px) {
  .contact__field-head {
    width: 100%;
  }
}

.contact__field-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 600;
}
@media screen and (max-width: 1023px) {
  .contact__field-label {
    font-size: 16px;
    justify-content: start;
    gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  .contact__field-label {
    gap: 10px;
  }
}

.contact__field-req {
  width: 60px;
  padding: 4px 8px;
  border-radius: 6px;
  background-color: var(--color-pink);
  font-weight: 600;
  font-size: 12px;
  display: grid;
  place-items: center;
}
@media screen and (max-width: 768px) {
  .contact__field-req {
    width: 50px;
    padding-block: 2px;
  }
}

.contact__field-body {
  flex-grow: 1;
}
@media screen and (max-width: 1023px) {
  .contact__field-body {
    width: 100%;
  }
}

.select,
.input-text,
.textarea {
  width: 100%;
  padding: 8px 16px;
  border: 1px solid var(--color-brown);
  border-radius: 4px;
}

.select {
  max-width: 280px;
}

.textarea {
  min-height: 180px;
}

.contact__radios .wpcf7-list-item {
  margin: 0;
}
.contact__radios .wpcf7-list-item.last {
  margin-left: 32px;
}
.contact__radios .wpcf7-list-item input:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}
.contact__radios .wpcf7-list-item-label {
  padding-left: 28px;
  position: relative;
}
.contact__radios .wpcf7-list-item-label::before, .contact__radios .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
}
.contact__radios .wpcf7-list-item-label::before {
  width: 20px;
  height: 20px;
  border: 2px solid var(--color-brown);
  left: 0;
  transition: border-color 0.3s;
}
.contact__radios .wpcf7-list-item-label::after {
  width: 8px;
  height: 8px;
  background-color: var(--color-brown);
  left: 6px;
  opacity: 0;
}

.contact__privacy {
  margin-top: 40px;
  display: grid;
  place-items: center;
}
@media screen and (max-width: 768px) {
  .contact__privacy {
    margin-top: 24px;
  }
}

.contact__privacy .wpcf7-list-item {
  margin: 0;
}
.contact__privacy label {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
.contact__privacy input[type=checkbox] {
  position: absolute;
  opacity: 0;
}
.contact__privacy input[type=checkbox]:checked + .wpcf7-list-item-label .contact-checkbox-text::after {
  opacity: 1;
}
.contact__privacy .contact-checkbox-text {
  position: relative;
  padding-left: 30px;
  font-weight: 700;
}
.contact__privacy .contact-checkbox-text::before, .contact__privacy .contact-checkbox-text::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.contact__privacy .contact-checkbox-text::before {
  width: 20px;
  height: 20px;
  border-radius: 1px;
  border: 1px solid var(--color-brown);
}
.contact__privacy .contact-checkbox-text::after {
  width: 23px;
  height: 17.53px;
  left: -1px;
  margin-top: -1.2px;
  background: url("../images/components/check-icon.svg") no-repeat center/contain;
  opacity: 0;
}
.contact__privacy .contact-checkbox-text a {
  text-decoration: underline;
}

.contact__action {
  margin-top: 40px;
  display: grid;
  place-items: center;
}
@media screen and (max-width: 768px) {
  .contact__action {
    margin-top: 32px;
  }
}

.confirm__form-inner .contact__form {
  max-width: 700px;
  margin-inline: auto;
}
.confirm__form-inner .contact__action {
  margin-top: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.confirm__form-inner .contact__action .wpcf7-spinner {
  display: none;
}
.confirm__form-inner .button-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  height: 45px;
  padding: 6px 20px;
  background-color: var(--color-white);
  border: 1px solid var(--color-pink);
  transition: all 0.4s;
}
.confirm__form-inner .button-back:hover {
  color: var(--color-pink);
}

.thanks {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.thanks__message {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.thanks__action {
  margin-top: 48px;
}

.qa {
  background: var(--color-light-gray);
}

.qa__boxes {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .qa__boxes {
    gap: 20px;
  }
}

.qa__box {
  background-color: var(--color-white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.qa__box.is-open .qa__box-head-text::after {
  transform: translateY(-50%) rotate(180deg);
}

.qa__box-head {
  width: 100%;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .qa__box-head {
    padding: 8px 16px;
    gap: 10px;
  }
}

.qa__box-head-icon {
  min-width: 26px;
  flex-shrink: 0;
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 500;
  color: var(--color-brown);
}
@media screen and (max-width: 768px) {
  .qa__box-head-icon {
    font-size: 20px;
    min-width: 18px;
  }
}

.qa__box-head-text {
  margin-top: 2px;
  padding-right: 20px;
  flex-grow: 1;
  text-align: left;
  position: relative;
}
.qa__box-head-text::before, .qa__box-head-text::after {
  content: "";
  width: 10px;
  height: 1px;
  background-color: var(--color-brown);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s, display 0.3s;
}
.qa__box-head-text::after {
  transform: translateY(-50%) rotate(90deg);
}

.qa__box-body {
  display: none;
  width: 100%;
  padding: 16px 32px;
}
@media screen and (max-width: 768px) {
  .qa__box-body {
    padding: 8px 16px;
  }
}

.privacy__title {
  font-size: 36px;
  font-weight: 700;
}

.privacy__content {
  margin-top: 60px;
}
.privacy__content h3 {
  font-size: 20px;
  font-weight: 500;
}

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

.u-hidden-pc {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-hidden-pc {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .u-hidden-sp {
    display: none;
  }
}

.u-mt-30 {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .u-mt-30 {
    margin-top: 24px;
  }
}

.u-mt-45 {
  margin-top: 45px;
}
@media screen and (max-width: 768px) {
  .u-mt-45 {
    margin-top: 32px;
  }
}

.u-mt-80 {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .u-mt-80 {
    margin-top: 40px;
  }
}

.u-ptb-80 {
  padding-block: 80px;
}
@media screen and (max-width: 768px) {
  .u-ptb-80 {
    padding-block: 40px;
  }
}

.u-ptb-120 {
  padding-block: 120px;
}
@media screen and (max-width: 768px) {
  .u-ptb-120 {
    padding-block: 64px;
  }
}

@keyframes wave {
  0% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-5px);
  }
  60% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0);
  }
}
.wave-trigger {
  display: inline-flex;
}
.wave-trigger:hover .wave {
  animation: wave 0.6s ease forwards;
}
.wave-trigger:hover .wave:nth-child(1) {
  animation-delay: 0s;
}
.wave-trigger:hover .wave:nth-child(2) {
  animation-delay: 0.05s;
}
.wave-trigger:hover .wave:nth-child(3) {
  animation-delay: 0.1s;
}
.wave-trigger:hover .wave:nth-child(4) {
  animation-delay: 0.15s;
}
.wave-trigger:hover .wave:nth-child(5) {
  animation-delay: 0.2s;
}
.wave-trigger:hover .wave:nth-child(6) {
  animation-delay: 0.25s;
}
.wave-trigger:hover .wave:nth-child(7) {
  animation-delay: 0.3s;
}
.wave-trigger:hover .wave:nth-child(8) {
  animation-delay: 0.35s;
}

.wave {
  display: inline-block;
}

.fade {
  opacity: 0;
  transition: opacity 3.4s ease-out;
}
.fade.is-inview {
  opacity: 1;
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1.5s ease-out;
}
.fade-up.is-inview {
  opacity: 1;
  transform: translateY(0);
}

.fade-left {
  opacity: 0;
  transform: translateX(100px);
  transition: all 1.5s ease-out;
}
.fade-left.is-inview {
  opacity: 1;
  transform: translateX(0);
}

.fade-mask {
  position: relative;
  overflow: hidden;
}
.fade-mask::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(2px);
  opacity: 1;
  z-index: 2;
  pointer-events: none;
  transition: opacity 1.8s ease, backdrop-filter 1.8s ease;
}
.fade-mask.is-inview::after {
  opacity: 0;
  backdrop-filter: blur(0);
}

.fade-card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.2s ease, transform 1.2s ease;
  position: relative;
  overflow: hidden;
}
.fade-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(2px);
  opacity: 1;
  transition: opacity 1.6s ease;
  z-index: 2;
  pointer-events: none;
}
.fade-card.is-inview {
  opacity: 1;
  transform: translateY(0);
}
.fade-card.is-inview::after {
  opacity: 0;
}

.delay-200 {
  transition-delay: 0.2s;
}

.delay-400 {
  transition-delay: 0.4s;
}

.delay-600 {
  transition-delay: 0.6s;
}