@charset "UTF-8";

/*
 * 参考
 * https://github.com/Andy-set-studio/modern-css-reset/blob/master/src/reset.css
*/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

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

/* 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,
picture {
  max-width: 100%;
  display: block;
}

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

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/*****************************************
 * 数値から単位を取り除く
 * 参考
 * https://css-tricks.com/snippets/sass/
******************************************/
/*****************************************
 * px→remの計算
 * 参考
 * https://webdou.net/sass-rem/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
/*****************************************
 * vwの計算
 * 参考
 * https://webdou.net/sass-vw/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
html {
  font-size: 16px;
}

@media (max-width: 1200px) {
  html {
    font-size: clamp(12px, 1.3333333333vw, 16px);
  }
}

@media screen and (max-width: 519px) {
  html {
    font-size: 16px;
  }
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.375rem;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #000;
  line-height: 1.5;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.8;
}

@media screen and (max-width: 519px) {
  a:hover {
    opacity: 1;
  }
}

button {
  transition: opacity 0.3s;
}

a[href^="tel:"] {
  pointer-events: none;
}

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

address {
  font-style: initial;
}

.l-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 25px;
}

@media screen and (max-width: 519px) {
  .l-inner {
    padding: 0 12px;
  }
}

.l-main-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-x: hidden;
}

#main {
  flex: 1;
}

.l-sub-inner {
  max-width: 1050px;
  width: 100%;
  margin: 0 auto;
  padding: 0 25px;
}

@media screen and (max-width: 519px) {
  .l-sub-inner {
    padding: 0 12px;
  }
}

.c-btn {
  width: 100%;
  display: inline-block;
  color: #FFF;
  background-color: #D17963;
  padding: 0.5625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.9285714286;
  letter-spacing: 0.15em;
  text-align: center;
  white-space: nowrap;
}

.c-heading-wrap {
  text-align: center;
}

.c-heading {
  font-family: "Cormorant Upright", serif;
  font-size: 1.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.3;
  color: #6F6F6F;
  text-shadow: 0 0.25rem 0.25rem rgba(0, 0, 0, 0.25);
}

.c-heading-sub {
  font-family: "Noto Serif JP", serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #6F6F6F;
}

.fadeIn {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s;
}

.fadeIn.scrollIn {
  opacity: 1;
  transform: translate(0, 0);
}

.fadeInPlace {
  opacity: 0;
  transition: opacity 1.5s ease-out;
}

.fadeInPlace.scrollIn {
  opacity: 1;
}

.c-sub-contact.l-inner {
  margin-top: 6.5rem;
  padding: 0 1.5625rem;
}

.c-sub-contact__heading {
  line-height: 1;
  margin-left: 0.8125rem;
}

.c-sub-contact__store {
  max-width: 70.875rem;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0 1.25rem;
  margin: 0.9375rem auto 0 0;
  border-top: 1px solid transparent;
  -o-border-image: linear-gradient(to right, #6F6F6F 0 51rem, transparent 51rem 100%) 1;
  border-image: linear-gradient(to right, #6F6F6F 0 51rem, transparent 51rem 100%) 1;
  padding: 1.25rem 1.5625rem 0 2.5rem;
  position: relative;
}

.c-sub-contact__store::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 86%;
  background: linear-gradient(to bottom, #6F6F6F 0, #6F6F6F 100%);
}

@media screen and (max-width: 999px) {
  .c-sub-contact__store {
    padding: 1.25rem 0 0 1.25rem;
  }
}

@media screen and (max-width: 519px) {
  .c-sub-contact__store {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 1.25rem 0;
  }
}

.c-sub-contact__info address {
  font-style: normal;
  margin-top: 2.5rem;
}

.c-sub-contact__info address p {
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.15em;
}

.c-sub-contact__info-title {
  font-size: clamp(14px, 14px + (100vw - 520px) * 0.03, 20px);
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 0.15em;
}

.c-sub-contact__info-title span {
  text-transform: uppercase;
}

.c-sub-contact__info-time {
  margin-top: 1.125rem;
}

.c-sub-contact__info-time dl {
  display: flex;
  align-items: center;
  gap: 0 1.375rem;
}

.c-sub-contact__info-time dl:not(:first-child) {
  margin-top: 0.25rem;
}

.c-sub-contact__info-time dt,
.c-sub-contact__info-time dd {
  min-width: 4.625rem;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.15em;
}

.c-sub-contact__info-time dt {
  text-transform: uppercase;
}

.c-sub-contact__info-tel {
  margin-top: 1.125rem;
  display: flex;
  align-items: center;
  gap: 0 0.5rem;
}

.c-sub-contact__info-tel a {
  display: flex;
  align-items: center;
  gap: 0 0.5rem;
  font-size: 1.5rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  line-height: 1.125;
  letter-spacing: 0.15em;
}

.c-sub-contact__info-tel-text {
  margin-top: 0.3125rem;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 2.25;
  letter-spacing: 0.15em;
}

.c-sub-contact__map {
  max-width: 30.125rem;
  width: 100%;
}

@media screen and (max-width: 519px) {
  .c-sub-contact__map {
    max-width: 100%;
  }
}

.c-sub-contact__map iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 482/313;
}

.c-sub-contact__message {
  max-width: 65.125rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url("../images/common/contact-bg.jpg") no-repeat center center/cover;
  aspect-ratio: 1042/356;
  margin: 6.375rem auto 0;
}

@media screen and (max-width: 519px) {
  .c-sub-contact__message {
    margin: 4.375rem auto 0;
  }
}

.c-sub-contact__message-inner {
  padding: 0.625rem;
}

@media screen and (max-width: 519px) {
  .c-sub-contact__message-inner {
    padding: 1.25rem;
  }
}

.c-sub-contact__message-text {
  color: #FFF;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.15em;
  text-align: center;
  text-shadow: 0 0rem 0.25rem rgba(0, 0, 0, 0.25), 0 0.25rem 0.25rem rgba(0, 0, 0, 0.25), 0 0.25rem 0.25rem rgba(0, 0, 0, 0.25), 0 0.25rem 0.25rem rgba(0, 0, 0, 0.25);
}

.c-sub-contact__message-btn {
  margin: 2.625rem auto 0;
  max-width: 13.75rem;
  width: 100%;
}

.c-sub-contact__message-btn a {
  display: block;
  background: #7F746D;
  color: #FFF;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 2.25;
  letter-spacing: 0.15em;
  padding: 0.8125rem;
  text-align: center;
  transition: background-color 0.3s;
}

.c-sub-contact__message-btn a:hover {
  background-color: #3C2B21;
  opacity: 1;
}

.c-sub-heading__wrap {
  text-align: center;
  position: relative;
}

.c-sub-heading__wrap::before,
.c-sub-heading__wrap::after {
  content: "";
  position: absolute;
  top: calc(100% - 0.3125rem - 1.125rem);
  height: 1px;
  background-color: #6F6F6F;
}

.c-sub-heading__wrap::before {
  left: 0;
  right: 50%;
}

.c-sub-heading__wrap::after {
  left: 50%;
  right: 0;
}

.c-sub-heading__text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #A8A8A8;
}

.c-sub-heading {
  font-family: "Noto Serif JP", serif;
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #6F6F6F;
  padding: 0.4375rem 0.625rem 0.5625rem;
  text-align: center;
  max-width: 23.4375rem;
  background-color: #E9EBE0;
  margin: 0.5625rem auto 0;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 519px) {
  .c-sub-heading {
    width: 80%;
    font-size: clamp(15px, 15px + (100vw - 320px) * 0.015, 18px);
  }
}

.c-sub-heading--secondary {
  color: #FFF;
  background-color: #000;
}

.c-sub-mv {
  width: 100%;
  margin-top: 5.375rem;
  background-color: #E9EBE0;
  height: 17.875rem;
}

.c-sub-mv__heading {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 0.625rem;
  height: inherit;
}

.c-sub-mv__heading__en-title {
  font-family: "Noto Sans JP", sans-serif;
  color: #D17963;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.c-sub-mv__heading__ja-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #6F6F6F;
}

.c-sub-mv__categories {
  margin-top: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
}

.c-sub-mv__category {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.15em;
  color: #FFF;
  background-color: #D17963;
  border-radius: 1.1875rem;
  padding: 0.625rem 1.25rem;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 1.1875rem;
}

.c-sub-mv__category:hover {
  opacity: 0.8;
}

.c-sub-text-area {
  margin-top: 5.875rem;
  text-align: center;
}

@media screen and (max-width: 519px) {
  .c-sub-text-area {
    margin-top: 3rem;
  }
}

.c-sub-text-area__title {
  font-size: clamp(16px, 16px + (100vw - 723px) * 0.02, 22px);
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: #6F6F6F;
}

.c-sub-text-area__img {
  width: 80%;
  margin: 2.5rem auto 0;
}

.c-sub-text-area__img img {
  width: 100%;
  height: auto;
  display: block;
}

@media screen and (max-width: 519px) {
  .c-sub-text-area__img img {
    aspect-ratio: 4 / 3;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

@media screen and (max-width: 519px) {
  .c-sub-text-area__title {
    font-size: 1.25rem;
  }
}

.c-sub-text-area__text {
  margin-top: 2.3125rem;
  font-size: 0.875rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.9285714286;
  letter-spacing: 0.15em;
  color: #6F6F6F;
}

@media screen and (max-width: 519px) {
  .c-sub-text-area__text {
    text-align: left;
  }

  .c-sub-text-area__img {
    width: 100%;
  }

}

.c-topics__content {
  max-width: 65.625rem;
  margin: 0 auto;
}

.c-topics__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.125rem;
  list-style: none;
  padding: 0;
}

@media screen and (max-width: 999px) {
  .c-topics__items {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 519px) {
  .c-topics__items {
    grid-template-columns: repeat(auto-fit, minmax(11.5625rem, 1fr));
    gap: 1.25rem;
  }
}

.c-topics__item {
  box-shadow: 0 0.25rem 1.5rem rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.c-topics__link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.c-topics__img-wrap {
  position: relative;
  background-color: #e0e0e0;
  aspect-ratio: 239/150;
  overflow: hidden;
}

.c-topics__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.c-topics__noimage {
  width: 100%;
  height: 100%;
  background-color: #E9EBE0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-topics__noimage img {
  width: auto;
  height: auto;
  max-width: 60%;
  max-height: 60%;
  -o-object-fit: contain;
  object-fit: contain;
}

.c-topics__label {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #D17963;
  color: #FFF;
  font-size: 0.625rem;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0.15em;
  padding: 0.375rem 0.75rem;
}

.c-topics__text-wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #FFF;
  padding: 0.375rem 0.6875rem 1rem;
  min-height: 6.875rem;
}

.c-topics__title {
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.6923076923;
  letter-spacing: 0.15em;
  color: #6F6F6F;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
}

.c-topics__date {
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #6F6F6F;
  margin-top: 1.6875rem;
}

.c-topics__category-btn {
  min-width: 4.75rem;
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.15em;
  color: #FFF;
  background-color: #B7B7B7;
  border-radius: 1.1875rem;
  padding: 0.375rem 1.25rem;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.c-topics__category-btn.is-active {
  background-color: #D17963;
  color: #FFF;
}

.c-topics__category-btn:hover {
  background-color: #D17963;
  opacity: 1;
}

.p-404 {
  padding-top: 6.4375rem;
  padding-bottom: 8.125rem;
  background-color: #E9EBE0;
  margin-top: 5.375rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.p-404__inner {
  max-width: 31.25rem;
  margin: 0 auto;
}

@media screen and (max-width: 519px) {
  .p-404__inner .c-sub-mv__heading__ja-title {
    font-size: 1.125rem;
  }
}

.p-404__text {
  margin-top: 3rem;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.9285714286;
  letter-spacing: 0.15em;
  text-align: center;
  color: #6F6F6F;
}

@media screen and (max-width: 519px) {
  .p-404__text {
    text-align: left;
  }
}

.p-404__btn {
  max-width: 15.6875rem;
  margin: 3rem auto 0;
  text-align: center;
}

.p-bridal__service {
  margin-top: 5rem;
}

@media screen and (max-width: 519px) {
  .p-bridal__service {
    margin-top: 3rem;
  }
}

@media screen and (max-width: 999px) {
  .p-bridal__service-inner.l-sub-inner {
    max-width: 100%;
  }
}

.p-bridal__service-propose-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 2rem;
}

@media screen and (max-width: 699px) {
  .p-bridal__service-propose-cols {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.p-bridal__service-img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 4px;
}

@media screen and (max-width: 519px) {
  .p-bridal__service-img img {
    aspect-ratio: 4 / 3;
  }
}

.p-bridal__service-propose-text-wrap .p-bridal__service-text {
  width: 100%;
  margin: 0;
  text-align: left;
}

.p-bridal__service-propose-text-wrap .p-bridal__service-note {
  margin-top: 1.25rem;
}

.p-bridal__service-select {
  position: relative;
  z-index: 5;
  margin-top: 2rem;
  padding-bottom: 3.875rem;
}

@media screen and (max-width: 519px) {
  .p-bridal__service-select {
    margin-top: 1.5rem;
    padding-bottom: 0;
  }
}

.p-bridal__service-inner {
  padding: 0 1.5rem 0;
}

@media screen and (max-width: 519px) {
  .p-bridal__service-inner {
    padding: 0;
  }
}

.p-bridal__service-title {
  display: flex;
  align-items: center;
  gap: 0 1rem;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  font-weight: 600;
  font-family: "Noto Sans JP", sans-serif;
  color: #6F6F6F;
  margin-left: 0.625rem;
}

@media screen and (max-width: 519px) {
  .p-bridal__service-title {
    margin-left: 0;
    gap: 0 0.625rem;
  }
}

.p-bridal__service-title::after {
  content: "";
  display: block;
  flex: 1;
  height: 1px;
  background-color: #D17963;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.8s ease-out;
}

.p-bridal__service-title.fadeIn.scrollIn::after {
  transform: scaleX(1);
}

.p-bridal__service-text {
  width: 72%;
  margin: 2.625rem auto 0;
  font-size: 0.875rem;
  color: #6F6F6F;
  font-weight: 400;
  line-height: 1.9285714286;
  letter-spacing: 0.08em;
  text-align: center;
}

@media screen and (max-width: 999px) {
  .p-bridal__service-text {
    margin: 1.875rem auto 0;
    width: 80%;
    text-align: center;
  }
}

@media screen and (max-width: 519px) {
  .p-bridal__service-text {
    width: 100%;
  }
}

.p-bridal__service-list {
  margin-top: 3.8125rem;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  list-style: none;
}

@media screen and (max-width: 519px) {
  .p-bridal__service-list {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 3.125rem;
  }
}

.p-bridal__service-list li a img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
  aspect-ratio: 182/90;
}

.p-bridal__service-list li:nth-child(16),
.p-bridal__service-list li:nth-child(17),
.p-bridal__service-list li:nth-child(18) {
  grid-column: span 1;
}

.p-bridal__service-sale-img {
  max-width: 9.125rem;
  width: 100%;
}

.p-bridal__service-sale-img img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-bridal__service-sale-list {
  width: 94%;
  margin: 5rem auto 0;
  display: flex;
  gap: 1.25rem 6rem;
}

@media screen and (max-width: 999px) {
  .p-bridal__service-sale-list {
    justify-content: center;
    width: 100%;
    gap: 3.125rem;
  }
}

@media screen and (max-width: 519px) {
  .p-bridal__service-sale-list {
    flex-direction: column;
    margin-top: 3.125rem;
  }
}

.p-bridal__service-sale-list li {
  position: relative;
  width: 100%;
  max-width: 25.375rem;
}

.p-bridal__service-sale-list li::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  width: 10.125rem;
  height: 8.875rem;
  background-color: #E9EBE0;
}

@media screen and (max-width: 999px) {
  .p-bridal__service-sale-list li::after {
    width: 5.3125rem;
    height: 5.3125rem;
  }
}

.p-bridal__service-sale-list li p {
  font-size: 0.875rem;
  color: #6F6F6F;
  font-weight: 400;
  line-height: 1.9285714286;
  letter-spacing: 0.15em;
  margin-left: 0.625rem;
}

.p-bridal__service-sale-item-left::after {
  bottom: -4.4375rem;
  right: -0.1875rem;
}

@media screen and (max-width: 999px) {
  .p-bridal__service-sale-item-left::after {
    bottom: -1.0625rem;
  }
}

@media screen and (max-width: 519px) {
  .p-bridal__service-sale-item-left::after {
    right: initial;
  }
}

.p-bridal__service-sale-item-right::after {
  top: -1.5rem;
  right: -4rem;
}

@media screen and (max-width: 999px) {
  .p-bridal__service-sale-item-right::after {
    right: 0;
    top: 2.625rem;
  }
}

.p-bridal__service-sale {
  margin-top: 3.3125rem;
}

@media screen and (max-width: 519px) {
  .p-bridal__service-sale {
    margin-top: 4.375rem;
  }
}

.p-bridal__service-work-shop {
  margin-top: 10.25rem;
}

@media screen and (max-width: 519px) {
  .p-bridal__service-work-shop {
    margin-top: 4.375rem;
  }
}

.p-bridal__service-work-shop-content {
  display: flex;
  flex-direction: row-reverse;
  margin-top: 1rem;
}

@media screen and (max-width: 519px) {
  .p-bridal__service-work-shop-content {
    flex-direction: column;
    margin-top: 1.875rem;
  }
}

.p-bridal__service-work-shop-img {
  position: relative;
  z-index: -1;
  max-width: 47.8%;
  width: 100%;
  margin-left: -2.3rem;
}

@media screen and (max-width: 999px) {
  .p-bridal__service-work-shop-img {
    margin-left: -7.25rem;
  }
}

@media screen and (max-width: 519px) {
  .p-bridal__service-work-shop-img {
    margin-left: 0;
    max-width: 80%;
    margin: 0 0 0 auto;
  }
}

.p-bridal__service-work-shop-img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 479/315;
}

.p-bridal__service-work-shop-text-wrap {
  max-width: 56.1%;
  width: 100%;
  margin-top: 4.25rem;
  padding: 2.375rem 2rem;
  background-color: #FFF;
}

@media screen and (max-width: 999px) {
  .p-bridal__service-work-shop-text-wrap {
    max-width: 100%;
    margin-top: 9.375rem;
  }
}

@media screen and (max-width: 519px) {
  .p-bridal__service-work-shop-text-wrap {
    max-width: 95%;
    margin-top: -1.875rem;
    margin-right: auto;
    box-shadow: 2px 2px 10px 0 rgba(0, 0, 0, 0.05);
    padding: 1.875rem 1.25rem;
  }
}

.p-bridal__service-work-shop-text-wrap ul {
  margin-top: 1.6875rem;
}

.p-bridal__service-work-shop-text-wrap ul li {
  font-size: 0.9375rem;
  color: #6F6F6F;
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.15em;
}

/* .p-bridal__service-work-shop-title → 追加スタイルセクションで定義 */

