@charset "UTF-8";
*,
*::before,
*::after {
  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;
}

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

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

/* 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;
}

a {
  text-decoration: none;
}

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

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

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

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

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

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

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

html {
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  overflow-x: hidden;
  max-width: 100%;
}

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

a {
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.7;
}

.section-title {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 72px;
  line-height: 1.437;
  color: #604937;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .section-title {
    font-size: 28px;
  }
}

.section-line {
  display: block;
  width: 60px;
  height: 4px;
  background-color: #E7CC94;
}
@media screen and (max-width: 768px) {
  .section-line {
    width: 30px;
  }
}

.section-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.btn-view-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 220px;
  padding: 20px 32px;
  background-color: #DCC2CD;
  border-radius: 36px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #FFFFFF;
  text-decoration: none;
  transition: opacity 0.3s;
}
@media screen and (max-width: 768px) {
  .btn-view-more {
    font-size: 16px;
    padding: 16px 24px;
    min-width: 180px;
  }
}

.btn-view-more:hover {
  opacity: 0.75;
}

.btn-view-more__arrow {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

:root {
  --header-height: 70px;
}
@media screen and (max-width: 768px) {
  :root {
    --header-height: 60px;
  }
}

.header-spacer {
  height: var(--header-height);
  flex-shrink: 0;
}

.admin-bar .header-spacer {
  height: var(--header-height);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  max-width: 100vw;
  background-color: rgba(255, 255, 255, 0.92);
  overflow: hidden;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
}

.admin-bar .header {
  top: 32px;
}
@media screen and (max-width: 782px) {
  .admin-bar .header {
    top: 46px;
  }
}

.header__inner {
  width: 100%;
  padding: 0 20px;
}
@media screen and (max-width: 1024px) {
  .header__inner {
    padding: 0 12px;
  }
}

.header__nav {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  height: 70px;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  min-width: 0;
}

.header__nav-left {
  display: flex;
  align-items: center;
  flex: 1;
  gap: 28px;
  min-width: 0;
}

.header__nav-right {
  display: flex;
  align-items: center;
  gap: 0;
}

.header__logo {
  flex-shrink: 0;
}

.header__logo a {
  display: block;
}

.header__logo-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
  min-width: 0;
}
@media screen and (max-width: 1024px) {
  .header__nav-list {
    gap: 12px;
  }
}
@media screen and (max-width: 768px) {
  .header__nav-list {
    display: none;
  }
}

.header__nav-item {
  padding: 5px 0;
}

.header__nav-link {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.8;
  color: #3a3a3a;
  text-decoration: none;
  transition: color 0.3s;
}
@media screen and (max-width: 1024px) {
  .header__nav-link {
    font-size: 14px;
  }
}

.header__nav-link:hover {
  color: #604937;
  opacity: 1;
}

.header__sns-list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 120px;
  height: 24px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .header__sns-list {
    display: none;
  }
}

.header__sns-item {
  position: absolute;
}

.header__sns-item:nth-child(1) {
  left: 43px;
}

.header__sns-item:nth-child(2) {
  left: 83px;
}

.header__sns-item:nth-child(3) {
  left: 36px;
  top: 0;
}

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

.header__sns-link img {
  width: 25px;
  height: 25px;
  -o-object-fit: contain;
     object-fit: contain;
}

.header__contact-btn {
  padding-left: 10px;
}
@media screen and (max-width: 1024px) {
  .header__contact-btn {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .header__contact-btn {
    display: none;
  }
}

.btn-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 165px;
  height: 36px;
  padding: 0 20px;
  background-color: #DCC2CD;
  border-radius: 18px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.8;
  color: #FFFFFF;
  text-decoration: none;
  transition: opacity 0.3s;
}

.btn-contact:hover {
  opacity: 0.75;
}

.btn-contact img {
  width: 26px;
  height: 26px;
  -o-object-fit: contain;
     object-fit: contain;
}

.header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  position: relative;
  z-index: 201;
}
@media screen and (max-width: 768px) {
  .header__hamburger {
    display: flex;
  }
}

.header__hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #3A3A3A;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.header__hamburger.is-open .header__hamburger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.header__hamburger.is-open .header__hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.header__hamburger.is-open .header__hamburger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 1100;
  width: 100%;
  max-width: 100vw;
  background-color: #FFFDF5;
  display: flex;
  flex-direction: column;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(100%, 0, 0);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s 0.3s;
}
@media screen and (min-width: 769px) {
  .nav-overlay {
    display: none;
  }
}
.nav-overlay.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s 0s;
}

.nav-overlay__close {
  position: absolute;
  top: calc(env(safe-area-inset-top, 0px) + 12px);
  right: calc(env(safe-area-inset-right, 0px) + 12px);
  z-index: 1;
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  touch-action: manipulation;
  transition: opacity 0.25s ease, background-color 0.25s ease;
}
.nav-overlay__close:hover {
  opacity: 0.85;
}

.nav-overlay__close-icon {
  position: relative;
  width: 22px;
  height: 22px;
  display: block;
}
.nav-overlay__close-icon::before, .nav-overlay__close-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 2px;
  background-color: #3A3A3A;
  border-radius: 1px;
}
.nav-overlay__close-icon::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.nav-overlay__close-icon::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.nav-overlay__inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding: 80px 20px 200px;
  overflow-y: auto;
}

.nav-overlay__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.nav-overlay__logo-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

.nav-overlay__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-overlay__item {
  padding: 5px 0;
}

.nav-overlay__link {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.8;
  color: #3A3A3A;
  text-decoration: none;
  transition: opacity 0.3s;
}

.nav-overlay__link:hover {
  opacity: 0.6;
}

.nav-overlay__item--current .nav-overlay__link {
  border-bottom: 2px solid #E7CC94;
  padding-bottom: 2px;
}

.nav-overlay__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.nav-overlay__sns-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 20px 0 10px 0;
}

.nav-overlay__sns-item {
  display: flex;
  align-items: center;
}

.nav-overlay__sns-link {
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-overlay__sns-link img {
  width: 25px;
  height: 25px;
  -o-object-fit: contain;
     object-fit: contain;
}

.nav-overlay__contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 165px;
  height: 36px;
  padding: 0 20px;
  background-color: #DCC2CD;
  border-radius: 18px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #FFFFFF;
  text-decoration: none;
  transition: opacity 0.3s;
}

.nav-overlay__contact img {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}

.nav-overlay__contact:hover {
  opacity: 0.75;
}

.hero {
  position: relative;
  width: 100%;
  /* ヘッダー（スペーサー）＋ヒーローで常に1画面分 */
  height: calc(100vh - var(--header-height));
  height: calc(100svh - var(--header-height));
  min-height: 0;
  overflow: hidden;
}

