@charset "UTF-8";
/* リキッドレイアウト対応のための設定 */
body {
  color: #333333;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
}

/*  PCとSPの表示非表示の切り替え */
/*(md)px以上で表示*/
.pc-only {
  display: none;
}

/*モバイルのみ表示*/

/*画像の縦横比設定*/
img {
  display: block;
  width: 100%;
  height: auto;
}

/* aタグのスタイルリセット*/
a {
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
html {
  /* ベースのフォントサイズ */
  font-size: 16px;
  /* スマートフォン 375px以下 */
}
html {
  /* タブレット 376px~inner */
}
html {
  /* PC inner以上 */
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
}

/* Set core html defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
  text-rendering: optimizeSpeed;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

/* Natural flow and rhythm in articles by default */
/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  outline: none;
  background: transparent;
  font: inherit;
}

textarea {
  resize: vertical;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

/*addressタグのフォントリセット*/
address {
  font-style: normal;
}

/* フォーカスリング */
:focus-visible {
  outline: 1px solid currentColor;
  outline-offset: 1px;
}

/*トップページ・aboutセクション
***************************************************************/
.about {
  padding-block: 3.75rem;
  overflow-x: clip;
  background-color: #f5d3e6;
}

.about__wrap {
  margin-right: calc(50% - 50vw);
  padding-right: calc(50vw - 50%);
  padding-block: 2.5rem;
  border-radius: 0.625rem 0 0 0.625rem;
  background-color: #fff;
}

.about__container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-inline: 2rem;
  padding-block: 2rem;
  gap: 2.5rem;
  border-radius: 0.3125rem;
  background-color: rgba(255, 255, 255, 0.7);
}

.about__img {
  aspect-ratio: 1/1;
  width: 100%;
  max-width: 9.375rem;
  margin-inline: auto;
}

.about__img img {
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.9;
}

.about__name {
  font-size: 1.125rem;
}

.about__name span {
  font-size: 1rem;
  font-family: "Cormorant Garamond", serif;
}

.about__text {
  margin-top: 1rem;
  font-size: 1rem;
}

.about__list {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 1.25rem;
  gap: 1.25rem;
}

.about__item {
  padding-top: 1.25rem;
}

.about__item h3 {
  position: relative;
  font-weight: 400;
  font-size: 1.125rem;
}

.about__item h3::after {
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  width: 60%;
  height: 1px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #333333;
  content: "";
}

.about__item p {
  margin-top: 1rem;
  font-size: 1rem;
  text-align: justify;
  text-justify: inter-ideograph;
}

/* ===== アイコン ===== */
.about__icon-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 1rem;
  gap: 0.625rem;
}