.p-bridal__service-work-shop-text {
  font-size: 0.875rem;
  color: #6F6F6F;
  font-weight: 400;
  line-height: 1.9285714286;
  letter-spacing: 0.15em;
  margin-top: 1.6875rem;
}

.p-bridal__service-contact {
  margin-top: 4.375rem;
}

@media screen and (max-width: 519px) {
  .p-bridal__service-contact {
    margin-top: 3.125rem;
  }
}

.p-bridal__service-contact-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.25rem;
  color: #6F6F6F;
  font-weight: 600;
  line-height: 2;
  letter-spacing: 0.05em;
  text-align: center;
}

@media screen and (max-width: 519px) {
  .p-bridal__service-contact-text {
    font-size: 1.125rem;
    text-align: left;
  }
}

.p-bridal__service-contact-btn {
  display: flex;
  justify-content: center;
  gap: 0 3.0625rem;
  margin-top: 2.1875rem;
}

@media screen and (max-width: 519px) {
  .p-bridal__service-contact-btn {
    flex-direction: column;
    align-items: center;
    gap: 1.875rem 0;
  }
}

.p-bridal__service-contact-btn .c-btn {
  max-width: 15.6875rem;
  width: 100%;
}

@media screen and (max-width: 519px) {
  .p-bridal__service-contact-btn .c-btn {
    max-width: 17.5rem;
  }
}