.admin-bar .hero {
  height: calc(100vh - var(--header-height) - 32px);
  height: calc(100svh - var(--header-height) - 32px);
}
@media screen and (max-width: 782px) {
  .admin-bar .hero {
    height: calc(100vh - var(--header-height) - 46px);
    height: calc(100svh - var(--header-height) - 46px);
  }
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero__video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  /* 幅が狭まるほど左側が切れ、右側を基準に表示を維持 */
  -o-object-position: right center;
     object-position: right center;
  display: block;
}

.hero__content {
  position: absolute;
  left: 123px;
  top: 60%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  z-index: 1;
  box-sizing: border-box;
  padding: 18px 20px;
  border-radius: 12px;
  isolation: isolate;
}
.hero__content::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background-color: rgba(255, 253, 245, 0.74);
  box-shadow: 0 4px 20px rgba(96, 73, 55, 0.12);
}
@media screen and (max-width: 1024px) {
  .hero__content {
    left: 2%;
  }
}
@media screen and (max-width: 768px) {
  .hero__content {
    left: 2%;
    top: auto;
    bottom: 60px;
    align-items: center;
    text-align: center;
  }
}

.hero__sub {
  font-family: "Noto Serif JP", serif;
  font-weight: 800;
  font-size: 32px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #604937;
}
@media screen and (max-width: 768px) {
  .hero__sub {
    font-size: 18px;
  }
}

.hero__title {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #604937;
}
@media screen and (max-width: 768px) {
  .hero__title {
    font-size: 24px;
  }
}

.message {
  position: relative;
  z-index: 1;
  overflow: visible;
  background-color: #F9F3E7;
  padding: 40px 175px 120px;
}
@media screen and (max-width: 1024px) {
  .message {
    padding: 40px 60px 80px;
  }
}
@media screen and (max-width: 768px) {
  .message {
    /* Figma Frame 114（SP Message）: 375 相当 */
    padding: 20px 5% 40px;
  }
}
.message .message__inner {
  max-width: 1090px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}
@media screen and (max-width: 768px) {
  .message .message__inner {
    gap: 20px;
  }
}
.message .message__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .message .message__heading {
    gap: 20px;
  }
}
.message .message__layout {
  position: relative;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
}
.message .message__body {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  background-color: #FFFDF5;
  box-shadow: 4px 4px 4px 0 rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  padding: 100px 0 120px;
  position: relative;
  z-index: 2;
  overflow: visible;
}
@media screen and (max-width: 1024px) {
  .message .message__body {
    padding: 60px 40px 80px;
    gap: 32px;
  }
}
@media screen and (max-width: 768px) {
  .message .message__body {
    width: 100%;
    padding: 20px 0 40px;
    gap: 24px;
  }
}
.message .message__decor {
  pointer-events: none;
}
.message .message__decor--tl {
  display: none;
  position: absolute;
  top: 8px;
  left: 4px;
  z-index: 2;
  width: min(32vw, 120px);
}
@media screen and (max-width: 768px) {
  .message .message__decor--tl {
    display: block;
  }
}
.message .message__decor-img {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0.88;
  transform: scaleX(-1) rotate(18deg);
  transform-origin: center center;
  filter: sepia(0.3) saturate(0.8);
}
.message .message__text-wrap {
  width: 100%;
  max-width: 952px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}
@media screen and (max-width: 1024px) {
  .message .message__text-wrap {
    padding: 0 8px;
  }
}
@media screen and (max-width: 768px) {
  .message .message__text-wrap {
    gap: 24px;
    padding: 0 10px;
    width: 100%;
    box-sizing: border-box;
    align-items: stretch;
  }
}
.message .message__lead {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.437;
  color: #3A3A3A;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .message .message__lead {
    font-size: 28px;
  }
}
@media screen and (max-width: 768px) {
  .message .message__lead {
    font-size: 24px;
    line-height: 1.437;
    color: #3a3a3a;
  }
}
.message .message__text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #3a3a3a;
  width: 100%;
  text-align: center;
}
.message .message__text p {
  margin: 0;
}
@media screen and (max-width: 768px) {
  .message .message__text {
    /* Figma: Noto Sans JP 400 / 16 / 行間 1.5 / 左揃え（layout 幅 280） */
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: normal;
    color: #3a3a3a;
    text-align: left;
    width: 100%;
    margin: 0;
  }
}
@media screen and (max-width: 768px) {
  .message .message__text.message__text--lined {
    /* SP デザインでは罫線なし */
    background: none;
  }
}
.message .message__signature {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #3a3a3a;
  display: block;
  align-self: flex-end;
  width: 100%;
  text-align: right;
  margin-top: 8px;
}
@media screen and (max-width: 768px) {
  .message .message__signature {
    max-width: none;
    width: 100%;
    margin: 0;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: normal;
    color: #3a3a3a;
    text-align: right;
  }
}
.message .message__photo-top {
  position: absolute;
  left: -127px;
  top: -184px;
  width: 309px;
  height: auto;
  z-index: 100;
  pointer-events: none;
  transform: rotate(-120deg);
  transform-origin: center center;
}
@media screen and (max-width: 768px) {
  .message .message__photo-top {
    width: 160px;
    left: -60px;
    top: -104px;
  }
}
.message .message__photo-top img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.message .message__photo-bottom {
  position: absolute;
  right: -187px;
  bottom: -204px;
  width: 309px;
  height: auto;
  z-index: 100;
  pointer-events: none;
  transform: rotate(50deg);
  transform-origin: center center;
}
@media screen and (max-width: 768px) {
  .message .message__photo-bottom {
    width: 160px;
    right: -87px;
    bottom: -104px;
  }
}
.message .message__photo-bottom img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.blog-news {
  position: relative;
  z-index: 0;
  background-color: #FFFFFF;
  padding: 120px 175px;
}
@media screen and (max-width: 1024px) {
  .blog-news {
    padding: 80px 40px;
  }
}
@media screen and (max-width: 768px) {
  .blog-news {
    /* Figma Frame 93: 375 幅想定・余白 20/10 */
    padding: 20px 10px 40px;
  }
}

.blog-news__inner {
  max-width: 1090px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 40px;
}
@media screen and (max-width: 1024px) {
  .blog-news__inner {
    gap: 24px;
  }
}
@media screen and (max-width: 768px) {
  .blog-news__inner {
    /* Figma Frame 107: Blog / News を縦積み gap 40 */
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
}

.blog-news .blog {
  flex: 1;
  min-width: 0;
  align-self: flex-start;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .blog-news .blog {
    width: 100%;
    max-width: 375px;
    gap: 20px;
  }
}

.blog-news .blog__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .blog-news .blog__heading {
    /* Figma Frame 105: 見出しとライン gap 20 */
    gap: 20px;
  }
}