.about__icon-item {
  width: 2.5rem;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* ----------------------------- */
/* about内の鳥の装飾用 */
/* ----------------------------- */
@-webkit-keyframes bird-breathe {
  0% {
    -webkit-transform: scale(1) translateY(0);
            transform: scale(1) translateY(0);
  }
  50% {
    -webkit-transform: scale(1.05) translateY(-0.125rem);
            transform: scale(1.05) translateY(-0.125rem); /* ほんのわずかな膨らみ */
  }
  100% {
    -webkit-transform: scale(1) translateY(0);
            transform: scale(1) translateY(0);
  }
}
@keyframes bird-breathe {
  0% {
    -webkit-transform: scale(1) translateY(0);
            transform: scale(1) translateY(0);
  }
  50% {
    -webkit-transform: scale(1.05) translateY(-0.125rem);
            transform: scale(1.05) translateY(-0.125rem); /* ほんのわずかな膨らみ */
  }
  100% {
    -webkit-transform: scale(1) translateY(0);
            transform: scale(1) translateY(0);
  }
}
@-webkit-keyframes bird-tilt {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(2deg);
            transform: rotate(2deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
@keyframes bird-tilt {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(2deg);
            transform: rotate(2deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
.about__container::after {
  display: block;
  position: absolute;
  right: 0;
  bottom: -6.25rem;
  aspect-ratio: 3/4;
  width: 6.25rem;
  -webkit-transform-origin: 50% 80%;
          transform-origin: 50% 80%;
  background-image: url(../images/treat/bird.webp);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  -webkit-animation: bird-breathe 6s ease-in-out 1.2s infinite, bird-tilt 8s ease-in-out 2s infinite;
          animation: bird-breathe 6s ease-in-out 1.2s infinite, bird-tilt 8s ease-in-out 2s infinite;
}

/* motion safe */
/*サイドバー・アーカイブ
***************************************************************/
.archive-sidebar__year-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.archive-sidebar__toggle {
  width: 0;
  height: 0;
  margin-right: 8px;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 6px solid #333;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.archive-sidebar__item.is-open .archive-sidebar__toggle {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.archive-sidebar__months {
  max-height: 0;
  padding-top: 0.25rem;
  overflow: hidden;
  -webkit-transition: max-height 0.4s ease;
  transition: max-height 0.4s ease;
}

.archive-sidebar__months a {
  padding-left: 1.5rem;
}

.archive-sidebar__year-text {
  width: 100%;
  color: #333;
  text-decoration: none;
}

.archive-sidebar__month-link {
  display: block;
  padding: 2px 0;
  color: #555;
  text-decoration: none;
}
/*トップページ・バナー・こんな方に選ばれています
***************************************************************/
.banner {
  position: relative;
  padding-block: 2.5rem 11.25rem;
  overflow-x: clip;
}

.banner__heading {
  font-size: 1.4375rem;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  text-align: justify;
  text-justify: inter-ideograph;
}

.banner__intro {
  margin-top: 2.5rem;
  font-weight: 500;
  font-size: 1.125rem;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  text-align: justify;
  text-justify: inter-ideograph;
}

.banner__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 2rem;
  gap: 1.25rem;
}

.banner__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.625rem;
}

.banner__item-heading {
  font-weight: 500;
  font-size: 1.125rem;
  text-decoration: underline;
  -webkit-text-decoration-color: #f5d3e6;
          text-decoration-color: #f5d3e6;
  text-decoration-thickness: 0.75rem;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-underline-offset: -0.5rem;
}

.banner__item p {
  padding-left: 1rem;
  font-size: 1rem;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  text-align: justify;
  text-justify: inter-ideograph;
}

.banner__sub-title {
  margin-top: 1rem;
  font-weight: 700;
  font-size: 1.125rem;
}

.banner__btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  row-gap: 1.25rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 2.5rem;
}

.banner__text {
  will-change: opacity, transform;
}

/* ===== アニメーションの初期状態 ===== */
.js-text {
  -webkit-transform: translateY(24px);
          transform: translateY(24px);
  opacity: 0;
  -webkit-transition: opacity 1.5s cubic-bezier(0.16, 1, 0.3, 1), -webkit-transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  transition: opacity 1.5s cubic-bezier(0.16, 1, 0.3, 1), -webkit-transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  transition: opacity 1.5s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  transition: opacity 1.5s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), -webkit-transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.banner__item:nth-child(1) .js-text {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}

.banner__item:nth-child(2) .js-text {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.banner__item:nth-child(3) .js-text {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

.js-text.is-active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

/*ぱんくず
***************************************************************/
/* コンテナが非Flexでも省略させたい場合の代替手段 */
.breadcrumbs-area {
  padding-bottom: 0.9375rem;
  color: #333333;
  font-size: 0.75rem;
  text-transform: capitalize;
  /* 幅制御が無いと最後が広がり過ぎるので、行内要素でも折り返しを抑える */
  white-space: nowrap;
}

/* リンクは色継承 */
.breadcrumbs-area a {
  color: inherit;
}

.simplebar-track {
  background: #cbd2e0;
}

/*ボタン・実装サイトへ
***************************************************************/
.btn-site {
  display: block;
  width: 100%;
  max-width: 31.25rem;
  margin-top: 0.625rem;
  margin-inline: auto;
  padding-block: 0.3125rem;
  background: #f5d3e6;
  -webkit-box-shadow: 3px 3px 2px rgba(0, 0, 0, 0.08);
          box-shadow: 3px 3px 2px rgba(0, 0, 0, 0.08);
  color: #333333;
  font-weight: 700;
  font-family: "Cormorant Garamond", serif;
  text-align: center;
}
/*ボタン
***************************************************************/
.button {
  display: inline-block;
  position: relative;
  width: 100%;
  min-width: 12.5rem;
  max-width: 25rem;
  padding-inline: 1.25rem;
  padding-block: 0.3125rem 0.1875rem;
  overflow: hidden;
  border: 4px double #f5d3e6;
  background-color: #fff;
  color: #333333;
  font-weight: 700;
  font-size: 1rem;
  font-family: "Cormorant Garamond", serif;
  text-align: center;
  text-transform: capitalize;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.button.button--cta {
  border: 4px double #fff;
  background-color: #f5d3e6;
}

.works-flower {
  position: relative;
}

.works-flower::after {
  display: block;
  z-index: -1;
  position: absolute;
  top: -4.375rem;
  left: 54%;
  aspect-ratio: 1600/1200;
  width: 6.25rem;
  rotate: -20deg;
  background-image: url(../images/treat/section-flower01.webp);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
/*下層・サブタイトル
***************************************************************/
.chapter-title {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding-inline: 1.25rem;
  font-weight: 700;
  font-size: 1.125rem;
}

.chapter-title::after {
  display: block;
  position: absolute;
  top: -20%;
  right: 0;
  aspect-ratio: 1/1;
  width: 1.25rem;
  -webkit-transform-origin: center;
          transform-origin: center;
  background-image: url(../images/treat/star.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
  -webkit-animation: chapter-title-spin 1.8s cubic-bezier(0.45, 0, 0.55, 1) infinite;
          animation: chapter-title-spin 1.8s cubic-bezier(0.45, 0, 0.55, 1) infinite;
  will-change: transform;
}

@-webkit-keyframes chapter-title-spin {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes chapter-title-spin {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.chapter-title__sub {
  font-weight: 700;
  font-family: "Cormorant Garamond", serif;
}

/*下層・コラムカード
***************************************************************/
.columns-card {
  display: grid;
  grid-template-columns: 1fr;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25rem;
  border: 1px solid lightgray;
  color: #333333;
}

.columns-card__img img {
  aspect-ratio: 4/3;
  width: 100%;
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

/* ===== メタ情報 ===== */
.columns-card__meta {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0.625rem;
}

/* ===== 日付 ===== */
/* ===== タグとカテゴリー ===== */
.columns-card__category,
.columns-card__tags {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0.625rem;
}

.columns-card__category-item {
  display: inline-block;
  padding-inline: 0.625rem;
  border: 1px solid pink;
  border-radius: 3px;
  color: pink;
  font-size: 0.75rem;
}

.columns-card__tags-item {
  display: inline-block;
  padding-inline: 0.625rem;
  border: 1px solid lightgreen;
  border-radius: 3px;
  color: lightgreen;
  font-size: 0.75rem;
}

/* ===== タイトル ===== */
.columns-card__title {
  margin-top: 0.625rem;
  font-weight: 700;
  font-size: 1.125rem;
  overflow-wrap: anywhere;
}

/* ===== テキスト ===== */
.columns-card__text {
  font-size: 1rem;
}

/*
***************************************************************/
.columns__list {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 2.5rem;
}

.columns__filters-cat {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0.625rem;
}

.columns__filters-link {
  padding-inline: 0.625rem;
  border: 1px solid pink;
  border-radius: 3px;
  color: pink;
}

.columns__filters-link.is-current {
  background-color: pink;
  color: #fff;
}

/*ページ内スクロール位置の指定
***************************************************************/
html {
  scroll-padding-top: 5.625rem; /* ヘッダーの高さ */
}

/*
***************************************************************/
main {
  margin-top: 5.625rem;
}

/*お問い合わせページへCTAセクション
***************************************************************/
.contact-cta {
  display: grid;
  z-index: -1;
  z-index: 0;
  position: relative;
  right: 0;
  bottom: 0;
  place-items: center;
  aspect-ratio: 1550/500;
  width: 100%;
  max-height: 31.25rem;
  padding-block: 3.125rem 5.625rem;
  background: rgba(255, 255, 255, 0.5);
  background-image: url(../images/treat/flower02.webp);
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
}

.contact-cta::before {
  display: block;
  z-index: -1;
  position: absolute;
  aspect-ratio: 1550/662;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.6);
  content: "";
}

.contact-cta__heading {
  font-size: 1.5625rem;
  text-align: center;
}

.contact-cta__text {
  margin-top: 1.5rem;
  font-weight: 500;
  font-size: 1rem;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  text-align: center;
}

.contact-cta__btn {
  margin-top: 2rem;
  text-align: center;
}

/* フッター
***************************************************************/
.footer {
  position: relative;
  padding-bottom: 0.3125rem;
  background-color: #f5d3e6;
  text-align: center;
}

.footer__copy small {
  font-weight: 700;
  font-family: "Cormorant Garamond", serif;
}

/* ファーストビュー
***************************************************************/
.fv {
  position: relative;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: clip;
}

.fv::before {
  display: block;
  z-index: 0;
  position: absolute;
  top: 0;
  right: 0;
  aspect-ratio: 928/832;
  width: 100%;
  height: auto;
  background-image: url(../images/treat/tree02.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
  -webkit-animation: tree01 3.5s ease forwards;
          animation: tree01 3.5s ease forwards;
}

.fv::after {
  display: block;
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  aspect-ratio: 928/832;
  width: 100%;
  height: auto;
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
  background-image: url(../images/treat/tree02.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
  -webkit-animation: tree02 3.5s ease 0.7s forwards;
          animation: tree02 3.5s ease 0.7s forwards;
}

@-webkit-keyframes tree01 {
  from {
    width: 130%;
  }
  to {
    width: 60%;
  }
}

@keyframes tree01 {
  from {
    width: 130%;
  }
  to {
    width: 60%;
  }
}
@-webkit-keyframes tree02 {
  from {
    width: 100%;
  }
  to {
    width: 60%;
  }
}
@keyframes tree02 {
  from {
    width: 100%;
  }
  to {
    width: 60%;
  }
}
.hero {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 80svh;
  overflow: hidden;
  isolation: isolate;
}

/* 背景の丸レイヤー */
.hero-bg-bubbles {
  z-index: 0;
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

/* 背景丸 */
.hero-bg-bubble {
  position: absolute;
  bottom: -120px;
  border-radius: 50%;
  opacity: 0;
  will-change: transform, opacity;
}

/* 前面要素を背景より上に */
.hero-text,
.subtitle,
.container_01 {
  z-index: 1;
  position: relative;
}

.hero-text {
  margin: 0;
  padding: 0;
  color: #333333;
  font-weight: 700;
  font-size: 1.5625rem;
  text-align: center;
  -webkit-animation: fadeIn 1s ease forwards;
          animation: fadeIn 1s ease forwards;
  opacity: 0;
}

.typing-container {
  display: inline-block;
  position: relative;
}

.typing-text {
  display: inline-block;
  overflow: hidden;
  border-right: 0.15em solid #333333;
  background: #333333;
  font-family: "Cormorant Garamond", serif;
  white-space: nowrap;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  -webkit-animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
          animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
}

.subtitle {
  margin-top: 2.5rem;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  color: #333333;
  font-size: 1.25rem;
  text-align: center;
  -webkit-animation: slideUp 0.8s ease forwards 3.5s;
          animation: slideUp 0.8s ease forwards 3.5s;
  opacity: 0;
}

@-webkit-keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@-webkit-keyframes blink-caret {
  from, to {
    border-color: transparent;
  }
  50% {
    border-color: #333333;
  }
}
@keyframes blink-caret {
  from, to {
    border-color: transparent;
  }
  50% {
    border-color: #333333;
  }
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes slideUp {
  from {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
/* ===== スクロールダウン ===== */
.container_01 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  bottom: 15%;
  left: 50%;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0;
  padding: 0;
  overflow: hidden;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.scroll-down_01 {
  position: relative;
  width: 6.25rem;
  height: 6.25rem;
  color: #ba558e;
  font-family: serif;
  text-decoration: none;
}

.circle-text_01 {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-animation: rotate 20s linear infinite;
          animation: rotate 20s linear infinite;
}

.circle-text_01 span {
  position: absolute;
  left: 50%;
  -webkit-transform-origin: 0 3.125rem;
          transform-origin: 0 3.125rem;
  font-size: 0.625rem;
}

.arrow_01 {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 15px;
  height: 25px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-animation: scroll_01 3s infinite;
          animation: scroll_01 3s infinite;
}

.arrow_01::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #ba558e;
  content: "";
}

.arrow_01::after {
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 6px;
  height: 6px;
  -webkit-transform: translateX(-50%) rotate(-45deg);
          transform: translateX(-50%) rotate(-45deg);
  border-bottom: 1px solid #ba558e;
  content: "";
}

@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes scroll_01 {
  0% {
    -webkit-transform: translate(-50%, -50%) translateY(-10px);
            transform: translate(-50%, -50%) translateY(-10px);
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translate(-50%, -50%) translateY(10px);
            transform: translate(-50%, -50%) translateY(10px);
    opacity: 0;
  }
}
@keyframes scroll_01 {
  0% {
    -webkit-transform: translate(-50%, -50%) translateY(-10px);
            transform: translate(-50%, -50%) translateY(-10px);
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translate(-50%, -50%) translateY(10px);
            transform: translate(-50%, -50%) translateY(10px);
    opacity: 0;
  }
}
/* 動きを弱めたい人向け */
/* ハンバーガーメニュー
***************************************************************/
.hamburger {
  z-index: 9999;
  width: 1.875rem;
  padding: 0;
}

.hamburger span {
  display: block;
  position: relative;
  width: 1.875rem;
  height: 0.125rem;
  background-color: #ef71b9;
  -webkit-transition: all 0.3s 0s ease;
  transition: all 0.3s 0s ease;
}

.hamburger span:nth-child(2) {
  margin-top: 0.3125rem;
  margin-bottom: 0.3125rem;
}

.hamburger.is-openSP span:nth-child(1) {
  top: 0.25rem;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
}

.hamburger.is-openSP span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-openSP span:nth-child(3) {
  top: -0.625rem;
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
}

body.js-fixed {
  position: fixed;
  width: 100%;
  height: 100%;
}

/* ヘッダー
***************************************************************/
.header {
  z-index: 9999;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 5.625rem;
  -webkit-box-shadow: 0 3px 9px 0 rgba(226, 226, 226, 0.5);
          box-shadow: 0 3px 9px 0 rgba(226, 226, 226, 0.5);
}

.header__inner,
.header__logo,
.header__nav,
.header__nav-list,
.header__nav-item,
.header__nav-link {
  height: inherit;
}

.header__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header__nav {
  display: none;
}

.header__nav-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 1.875rem;
}

.header__nav-link {
  display: grid;
  position: relative;
  place-items: center;
  margin-block: auto;
  color: #333333;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.5;
  font-family: "Cormorant Garamond", serif;
  text-transform: capitalize;
  -webkit-transition: all 0.3s 0s ease;
  transition: all 0.3s 0s ease;
}

.header__nav-item a::after {
  position: absolute;
  bottom: 22px;
  left: 0;
  width: 0%;
  height: 1px;
  background: #333333;
  content: "";
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
/** スクロールででてくるヘッダー **/
.header.header__sticky {
  visibility: visible;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.7);
  -webkit-box-shadow: 0 3px 9px 0 rgba(226, 226, 226, 0.5);
          box-shadow: 0 3px 9px 0 rgba(226, 226, 226, 0.5);
  -webkit-animation: slideDown 0.3s ease-in-out;
          animation: slideDown 0.3s ease-in-out;
}

@-webkit-keyframes slideDown {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}

@keyframes slideDown {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}
/* inner
***************************************************************/
.inner {
  width: 100%;
  max-width: 31.25rem;
  margin-inline: auto;
  padding-right: 20px;
  padding-left: 20px;
}

/*イントロ
***************************************************************/
.intro {
  margin-top: 1.875rem;
  font-weight: 500;
  font-size: 1.125rem;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  text-align: justify;
  text-justify: inter-ideograph;
}

/*一覧・ページネーション
***************************************************************/
.list-pagination {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 2.5rem;
  gap: 0.9375rem;
}

.page-numbers {
  color: #333333;
}

.list-pagination .page-numbers.current {
  padding-inline: 0.625rem;
  padding-block: 0.125rem;
  background-color: #dba8c1;
  color: #fff;
  font-size: 1rem;
}

.list-pagination .next.page-numbers,
.list-pagination .prev.page-numbers {
  border-radius: 9999px;
  background-color: #dba8c1;
}

.list-pagination .next.page-numbers img,
.list-pagination .prev.page-numbers img {
  aspect-ratio: 1/1;
  width: 1.5rem;
}

/*ロゴ
***************************************************************/
.logo__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: inherit;
  color: #333333;
  font-weight: 700;
  font-size: 1.25rem;
  font-family: "Cormorant Garamond", serif;
}

/*投稿・カテゴリー
***************************************************************/
.post-category {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.9375rem;
}

.post-category {
  display: inline-block;
  padding-inline: 0.625rem;
  padding-block: 0 0.0625rem;
  border: 1px solid #ba558e;
  border-radius: 3px;
  color: #ba558e;
  font-size: 0.875rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.post-category.post-category--active {
  background-color: #ba558e;
  color: #fff;
}

/*投稿詳細
***************************************************************/
.post-detail {
  padding-block: 1.25rem;
}

.post-details__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}

.post-details__container {
  width: 100%;
  max-width: 50rem;
}

.post-details__title {
  font-weight: 700;
  font-size: 1.125rem;
  overflow-wrap: anywhere;
}

.post-details__meta {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.9375rem;
}

.post-details__meta-category {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.3125rem;
}

.post-details__thumbnail {
  display: block;
  width: 100%;
}

.post-details__figure img {
  aspect-ratio: 750/430;
  width: 100%;
  max-width: 37.5rem;
  margin-top: 1rem;
  margin-inline: auto;
}

.post-details__figure img {
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.post-details__acf {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 1.5rem;
  gap: 0.625rem;
}

.post-details__acf-kinds {
  border-bottom: 2px solid #f5d3e6;
}

.post-details__acf-kinds-item {
  position: relative;
  font-weight: 700;
  font-size: 1.125rem;
}

.post-details__acf-page {
  padding: 0.625rem;
  background-color: #fae6f2;
}

.post-details__acf-period {
  padding: 0.625rem;
}

.post-details__acf-others {
  padding: 0.625rem;
  background-color: #fae6f2;
}

.post-details__btn {
  margin-top: 2rem;
  text-align: center;
}

/*投稿の指定
***************************************************************/
/* ===== 投稿見出し ===== */
.post-details__content h2 {
  margin-top: 0.9375rem;
  font-size: 1.875rem;
}

.post-details__content h3 {
  margin-top: 0.9375rem;
  font-size: 1.5625rem;
}

.post-details__content h4 {
  margin-top: 0.9375rem;
  font-size: 1.25rem;
}

.post-details__content h5 {
  margin-block: 0.9375rem 0;
  font-size: 1.125rem;
}

.post-details__content h6 {
  margin-block: 0.9375rem 0;
  font-size: 1rem;
}

/* ===== 文章 ===== */
.post-details__content p {
  margin-top: 0.625rem;
  font-size: 1rem;
}

/* ===== リンク ===== */
.post-details__content a {
  color: #333333;
  font-weight: 700;
}

/* ===== 区切り線 ===== */
.post-details__content hr {
  color: #f5d3e6;
}

/* ===== ボタン ===== */
.post-details__content .wp-block-button {
  margin-top: 1rem;
}

.post-details__content .wp-block-button__link {
  border: 1px solid #f5d3e6;
  background-color: #f5d3e6;
  color: #333333;
  font-size: 1rem;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
/* ===== アコーディオン ===== */
.post-details__content .wp-block-details {
  margin-top: 1rem;
  border-radius: 5px;
  background-color: #f5d3e6;
}

.post-details__content .wp-block-details summary {
  padding-inline: 0.625rem;
  padding-block: 0.9375rem;
}

.post-details__content .wp-block-details p {
  padding-inline: 0.625rem;
  padding-block: 0.9375rem;
  border: 1px solid #f5d3e6;
  background-color: #fff;
}

/* ===== 引用 ===== */
.post-details__content .wp-block-quote {
  font-style: italic;
}

/* ===== ul,ol ===== */
.post-details__content ul,
.post-details__content ol {
  margin-block: 0.9375rem;
}

.post-details__content ul li,
.post-details__content ol li {
  padding-inline: 0.625rem;
  padding-block: 0.3125rem;
  font-size: 1rem;
}

/* ===== 画像 ===== */
/* ===== タグ ===== */
.post-details__tags {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-top: 1.875rem;
  padding: 0;
  gap: 0.625rem;
  list-style: none;
}

.post-details__tag-link {
  display: inline-block;
  padding: 0.3125rem 0.625rem;
  border: 1px solid lightgreen;
  border-radius: 3px;
  color: lightgreen;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
/*ページネーション
***************************************************************/
.post-pagination {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 2rem;
  gap: 3.125rem;
}

.post-pagination__text {
  color: #333333;
}

/*トップページ・セクションタイトル
***************************************************************/
/* ── Base ────────────────────────────────────────────────── */
.section-heading {
  z-index: 1;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  font-weight: 700;
  font-size: 3.125rem;
  font-family: "Cormorant Garamond", serif;
  text-align: center;
  text-transform: capitalize;
}

.section-heading span {
  display: inline-block;
  z-index: 1;
  position: absolute;
  right: -1.25rem;
  bottom: -0.3125rem;
  font-size: 1rem;
  font-family: "Hina Mincho", serif;
}

.section-heading.section-heading--works::after,
.section-heading.section-heading--works::before {
  display: block;
  z-index: -1;
  position: absolute;
  aspect-ratio: 1/1;
  -webkit-transform-origin: 50% 70%;
          transform-origin: 50% 70%; /* 軸を下寄せにして“茎”で揺れる印象に */
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
  opacity: 0; /* 初期は消しておく */
}

/* ── works：左右の花 ── */
.section-heading.section-heading--works::before {
  top: -1.25rem;
  left: 3.125rem;
  width: 3.125rem;
  background-image: url(../images/treat/section-flower01.png);
  /* 左の小花（左右反転＋少し右肩上がり） */
  --base-rot: 5deg;
  -webkit-transform: scaleX(-1) rotate(var(--base-rot));
          transform: scaleX(-1) rotate(var(--base-rot));
  /* フェードイン→スウェイ（遅れて開始して奥行きを演出） */
  -webkit-animation: flower-fadein 0.9s ease-out 0.15s forwards, flower-sway 5.5s ease-in-out 0.9s infinite;
          animation: flower-fadein 0.9s ease-out 0.15s forwards, flower-sway 5.5s ease-in-out 0.9s infinite;
}

.section-heading.section-heading--works::after {
  top: 0;
  left: -2.5rem;
  width: 6.25rem;
  background-image: url(../images/treat/section-flower01.png);
  /* 右の大花（少し左肩下がり） */
  --base-rot: -20deg;
  -webkit-transform: rotate(var(--base-rot));
          transform: rotate(var(--base-rot));
  /* 少し長い周期で、前面の揺れ */
  -webkit-animation: flower-fadein 1s ease-out 0s forwards, flower-sway 6.5s ease-in-out 1s infinite;
          animation: flower-fadein 1s ease-out 0s forwards, flower-sway 6.5s ease-in-out 1s infinite;
}

/* 動きが苦手なユーザー配慮 */
/* ── works アニメーションKeyframes ── */
@-webkit-keyframes flower-fadein {
  0% {
    -webkit-transform: translateY(0.75rem) scale(0.96) rotate(var(--base-rot, 0deg));
            transform: translateY(0.75rem) scale(0.96) rotate(var(--base-rot, 0deg));
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0) scale(1) rotate(var(--base-rot, 0deg));
            transform: translateY(0) scale(1) rotate(var(--base-rot, 0deg));
    opacity: 1;
  }
}
@keyframes flower-fadein {
  0% {
    -webkit-transform: translateY(0.75rem) scale(0.96) rotate(var(--base-rot, 0deg));
            transform: translateY(0.75rem) scale(0.96) rotate(var(--base-rot, 0deg));
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0) scale(1) rotate(var(--base-rot, 0deg));
            transform: translateY(0) scale(1) rotate(var(--base-rot, 0deg));
    opacity: 1;
  }
}
@-webkit-keyframes flower-sway {
  0% {
    -webkit-transform: translateY(0) rotate(calc(var(--base-rot, 0deg) - 2deg));
            transform: translateY(0) rotate(calc(var(--base-rot, 0deg) - 2deg));
  }
  50% {
    -webkit-transform: translateY(-6px) rotate(calc(var(--base-rot, 0deg) + 2deg));
            transform: translateY(-6px) rotate(calc(var(--base-rot, 0deg) + 2deg));
  }
  100% {
    -webkit-transform: translateY(0) rotate(calc(var(--base-rot, 0deg) - 2deg));
            transform: translateY(0) rotate(calc(var(--base-rot, 0deg) - 2deg));
  }
}
@keyframes flower-sway {
  0% {
    -webkit-transform: translateY(0) rotate(calc(var(--base-rot, 0deg) - 2deg));
            transform: translateY(0) rotate(calc(var(--base-rot, 0deg) - 2deg));
  }
  50% {
    -webkit-transform: translateY(-6px) rotate(calc(var(--base-rot, 0deg) + 2deg));
            transform: translateY(-6px) rotate(calc(var(--base-rot, 0deg) + 2deg));
  }
  100% {
    -webkit-transform: translateY(0) rotate(calc(var(--base-rot, 0deg) - 2deg));
            transform: translateY(0) rotate(calc(var(--base-rot, 0deg) - 2deg));
  }
}
/* ── voice ────────────────────────── */
/* ── voice アニメーションKeyframes ── */
@-webkit-keyframes voice-fadein {
  0% {
    -webkit-transform: translateY(0.9375rem) scale(0.96) rotate(var(--base-rot, 0deg));
            transform: translateY(0.9375rem) scale(0.96) rotate(var(--base-rot, 0deg));
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0) scale(1) rotate(var(--base-rot, 0deg));
            transform: translateY(0) scale(1) rotate(var(--base-rot, 0deg));
    opacity: 1;
  }
}
@keyframes voice-fadein {
  0% {
    -webkit-transform: translateY(0.9375rem) scale(0.96) rotate(var(--base-rot, 0deg));
            transform: translateY(0.9375rem) scale(0.96) rotate(var(--base-rot, 0deg));
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0) scale(1) rotate(var(--base-rot, 0deg));
            transform: translateY(0) scale(1) rotate(var(--base-rot, 0deg));
    opacity: 1;
  }
}
@-webkit-keyframes voice-sway {
  0% {
    -webkit-transform: rotate(calc(var(--base-rot, 0deg) - 1deg)) scale(1);
            transform: rotate(calc(var(--base-rot, 0deg) - 1deg)) scale(1);
  }
  50% {
    -webkit-transform: rotate(calc(var(--base-rot, 0deg) + 2deg)) scale(1.02);
            transform: rotate(calc(var(--base-rot, 0deg) + 2deg)) scale(1.02);
  }
  100% {
    -webkit-transform: rotate(calc(var(--base-rot, 0deg) - 1deg)) scale(1);
            transform: rotate(calc(var(--base-rot, 0deg) - 1deg)) scale(1);
  }
}
@keyframes voice-sway {
  0% {
    -webkit-transform: rotate(calc(var(--base-rot, 0deg) - 1deg)) scale(1);
            transform: rotate(calc(var(--base-rot, 0deg) - 1deg)) scale(1);
  }
  50% {
    -webkit-transform: rotate(calc(var(--base-rot, 0deg) + 2deg)) scale(1.02);
            transform: rotate(calc(var(--base-rot, 0deg) + 2deg)) scale(1.02);
  }
  100% {
    -webkit-transform: rotate(calc(var(--base-rot, 0deg) - 1deg)) scale(1);
            transform: rotate(calc(var(--base-rot, 0deg) - 1deg)) scale(1);
  }
}
/* ── voice 花 ── */
.section-heading.section-heading--voice::before,
.section-heading.section-heading--voice::after {
  display: block;
  z-index: 0;
  position: absolute;
  aspect-ratio: 1/2;
  -webkit-transform-origin: 50% 80%;
          transform-origin: 50% 80%; /* 花の根元を軸に */
  background-image: url(../images/treat/flower03.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
  opacity: 0;
}

/* ── voice 上側の大きな花 ── */
.section-heading.section-heading--voice::before {
  top: -1.875rem;
  right: -5rem;
  width: 3.75rem;
  --base-rot: -5deg;
  -webkit-transform: scaleX(-1) rotate(var(--base-rot));
          transform: scaleX(-1) rotate(var(--base-rot));
  -webkit-animation: voice-fadein 1s ease-out 0s forwards, voice-sway 7s ease-in-out 1s infinite;
          animation: voice-fadein 1s ease-out 0s forwards, voice-sway 7s ease-in-out 1s infinite;
}

/* ── voice 下側の小さな花 ── */
.section-heading.section-heading--voice::after {
  right: -3.75rem;
  bottom: -1.875rem;
  width: 2.5rem;
  --base-rot: -20deg;
  -webkit-transform: scaleX(-1) rotate(var(--base-rot));
          transform: scaleX(-1) rotate(var(--base-rot));
  -webkit-animation: voice-fadein 1.1s ease-out 0.2s forwards, voice-sway 6.5s ease-in-out 1.2s infinite;
          animation: voice-fadein 1.1s ease-out 0.2s forwards, voice-sway 6.5s ease-in-out 1.2s infinite;
}

/* ────────────────────────────── */
/* 動きを抑制したいユーザー対応 */
/* ────────────────────────────── */
/* ── service ────────────────────────── */
/*共通項目・セクション間の余白
***************************************************************/
.section {
  padding-block: 2.5rem;
}

/*サイドバー
***************************************************************/
.sidebar-area {
  width: 100%;
  max-width: 15.625rem;
  padding-top: 2.5rem;
}

/*サイドバー・カテゴリー
***************************************************************/
.sidebar-category {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 0.625rem;
     -moz-column-gap: 0.625rem;
          column-gap: 0.625rem;
  row-gap: 0.3125rem;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-top: 0.625rem;
}

/*サイドバー・最新記事
***************************************************************/
.sidebar-latest {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 0.625rem;
  gap: 0.625rem;
}

.sidebar-latest__link {
  color: #333333;
}

.sidebar-latest__title {
  display: -webkit-box;
  line-clamp: 2;
  font-size: 1rem;
  overflow-wrap: anywhere;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/*サイドバー・タグ
***************************************************************/
.sidebar-tags {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-top: 0.9375rem;
  padding: 0;
  gap: 0.625rem;
  list-style: none;
}

.sidebar-tags__link {
  display: inline-block;
  padding: 0.3125rem 0.625rem;
  border: 1px solid lightgreen;
  border-radius: 3px;
  color: lightgreen;
  font-size: 0.875rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
/*サイドバー・共通項目
***************************************************************/
.sidebar__heading {
  font-weight: bold;
  font-size: 1.25rem;
}

/*トップページ・slillsセクション
***************************************************************/
.skills {
  padding-block: 5rem;
}

.skills__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.skills__item {
  aspect-ratio: 2/1;
  max-width: 6.25rem;
}

/* スマホメニュー
***************************************************************/
.sp-nav {
  z-index: 9998;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100svh;
  inset: 0;
  padding-inline: 2rem;
  padding-block: 1.875rem;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  background-color: white;
  -webkit-transition: -webkit-transform 0.5s 0s ease;
  transition: -webkit-transform 0.5s 0s ease;
  transition: transform 0.5s 0s ease;
  transition: transform 0.5s 0s ease, -webkit-transform 0.5s 0s ease;
}

.sp-nav::before,
.sp-nav::after {
  display: block;
  position: absolute;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
}

.sp-nav::before {
  z-index: -1;
  top: 0;
  left: 0;
  aspect-ratio: 478/506;
  width: 50%;
  background-image: url(../images/treat/flower01.webp);
}

.sp-nav::after {
  z-index: -1;
  right: 0;
  bottom: 0;
  aspect-ratio: 1550/662;
  width: 100%;
  background-image: url(../images/treat/flower02.webp);
}

.sp-nav.is-openSP {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.sp-nav__logo-link {
  padding-inline: 1.25rem;
  padding-block: 0.625rem;
  border-radius: 2px;
  background-color: rgba(255, 255, 255, 0.5);
  color: #333333;
  font-weight: 700;
  font-size: 1.5rem;
  font-family: "Cormorant Garamond", serif;
}

.sp-nav__container {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.sp-nav__items {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  width: 100%;
  gap: 1rem;
}

.sp-nav__item {
  width: 100%;
}

.sp-nav__item a {
  display: block;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.3);
  color: #333333;
  font-weight: 700;
  font-size: 1.25rem;
  font-family: "Cormorant Garamond", serif;
  text-align: center;
  text-transform: capitalize;
}

/*トップページ・お客様の声・スライダー
***************************************************************/
.splide__container {
  position: relative;
}

.splide__arrows {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  bottom: -2.5rem;
  left: 1.25rem;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  max-width: 9.375rem;
}

.splide__arrow {
  width: 1.875rem;
  height: 1.875rem;
  background: rgb(160, 176, 219);
  opacity: 1;
}

.splide__arrow img {
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.top-column {
  padding-block: 5rem;
}

.top-column__list {
  display: grid;
  margin-top: 1.875rem;
  gap: 2.5rem;
}

.top-column__more {
  margin-top: 2.5rem;
  text-align: center;
}

/*トップページ・サービスセクション
***************************************************************/
.top-service {
  position: relative;
  padding-bottom: 2.5rem;
  overflow-x: clip;
  background-color: #feeced;
}

.top-service__main {
  margin-top: 2rem;
}

.top-service__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.top-service__item {
  width: 100%;
  max-width: 18.75rem;
  margin-inline: auto;
  padding-inline: 1.25rem;
  padding-block: 0.9375rem;
  border: 1px solid #ba558e;
  border-radius: 0.0625rem;
  background-color: #fff;
  -webkit-box-shadow: 5px 5px 10px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 5px 5px 10px 0 rgba(0, 0, 0, 0.1);
}

.top-service__item-heading {
  font-size: 1.125rem;
  text-align: center;
}

.top-service__item-price {
  margin-top: 1rem;
  font-weight: 500;
  font-size: 1.125rem;
  font-family: "Hina Mincho", serif;
  text-align: center;
}

.top-service__btn {
  margin-top: 2rem;
  text-align: center;
}

/*トップページ・ニュースセクション
***************************************************************/
.top-works {
  padding-bottom: 5rem;
}

.top-works__list {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 0.625rem;
  margin-top: 5rem;
}

.top-works__more {
  margin-top: 2.5rem;
  text-align: center;
}

/*下層・FV
***************************************************************/
.under-fv {
  position: relative;
  aspect-ratio: 16/9;
  width: 100%;
  max-width: 100%;
  max-height: 43.75rem;
  margin-top: 5.625rem;
  background-image: url(../images/fv/under-fv.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.under-fv__heading {
  position: absolute;
  top: 30%;
  left: 10%;
  font-size: 1.25rem;
  text-transform: uppercase;
}

/*下層・タイトル
***************************************************************/
.under-heading {
  position: relative;
  font-size: 1.125rem;
  font-family: "Hina Mincho", serif;
  text-align: right;
  text-transform: capitalize;
}

.under-heading span {
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 60%;
  height: 1px;
  background: linear-gradient(60deg, rgba(255, 255, 255, 0.2), rgba(0, 0, 0, 0.7));
}

.under-heading__sub {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 700;
  font-size: 2rem;
  font-family: "Cormorant Garamond", serif;
  text-transform: capitalize;
}

.under-heading__sub::after {
  display: block;
  position: absolute;
  top: -1.25rem;
  right: -2.5rem;
  aspect-ratio: 180/184;
  width: 3.75rem;
  background-image: url(../images/treat/butterfly.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
  -webkit-animation: floatButterfly 6s ease-in-out infinite;
          animation: floatButterfly 6s ease-in-out infinite;
  -webkit-animation-delay: 0s, 0.9s;
          animation-delay: 0s, 0.9s; /* 2つ目のアニメを少し遅らせる */
}

/* ── 蝶々の羽ばたき ── */
@-webkit-keyframes floatButterfly {
  0% {
    -webkit-transform: translateY(0px) rotate(0deg) scale(1);
            transform: translateY(0px) rotate(0deg) scale(1);
    opacity: 0.7;
  }
  50% {
    -webkit-transform: translateY(-10px) rotate(4deg) scale(1.05);
            transform: translateY(-10px) rotate(4deg) scale(1.05);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(0px) rotate(0deg) scale(1);
            transform: translateY(0px) rotate(0deg) scale(1);
    opacity: 0.7;
  }
}
@keyframes floatButterfly {
  0% {
    -webkit-transform: translateY(0px) rotate(0deg) scale(1);
            transform: translateY(0px) rotate(0deg) scale(1);
    opacity: 0.7;
  }
  50% {
    -webkit-transform: translateY(-10px) rotate(4deg) scale(1.05);
            transform: translateY(-10px) rotate(4deg) scale(1.05);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(0px) rotate(0deg) scale(1);
            transform: translateY(0px) rotate(0deg) scale(1);
    opacity: 0.7;
  }
}
/*トップページ・お客様の声
***************************************************************/
.voice {
  padding-block: 2.5rem 7.5rem;
  overflow: clip;
}

.voice__slider {
  margin: 0 calc(50% - 50vw);
  margin-top: 3.75rem;
}

.voice__track {
  padding-bottom: 1rem;
}

.voice__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  padding-inline: 0.625rem;
  padding-block: 0.9375rem;
  border: 1px solid #333333;
  border-radius: 0.125rem;
  background-color: #fff;
  -webkit-filter: drop-shadow(2px 4px 6px rgb(160, 176, 219));
          filter: drop-shadow(2px 4px 6px rgb(160, 176, 219));
}

.voice__text {
  font-size: 1rem;
}
/*波あしらい
***************************************************************/
.wave__top-service,
.wave__bottom-service {
  display: block;
  line-height: 0;
}
.wave__top-service svg,
.wave__bottom-service svg {
  display: block;
  width: 100%;
}

.wave__top-service {
  margin-bottom: -1px;
}

.wave__bottom-service {
  margin-top: -1px;
  background-color: #feeced;
}

/*投稿・ニュースカード
***************************************************************/
.works-card {
  width: 100%;
  max-width: 21.875rem;
  margin-inline: auto;
  padding-inline: 0.625rem;
  padding-block: 0.625rem;
  -webkit-box-shadow: 2px 2px 7px 0 rgba(121, 106, 100, 0.25);
          box-shadow: 2px 2px 7px 0 rgba(121, 106, 100, 0.25);
}

.works-card__img {
  overflow: hidden;
}

.works-card__img img {
  aspect-ratio: 4/3;
  width: 100%;
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
}

.works-card__body {
  padding-inline: 0.625rem;
  color: #333333;
}

.works-card__meta {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 1rem;
  gap: 0.9375rem;
}

.works-card__category {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 0.625rem;
     -moz-column-gap: 0.625rem;
          column-gap: 0.625rem;
  row-gap: 0;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.works-card__date {
  font-size: 0.875rem;
}

.works-card__title {
  display: -webkit-box;
  line-clamp: 2;
  color: #333333;
  font-weight: 700;
  font-size: 1.125rem;
  overflow-wrap: anywhere;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-top: 1rem;
  overflow: hidden;
}

.works-card__title a {
  color: inherit;
}

.works-card__text {
  display: -webkit-box;
  line-clamp: 2;
  color: #333333;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-top: 0.625rem;
  overflow: hidden;
}

.works-card__tags {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-top: 0.625rem;
  padding: 0;
  gap: 0.625rem;
  list-style: none;
}

.works-card__tag-link {
  display: inline-block;
  padding: 0.3125rem 0.625rem;
  border: 1px solid lightgreen;
  border-radius: 3px;
  color: lightgreen;
  font-size: 0.75rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
/* コンタクトフォーム7
***************************************************************/
.contact-form {
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
}

.input-area {
  max-width: 37.5rem;
  margin-inline: auto;
}

.contact-form__wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 1.25rem;
}

/* ===== ラベル ===== */
.contact-form__label {
  font-weight: 500;
}

/* ===== 入力欄の共通スタイル ===== */
.wpcf7-form input[type=text],
.wpcf7-form input[type=email],
.wpcf7-form input[type=tel],
.wpcf7-form textarea {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  margin-top: 0.3125rem;
  padding-inline: 1rem;
  padding-block: 0.625rem;
  border: 1px solid #DDD;
  border-radius: 0.3125rem;
  background-color: #fff;
  font-size: 14px;
}

/* ===== プレースホルダー文字色 ===== */
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder, select::-webkit-input-placeholder {
  color: #999;
  opacity: 1; /* Firefoxで薄くならないように */
}
input::-moz-placeholder, textarea::-moz-placeholder, select::-moz-placeholder {
  color: #999;
  opacity: 1; /* Firefoxで薄くならないように */
}
input:-ms-input-placeholder, textarea:-ms-input-placeholder, select:-ms-input-placeholder {
  color: #999;
  opacity: 1; /* Firefoxで薄くならないように */
}
input::-ms-input-placeholder, textarea::-ms-input-placeholder, select::-ms-input-placeholder {
  color: #999;
  opacity: 1; /* Firefoxで薄くならないように */
}
input::placeholder,
textarea::placeholder,
select::placeholder {
  color: #999;
  opacity: 1; /* Firefoxで薄くならないように */
}

/* ===== ドロップダウンに▼をつける ===== */
select {
  appearance: none; /* 矢印を非表示にする（Chrome, Safari） */
  border: 1px solid #DDD;
  border-radius: 0.3125rem;
  background-color: #fff;
  -webkit-appearance: none; /* Safari */
  -moz-appearance: none; /* Firefox */
  width: 100%;
  margin-top: 0.3125rem;
  padding: 10px;
  background-image: url("data:image/svg+xml;utf8,<svg fill='%23999' height='10' width='10' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-position: right 0.625rem center;
  background-size: 1.875rem 1.875rem;
  background-repeat: no-repeat;
}

/* ===== チェックボックスを整える（横並び＋余白） ===== */
.wpcf7-form .wpcf7-checkbox label {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1rem;
}

/* ===== 必須のラベル ===== */
.contact-form__required {
  display: inline-block;
  height: 1.625rem;
  margin-left: 0.25rem;
  padding-top: 0.1875rem;
  padding-inline: 0.625rem;
  border-radius: 0.3125rem;
  color: #fff;
  font-weight: 500;
  font-size: 0.75rem;
}

.contact-form__required {
  background-color: #F0452F;
}

/* ===== チェックボックス・ベース ===== */
input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  position: relative;
  width: 16px;
  height: 16px;
  border: 1px solid #333333;
  background-color: #fff;
  vertical-align: middle;
  cursor: pointer;
}

/* ===== チェックボックス・チェック後 ===== */
input[type=checkbox]:checked::before {
  position: absolute;
  top: 2px;
  left: 5px;
  width: 5px;
  height: 10px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  border: solid #ba558e;
  border-width: 0 2px 2px 0;
  content: "";
}

/* ===== チェックボックス・ラベルと余白 ===== */
.wpcf7-list-item-label {
  margin-left: 0.4375rem;
}

/* ===== ボタン余白 ===== */
.contact-form__btn {
  margin-top: 3.75rem;
  text-align: center;
}

/* ===== 内容確認するボタン ===== */
.btn-to-confirm {
  width: 100%;
  padding-block: 1.0625rem;
  border: 4px double #f5d3e6;
  border-radius: 0.25rem;
  background-color: #f5d3e6;
  color: #333333;
  font-weight: 500;
  font-size: 1rem;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.btn-to-confirm.is-disabled {
  opacity: 0.5;
  pointer-events: none;
}

.wpcf7-spinner {
  display: none;
}

.contact__text {
  margin-top: 2rem;
  text-align: center;
}

.contact__text a {
  text-decoration: underline;
}

/* ===== デフォルトのサンクスメッセージを非表示 ===== */
.wpcf7-response-output {
  display: none;
}

/* ===== 必須項目のエラーメッセ非表示 ===== */
.wpcf7-not-valid-tip {
  display: none;
}

/* 確認画面
***************************************************************/
.confirm-area {
  max-width: 36.5rem;
  margin-inline: auto;
  padding: 20px;
}

.confirm-area h2 {
  font-weight: 700;
  font-family: "Hina Mincho", serif;
  text-align: center;
}

.confirm-area dl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.confirm-area dt {
  width: 100%;
  margin-top: 1rem;
  font-weight: bold;
}

.confirm-area dd {
  width: 100%;
  margin-top: 0.625rem;
}

/* ===== 表示確認のボタン ===== */
.confirm__buttons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 2rem;
  gap: 1rem;
}

/* ===== 送信ボタン ===== */
.confirm__buttons .wpcf7-submit {
  width: 100%;
  padding-block: 1.0625rem;
  border: 4px double #f5d3e6;
  border-radius: 0.25rem;
  background-color: #f5d3e6;
  color: #333333;
  font-weight: 500;
  font-size: 1rem;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

/* ===== 戻るボタン ===== */
.confirm__buttons .btn-back {
  display: block;
  padding-block: 1.0625rem;
  border: 1px solid #f5d3e6;
  background-color: #fff;
  color: #333333;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
/** 送信後のメッセージ **/
.send-message {
  margin-top: 2rem;
  margin-bottom: 15px;
  padding: 10px 15px;
  border: 1px solid #9bd4ac;
  background-color: #e0f8e9;
  color: #207c3e;
  font-weight: bold;
  text-align: center;
}

/*送信完了
***************************************************************/
.contact__thanks-heading {
  margin-top: 2rem;
  text-align: center;
}

.contact__thanks-text {
  margin-top: 1rem;
  font-size: 1rem;
}

/*下層・制作の流れセクション
***************************************************************/
.flow {
  z-index: 1;
  position: relative;
  overflow: clip;
}

.flow__heading-container {
  text-align: center;
}

.flow__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 2rem;
  gap: 1.25rem;
  counter-reset: flow-counter;
}

.flow__item {
  position: relative;
  position: relative; /* 番号を配置するため */
  counter-increment: flow-counter;
  /* 必要に応じてpaddingなどを調整してください */
}

.flow__item::before {
  display: grid;
  position: absolute;
  top: -0.5625rem;
  left: 0;
  place-items: center;
  aspect-ratio: 1/1;
  width: 2.5rem;
  border-radius: 9999px;
  background-color: #f5d3e6;
  content: "0" counter(flow-counter);
  font-weight: 700;
  font-size: 1.5625rem;
  font-family: "Cormorant Garamond", serif;
}

.flow__item-heading {
  position: relative;
  padding-left: 3.125rem;
  font-size: 1.125rem;
}

.flow__item p {
  margin-top: 0.625rem;
  padding-left: 3.125rem;
  text-align: justify;
  text-justify: inter-ideograph;
}

/*トップページ・料金
***************************************************************/
.price {
  position: relative;
}

.price__heading-container {
  text-align: center;
}

/* ===== 料金 ===== */
.price__main {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}

.price__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 2rem;
  padding-inline: 0.625rem;
  padding-block: 1.25rem;
  gap: 1.25rem;
}

.price__item {
  background-color: #fff;
}

.price__title {
  background-color: rgba(245, 211, 230, 0.5);
  font-weight: 500;
  font-size: 1.125rem;
}

.price__text {
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

.price__text.price__text--l {
  margin-top: 1.25rem;
  padding-left: 0;
}

/* ===== 見積もりサンプル ===== */
.price__example {
  padding-inline: 1.25rem;
  padding-block: 1.25rem;
  border: 1px solid #f5d3e6;
  border-radius: 0.625rem;
  -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.25);
}

.price__example-heading {
  font-size: 1.125rem;
  text-align: center;
}

.price__example-intro {
  padding-block: 1.25rem;
  font-weight: 500;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  text-align: justify;
  text-justify: inter-ideograph;
}

.price__example-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: 1.25rem;
  border-top: 2px dotted #f5d3e6;
  border-bottom: 1px solid #ba558e;
}

.price__example-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-inline: 0.625rem;
  padding-block: 0.625rem;
}

.price__example-label {
  font-weight: 500;
}

.price__example-label span {
  display: block;
  padding-left: 1rem;
  font-weight: 400;
  font-size: 1.125rem;
}

.price__example-price {
  font-weight: 500;
  font-size: 1.125rem;
}

/*下層ページ・サービス
***************************************************************/
.service__main {
  max-width: 50rem;
  margin-top: 2rem;
  margin-inline: auto;
}

.service__list {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 1.5rem;
  gap: 2.5rem;
  counter-reset: service;
}

.service__item-heading {
  position: relative;
  padding-left: 3.125rem;
  font-size: 1.125rem;
}

.service__item-heading::before {
  display: block;
  position: absolute;
  top: 40%;
  left: 0;
  padding-inline: 0.4375rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border: 1px solid;
  border-radius: 9999px;
  content: counter(service, decimal-leading-zero);
  font-weight: 700;
  font-size: 1.5625rem;
  font-family: "Hina Mincho", serif;
  counter-increment: service;
}

.service__item-text {
  margin-top: 0.625rem;
  padding-left: 3.125rem;
  text-align: justify;
  text-justify: inter-ideograph;
}

/*下層・お知らせ一覧
***************************************************************/
.works {
  padding-block: 2.5rem;
}

.works__categories {
  margin-top: 1rem;
}

.works__category-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 0.625rem;
}

.works__container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 1rem;
  gap: 2rem;
}

.works__list {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 2.5rem;
  margin-top: 2rem;
}

@media screen and (any-hover: hover) and (min-width: 780px) {
  .btn-site:hover {
    background-position: left bottom;
    opacity: 1;
  }
}

@media screen and (min-width: 780px) {
  .pc-only {
    display: block;
  }
  .sp-only {
    display: none;
  }
  html {
    font-size: 1.4814814815vw;
  }
  .about {
    padding-block: 3.75rem;
  }
  .about__wrap {
    padding-block: 5rem;
  }
  .about__container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    max-width: 50rem;
    margin-inline: auto;
    padding-block: 2.5rem;
    gap: 3.75rem;
  }
  .about__name {
    font-size: 1.625rem;
  }
  .about__name span {
    font-size: 1.5625rem;
  }
  .about__item h3::after {
    width: 70%;
  }
  .about__container::after {
    right: -10%;
    bottom: 0;
    width: 10rem;
  }
  .banner {
    padding-block: 5rem 0;
  }
  .banner__heading {
    font-size: 2.5rem;
    text-align: center;
  }
  .banner__intro {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-top: 6.25rem;
    margin-inline: auto;
    font-size: 1.25rem;
  }
  .banner__list {
    max-width: 46.875rem;
    margin-top: 6.25rem;
    margin-inline: auto;
    gap: 5rem;
  }
  .banner__item-heading {
    font-size: 1.4375rem;
  }
  .banner__sub-title {
    margin-top: 3.75rem;
    font-size: 1.875rem;
    text-align: center;
  }
  .banner__btn {
    -webkit-column-gap: 1.25rem;
       -moz-column-gap: 1.25rem;
            column-gap: 1.25rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    margin-top: 5rem;
  }
  .btn-site {
    margin-top: 0;
    border-left: 0.625rem solid #f5d3e6;
    background: -webkit-gradient(linear, left top, right top, color-stop(50%, #f5d3e6), color-stop(50%, #fff));
    background: linear-gradient(to right, #f5d3e6 50%, #fff 50%);
    background-position: right bottom;
    background-size: 200% 100.5%;
    -webkit-transition: background-position 0.4s ease-out;
    transition: background-position 0.4s ease-out;
  }
  .button {
    font-size: 1.25rem;
  }
  .chapter-title {
    font-size: 1.5625rem;
  }
  .columns-card {
    grid-template-columns: 18.75rem 1fr;
    gap: 5rem;
  }
  .columns__list {
    row-gap: 5rem;
  }
  html {
    scroll-padding-top: 6.25rem;
  }
  main {
    margin-top: 6.25rem;
  }
  .contact-cta {
    padding-block: 6.25rem 9.375rem;
  }
  .contact-cta__heading {
    font-size: 1.875rem;
  }
  .contact-cta__text {
    font-size: 1.25rem;
  }
  .contact-cta__btn {
    margin-top: 4rem;
  }
  .hero-text {
    font-size: 2.5rem;
  }
  .subtitle {
    font-size: 1.875rem;
  }
  .container_01 {
    bottom: 1.25rem;
  }
  .header {
    height: 6.25rem;
  }
  .header__nav {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 2.5rem;
  }
  .inner {
    max-width: 1130px;
    padding-right: 25px;
    padding-left: 25px;
  }
  .intro {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-top: 2.5rem;
    margin-inline: auto;
    font-size: 1.25rem;
  }
  .list-pagination {
    margin-top: 5rem;
    gap: 2.5rem;
  }
  .list-pagination .next.page-numbers,
  .list-pagination .prev.page-numbers {
    padding-inline: 0.3125rem;
    padding-block: 0.3125rem;
  }
  .logo__link {
    font-size: 2.5rem;
  }
  .post-details__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 3.125rem;
  }
  .post-details__title {
    font-size: 2.5rem;
  }
  .post-details__acf {
    margin-top: 2rem;
  }
  .post-details__acf-kinds-item {
    font-size: 1.25rem;
  }
  .post-details__btn {
    margin-top: 3.75rem;
  }
  .post-pagination {
    margin-top: 5rem;
  }
  .section-heading {
    font-size: 5rem;
  }
  .section-heading span {
    right: -2.5rem;
    bottom: -0.4375rem;
    font-size: 1.5625rem;
  }
  .section-heading.section-heading--works::before {
    top: -1.25rem;
    left: 40%;
    width: 4.375rem;
  }
  .section-heading.section-heading--works::after {
    top: 0.3125rem;
    left: -3.125rem;
    width: 7.5rem;
  }
  .section-heading.section-heading--voice::before {
    top: 0.625rem;
    right: -5.625rem;
    width: 4.375rem;
  }
  .section-heading.section-heading--voice::after {
    right: -3.75rem;
    bottom: -1.6875rem;
    width: 2.5rem;
  }
  .section {
    padding-block: 5rem;
  }
  .sidebar-area {
    max-width: 9.375rem;
    padding-top: 0;
  }
  .skills {
    padding-block: 7.5rem;
  }
  .sp-nav {
    display: none;
  }
  .splide__arrows {
    max-width: 12.5rem;
  }
  .splide__arrow {
    width: 2.5rem;
    height: 2.5rem;
  }
  .top-service {
    padding-bottom: 1.25rem;
  }
  .top-service__main {
    margin-top: 4rem;
  }
  .top-service__list {
    grid-template-columns: repeat(3, 1fr);
    max-width: 59.375rem;
    margin-inline: auto;
    gap: 0.625rem;
  }
  .top-service__item-heading {
    font-size: 1.5625rem;
  }
  .top-service__item-price {
    font-size: 1.4375rem;
  }
  .top-service__btn {
    margin-top: 4rem;
  }
  .top-works__list {
    grid-template-columns: repeat(3, 1fr);
    -webkit-column-gap: 1.875rem;
       -moz-column-gap: 1.875rem;
            column-gap: 1.875rem;
    row-gap: 0.1875rem;
    margin-top: 2.5rem;
  }
  .top-works__more {
    margin-top: 5rem;
  }
  .under-fv {
    height: 50rem;
  }
  .under-fv__heading {
    font-size: 2.5rem;
  }
  .under-heading {
    font-size: 1.25rem;
  }
  .under-heading span {
    width: 45%;
  }
  .under-heading__sub {
    font-size: 5rem;
  }
  .under-heading__sub::after {
    top: -2.5rem;
    right: -5rem;
    width: 6.25rem;
  }
  .voice {
    padding-block: 5rem 7.5rem;
  }
  .voice__slider {
    margin-top: 5rem;
  }
  .voice__item {
    padding-inline: 0.9375rem;
  }
  .works-card {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 4;
  }
  .works-card__title {
    margin-top: 0;
  }
  .contact-form {
    width: 36.5rem;
    margin-top: 3.25rem;
  }
  .contact-form__wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 2.5rem;
  }
  .contact-form__label {
    padding-top: 0.625rem;
  }
  .wpcf7-form input[type=text],
  .wpcf7-form input[type=email],
  .wpcf7-form input[type=tel],
  .wpcf7-form textarea {
    width: 25rem;
    margin-top: 0;
  }
  select {
    width: 25rem;
    margin-top: 0;
  }
  .contact-form__btn {
    margin-top: 6.25rem;
  }
  .confirm-area dl {
    row-gap: 1rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-top: 2rem;
  }
  .confirm-area dt {
    width: 40%;
    margin-top: 0;
  }
  .confirm-area dd {
    width: 60%;
    margin-top: 0;
  }
  .contact__thanks-heading {
    margin-top: 2.5rem;
  }
  .contact__thanks-text {
    max-width: 50rem;
    margin-top: 2rem;
    margin-inline: auto;
    font-size: 1.125rem;
  }
  .flow__list {
    max-width: 56.25rem;
    margin-top: 4rem;
    margin-inline: auto;
    gap: 5.625rem;
  }
  .flow__item:nth-child(2) {
    margin-left: 3.125rem;
  }
  .flow__item:nth-child(3) {
    margin-left: 6.25rem;
  }
  .flow__item:nth-child(4) {
    margin-left: 9.375rem;
  }
  .flow__item::before {
    width: 4.375rem;
    font-size: 2.5rem;
  }
  .flow__item-heading {
    padding-left: 6.25rem;
    font-size: 1.5rem;
  }
  .flow__item p {
    padding-left: 6.25rem;
    font-size: 1.125rem;
  }
  .price__main {
    max-width: 43.75rem;
    margin-top: 3.75rem;
    margin-inline: auto;
    gap: 2.5rem;
  }
  .price__list {
    margin-top: 0;
    padding-inline: 1.875rem;
  }
  .price__title {
    font-size: 1.25rem;
  }
  .price__text {
    font-weight: 500;
    font-size: 1.125rem;
    text-align: right;
  }
  .price__text.price__text--l {
    margin-top: 2.5rem;
    font-size: 1.125rem;
    text-align: left;
  }
  .price__example {
    padding-block: 2.5rem;
  }
  .price__example-heading {
    font-size: 1.25rem;
  }
  .price__example-intro {
    padding-block: 2.5rem;
  }
  .price__example-list {
    padding-top: 2.5rem;
  }
  .price__example-item {
    padding-inline: 1.875rem;
  }
  .price__example-label {
    font-size: 1.25rem;
  }
  .service__main {
    margin-top: 3.75rem;
  }
  .service__list {
    gap: 3.75rem;
  }
  .service__item-heading {
    padding-left: 4.375rem;
    font-size: 1.5rem;
  }
  .service__item-heading::before {
    padding-inline: 0.625rem;
    font-size: 2.1875rem;
  }
  .service__item-text {
    padding-left: 4.375rem;
    font-size: 1.125rem;
  }
  .works__category-list {
    gap: 0.9375rem;
  }
  .works__container {
    margin-top: 2rem;
  }
  .works__list {
    grid-template-columns: repeat(3, 1fr);
    -webkit-column-gap: 1.875rem;
       -moz-column-gap: 1.875rem;
            column-gap: 1.875rem;
    row-gap: 0.9375rem;
    margin-top: 2.5rem;
  }
}

@media (min-width: 1080px) {
  html {
    font-size: 16px;
  }
}

@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

@media (any-hover: hover) {
  a:hover {
    opacity: 0.8;
  }
  .archive-sidebar__year-text:hover {
    background-color: #f5d3e6;
  }
  .archive-sidebar__month-link:hover {
    background-color: #f5d3e6;
  }
  .button:hover {
    background-color: transparent;
  }
  .button.button--cta:hover {
    border: 4px double #f5d3e6;
    background-color: #fff;
  }
  .button:hover + .works-flower::after {
    opacity: 1;
  }
  .header__nav-item a:hover {
    opacity: 1;
  }
  .header__nav-item a:hover::after {
    width: 100%;
    opacity: 1;
  }
  .post-category:hover {
    background-color: #ba558e;
    color: #fff;
  }
  .post-details__content .wp-block-button__link:hover {
    background-color: #fff;
  }
  .post-details__tag-link:hover {
    background-color: lightgreen;
    color: #fff;
  }
  .sidebar-tags__link:hover {
    background-color: lightgreen;
    color: #fff;
  }
  .works-card__img img:hover {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    opacity: 1;
  }
  .works-card__tag-link:hover {
    background-color: lightgreen;
    color: #fff;
  }
  .btn-to-confirm:hover {
    background-color: #fff;
  }
  .confirm__buttons .wpcf7-submit:hover {
    background-color: #fff;
  }
  .confirm__buttons .btn-back:hover {
    border: 1px solid rgb(234, 234, 234);
    background-color: rgb(234, 234, 234);
  }
}

@media (prefers-reduced-motion: reduce) {
  .section-heading.section-heading--about::after {
    -webkit-animation: none;
            animation: none;
    opacity: 1;
  }
  .hero-bg-bubble,
  .circle-text_01,
  .arrow_01,
  .typing-text,
  .subtitle,
  .hero-text {
    -webkit-animation: none !important;
            animation: none !important;
    -webkit-transition: none !important;
    transition: none !important;
  }
  .hero-text,
  .subtitle {
    -webkit-transform: none !important;
            transform: none !important;
    opacity: 1 !important;
  }
  .hero-bg-bubble {
    opacity: 0.12 !important;
  }
  .section-heading::before,
  .section-heading::after {
    -webkit-animation: none;
            animation: none;
    opacity: 1;
  }
  .section-heading.section-heading--voice::before,
  .section-heading.section-heading--voice::after {
    -webkit-animation: none;
            animation: none;
    opacity: 1;
  }
}
/*# sourceMappingURL=map/styles.css.map */