.p-bridal__propose {
  margin-top: 9.75rem;
}

@media screen and (max-width: 519px) {
  .p-bridal__propose {
    margin-top: 4.375rem;
  }
}

@media screen and (max-width: 999px) {
  .p-bridal__propose-inner.l-sub-inner {
    max-width: 100%;
  }
}

.p-bridal__propose-img {
  width: 100vw;
  margin: 3.25rem calc(50% - 50vw);
}

@media screen and (max-width: 519px) {
  .p-bridal__propose-img {
    margin: 1.875rem calc(50% - 50vw);
  }
}

.p-bridal__propose-img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 1440/350;
}

.p-bridal__propose-content {
  position: relative;
  z-index: 5;
  margin-top: -12.125rem;
  border-radius: 3.5625rem;
  background-color: #FFF;
  padding-top: 4.0625rem;
  padding-bottom: 3.875rem;
}

@media screen and (max-width: 519px) {
  .p-bridal__propose-content {
    margin-top: -4.0625rem;
    padding-top: 2.5rem;
  }
}

.p-bridal__propose-content .p-bridal__service-contact {
  margin-top: 6.5rem;
}

@media screen and (max-width: 519px) {
  .p-bridal__propose-content .p-bridal__service-contact {
    margin-top: 3.125rem;
  }
}

.p-bridal__propose-text {
  width: 52%;
  font-size: 0.875rem;
  color: #6F6F6F;
  font-weight: 400;
  line-height: 1.9285714286;
  letter-spacing: 0.15em;
  margin: 0 auto 0;
  text-align: center;
}

@media screen and (max-width: 999px) {
  .p-bridal__propose-text {
    width: 80%;
  }
}

@media screen and (max-width: 519px) {
  .p-bridal__propose-text {
    width: 100%;
    text-align: left;
  }
}

.p-bridal__propose-content-inner {
  width: 90%;
  display: flex;
  gap: 0 1.25rem;
  align-items: center;
  justify-content: space-between;
  margin: 4rem auto 0;
}

@media screen and (max-width: 999px) {
  .p-bridal__propose-content-inner {
    width: 100%;
    justify-content: center;
  }
}

@media screen and (max-width: 519px) {
  .p-bridal__propose-content-inner {
    width: 100%;
    flex-direction: column;
    gap: 1.25rem 0;
    margin: 1.875rem auto 0;
  }
}

.p-bridal__propose-content-img {
  max-width: 18.0625rem;
  width: 100%;
  margin-left: 2.25rem;
}

@media screen and (max-width: 999px) {
  .p-bridal__propose-content-img {
    margin-left: 0;
    width: 34%;
  }
}

@media screen and (max-width: 519px) {
  .p-bridal__propose-content-img {
    max-width: 50%;
  }
}

.p-bridal__propose-content-img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 289/303;
}

.p-bridal__propose-content-text {
  width: 48%;
  margin-top: 1.25rem;
}

@media screen and (max-width: 999px) {
  .p-bridal__propose-content-text {
    max-width: 26.875rem;
    width: 100%;
    flex: 1;
  }
}

@media screen and (max-width: 519px) {
  .p-bridal__propose-content-text {
    margin-top: 0;
  }
}

.p-bridal__propose-content-text p {
  font-size: 0.875rem;
  color: #6F6F6F;
  font-weight: 400;
  line-height: 1.9285714286;
  letter-spacing: 0.15em;
  padding: 0.59375rem 0;
  border-bottom: 1px solid #D17963;
}

.p-business__img {
  width: 100%;
  margin-top: 3.1875rem;
}

.p-business__img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 1000/317;
}

@media screen and (max-width: 519px) {
  .p-business__img {
    margin-top: 1.875rem;
  }
}

.p-business__strengths {
  margin-top: 3.1875rem;
}

.p-business__strengths-content {
  max-width: 56.375rem;
  margin: 3.1875rem auto 0;
}

.p-business__strengths-content li:not(:first-child) {
  margin-top: 2.7875rem;
}

.p-business__strengths-content li {
  display: flex;
  justify-content: space-between;
  gap: 0 1.25rem;
  align-items: center;
}

@media screen and (max-width: 519px) {
  .p-business__strengths-content li {
    flex-direction: column;
    gap: 1.25rem 0;
  }
}

.p-business__strengths-img {
  max-width: 20.375rem;
  width: 100%;
}

@media screen and (max-width: 519px) {
  .p-business__strengths-img {
    max-width: 80%;
    margin: 0 auto;
  }
}

.p-business__strengths-img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 326/233;
}

.p-business__strengths-text-wrap {
  width: 57.2%;
}

@media screen and (max-width: 519px) {
  .p-business__strengths-text-wrap {
    width: 100%;
  }
}

.p-business__strengths-text-wrap h3 {
  margin-top: 1.5rem;
  font-size: 1.25rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #6F6F6F;
}

.p-business__strengths-text-wrap p {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.9285714286;
  letter-spacing: 0.15em;
  color: #6F6F6F;
  margin-top: 1rem;
}

.p-business__strengths-btn {
  max-width: 15.6875rem;
  margin: 4.3125rem auto 0;
}

@media screen and (max-width: 519px) {
  .p-business__strengths-btn {
    margin: 3.125rem auto 0;
  }
}

.p-company {
  margin-top: 4.75rem;
}

.p-company__message {
  position: relative;
  z-index: 2;
}

/* .p-company__message::before,
.p-company__message::after {
  content: "";
  position: absolute;
  background-color: #E9EBE0;
  z-index: -1;
}

.p-company__message::before {
  max-width: 17.75rem;
  width: 100%;
  height: auto;
  aspect-ratio: 284/239;
  top: 5.25rem;
  right: 0;
}

@media screen and (max-width: 519px) {
  .p-company__message::before {
    max-width: 8.875rem;
    top: 14.5rem;
  }
}

.p-company__message::after {
  max-width: 17.75rem;
  width: 100%;
  height: auto;
  aspect-ratio: 284/239;
  bottom: -9.75rem;
  left: 4.9rem;
}

@media screen and (max-width: 999px) {
  .p-company__message::after {
    left: 0;
  }
}

@media screen and (max-width: 519px) {
  .p-company__message::after {
    max-width: 8.875rem;
    bottom: -3.5rem;
  }
} */

.p-company__message-inner {
  max-width: 50.25rem;
  width: 100%;
  margin: 1.25rem auto 0;
}

.p-company__message-title {
  font-size: 2.1875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #6F6F6F;
  margin-top: 3.125rem;
  text-align: center;
}

@media screen and (max-width: 519px) {
  .p-company__message-title {
    font-size: 1.875rem;
  }
}

.p-company__message-content {
  margin-top: 2.5625rem;
}

.p-company__message-content p {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.9285714286;
  letter-spacing: 0.15em;
  color: #6F6F6F;
}

.p-company__outline {
  max-width: 41.5rem;
  margin: 5rem auto 0;
}

.p-company__outline-content {
  margin-top: 1.6875rem;
}

.p-company__outline-content dl {
  display: flex;
  align-items: flex-start;
  gap: 0 1.375rem;
  padding: 0.625rem 0.34375rem;
  border-bottom: 1px solid #6F6F6F;
}

@media screen and (max-width: 519px) {
  .p-company__outline-content dl {
    flex-direction: column;
    justify-content: center;
    gap: 0.625rem 0;
  }
}