.blog-news .blog__list {
  width: 100%;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  background-color: #FFFFFF;
  border: 1px solid #D8CFBE;
  box-shadow: inset 0 0 0 1px #FFFFFF, inset 0 0 0 3px #D8CFBE;
  padding: 24px 20px 20px;
  gap: 16px;
}
.blog-news .blog__list:has(.blog__item:only-child) {
  padding-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .blog-news .blog__list {
    /* Figma Frame 97: 幅300・枠4px #D8CFBE・内側余白10 */
    max-width: 300px;
    margin: 0 auto;
    padding: 10px;
    gap: 16px;
    border: 4px solid #D8CFBE;
    box-shadow: none;
    box-sizing: border-box;
  }
}

.blog-news .blog__item {
  padding-bottom: 16px;
  border-bottom: 1px solid #CCCCCC;
}
.blog-news .blog__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
@media screen and (max-width: 768px) {
  .blog-news .blog__item {
    padding-left: 10px;
    padding-right: 10px;
    box-sizing: border-box;
  }
}

.blog-news .blog__link {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  text-decoration: none;
  color: inherit;
  /* 1300px以下：サムネ上・テキスト下で可読幅を確保（768px以下は md で上書き） */
}
@media screen and (max-width: 1300px) {
  .blog-news .blog__link {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .blog-news .blog__link {
    /* Figma Link: 縦並び・幅260・gap8 */
    align-items: center;
    max-width: 260px;
    margin: 0 auto;
  }
}

.blog-news .blog__thumb {
  position: relative;
  flex-shrink: 0;
  width: 198px;
  height: 180px;
  overflow: hidden;
}
@media screen and (max-width: 1300px) {
  .blog-news .blog__thumb {
    width: 100%;
  }
}
.blog-news .blog__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1024px) {
  .blog-news .blog__thumb {
    height: 200px;
  }
}
@media screen and (max-width: 768px) {
  .blog-news .blog__thumb {
    /* Figma Frame 98 Picture: 160×146 */
    height: 146px;
    max-width: none;
    min-height: 0;
  }
}

/* 左上直角三角形＋斜め文字（clip-path + 内側 span で回転） */
.blog-news .blog__new,
.news__new {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.blog-news .blog__new::before,
.news__new::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #e5e1d2;
  -webkit-clip-path: polygon(0 0, 100% 0, 0 100%);
          clip-path: polygon(0 0, 100% 0, 0 100%);
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .blog-news .blog__new,
.news__new {
    width: 56px;
    height: 56px;
  }
}

.blog-news .blog__new-text,
.news__new-text {
  position: relative;
  z-index: 1;
  top: -14px;
  left: -14px;
  transform: rotate(-45deg);
  transform-origin: center center;
  font-family: "Work Sans", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #333333;
}
@media screen and (max-width: 768px) {
  .blog-news .blog__new-text,
.news__new-text {
    font-size: 10px;
  }
}

.blog-news .blog__info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 10px;
}
@media screen and (max-width: 1300px) {
  .blog-news .blog__info {
    align-self: stretch;
    width: 100%;
    padding: 0;
    gap: 8px;
  }
}
@media screen and (max-width: 768px) {
  .blog-news .blog__info {
    max-width: 260px;
  }
}

.blog-news .blog__meta {
  display: flex;
  align-items: center;
  gap: 4px;
}
@media screen and (max-width: 1300px) {
  .blog-news .blog__meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}

.blog-news .blog__date {
  font-family: "Work Sans", sans-serif;
  font-weight: 400;
  font-size: 13.5px;
  line-height: 1.8;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #666666;
  min-width: 85px;
}
@media screen and (max-width: 768px) {
  .blog-news .blog__date {
    min-width: 85px;
    font-size: 12px;
    line-height: 2.025;
    letter-spacing: 0.09em;
  }
}

.blog-news .blog__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 20px;
  background-color: #E7CC94;
  border-radius: 16px;
  font-family: "Work Sans", sans-serif;
  font-weight: 400;
  font-size: 13.5px;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #262626;
}
@media screen and (max-width: 768px) {
  .blog-news .blog__tag {
    width: 60px;
    height: 20px;
    font-size: 12px;
    letter-spacing: 0.09em;
  }
}

.blog-news .blog__title-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.056em;
  color: #3A3A3A;
}
@media screen and (max-width: 768px) {
  .blog-news .blog__title-text {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.063em;
  }
}

.blog-news .blog__excerpt {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #3a3a3a;
}
@media screen and (max-width: 768px) {
  .blog-news .blog__excerpt {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 1.5;
    letter-spacing: 0.084em;
    color: #3a3a3a;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    overflow: hidden;
  }
}

.blog-news .blog__btn-wrap {
  display: flex;
  justify-content: flex-start;
  padding-left: 10px;
}
@media screen and (max-width: 768px) {
  .blog-news .blog__btn-wrap {
    justify-content: center;
    align-items: center;
    padding: 0 0 0 10px;
    width: 100%;
    min-height: 50px;
    box-sizing: border-box;
  }
  .blog-news .blog__btn-wrap .btn-view-more {
    width: 200px;
    max-width: 200px;
    height: 40px;
    min-width: 200px;
    padding: 0 20px;
    border-radius: 36px;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.05em;
  }
}

.news {
  flex: 1;
  min-width: 0;
  align-self: flex-start;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .news {
    width: 100%;
    max-width: 375px;
    gap: 20px;
  }
}

.news__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .news__heading {
    gap: 20px;
  }
}

.news__list {
  width: 100%;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  background-color: #FFFFFF;
  border: 1px solid #D8CFBE;
  box-shadow: inset 0 0 0 1px #FFFFFF, inset 0 0 0 3px #D8CFBE;
  padding: 24px 20px 20px;
  gap: 16px;
}
.news__list:has(.news__item:only-child) {
  padding-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .news__list {
    max-width: 300px;
    margin: 0 auto;
    padding: 10px;
    gap: 16px;
    border: 4px solid #D8CFBE;
    box-shadow: none;
    box-sizing: border-box;
  }
}

.news__item {
  padding-bottom: 16px;
  border-bottom: 1px solid #CCCCCC;
}
.news__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
@media screen and (max-width: 768px) {
  .news__item {
    padding-left: 10px;
    padding-right: 10px;
    box-sizing: border-box;
  }
}

.news__link {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  text-decoration: none;
  color: inherit;
}
@media screen and (max-width: 1300px) {
  .news__link {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .news__link {
    align-items: center;
    max-width: 260px;
    margin: 0 auto;
  }
}

.news__thumb {
  position: relative;
  flex-shrink: 0;
  width: 198px;
  height: 180px;
  overflow: hidden;
}
.news__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1300px) {
  .news__thumb {
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .news__thumb {
    height: 200px;
  }
}
@media screen and (max-width: 768px) {
  .news__thumb {
    height: 146px;
    max-width: none;
    min-height: 0;
  }
}

.news__info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 10px;
}
@media screen and (max-width: 1300px) {
  .news__info {
    align-self: stretch;
    width: 100%;
    padding: 0;
    gap: 8px;
  }
}
@media screen and (max-width: 768px) {
  .news__info {
    max-width: 260px;
  }
}

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

.news__date {
  font-family: "Work Sans", sans-serif;
  font-weight: 400;
  font-size: 13.5px;
  line-height: 1.8;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #666666;
  min-width: 85px;
}
@media screen and (max-width: 768px) {
  .news__date {
    min-width: 85px;
    font-size: 12px;
    line-height: 2.025;
    letter-spacing: 0.09em;
  }
}

.news__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 20px;
  background-color: #E7CC94;
  border-radius: 16px;
  font-family: "Work Sans", sans-serif;
  font-weight: 400;
  font-size: 13.5px;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #262626;
}
@media screen and (max-width: 768px) {
  .news__tag {
    width: 60px;
    height: 20px;
    font-size: 12px;
    letter-spacing: 0.09em;
  }
}

.news__title-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.056em;
  color: #3A3A3A;
}
@media screen and (max-width: 768px) {
  .news__title-text {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.063em;
  }
}

.news__excerpt {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #3a3a3a;
}
@media screen and (max-width: 768px) {
  .news__excerpt {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 1.5;
    letter-spacing: 0.084em;
    color: #3a3a3a;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    overflow: hidden;
  }
}

.news__btn-wrap {
  display: flex;
  justify-content: flex-start;
  padding-left: 10px;
}
@media screen and (max-width: 768px) {
  .news__btn-wrap {
    justify-content: center;
    align-items: center;
    padding: 0 0 0 10px;
    width: 100%;
    min-height: 50px;
    box-sizing: border-box;
  }
  .news__btn-wrap .btn-view-more {
    width: 200px;
    max-width: 200px;
    height: 40px;
    min-width: 200px;
    padding: 0 20px;
    border-radius: 36px;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.05em;
  }
}

.instagram {
  background-color: #F9F3E7;
  padding: 120px 175px;
}
@media screen and (max-width: 1024px) {
  .instagram {
    padding: 80px 40px;
  }
}
@media screen and (max-width: 768px) {
  .instagram {
    /* Figma Frame 93（SP Instagram） */
    padding: 20px 10px 40px;
  }
}

.instagram__inner {
  max-width: 1090px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}
@media screen and (max-width: 768px) {
  .instagram__inner {
    /* Figma 内枠: 幅300・見出し〜グリッド gap 20 */
    max-width: 300px;
    gap: 20px;
  }
}

.instagram__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.instagram__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 12px;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .instagram__grid {
    gap: 8px;
  }
}
@media screen and (max-width: 768px) {
  .instagram__grid {
    /* Figma: 2列×2行・列間12px・行間14px・幅300（先頭4枚のみ表示） */
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
    -moz-column-gap: 12px;
         column-gap: 12px;
    row-gap: 14px;
    max-width: 300px;
    width: 100%;
    margin: 0 auto;
  }
}

@media screen and (max-width: 768px) {
  .instagram__grid .instagram__item:nth-child(n+5) {
    display: none;
  }
}

.instagram__item {
  display: block;
  aspect-ratio: 1/1;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .instagram__item {
    aspect-ratio: auto;
    width: 100%;
    height: 192.56px;
  }
}

.instagram__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease;
}

.instagram__item:hover img {
  transform: scale(1.05);
  opacity: 1;
}

.instagram__btn-wrap {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .instagram__btn-wrap {
    width: 100%;
    max-width: 300px;
    justify-content: center;
    align-items: center;
    padding: 0 0 0 10px;
    box-sizing: border-box;
    min-height: 58px;
  }
  .instagram__btn-wrap .btn-view-more {
    width: 200px;
    min-width: 200px;
    max-width: 200px;
    height: 40px;
    padding: 0 20px;
    border-radius: 36px;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.05em;
  }
}

.about {
  background-color: #FFFFFF;
  padding: 120px 40px;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .about {
    padding: 80px 24px;
  }
}
@media screen and (max-width: 768px) {
  .about {
    padding: 40px 20px;
  }
}

.about__inner {
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}
@media screen and (max-width: 768px) {
  .about__inner {
    gap: 40px;
  }
}

.about__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.about__intro {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 40px;
  width: 100%;
  padding: 20px 0;
}

.about__subtitle {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 36px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #3A3A3A;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .about__subtitle {
    font-size: 36px;
  }
}
@media screen and (max-width: 768px) {
  .about__subtitle {
    font-size: 24px;
  }
}

.about__text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #3a3a3a;
}
@media screen and (max-width: 768px) {
  .about__text {
    font-size: 16px;
  }
}

.about__merits {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.about__chart {
  width: 100%;
  margin: 0;
  line-height: 0;
}

.about__chart-img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.about__merit-list {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media screen and (max-width: 768px) {
  .about__merit-list {
    gap: 48px;
  }
}

.about__merit-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
  width: 100%;
}
.about__merit-item .about__merit-item--reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .about__merit-item {
    flex-direction: column;
    gap: 24px;
  }
}

@media screen and (max-width: 768px) {
  .md-reverse {
    flex-direction: column-reverse;
    gap: 24px;
  }
}

.about__merit-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 20px 0;
}
@media screen and (max-width: 768px) {
  .about__merit-text {
    padding: 0 0 20px;
  }
}

.about__merit-body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #3a3a3a;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .about__merit-body {
    font-size: 16px;
  }
}

.about__merit-photo {
  flex-shrink: 0;
  width: 548px;
  height: 410px;
  overflow: hidden;
}
.about__merit-photo .about__merit-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1024px) {
  .about__merit-photo {
    width: 380px;
    height: 380px;
  }
}
@media screen and (max-width: 768px) {
  .about__merit-photo {
    width: 100%;
    height: 240px;
  }
}