.p-company__outline-content dt,
.p-company__outline-content dd {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: #6F6F6F;
}

.p-company__outline-multiline {
  align-items: flex-start !important;
}

.p-company__outline-multiline dd {
  line-height: 2 !important;
}

.p-company__outline-content dt {
  min-width: 6.5rem;
}

@media screen and (max-width: 519px) {
  .p-company__outline-content dt {
    min-width: auto;
  }
}

@media screen and (max-width: 519px) {
  .p-company__outline-content dd {
    text-align: center;
    line-height: 1.9285714286;
  }
}

.p-company__outline-content dd a {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 400;
  line-height: 1;
  color: #FFF;
  background-color: #D17963;
  border-radius: 1.1875rem;
  padding: 0.3125rem 0.375rem;
  text-align: center;
  margin-left: 2.25rem;
}

@media screen and (max-width: 519px) {
  .p-company__outline-content dd a {
    display: block;
    margin-left: 0;
    margin: 0.625rem auto 0;
    max-width: 6.25rem;
  }
}

.p-contact {
  margin-top: 4.4375rem;
}

.p-contact__content {
  max-width: 43.75rem;
  width: 100%;
  margin: 0 auto;
}

.p-contact__form-privacy {
  margin-top: 1.4375rem;
  text-align: center;
}

.p-contact__form-privacy input {
  display: none;
}

.p-contact__form-privacy input+span {
  cursor: pointer;
  display: inline-block;
  padding: 0 0 0 2.125rem;
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
  color: #000;
}

.p-contact__form-privacy input+span::before {
  content: "";
  position: absolute;
  top: 0.5625rem;
  left: 0;
  background: #FFF;
  border: 1px solid #000;
  display: block;
  width: 0.9375rem;
  height: 0.9375rem;
}

.p-contact__form-privacy input+span::after {
  content: "";
  position: absolute;
  top: 0.75rem;
  left: 0.125rem;
  transform: rotate(-45deg);
  display: block;
  width: 0.625rem;
  height: 0.375rem;
  transition: 0.3s;
  opacity: 0;
  border-bottom: 1px solid #004898;
  border-left: 1px solid #004898;
}

.p-contact__form-privacy input+span a {
  color: #004898;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
  text-decoration: underline;
}

.p-contact__form-privacy input+span a:hover {
  opacity: 0.8;
}

.p-contact__form-privacy input:checked+span::after {
  opacity: 1;
}

.p-form__wrap dt {
  font-size: 0.9375rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
  color: #000;
  display: flex;
  align-items: center;
}

.p-form__wrap dt span {
  display: inline-block;
  content: "";
  width: 1.25rem;
  height: 1.25rem;
  background-color: #EF5353;
  border-radius: 50%;
  margin-left: 0.625rem;
}

.p-form__wrap:not(:first-child) {
  margin-top: 1.25rem;
}

.p-form__input input,
.p-form__textarea textarea {
  width: 100%;
  border: none;
  padding: 0.75rem;
  background-color: #F6F6F6;
}

.p-form__textarea textarea {
  min-height: 15.625rem;
}

.p-form__submit {
  max-width: 10.25rem;
  width: 100%;
  text-align: center;
  margin: 1.75rem auto 0;
}

.p-form__submit input {
  transition: all 0.3s;
  border: none;
}

.p-form__submit input:hover {
  cursor: pointer;
  opacity: 1;
  background-color: #3C2B21;
}

.p-form__submit .c-btn {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  color: #FFF;
}

.wpcf7-list-item {
  margin: 0;
}

.p-form__submit .wpcf7-spinner {
  display: block;
  margin: 0 auto;
}

.wpcf7-not-valid-tip {
  color: #EF5353;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
  margin-top: 0.625rem;
}

.p-footer {
  background-color: #3C2B21;
  padding: 1.875rem 0;
  margin-top: 9.375rem;
}

@media screen and (max-width: 519px) {
  .p-footer {
    margin-top: 6.25rem;
  }
}

.error404 .p-footer {
  margin-top: 0;
}

.p-footer__logo {
  max-width: 19.75rem;
  width: 100%;
  text-align: center;
  margin: 0 auto;
}

@media screen and (max-width: 519px) {
  .p-footer__logo {
    max-width: 16.25rem;
  }
}

.p-footer__logo a {
  display: inline-block;
}

.p-footer__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-footer__nav {
  margin-top: 4.625rem;
}

@media screen and (max-width: 519px) {
  .p-footer__nav {
    margin-top: 3.125rem;
  }
}

.p-footer__nav-main {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
  margin-bottom: 2rem;
}

.p-footer__nav-main li a {
  color: #FFF;
  font-size: 0.9375rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

@media screen and (max-width: 519px) {
  .p-footer__nav-main {
    gap: 0.625rem 1.25rem;
    margin-bottom: 1.25rem;
  }

  .p-footer__nav-main li a {
    font-size: 0.875rem;
  }
}

.p-footer__nav .p-footer__nav-link {
  display: block;
  color: #FFF;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.15em;
}

@media screen and (max-width: 519px) {
  .p-footer__nav .p-footer__nav-link {
    text-align: center;
  }
}

.p-footer__nav ul {
  display: flex;
  align-items: center;
  margin-top: 0.625rem;
}

@media screen and (max-width: 519px) {
  .p-footer__nav ul {
    flex-direction: column;
    gap: 0.625rem 0;
    padding-bottom: 0.625rem;
  }
}

.p-footer__nav li {
  margin-right: 2.0625rem;
}

@media screen and (max-width: 519px) {
  .p-footer__nav li {
    margin-right: 0.625rem;
  }
}

.p-footer__nav li:last-child {
  margin-right: 0;
}

.p-footer__nav li a {
  color: #FFF;
  font-size: .75rem;
  font-weight: 400;
  line-height: 2.25;
  letter-spacing: 0.15em;
}

.p-footer__copyright {
  margin-top: 0.8125rem;
  text-align: right;
}

.p-footer__copyright small {
  color: #FFF;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 2.25;
  letter-spacing: 0.15em;
}

@media screen and (max-width: 519px) {
  .p-footer__copyright {
    text-align: center;
  }
}

.p-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 5.375rem;
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
}

.p-header__inner {
  padding: 0 1.5rem 0 1.1875rem;
  height: inherit;
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 519px) {
  .p-header__inner {
    padding: 0 0 0 0.9375rem;
  }
}

.p-header__logo {
  max-width: 20.6875rem;
  width: 100%;
  height: inherit;
}

@media screen and (max-width: 519px) {
  .p-header__logo {
    max-width: 12.5rem;
  }
}

.p-header__logo a {
  height: inherit;
  display: flex;
  align-items: center;
}

.p-header__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-header__nav {
  display: block;
  height: inherit;
}

@media screen and (max-width: 999px) {
  .p-header__nav {
    display: none;
  }
}

.p-header__nav-list {
  display: flex;
  height: inherit;
}

.p-header__nav-item {
  height: inherit;
}

.p-header__nav-item a {
  position: relative;
  color: #654433;
  padding: 0 1.1875rem;
  height: inherit;
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.05em;
  transition: opacity 0.3s, color 0.3s;
}

.p-header__nav-item a:hover {
  color: #D17963;
  opacity: 1;
}

.p-header__hamburger {
  display: none;
}

@media screen and (max-width: 999px) {
  .p-header__hamburger {
    display: block;
    margin: 0;
    padding: 0;
    outline: none;
    border: none;
    position: relative;
    z-index: 999;
    width: 3.625rem;
    height: inherit;
    background-color: transparent;
    cursor: pointer;
    transition: 0.3s;
  }
}

.p-header__hamburger.is-open {
  background-color: transparent;
}

.p-header__hamburger span {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 1.875rem;
  height: 0.1875rem;
  background-color: #654433;
  transition: 0.5s;
}

.p-header__hamburger span:nth-of-type(1) {
  top: -0.25rem;
}

.p-header__hamburger span:nth-of-type(2) {
  top: 0;
}

.p-header__hamburger span:nth-of-type(3) {
  top: 0.25rem;
}

.p-header__hamburger.is-open span:nth-of-type(1) {
  top: 0;
  transform: translateX(-50%) rotate(45deg);
}

.p-header__hamburger.is-open span:nth-of-type(2) {
  opacity: 0;
}

.p-header__hamburger.is-open span:nth-of-type(3) {
  top: -0.375rem;
  transform: translateX(-50%) rotate(-45deg);
}

.p-header__drawer {
  padding: 14.25rem 1.875rem;
  display: none;
  position: absolute;
  z-index: 900;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #FFF;
  overflow-y: scroll;
  scrollbar-width: none;
}

.p-header__drawer::-webkit-scrollbar {
  display: none;
}

@media screen and (max-width: 999px) {
  .p-header__drawer-nav {
    max-width: 80%;
    margin: 0 auto;
  }
}

@media screen and (max-width: 519px) {
  .p-header__drawer-nav {
    max-width: 100%;
  }
}

.p-header__drawer-item {
  border-bottom: solid 1px #654433;
}

@media screen and (max-width: 999px) {
  .p-header__drawer-item a {
    padding: 1.25rem 0;
    display: block;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.05em;
    color: #654433;
    text-align: center;
  }
}