.about__divider {
  position: absolute;
  left: -327px;
  top: -284px;
  width: 665.88px;
  height: auto;
  z-index: 2;
  color: #FFFFFF;
  pointer-events: none;
  transform: rotate(40deg);
  transform-origin: center center;
}
@media screen and (max-width: 1024px) {
  .about__divider {
    width: 380px;
    left: -67px;
    top: -184px;
  }
}
@media screen and (max-width: 768px) {
  .about__divider {
    width: 200px;
    left: -47px;
    top: -104px;
  }
}
.about__divider img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.features {
  background-color: #F7F3E7;
  overflow: hidden;
}
.features .features__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 120px 0;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}
@media screen and (max-width: 1024px) {
  .features .features__inner {
    padding: 80px 0;
  }
}
@media screen and (max-width: 768px) {
  .features .features__inner {
    padding: 40px 0;
    gap: 40px;
  }
}
.features .features__divider {
  position: absolute;
  right: -27px;
  top: -184px;
  width: 436.83px;
  height: auto;
  z-index: 2;
  color: #FFFFFF;
  pointer-events: none;
  transform: rotate(-50deg);
  transform-origin: center center;
}
@media screen and (max-width: 1024px) {
  .features .features__divider {
    width: 380px;
    right: -107px;
    top: -184px;
  }
}
@media screen and (max-width: 768px) {
  .features .features__divider {
    width: 200px;
    right: -47px;
    top: -104px;
  }
}
.features .features__divider img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.features .features__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 0 40px;
}
@media screen and (max-width: 768px) {
  .features .features__heading {
    padding: 0 16px;
  }
}
.features .features__board {
  position: relative;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 48px 0;
}
@media screen and (max-width: 768px) {
  .features .features__board {
    padding: 24px 0;
  }
}
.features .features__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 520px));
  -moz-column-gap: 40px;
       column-gap: 40px;
  row-gap: 60px;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .features .features__grid {
    grid-template-columns: 1fr;
    row-gap: 48px;
    max-width: 520px;
    margin: 0 auto;
    width: 100%;
    padding: 0 16px;
  }
}
.features .features__cell {
  display: flex;
  flex-direction: column;
  gap: 46px;
}
@media screen and (max-width: 768px) {
  .features .features__cell {
    gap: 32px;
  }
}
.features .features__cell--1 {
  position: relative;
  justify-content: flex-end;
  min-height: 668px;
  gap: 0;
}
@media screen and (max-width: 768px) {
  .features .features__cell--1 {
    min-height: 0;
    justify-content: flex-start;
    gap: 32px;
  }
}
.features .features__slider-wrap {
  position: relative;
  width: 464px;
  max-width: 100%;
  height: 395px;
  flex-shrink: 0;
  align-self: center;
}
@media screen and (max-width: 1024px) {
  .features .features__slider-wrap {
    width: 360px;
    height: 308px;
  }
}
@media screen and (max-width: 768px) {
  .features .features__slider-wrap {
    width: 100%;
    height: 240px;
    align-self: stretch;
  }
}
.features .features__slider-wrap--float {
  position: absolute;
  top: 0;
  left: 28px;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .features .features__slider-wrap--float {
    left: 16px;
  }
}
@media screen and (max-width: 768px) {
  .features .features__slider-wrap--float {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    max-width: 464px;
    margin: 0 auto;
  }
}
.features .features__slider {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.features .features__slider-track {
  display: flex;
  width: 100%;
  height: 100%;
}
.features .features__slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
}
.features .features__slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .features .features__slide img {
    -o-object-position: center top;
       object-position: center top;
  }
}
.features .features__label {
  position: absolute;
  top: 0;
  left: -3px;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 54px;
  line-height: 1.437;
  color: #604937;
  pointer-events: none;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .features .features__label {
    font-size: 40px;
  }
}
@media screen and (max-width: 768px) {
  .features .features__label {
    font-size: 28px;
    left: 0;
  }
}
.features .features__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 464px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 24px;
  padding: 0 28px;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .features .features__content {
    padding: 0;
    max-width: none;
  }
}
.features .features__title {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.089;
  color: #3A3A3A;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .features .features__title {
    font-size: 28px;
  }
}
@media screen and (max-width: 768px) {
  .features .features__title {
    font-size: 24px;
  }
}
.features .features__text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #3a3a3a;
  margin: 0;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .features .features__text {
    font-size: 16px;
  }
}
.features .features__divider {
  overflow: hidden;
}
.features .features__divider img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scaleX(-1);
  transform-origin: center center;
}

.review {
  background-color: #FFFFFF;
}

.review__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 120px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}
@media screen and (max-width: 1024px) {
  .review__inner {
    padding: 80px 24px;
  }
}
@media screen and (max-width: 768px) {
  .review__inner {
    padding: 20px 0;
    gap: 20px;
  }
}

.review__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.review__slider-wrap {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .review__slider-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    max-width: 260px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 16px;
    box-sizing: border-box;
  }
}

.review__dots {
  display: none;
}

@media screen and (max-width: 768px) {
  .review__dots {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    margin: 0;
    padding: 12px 8px 10px;
    flex-shrink: 0;
    list-style: none;
    box-sizing: border-box;
  }
  .review__dot {
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background-color: #d0ccc4;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease;
  }
  .review__dot.is-active {
    background-color: #E7CC94;
    transform: scale(1.25);
  }
  .review__dot:focus-visible {
    outline: 2px solid #2B064D;
    outline-offset: 2px;
  }
}
.review__list {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  gap: 24px;
  width: 100%;
  max-width: 1080px;
  padding: 0 48px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .review__list {
    padding: 0;
    gap: 16px;
  }
}
@media screen and (max-width: 768px) {
  .review__list {
    flex-direction: row;
    flex-wrap: nowrap;
    padding: 0;
    gap: 24px;
    max-width: none;
    overflow-x: visible;
    will-change: transform;
  }
}

.review__item {
  flex: 1;
  background-color: #FFFFFF;
  border-radius: 16px;
  border: 1px solid #D8CFBE;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .review__item {
    flex: 0 0 260px;
    width: 260px;
    height: 300px;
    box-sizing: border-box;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .review__item::-webkit-scrollbar {
    display: none;
  }
}
@media (min-width: 769px) {
  .review__item[aria-hidden=true] {
    display: none;
  }
}

.review__stars {
  display: flex;
  align-items: center;
  gap: 4px;
}
.review__stars svg {
  width: 24px;
  height: 24px;
}
@media screen and (max-width: 768px) {
  .review__stars {
    gap: 8px;
  }
  .review__stars svg {
    width: 30px;
    height: 30px;
  }
}

.review__text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #3a3a3a;
  flex: 1;
}
@media screen and (max-width: 768px) {
  .review__text {
    font-size: 16px;
    line-height: 1.2;
    color: #000;
  }
}

.review__name {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.012;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  color: #666666;
}
@media screen and (max-width: 768px) {
  .review__name {
    font-size: 18px;
    line-height: 1.215;
    letter-spacing: 0.054em;
  }
}

.faq {
  background-color: #F9F3E7;
  padding: 120px;
}
@media screen and (max-width: 1024px) {
  .faq {
    padding: 80px 40px;
  }
}
@media screen and (max-width: 768px) {
  .faq {
    padding: 40px 20px;
  }
}

.faq__inner {
  max-width: 1200px;
  padding: 120px 0;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}
@media screen and (max-width: 768px) {
  .faq__inner {
    padding: 60px 0;
    gap: 32px;
  }
}

.faq__divider-top {
  position: absolute;
  left: -127px;
  top: -84px;
  width: 309px;
  height: auto;
  z-index: 1;
  pointer-events: none;
  transform: rotate(60deg);
  transform-origin: center center;
}
@media screen and (max-width: 768px) {
  .faq__divider-top {
    width: 160px;
    left: -60px;
    top: -104px;
  }
}
.faq__divider-top img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.faq__divider-bottom {
  position: absolute;
  right: -147px;
  bottom: -204px;
  width: 309px;
  height: auto;
  z-index: 1;
  pointer-events: none;
  transform: rotate(-120deg);
  transform-origin: center center;
}
@media screen and (max-width: 768px) {
  .faq__divider-bottom {
    width: 160px;
    right: -87px;
    bottom: -104px;
  }
}
.faq__divider-bottom img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.faq__heading {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.faq__list {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq__item {
  background-color: #FFFFFF;
  box-shadow: 2px 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.faq__summary {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 23px 24px 24px;
  cursor: pointer;
  list-style: none;
  min-height: 95px;
}
@media screen and (max-width: 768px) {
  .faq__summary {
    padding: 16px 16px;
    min-height: 70px;
    gap: 12px;
  }
}

.faq__summary::-webkit-details-marker {
  display: none;
}

.faq__q-mark {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 44px;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.22;
  letter-spacing: 0.064em;
  color: #2B064D;
}
@media screen and (max-width: 768px) {
  .faq__q-mark {
    font-size: 24px;
    height: 36px;
  }
}

.faq__question {
  flex: 1;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #525050;
}
@media screen and (max-width: 1024px) {
  .faq__question {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .faq__question {
    font-size: 18px;
  }
}

.faq__icon {
  flex-shrink: 0;
  position: relative;
  width: 24px;
  height: 24px;
}

.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  background-color: #2B064D;
  transition: transform 0.3s, opacity 0.3s;
}

.faq__icon::before {
  width: 20px;
  height: 2px;
  top: 50%;
  left: 2px;
  transform: translateY(-50%);
}

.faq__icon::after {
  width: 2px;
  height: 20px;
  left: 11px;
  top: 2px;
}

.faq__item[open] .faq__icon::before {
  transform: translateY(-50%);
}

.faq__item[open] .faq__icon::after {
  opacity: 0;
}

.faq__answer {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #3a3a3a;
  padding: 0 24px 24px 68px;
}
@media screen and (max-width: 768px) {
  .faq__answer {
    padding: 0 16px 16px 52px;
    font-size: 16px;
  }
}

.contact {
  background-color: #FFFFFF;
  overflow: hidden;
}
.contact .contact__inner {
  padding: 120px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .contact .contact__inner {
    padding: 80px 80px;
  }
}
@media screen and (max-width: 768px) {
  .contact .contact__inner {
    padding: 40px 20px;
    gap: 24px;
  }
}
.contact .contact__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.contact .contact__intro {
  width: 100%;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.contact .contact__lead,
.contact .contact__note {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #3a3a3a;
}
@media screen and (max-width: 768px) {
  .contact .contact__lead,
.contact .contact__note {
    font-size: 16px;
  }
}
.contact .contact__sns-list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 120px;
  height: 24px;
  position: relative;
}
.contact .contact__sns-item {
  position: absolute;
}
.contact .contact__sns-item:nth-child(1) {
  left: 43px;
}
.contact .contact__sns-item:nth-child(2) {
  left: 83px;
  top: 1px;
}
.contact .contact__sns-item:nth-child(3) {
  left: 36px;
  top: 0;
}
.contact .contact__sns-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact .contact__sns-link img {
  width: 25px;
  height: 25px;
  -o-object-fit: contain;
     object-fit: contain;
}
.contact .contact__steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 100px;
}
@media screen and (max-width: 768px) {
  .contact .contact__steps {
    gap: 32px;
    width: 100%;
  }
}
.contact .contact__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.contact .contact__step-num {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #2B064D;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 10px;
  line-height: 1;
  color: #FFFFFF;
}
.contact .contact__step-num--active {
  background-color: #E7CC94;
}
.contact .contact__step-label {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.2;
  color: #000;
}
@media screen and (max-width: 768px) {
  .contact .contact__step-label {
    font-size: 14px;
    text-align: center;
  }
}
.contact .contact__form {
  width: 100%;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.contact .contact__field {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .contact .contact__field {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
.contact .contact__label-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 200px;
  min-width: 200px;
}
@media screen and (max-width: 768px) {
  .contact .contact__label-wrap {
    min-width: auto;
    width: auto;
    gap: 12px;
  }
}
.contact .contact__label-wrap--optional {
  padding-left: 70px;
}
@media screen and (max-width: 768px) {
  .contact .contact__label-wrap--optional {
    padding-left: 0;
  }
}
.contact .contact__required {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 30px;
  background-color: #2B064D;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
  color: #FFFFFF;
  flex-shrink: 0;
}
.contact .contact__label {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
  color: #000;
}
@media screen and (max-width: 768px) {
  .contact .contact__label {
    font-size: 16px;
  }
}
.contact .contact__input,
.contact .contact__textarea {
  flex: 1;
  width: 100%;
  max-width: 600px;
  height: 50px;
  padding: 0 16px;
  background-color: #F4F4F2;
  border: none;
  border-radius: 4px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
  color: #3A3A3A;
  outline: none;
}
@media screen and (max-width: 768px) {
  .contact .contact__input,
.contact .contact__textarea {
    max-width: 100%;
    font-size: 16px;
  }
}
.contact .contact__input::-moz-placeholder, .contact .contact__textarea::-moz-placeholder {
  color: #999;
}
.contact .contact__input::placeholder,
.contact .contact__textarea::placeholder {
  color: #999;
}
.contact .contact__input:focus,
.contact .contact__textarea:focus {
  outline: 2px solid #E7CC94;
  outline-offset: 0;
}
.contact .contact__textarea {
  height: auto;
  min-height: 300px;
  padding: 12px 16px;
  resize: vertical;
}
@media screen and (max-width: 768px) {
  .contact .contact__textarea {
    min-height: 180px;
  }
}
.contact .contact__privacy {
  width: 100%;
  padding: 20px;
  max-width: 800px;
  height: 400px;
  background-color: #F4F4F2;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .contact .contact__privacy {
    height: auto;
    padding: 12px;
  }
}
.contact .contact__privacy-scroll {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #3a3a3a;
  width: 720px;
  height: 320px;
  overflow-y: auto;
}
@media screen and (max-width: 768px) {
  .contact .contact__privacy-scroll {
    width: 100%;
    height: 260px;
    font-size: 16px;
  }
}
.contact .contact__privacy-scroll p {
  margin-bottom: 8px;
}
.contact .contact__privacy-scroll p:last-child {
  margin-bottom: 0;
}
.contact .contact__agree {
  display: flex;
  align-items: center;
}
.contact .contact__agree-label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  margin: 0 auto;
}
.contact .contact__agree-checkbox {
  display: none;
}
.contact .contact__agree-checkbox + .contact__agree-text {
  position: relative;
  padding-left: 32px;
}
.contact .contact__agree-checkbox + .contact__agree-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border: 1px solid #d9d9d9;
  background-color: #D9D9D9;
  border-radius: 2px;
}
.contact .contact__agree-checkbox:checked + .contact__agree-text::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 50%;
  transform: translateY(-60%) rotate(45deg);
  width: 6px;
  height: 10px;
  border-right: 2px solid #2B064D;
  border-bottom: 2px solid #2B064D;
}
.contact .contact__agree-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #3a3a3a;
}
@media screen and (max-width: 768px) {
  .contact .contact__agree-text {
    font-size: 16px;
  }
}
.contact .contact__privacy-note {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #3a3a3a;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .contact .contact__privacy-note {
    font-size: 16px;
  }
}
.contact .contact__submit-wrap {
  display: flex;
  justify-content: center;
}
.contact .contact__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  height: 50px;
  background-color: #2B064D;
  border-radius: 4px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
  color: #FFFFFF;
  cursor: pointer;
  border: none;
  transition: opacity 0.3s;
}
.contact .contact__submit:hover {
  opacity: 0.75;
}