.p-repair-remake__menu {
  margin-top: 5rem;
}

.p-repair-remake__menu-list {
  margin-top: 3.125rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.25rem;
}

@media screen and (max-width: 519px) {
  .p-repair-remake__menu-list {
    gap: 2.5rem 0;
    margin-top: 1.875rem;
    justify-content: center;
  }
}

.p-repair-remake__menu-list li {
  max-width: 17.375rem;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0.875rem 0.625rem 2.0625rem;
  position: relative;
  border-bottom: 1px solid #6F6F6F;
  min-height: 11.5625rem;
}

.p-repair-remake__menu-list li::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 1px;
  height: 85%;
  background: linear-gradient(to bottom, #6F6F6F 0, #6F6F6F 100%);
}

.p-repair-remake__menu-list li hgroup {
  text-align: center;
}

.p-repair-remake__menu-list li hgroup .p-repair-remake__menu-sub-heading {
  font-size: 0.875rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #D17963;
}

.p-repair-remake__menu-list li hgroup .p-repair-remake__menu-heading {
  font-size: 1.25rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #6F6F6F;
  margin-top: 0.25rem;
}

.p-repair-remake__menu-list li .p-repair-remake__menu-content {
  margin-top: 1.3125rem;
}

.p-repair-remake__menu-list li .p-repair-remake__menu-content p {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.9285714286;
  letter-spacing: 0.15em;
  color: #6F6F6F;
  text-align: center;
}

.p-repair-remake__img {
  margin-top: 4rem;
}

.p-repair-remake__img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 1000/358;
}

@media screen and (max-width: 519px) {
  .p-repair-remake__img {
    margin-top: 3.125rem;
  }
}

.p-repair-remake__faq {
  max-width: 37.5rem;
  margin: 4.375rem auto 0;
}

.p-repair-remake__faq-list {
  margin-top: 4.25rem;
}

@media screen and (max-width: 519px) {
  .p-repair-remake__faq-list {
    margin-top: 1.875rem;
  }
}

.p-repair-remake__faq-list dl:not(:first-child) {
  margin-top: 0.9375rem;
}

.p-repair-remake__faq-question {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.9285714286;
  letter-spacing: 0.15em;
  color: #6F6F6F;
  padding: 0 2rem 0.25rem 0;
  border-bottom: 1px solid #6F6F6F;
  cursor: pointer;
  position: relative;
}

@media screen and (max-width: 519px) {
  .p-repair-remake__faq-question {
    padding: 0 1.5rem 0.25rem 0;
  }
}

.p-repair-remake__faq-question::before {
  position: absolute;
  content: "";
  top: 50%;
  right: 1.03125rem;
  width: 0.59375rem;
  height: 1px;
  background-color: #6F6F6F;
  transform: rotate(90deg);
  transition: all 0.3s ease-in-out;
}

.p-repair-remake__faq-question::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 1.03125rem;
  width: 0.59375rem;
  height: 1px;
  background-color: #6F6F6F;
  transition: all 0.3s ease-in-out;
}

.p-repair-remake__faq-question.open::before {
  transform: rotate(180deg);
}

.p-repair-remake__faq-question.open::after {
  opacity: 0;
}

.p-repair-remake__faq-answer {
  display: none;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.9285714286;
  letter-spacing: 0.15em;
  color: #6F6F6F;
  margin-top: 0.9375rem;
  padding: 0 2rem 0.25rem 0;
}

@media screen and (max-width: 519px) {
  .p-repair-remake__faq-answer {
    padding: 0 1.5rem 0.25rem 0;
  }
}

.p-thanks {
  padding-top: 6.4375rem;
  padding-bottom: 8.125rem;
  background-color: #E9EBE0;
  margin-top: 5.375rem;
}

.p-thanks__text {
  margin-top: 3.1875rem;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.9285714286;
  letter-spacing: 0.15em;
  text-align: center;
  color: #6F6F6F;
}

@media screen and (max-width: 519px) {
  .p-thanks__text {
    text-align: left;
  }
}

.p-thanks__btn {
  max-width: 15.6875rem;
  margin: 3.0625rem auto 0;
  text-align: center;
}

/* ===== p-top-about ===== */
.p-top-about {
  width: 100%;
  margin-top: 2.5rem;
  overflow-x: clip;
}

/* 背景：右端まで伸ばす */
.p-top-about__bg {
  background-color: #E9EBE0;
  margin-right: calc(50% - 50vw);
  padding-right: calc(50vw - 50%);
}

/* 内側コンテナ */
.l-inner.p-top-about__inner {
  background-color: #E9EBE0;
  padding: 4.5rem 2rem 4.5rem 10.5rem;
  max-width: 90%;
  margin: 0 auto 0 0;
}

/* 2カラムレイアウト */
.p-top-about__content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.5rem;
}

/* テキストブロック */
.p-top-about__text-wrap {
  flex: 1 1 0;
  min-width: 0;
}

/* 画像ブロック */
.p-top-about__img-wrap {
  flex: 0 0 46%;
  max-width: 460px;
}

.p-top-about__img-top {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* 見出し */
.c-heading.p-top-about__heading {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  letter-spacing: 0.15em;
  line-height: 1.55;
}

/* 本文 */
.p-top-about__text {
  margin-top: 2rem;
  font-size: 0.875rem;
  font-family: "Noto Sans JP", sans-serif;
  color: #6F6F6F;
  font-weight: 400;
  line-height: 1.93;
  letter-spacing: 0.1em;
}

/* ボタン */
.p-top-about__btn {
  width: fit-content;
  margin-top: 2.5rem;
}

/* ===== タブレット（〜999px） ===== */
@media screen and (max-width: 999px) {
  .l-inner.p-top-about__inner {
    padding: 3rem 1.5rem 3.5rem;
    max-width: 100%;
    margin: 0 auto;
  }

  .p-top-about__content {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .p-top-about__text-wrap {
    flex: 0 0 100%;
    text-align: center;
  }

  .p-top-about__img-wrap {
    flex: 0 0 auto;
    width: 68%;
    max-width: 400px;
  }

  .c-heading.p-top-about__heading {
    text-align: center;
  }

  .p-top-about__text {
    margin-top: 1.25rem;
    text-align: center;
  }

  .p-top-about__btn {
    margin: 1.5rem auto 0;
  }
}

/* ===== モバイル（〜519px） ===== */
@media screen and (max-width: 519px) {
  .l-inner.p-top-about__inner {
    padding: 2.5rem 1.25rem 3rem;
  }

  .p-top-about__content {
    gap: 1.5rem;
  }

  .p-top-about__img-wrap {
    width: 86%;
    max-width: 100%;
  }

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

  .p-top-about__btn {
    margin-top: 1.25rem;
  }
}

.p-top-bland {
  margin-top: 5.6875rem;
}

@media screen and (max-width: 519px) {
  .p-top-bland {
    margin-top: 6.25rem;
  }
}

.p-top-bland__content {
  margin: 2.375rem auto 0;
  max-width: 65.625rem;
}

@media screen and (max-width: 519px) {
  .p-top-bland__content {
    margin-top: 1.875rem;
  }
}

.p-top-bland__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

@media screen and (max-width: 519px) {
  .p-top-bland__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.p-top-bland__grid .p-top-bland__item a img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
  aspect-ratio: 182/90;
}

.p-top-bland__grid .p-top-bland__item:nth-child(16),
.p-top-bland__grid .p-top-bland__item:nth-child(17),
.p-top-bland__grid .p-top-bland__item:nth-child(18) {
  grid-column: span 1;
}

.p-top-business {
  margin-top: 9.8125rem;
}

@media screen and (max-width: 519px) {
  .p-top-business {
    margin-top: 4.375rem;
  }
}

.p-top-business__inner.l-inner {
  max-width: 71.875rem;
  background-color: #F2F2F2;
  padding: 2.5rem 1.5625rem 2.125rem;
}

@media screen and (max-width: 519px) {
  .p-top-business__inner.l-inner {
    padding: 3.125rem 1.25rem;
  }
}

.p-top-business__content {
  max-width: 58.875rem;
  margin: 0 auto;
}

.p-top-business__content-inner {
  display: flex;
  gap: 0 2.8125rem;
  justify-content: space-between;
  align-items: center;
  gap: 0 1.25rem;
  margin: 2.6875rem auto 0;
}

@media screen and (max-width: 519px) {
  .p-top-business__content-inner {
    margin: 1.875rem auto 0;
    flex-direction: column-reverse;
    gap: 1.25rem 0;
  }
}

.p-top-business__text-wrap {
  width: 51%;
}

@media screen and (max-width: 519px) {
  .p-top-business__text-wrap {
    width: 100%;
  }
}

.p-top-business__text-wrap p,
.p-top-business__text-wrap li {
  font-size: 0.875rem;
  color: #6F6F6F;
  font-weight: 400;
  line-height: 1.9285714286;
  letter-spacing: 0.15em;
}

.p-top-business__text-wrap ul {
  margin: 1.6875rem 0;
}

.p-top-business__img {
  max-width: 20.5rem;
  width: 100%;
}

.p-top-business__img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 328/315;
}

.p-top-business__btn {
  max-width: 15.6875rem;
  margin: 3.125rem auto 0;
}

@media screen and (max-width: 519px) {
  .p-top-business__btn {
    margin: 1.25rem auto 0;
  }
}

.p-top-mv {
  width: 100%;
  height: 100vh;
  min-height: 25rem;
}

.p-top-mv video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media screen and (max-width: 519px) {
  .p-top-mv {
    min-height: 37.5rem;
    height: 100dvh;
  }

}

.p-top-instagram {
  margin-top: 6.25rem;
}

.p-top-pickup {
  width: 100%;
  margin-top: 3.5rem;
  overflow-x: clip;
}

@media screen and (max-width: 519px) {
  .p-top-pickup {
    margin-top: 6.25rem;
  }
}

.p-top-pickup__inner .c-heading {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.p-top-pickup__inner .c-heading::after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: #6F6F6F;
}

@media screen and (max-width: 519px) {
  .p-top-pickup__inner .c-heading {
    gap: 0.625rem;
  }
}

.p-top-pickup__text {
  margin-top: 1.375rem;
  font-size: 0.875rem;
  color: #6F6F6F;
  font-weight: 400;
  line-height: 1.9285714286;
  letter-spacing: 0.15em;
  text-align: center;
}

.p-top-pickup__text--catch {
  font-size: 1.5625rem;
}

@media screen and (max-width: 519px) {
  .p-top-pickup__text {
    margin-top: 1.875rem;
    text-align: left;
  }
}

.p-top-pickup__swiper {
  margin: 4.1875rem calc(50% - 50vw) 0;
  width: 100dvw;
}

@media screen and (max-width: 519px) {
  .p-top-pickup__swiper {
    margin: 3.125rem calc(50% - 50vw) 0;
  }
}

.p-top-pickup__swiper .swiper-slide .p-top-pickup__swiper-img {
  width: 100%;
  aspect-ratio: 335/190;
  overflow: hidden;
}

.p-top-pickup__swiper .swiper-slide .p-top-pickup__swiper-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-top-pickup__swiper .swiper-slide p {
  font-size: 0.875rem;
  color: #000;
  font-weight: 400;
  line-height: 1.9285714286;
  letter-spacing: 0.15em;
  text-align: center !important;
  margin-top: 0.625rem;
}

.p-top-pickup__swiper div.swiper-button-prev,
.p-top-pickup__swiper div.swiper-button-next {
  opacity: 0;
  pointer-events: auto;
}

/* ④コレクションジュエリー テキスト＋スライダー */
.p-top-collection__intro {
  margin-top: 3.5rem;
}

@media screen and (max-width: 519px) {
  .p-top-collection__intro {
    margin-top: 6.25rem;
  }
}

.p-top-collection__heading.c-heading-wrap .c-heading {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.p-top-collection__heading.c-heading-wrap .c-heading::after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: #6F6F6F;
}

@media screen and (max-width: 519px) {
  .p-top-collection__heading.c-heading-wrap .c-heading {
    gap: 0.625rem;
  }
}

/* ④上質セレクト ジュエリー スライダー＆グリッド */
.p-top-jewelry__swiper-a {
  margin: 2.5rem calc(50% - 50vw) 0;
  width: 100dvw;
  overflow: hidden;
}

/* Swiper11でcssEaseが反映されないためCSSで強制上書き */
.p-top-jewelry__swiper-a .swiper-wrapper {
  transition-timing-function: linear !important;
}

@media screen and (max-width: 519px) {
  .p-top-jewelry__swiper-a {
    margin-top: 1.5rem;
  }
}

.p-top-jewelry__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-top: 2rem;
}

@media screen and (max-width: 519px) {
  .p-top-jewelry__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
}

.p-top-jewelry__grid-img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.p-top-jewelry__swiper-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.p-top-jewelry__swiper-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.p-top-project {
  margin-top: 3.25rem;
}

@media screen and (max-width: 519px) {
  .p-top-project {
    margin-top: 3.125rem;
  }
}

.p-top-project__inner {
  margin-top: 3.4375rem;
}

.p-top-project__content {
  max-width: 40.75rem;
  background: linear-gradient(to right, #2E5E7E 0%, #253941 100%);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  padding: 1.6875rem;
  margin-top: 3.4375rem;
}

@media screen and (max-width: 519px) {
  .p-top-project__content {
    margin-top: 1.875rem;
  }
}

.p-top-project__content-inner {
  max-width: 35.3125rem;
  width: 100%;
  background: url("../images/top/project-bg.jpg") no-repeat center center/cover;
  text-align: center;
  padding: 2.6875rem 0.625rem;
}

.p-top-project__content-inner h3 {
  font-size: 2rem;
  font-family: "Cormorant Upright", serif;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: #FFF;
  text-transform: uppercase;
}

.p-top-project__content-inner p {
  font-size: 0.875rem;
  color: #FFF;
  line-height: 1.6428571429;
  letter-spacing: 0.13em;
  margin-top: 0.625rem;
}

.p-top-project__img {
  margin-top: 6.25rem;
  margin: 6.25rem calc(50% - 50vw) 0;
  width: 100vw;
}

@media screen and (max-width: 519px) {
  .p-top-project__img {
    margin-top: 3.125rem;
  }
}

.p-top-project__img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 1440/422;
}

.p-top-service {
  margin: 3.25rem auto 0;
  width: 100%;
}

@media screen and (max-width: 519px) {
  .p-top-service {
    margin: 3.125rem auto 0;
  }
}

.p-top-service__inner {
  max-width: 59.375rem;
  margin: 0 auto;
}

.p-top-service__sub-heading-wrap {
  margin-top: 3.5rem;
}

@media screen and (max-width: 519px) {
  .p-top-service__sub-heading-wrap {
    margin-top: 1.875rem;
  }
}

.p-top-service__content {
  margin-top: 2.75rem;
  display: flex;
  gap: 0 1.25rem;
  justify-content: space-between;
  align-items: center;
}

@media screen and (max-width: 519px) {
  .p-top-service__content {
    margin-top: 1.875rem;
    flex-direction: column;
    gap: 1.25rem 0;
  }
}

.p-top-service__content-inner {
  width: 53%;
}

@media screen and (max-width: 519px) {
  .p-top-service__content-inner {
    width: 100%;
  }
}

.p-top-service__img {
  max-width: 20.25rem;
  width: 100%;
}

.p-top-service__img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 324/315;
}

.p-top-service__text-wrap p,
.p-top-service__text-wrap li {
  font-size: 0.875rem;
  color: #6F6F6F;
  font-weight: 400;
  line-height: 1.9285714286;
  letter-spacing: 0.15em;
}

.p-top-service__copy {
  font-size: 1.4rem !important;
  font-family: "Noto Serif JP", serif;
  font-weight: 400 !important;
  letter-spacing: 0.12em !important;
  line-height: 1.7 !important;
  color: #4a4a4a;
  margin-bottom: 1.25rem;
}

@media screen and (max-width: 519px) {
  .p-top-service__copy {
    font-size: 1.35rem;
  }
}

.p-top-service__text-wrap ul {
  margin: 1.6875rem 0;
}

.p-top-service__btn {
  margin-top: 1.25rem;
  width: fit-content;
}

@media screen and (max-width: 519px) {
  .p-top-service__btn {
    margin: 1.25rem auto 0;
  }
}

.p-top-service__content-bottom {
  margin-top: 4.1875rem;
}

@media screen and (max-width: 519px) {
  .p-top-service__content-bottom {
    margin-top: 3.125rem;
  }
}

.p-top-topics {
  margin-top: 6.25rem;
}

.p-top-topics__items {
  margin: 3.5rem 0 0;
}

@media screen and (max-width: 519px) {
  .p-top-topics__items {
    margin: 1.875rem 0 0;
  }
}

.p-topics__btn {
  max-width: 15.6875rem;
  margin: 5rem auto 0;
}

.p-topics-single__inner {
  max-width: 50rem;
  margin: 2.3125rem auto 0;
}

.p-topics-single__title {
  font-size: 1.25rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.05em;
  color: #000;
}

@media screen and (max-width: 519px) {
  .p-topics-single__title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    overflow: hidden;
  }
}

.p-topics-single__date {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #000;
  margin-top: 0.53125rem;
  text-align: right;
  padding-top: 0.875rem;
  border-top: 1px solid #707070;
}

.p-topics-single__thumbnail {
  width: 100%;
  margin-top: 3.0625rem;
}

.p-topics-single__thumbnail img {
  width: 100%;
  height: 100%;
  aspect-ratio: 800/440;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-topics-single__content {
  max-width: 40.625rem;
  margin: 0 auto;
}

.p-topics-single__content h2,
.p-topics-single__content h3,
.p-topics-single__content h4 {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #000;
  padding-bottom: 0.4375rem;
  border-bottom: 3px solid transparent;
  -o-border-image: linear-gradient(to right, #000 0 8.1875rem, transparent 8.1875rem 100%) 1;
  border-image: linear-gradient(to right, #000 0 8.1875rem, transparent 8.1875rem 100%) 1;
  margin: 1.875rem 0 2.0625rem;
}

.p-topics-single__content h2 {
  font-size: 1.25rem;
}

.p-topics-single__content h3 {
  font-size: 1.125rem;
}

.p-topics-single__content h4 {
  font-size: 1rem;
}

.p-topics-single__content p {
  font-size: 0.9375rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #000;
  line-height: 1.2;
  margin: 2.0625rem 0;
}

.p-topics-single__content img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 650/358;
  margin: 5.75rem auto 1.75rem;
}

.p-topics-single__content .wp-block-button {
  max-width: 8.125rem;
  width: 100%;
  margin: 2.1875rem auto 0;
}

.p-topics-single__content .wp-block-button__link {
  display: inline-block;
  font-size: 0.9375rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #FFF;
  background-color: #D17963;
  transition: opacity 0.3s ease;
}

.p-topics-single__content .wp-block-button__link:hover {
  opacity: 0.8;
}

.p-topics-single__content ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin: 2.1875rem 0;
}

.p-topics-single__content li {
  font-size: 0.9375rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #000;
}

.p-topics-single__content li ul {
  margin: 1rem 0;
}

.p-topics-single__pagination {
  margin-top: 2.25rem;
  text-align: center;
}

.p-topics-single__pagination-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.9375rem;
}