.footer {
  width: 100%;
  background-color: #F9F3E7;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 31px 20px;
}
@media screen and (max-width: 768px) {
  .footer__inner {
    padding: 31px 20px 80px;
  }
}

.footer__nav {
  width: 100%;
  display: flex;
  justify-content: center;
}

.footer__nav-list {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .footer__nav-list {
    gap: 16px;
  }
}

.footer__nav-item {
  padding: 5px 0;
}

.footer__nav-link {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.8;
  color: #3a3a3a;
  text-decoration: none;
  transition: color 0.3s;
}

.footer__nav-link:hover {
  color: #604937;
  opacity: 1;
}

.footer__copyright {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #3a3a3a;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .footer__copyright {
    font-size: 16px;
  }
}

.footer__sns {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .footer__sns {
    position: fixed;
    right: 16px;
    bottom: 16px;
    width: auto;
    z-index: 120;
  }
}

.footer__sns-list {
  display: flex;
  align-items: center;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__sns-item {
  display: flex;
  align-items: center;
}

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

.footer__sns-link img {
  width: 24px;
  height: 24px;
}
@media screen and (max-width: 768px) {
  .footer__sns-link img {
    width: 50px;
    height: 50px;
    -o-object-fit: contain;
       object-fit: contain;
  }
}

.blog-layout {
  max-width: 1080px;
  margin: 60px auto;
  padding: 0 40px;
  display: flex;
  gap: 48px;
  align-items: flex-start;
}
@media screen and (max-width: 1024px) {
  .blog-layout {
    padding: 0 24px;
    gap: 32px;
  }
}
@media screen and (max-width: 768px) {
  .blog-layout {
    flex-direction: column;
    padding: 0 16px;
    margin: 32px auto;
    gap: 40px;
  }
}

.blog-layout__main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.blog-layout__sidebar {
  width: 260px;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .blog-layout__sidebar {
    width: 100%;
  }
}

.archive-header {
  border-left: 4px solid #E7CC94;
  padding-left: 16px;
}

.archive-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.5;
  color: #604937;
}
@media screen and (max-width: 768px) {
  .archive-title {
    font-size: 18px;
  }
}

.post-card {
  display: flex;
  gap: 24px;
  padding-bottom: 32px;
  border-bottom: 1px solid #CCCCCC;
}
@media screen and (max-width: 768px) {
  .post-card {
    flex-direction: column;
    gap: 16px;
    padding-bottom: 24px;
  }
}

.post-card__thumbnail-link {
  display: block;
  flex-shrink: 0;
  width: 220px;
  height: 148px;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .post-card__thumbnail-link {
    width: 180px;
    height: 120px;
  }
}
@media screen and (max-width: 768px) {
  .post-card__thumbnail-link {
    width: 100%;
    height: 200px;
  }
}

.post-card__thumbnail {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}

.post-card__thumbnail-link:hover .post-card__thumbnail {
  transform: scale(1.04);
}

.post-card__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.post-card__meta {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  color: #666666;
  letter-spacing: 0.05em;
}

.post-card__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.5;
  color: #3A3A3A;
}
@media screen and (max-width: 768px) {
  .post-card__title {
    font-size: 16px;
  }
}
.post-card__title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.post-card__title a:hover {
  color: #604937;
}

.post-card__excerpt {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: #3A3A3A;
  flex: 1;
}
@media screen and (max-width: 768px) {
  .post-card__excerpt {
    font-size: 13px;
  }
}

.post-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  padding: 8px 20px;
  background-color: #DCC2CD;
  border-radius: 20px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #FFFFFF;
  text-decoration: none;
  transition: opacity 0.3s;
}
.post-card__button:hover {
  opacity: 0.75;
}

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 16px 0;
}
.nav-links .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border: 1px solid #D8CFBE;
  border-radius: 4px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  color: #3A3A3A;
  text-decoration: none;
  transition: background-color 0.2s, color 0.2s;
}
.nav-links .page-numbers:hover {
  background-color: #DCC2CD;
  color: #FFFFFF;
  border-color: #DCC2CD;
}
.nav-links .page-numbers.current {
  background-color: #604937;
  color: #FFFFFF;
  border-color: #604937;
}