.p-topics-single__pagination-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.p-topics-single__pagination-link:hover {
  opacity: 0.8;
}

.p-topics-single__pagination-link img {
  width: 1.25rem;
  height: 1.25rem;
  -o-object-fit: contain;
  object-fit: contain;
}

.p-topics-single__pagination-back {
  font-size: 0.875rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #B7B7B7;
  text-decoration: none;
  transition: all 0.3s ease;
}

.p-topics-single__pagination-back:hover {
  color: #D17963;
  opacity: 1;
}

.p-topics__category {
  margin: 4rem 0 0 1.6875rem;
}

.p-topics__category-heading {
  font-size: 1.25rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #6F6F6F;
  text-transform: uppercase;
}

.p-topics__items {
  margin-top: 3.75rem;
}

.p-topics__category-buttons {
  display: flex;
  text-align: center;
  gap: 1.1875rem;
  margin-top: 0.6875rem;
}

.pagination {
  margin-top: 4.1875rem;
  text-align: center;
}

.pagination .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
}

.pagination .nav-links .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.875rem;
  height: 1.875rem;
  font-size: 0.875rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  color: #B7B7B7;
  text-decoration: none;
  border-radius: 50%;
  transition: all 0.3s ease;
  text-align: center;
}

.pagination .nav-links .page-numbers.current {
  width: 28px;
  height: 28px;
  background-color: #D17963;
  color: #FFF;
}

.pagination .nav-links .page-numbers:hover {
  color: #D17963;
  opacity: 1;
}

@media screen and (max-width: 519px) {
  .u-pc-only {
    display: none;
  }
}

.u-sp-only {
  display: none;
}

@media screen and (max-width: 519px) {
  .u-sp-only {
    display: block;
  }
}

/*# sourceMappingURL=style.css.map */

/* ===========================
   TOPページ FAQ セクション
   =========================== */
.p-top-faq {
  padding: 80px 0;
  background-color: #faf9f7;
}

.p-top-faq__inner {
  max-width: 900px;
  margin: 0 auto;
}

.p-top-faq__heading {
  margin-bottom: 56px;
}

.p-top-faq__category {
  margin-bottom: 64px;
}

.p-top-faq__category:last-child {
  margin-bottom: 0;
}

.p-top-faq__category-heading {
  margin-bottom: 32px;
}

.p-top-faq__btn {
  width: fit-content;
  margin: 3rem auto 0;
}

@media screen and (max-width: 519px) {
  .p-top-faq {
    padding: 60px 0;
  }

  .p-top-faq__category {
    margin-bottom: 48px;
  }
}

/* ===========================
   FAQページ
   =========================== */
.p-faq {
  padding: 80px 0;
}

.p-faq__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.p-faq__section {
  margin-bottom: 80px;
}

.p-faq__lead {
  margin-top: 2.5rem;
  margin-bottom: 0;
}

.p-faq__lead .c-sub-text-area__text {
  margin-top: 0;
}

.p-faq__section:first-of-type {
  margin-top: 2.5rem;
}

.p-faq__btn {
  text-align: center;
  margin-top: 40px;
}

.p-faq__btn .c-btn {
  width: auto;
  min-width: 260px;
  max-width: 340px;
  padding: 0.75rem 2rem;
}

@media screen and (max-width: 519px) {
  .p-faq {
    padding: 60px 0;
  }
}

/* ===========================
   修理・リメイクページ 追加スタイル
   =========================== */
.p-repair-remake__repair-table-wrap {
  margin-top: 3rem;
  overflow-x: auto;
}

.p-repair-remake__repair-table {
  width: 100%;
  border-collapse: collapse;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0.12em;
  color: #6F6F6F;
}

.p-repair-remake__repair-table thead tr {
  border-bottom: 1px solid #c9a882;
}

.p-repair-remake__repair-table th {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 0.8125rem;
  letter-spacing: 0.12em;
  color: #4a4a4a;
  padding: 0.75rem 1rem;
  text-align: left;
  white-space: nowrap;
}

.p-repair-remake__repair-table th:nth-child(2),
.p-repair-remake__repair-table th:nth-child(3) {
  text-align: center;
}

.p-repair-remake__repair-table td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid #ede9e3;
  line-height: 1.7;
  vertical-align: middle;
}

.p-repair-remake__repair-table td:nth-child(2),
.p-repair-remake__repair-table td:nth-child(3) {
  text-align: center;
  white-space: nowrap;
}

.p-repair-remake__repair-table tbody tr:last-child td {
  border-bottom: 1px solid #c9a882;
}

.p-repair-remake__repair-table-note {
  display: block;
  font-size: 0.6875rem;
  color: #aaa;
  letter-spacing: 0.08em;
  margin-top: 0.2rem;
}

.p-repair-remake__repair-caution {
  font-size: 0.75rem;
  font-family: "Noto Sans JP", sans-serif;
  color: #aaa;
  letter-spacing: 0.1em;
  margin-top: 1.5rem;
  line-height: 1.9;
}

@media screen and (max-width: 519px) {

  .p-repair-remake__repair-table th,
  .p-repair-remake__repair-table td {
    padding: 0.75rem 0.5rem;
    font-size: 0.8125rem;
  }
}

.p-repair-remake__remake {
  margin-top: 5rem;
  padding-top: 4rem;
  border-top: 1px solid #e8e0d8;
}

.p-repair-remake__remake-heading {
  margin-bottom: 2rem;
}

.p-repair-remake__remake-title {
  font-size: clamp(1.5rem, 1.5rem + (100vw - 723px) * 0.03, 2.25rem);
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: #3a3a3a;
  text-align: center;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.p-repair-remake__remake-text {
  font-size: 0.875rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: #6F6F6F;
  line-height: 1.9285714286;
  margin-bottom: 1rem;
}

.p-repair-remake__remake-note {
  font-size: 0.75rem;
  font-family: "Noto Sans JP", sans-serif;
  color: #999;
  letter-spacing: 0.1em;
  margin-top: 1.5rem;
  line-height: 1.9;
}

/* -------
   リメイク 2カラム左右振りレイアウト
------- */
.p-repair-remake__remake-row {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 3rem;
  align-items: center;
  margin-top: 4rem;
}

.p-repair-remake__remake-row--reverse {
  grid-template-columns: 2fr 3fr;
}

.p-repair-remake__remake-row--reverse .p-repair-remake__remake-media {
  order: 2;
}

.p-repair-remake__remake-row--reverse .p-repair-remake__remake-body {
  order: 1;
}

.p-repair-remake__remake-body {
  padding: 1rem 0;
}

/* Block A: 縦長1枚＋ 小3枚（右下寄せ） */
.p-repair-remake__remake-collage-a {
  display: grid;
  grid-template-columns: 2fr 3fr;
  align-items: end;
  gap: 0.375rem;
}

.p-repair-remake__remake-collage-a__main img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: top;
  display: block;
}

.p-repair-remake__remake-collage-a__sub {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.375rem;
}

.p-repair-remake__remake-collage-a__sub img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

/* Block B: 大横1枚（左上）＋ 小1枚（中央下）＋ 縦長1枚（右全高） */
.p-repair-remake__remake-collage-b {
  display: grid;
  grid-template-columns: 2.5fr 1.5fr 1.5fr;
  grid-template-rows: 170px 170px;
  gap: 0.375rem;
}