.detail {
  max-width: 800px;
  margin: 60px auto;
  padding: 0 40px;
}
@media screen and (max-width: 1024px) {
  .detail {
    padding: 0 24px;
  }
}
@media screen and (max-width: 768px) {
  .detail {
    padding: 0 16px;
    margin: 32px auto;
  }
}

.detail__body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.detail__body > * + * {
  margin-top: 0;
}

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

.detail__date {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  color: #666666;
  letter-spacing: 0.05em;
}

.detail__categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.detail__category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 14px;
  background-color: #E7CC94;
  border-radius: 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  color: #262626;
}

.detail__title {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.6;
  color: #604937;
}
@media screen and (max-width: 768px) {
  .detail__title {
    font-size: 22px;
  }
}

.detail__thumbnail {
  width: 100%;
  height: auto;
  display: block;
}

.detail__content {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.9;
  color: #3A3A3A;
}
.detail__content h2 {
  font-size: 22px;
  font-weight: 500;
  color: #604937;
  border-left: 4px solid #E7CC94;
  padding-left: 12px;
  margin: 32px 0 16px;
}
.detail__content h3 {
  font-size: 18px;
  font-weight: 500;
  color: #3A3A3A;
  margin: 24px 0 12px;
}
.detail__content p {
  margin-bottom: 16px;
}
.detail__content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 20px auto;
}
.detail__content a {
  color: #604937;
  text-decoration: underline;
}

.detail__other {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid #CCCCCC;
  margin-top: 16px;
}
@media screen and (max-width: 768px) {
  .detail__other {
    flex-direction: column;
    gap: 12px;
  }
}

.detail__prev,
.detail__next {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  color: #604937;
  text-decoration: none;
  transition: opacity 0.2s;
}
.detail__prev:hover,
.detail__next:hover {
  opacity: 0.7;
}

.detail__next {
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .detail__next {
    margin-left: 0;
  }
}

.widget {
  background-color: #FFFDF5;
  border: 1px solid #D8CFBE;
  padding: 24px 20px;
  margin-bottom: 24px;
}
.widget__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #604937;
  border-bottom: 2px solid #E7CC94;
  padding-bottom: 8px;
  margin-bottom: 16px;
}
.widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.widget li {
  font-size: 14px;
  border-bottom: 1px solid #CCCCCC;
  padding-bottom: 8px;
}
.widget li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.widget li a {
  color: #3A3A3A;
  text-decoration: none;
  transition: color 0.2s;
}
.widget li a:hover {
  color: #604937;
}

/* CF7の自動生成spanタグ（ラッパー）によるレイアウト崩れ防止 */
.wpcf7-form-control-wrap {
  display: block;
  width: 100%;
  text-align: center;
}

/* もしsubmitボタンのスタイルが効いていない場合は以下も追加 */
.contact__submit-wrap input[type=submit] {
  /* 元の button.contact__submit に設定していたCSSと同じスタイルが当たるように調整が必要な場合があります */
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  cursor: pointer;
}

/* CF7の同意チェックボックスを表示（詳細度を上げて元のCSSを上書き） */
#contact .contact__form .contact__agree .wpcf7-acceptance input[type=checkbox] {
  display: inline-block;
  -moz-appearance: auto;
       appearance: auto;
  -webkit-appearance: checkbox;
  width: 16px;
  height: 16px;
  opacity: 1;
  visibility: visible;
  margin-right: 8px;
  position: static;
}

/* CF7が自動出力するラッパー要素のレイアウト調整 */
#contact .contact__form .contact__agree span.wpcf7-list-item {
  display: inline-flex;
  align-items: center;
  margin: 0;
}

#contact .contact__form .contact__agree span.wpcf7-list-item label {
  display: flex;
  align-items: center;
  cursor: pointer;
}

/* =========================================
   確認画面用のスタイル
========================================= */
/* 入力されたテキストの装飾 */
.contact__confirm-text {
  font-size: 16px;
  line-height: 1.6;
  padding: 12px 15px;
  background-color: #f7f7f7; /* 入力欄のように少し背景に色をつける */
  border-bottom: 2px solid #ddd; /* 下線で区切る */
  width: 100%;
  min-height: 48px; /* 空欄でも高さが潰れないようにする */
  box-sizing: border-box;
  word-break: break-all; /* 長いURL等でレイアウト崩れを防ぐ */
  margin-top: 5px;
}

/* 戻るボタンの装飾 */
.contact__btn-back {
  background-color: #cccccc;
  color: #333333;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s ease;
  text-align: center;
}

.contact__btn-back:hover {
  opacity: 0.7;
}

/* 送信ボタンの装飾（もし既存の .contact__submit で装飾されていなければ追加） */
.contact__submit {
  background-color: #333333; /* サイトのメインカラーに合わせてください */
  color: #ffffff;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s ease;
  text-align: center;
}

.contact__submit:hover {
  opacity: 0.7;
}

/* スマホ閲覧時のボタン配置（縦並びにして押しやすくする） */
@media screen and (max-width: 768px) {
  .contact__submit-wrap--confirm {
    flex-direction: column-reverse; /* 戻るボタンを下にする */
    gap: 15px !important; /* CF7側の直書きstyleを上書き */
  }
  .contact__btn-back,
.contact__submit {
    width: 100%; /* スマホでは横幅いっぱいに */
  }
}
/* =========================================
   Contact Form 7 レイアウト修正（強力版）
========================================= */
/* 1. 入力欄の幅を100%に広げる（Flexboxの強制拡張） */
.contact__field .wpcf7-form-control-wrap {
  flex: 1 1 auto !important;
  width: 100% !important;
  max-width: 100% !important;
  display: block !important;
}

/* 入力欄そのものを枠いっぱいに広げる */
.contact__field input[type=text],
.contact__field input[type=email],
.contact__field input[type=tel],
.contact__field textarea {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}

/* 2. 消えたチェックボックスを完全復活させる */
/* テーマによる「透明化」や「極小化」などの非表示処理をすべてリセット */
.contact__agree input[type=checkbox],
.wpcf7-acceptance input[type=checkbox] {
  -moz-appearance: checkbox !important;
       appearance: checkbox !important;
  -webkit-appearance: checkbox !important;
  display: inline-block !important;
  width: 18px !important;
  height: 18px !important;
  opacity: 1 !important;
  visibility: visible !important;
  position: static !important;
  clip: auto !important;
  margin: 0 8px 0 0 !important;
  transform: none !important;
}