.p-repair-remake__remake-collage-b__large {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.p-repair-remake__remake-collage-b__medium {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.p-repair-remake__remake-collage-b__tall {
  grid-column: 3 / 4;
  grid-row: 1 / 3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Block 3: 4枚等分グリッド（2×2） */
.p-repair-remake__remake-grid4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.375rem;
}

.p-repair-remake__remake-grid4 img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

/* レスポンシブ */
@media screen and (max-width: 999px) {

  .p-repair-remake__remake-row,
  .p-repair-remake__remake-row--reverse {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .p-repair-remake__remake-row--reverse .p-repair-remake__remake-media {
    order: 0;
  }

  .p-repair-remake__remake-row--reverse .p-repair-remake__remake-body {
    order: 0;
  }

  .p-repair-remake__remake-collage-a__main img {
    height: 280px;
  }

  .p-repair-remake__remake-collage-a__sub img {
    height: 130px;
  }

  .p-repair-remake__remake-collage-b {
    grid-template-rows: 150px 150px;
  }

  .p-repair-remake__remake-grid4 img {
    height: 140px;
  }
}

@media screen and (max-width: 519px) {
  .p-repair-remake__remake-collage-a {
    grid-template-columns: 1fr;
  }

  .p-repair-remake__remake-collage-a__main img {
    height: 250px;
  }

  .p-repair-remake__remake-collage-a__sub img {
    height: 100px;
  }

  .p-repair-remake__remake-collage-b {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 130px 130px 130px;
  }

  .p-repair-remake__remake-collage-b__large {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
  }

  .p-repair-remake__remake-collage-b__medium {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
  }

  .p-repair-remake__remake-collage-b__tall {
    grid-column: 2 / 3;
    grid-row: 2 / 4;
  }

  .p-repair-remake__remake-grid4 img {
    height: 120px;
  }
}

/* ===========================
   会社案内ページ 追加スタイル
   =========================== */
.p-company__catch {
  position: relative;
  margin-bottom: 40px;
}

.p-company__catch img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  object-position: center bottom;
}

.p-company__catch-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  color: #3a3a3a;
  line-height: 1.7;
  letter-spacing: 0.12em;
  margin: 24px 0 16px;
}

.p-company__catch-text {
  font-size: 0.875rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #6F6F6F;
  line-height: 1.9285714286;
  letter-spacing: 0.15em;
  margin-bottom: 40px;
}

.p-company__policy {
  margin: 0;
  padding: 80px 0;
  border-top: 1px solid #e8e0d8;
}

.p-company__policy-heading {
  margin-bottom: 32px;
}

.p-company__policy-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.p-company__policy-img {
  width: 100%;
  display: block;
  margin: 0;
}

.p-company__policy-texts {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.p-company__policy-text {
  font-size: 0.875rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #6F6F6F;
  line-height: 1.9285714286;
  letter-spacing: 0.15em;
  margin: 0;
}

@media screen and (max-width: 519px) {
  .p-company__policy-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.p-company__profile {
  margin: 0;
  padding: 80px 0;
  border-top: 1px solid #e8e0d8;
}

.p-company__profile-heading {
  margin-bottom: 32px;
}

.p-company__profile-content {
  display: flex;
  justify-content: center;
}

.p-company__profile-inner {
  width: 100%;
  max-width: 680px;
}

.p-company__profile-name {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  color: #3a3a3a;
  letter-spacing: 0.12em;
  margin-bottom: 24px;
  text-align: left;
}

.p-company__profile-text {
  font-size: 0.875rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #6F6F6F;
  line-height: 1.9285714286;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
  text-align: left;
}

.p-company__access {
  margin: 60px 0;
  padding: 60px 0;
  border-top: 1px solid #e8e0d8;
}

.p-company__access-heading {
  margin-bottom: 32px;
}

.p-company__access-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.p-company__access-content--single {
  grid-template-columns: 1fr;
  max-width: 560px;
}

.p-company__access-info dl {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 8px 16px;
  padding: 12px 0;
  border-bottom: 1px solid #f0ebe4;
  font-size: 1.5rem;
}

.p-company__access-info dt {
  color: #888;
}

.p-company__access-info dd {
  color: #3a3a3a;
}

.p-company__access-map iframe {
  border-radius: 4px;
}

.p-company__contact {
  text-align: center;
  margin-top: 40px;
}

.p-company__contact-text {
  font-size: 0.875rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #6F6F6F;
  line-height: 1.9285714286;
  letter-spacing: 0.15em;
  margin-bottom: 24px;
}

.p-company__contact-btn {
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 519px) {
  .p-company__catch-title {
    font-size: 2.2rem;
  }

  .p-company__access-content {
    grid-template-columns: 1fr;
  }
}

/* ===========================
   ブライダルページ 追加スタイル
   =========================== */

/* セクション間マージン整理 */
.p-bridal__service {
  margin-top: 5rem;
  padding-top: 4rem;
  border-top: 1px solid #ede9e3;
}

.p-bridal__service:first-of-type {
  border-top: none;
}

/* プロポーズリングタイトル（セクションコピー扱い） */
.p-bridal__service-propose-title {
  font-size: clamp(1.25rem, 1.25rem + (100vw - 723px) * 0.02, 1.75rem);
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  color: #3a3a3a;
  letter-spacing: 0.12em;
  line-height: 1.7;
  margin: 2.5rem auto 1.25rem;
  text-align: center;
}

/* 注記テキスト */
.p-bridal__service-note {
  font-size: 0.8125rem;
  font-family: "Noto Sans JP", sans-serif;
  color: #aaa;
  margin-top: 1rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
}

/* 料金エリア */
.p-bridal__service-price {
  margin: 2.5rem 0 0;
}

/* 料金テーブル（修理ページと同スタイル） */
.p-bridal__price-table-wrap {
  overflow-x: auto;
}

.p-bridal__price-table {
  width: 100%;
  border-collapse: collapse;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  color: #6F6F6F;
}

.p-bridal__price-table thead tr {
  border-bottom: 1px solid #c9a882;
}

.p-bridal__price-table th {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 0.8125rem;
  color: #3a3a3a;
  padding: 0.75rem 1rem;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.p-bridal__price-table th:nth-child(2) {
  text-align: center;
}

.p-bridal__price-table td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid #ede9e3;
  line-height: 1.7;
  vertical-align: middle;
}

.p-bridal__price-table td:nth-child(2) {
  text-align: center;
  white-space: nowrap;
}

.p-bridal__price-table tbody tr:last-child td {
  border-bottom: 1px solid #c9a882;
}

.p-bridal__price-table-note {
  display: block;
  font-size: 0.6875rem;
  color: #aaa;
  margin-top: 0.125rem;
}

.p-bridal__service-price-example {
  font-size: 0.8125rem;
  font-family: "Noto Sans JP", sans-serif;
  color: #aaa;
  line-height: 1.8;
  letter-spacing: 0.05em;
  margin-top: 1rem;
}

@media screen and (max-width: 519px) {

  .p-bridal__price-table th,
  .p-bridal__price-table td {
    padding: 0.75rem 0.5rem;
    font-size: 0.8125rem;
  }

  .p-bridal__service-price-example {
    font-size: 0.75rem;
  }
}

/* スライダー（トップpickupと同デザイン） */
.p-bridal__swiper {
  margin: 4.1875rem calc(50% - 50vw) 0;
  width: 100dvw;
}

@media screen and (max-width: 519px) {
  .p-bridal__swiper {
    margin: 3.125rem calc(50% - 50vw) 0;
  }
}

.p-bridal__swiper .swiper-slide .p-bridal__swiper-img {
  width: 100%;
  aspect-ratio: 335 / 190;
  overflow: hidden;
}

.p-bridal__swiper .swiper-slide .p-bridal__swiper-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-bridal__swiper .swiper-slide p {
  font-size: 0.875rem;
  color: #000;
  font-weight: 400;
  line-height: 1.9285714286;
  letter-spacing: 0.15em;
  text-align: center !important;
  margin-top: 0.625rem;
}

.p-bridal__swiper div.swiper-button-prev,
.p-bridal__swiper div.swiper-button-next {
  opacity: 0;
  pointer-events: auto;
}

/* オリジナルブランド カードリスト */
.p-bridal__brand-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 2.5rem;
  margin-top: 3rem;
  list-style: none;
  padding: 0;
}

@media screen and (max-width: 999px) {
  .p-bridal__brand-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 2rem;
  }
}

@media screen and (max-width: 519px) {
  .p-bridal__brand-list {
    grid-template-columns: 1fr;
    gap: 3rem 0;
  }
}

.p-bridal__brand-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.p-bridal__brand-logo {
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.p-bridal__brand-logo img {
  max-height: 100%;
  max-width: 10rem;
  width: auto;
  height: auto;
  object-fit: contain;
}

.p-bridal__brand-name {
  font-size: clamp(1rem, 1rem + (100vw - 723px) * 0.012, 1.25rem);
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  color: #3a3a3a;
  letter-spacing: 0.12em;
  margin-bottom: 0.875rem;
}

.p-bridal__brand-text {
  font-size: 0.875rem;
  font-family: "Noto Sans JP", sans-serif;
  color: #6F6F6F;
  line-height: 1.9;
  letter-spacing: 0.08em;
  text-align: left;
  margin-bottom: 1.25rem;
}

.p-bridal__brand-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  width: 100%;
  margin-top: auto;
}

.p-bridal__brand-photo img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
}

/* 手作り結婚指輪 3枚ギャラリー */
.p-bridal__workshop-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin: 2.5rem 0;
}

.p-bridal__workshop-gallery-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

@media screen and (max-width: 519px) {
  .p-bridal__workshop-gallery {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .p-bridal__workshop-gallery-img img {
    height: 200px;
  }
}

/* ブランド紹介 見出しマージン */
.p-bridal__brand-heading {
  margin-top: 4rem;
}

/* 手作り結婚指輪 見出し */
.p-bridal__service-work-shop-title {
  font-size: clamp(1rem, 1rem + (100vw - 723px) * 0.015, 1.375rem);
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  color: #3a3a3a;
  letter-spacing: 0.1em;
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* ===========================
   TOPページ 宝石・ジュエリーセクション
   =========================== */
.p-top-service--jewelry {
  background-color: #faf9f7;
  padding: 80px 0;
}